:root {
  --night: #07141b;
  --evergreen: #0c514d;
  --reef: #2db7a3;
  --ice: #f2fbfb;
  --paper: #fff8ee;
  --cream: #f6ead8;
  --ink: #16242b;
  --soft: #5c6e73;
  --sun: #f6b85a;
  --coral: #d96f3c;
  --line: rgba(22, 36, 43, 0.16);
  --white: #fff;
  --title: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --wide: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
body.site-dark { background: var(--night); color: var(--ice); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--sun);
  color: var(--night);
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }
.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  width: var(--wide);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}
.brand-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
}
.brand-lockup span {
  display: block;
  font-family: var(--title);
  font-size: 1.15rem;
  line-height: 1;
}
.brand-lockup small {
  display: block;
  color: rgba(242, 251, 251, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.92rem;
}
.nav-links a {
  color: rgba(242, 251, 251, 0.86);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--sun); }
.language-link {
  border: 1px solid rgba(242, 251, 251, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,20,27,0.94) 0%, rgba(7,20,27,0.82) 42%, rgba(7,20,27,0.1) 100%),
    linear-gradient(135deg, #093a3a 0%, #0b7669 47%, #f6b85a 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw -12vw auto;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  background: rgba(255, 248, 238, 0.18);
  border-radius: 48% 52% 0 0;
  transform: rotate(-10deg);
}
.hero-art {
  position: absolute;
  right: clamp(-40px, 4vw, 80px);
  bottom: clamp(8px, 4vw, 70px);
  width: min(46vw, 620px);
  z-index: 2;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,0.28));
  animation: hero-rise 760ms ease both;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(680px, calc(100vw - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 120px 0 56px;
}
.eyebrow {
  display: inline-flex;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--title);
  letter-spacing: 0;
}
h1 {
  margin: 18px 0 18px;
  font-size: clamp(4.4rem, 12vw, 9.2rem);
  line-height: 0.85;
}
.hero-copy p {
  max-width: 33rem;
  margin: 0;
  color: rgba(242,251,251,0.86);
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
}
.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(242,251,251,0.28);
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242,251,251,0.62);
}
.button-primary {
  background: var(--sun);
  color: var(--night);
  border-color: var(--sun);
}
.button-secondary {
  color: var(--ice);
  background: rgba(255,255,255,0.08);
}
main section:not(.hero) {
  padding: 90px 0;
}
.section-inner {
  width: var(--wide);
  margin: 0 auto;
}
.light-band { background: var(--paper); color: var(--ink); }
.cream-band { background: var(--cream); color: var(--ink); }
.green-band { background: #0c514d; color: var(--ice); }
.section-kicker {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  max-width: 780px;
  margin: 10px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
}
.section-copy {
  max-width: 640px;
  color: var(--soft);
  font-size: 1.08rem;
}
.green-band .section-copy,
.green-band .metric p,
.green-band .crew-card p { color: rgba(242,251,251,0.78); }
.kori-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 42px;
  align-items: center;
}
.kori-portrait {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(12,81,77,0.16);
}
.lane-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.lane-card,
.crew-card,
.product-card,
.link-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.74);
}
.lane-card {
  overflow: hidden;
}
.lane-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: #e8f5f2;
}
.lane-card strong,
.lane-card span {
  display: block;
  padding: 0 14px;
}
.lane-card strong { padding-top: 14px; font-size: 1rem; }
.lane-card span { padding-bottom: 14px; color: var(--soft); font-size: 0.92rem; }
.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.metric strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
  font-family: var(--title);
}
.metric p { margin: 10px 0 0; color: var(--soft); }
.crew-grid,
.product-grid,
.link-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.crew-card,
.product-card,
.link-card,
.policy-card {
  padding: 20px;
}
.crew-card strong,
.product-card strong,
.link-card strong {
  display: block;
  font-size: 1.15rem;
}
.crew-card p,
.product-card p,
.link-card p {
  margin: 10px 0 0;
  color: var(--soft);
}
.crew-card small,
.product-card small {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.green-band .crew-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.green-band .crew-card small { color: var(--sun); }
.product-card:nth-child(1) { background: #fff8ee; }
.product-card:nth-child(2) { background: #e8f8f2; }
.product-card:nth-child(3) { background: #fff1df; }
.product-card:nth-child(4) { background: #edf7fb; }
.links-section .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 40px;
  align-items: start;
}
.link-grid { grid-template-columns: 1fr; margin-top: 0; }
.link-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.88);
}
.link-card span {
  flex: 0 0 auto;
  color: var(--coral);
  font-weight: 900;
}
.page-hero {
  padding: 140px 0 70px;
  background:
    linear-gradient(135deg, rgba(7,20,27,0.94), rgba(12,81,77,0.9)),
    var(--night);
  color: var(--ice);
}
.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: end;
}
.page-hero img { width: 180px; justify-self: end; filter: drop-shadow(0 20px 42px rgba(0,0,0,0.28)); }
.content-page {
  background: var(--paper);
  color: var(--ink);
}
.content-page main section:not(.hero) { padding: 56px 0; }
.prose {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
}
.prose h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}
.prose p,
.prose li { color: var(--soft); }
.prose a { color: #0c6f66; font-weight: 800; }
.policy-card { margin: 20px 0; background: #fff; }
.footer {
  padding: 32px 0;
  color: rgba(242,251,251,0.72);
  background: var(--night);
}
.footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
@keyframes hero-rise {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 900px) {
  .topbar { position: relative; background: var(--night); width: 100%; padding: 16px 20px; align-items: flex-start; }
  .hero { min-height: auto; padding-top: 0; }
  .hero-copy { padding: 52px 20px 360px; margin-left: 0; width: 100%; }
  .hero-art { width: min(78vw, 440px); right: 50%; transform: translateX(50%); }
  .kori-layout,
  .links-section .section-inner,
  .page-hero .section-inner { grid-template-columns: 1fr; }
  .page-hero img { justify-self: start; width: 150px; }
  .lane-grid,
  .metrics,
  .crew-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  :root { --wide: min(100vw - 28px, 1180px); }
  .topbar { gap: 14px; }
  .brand-lockup small { display: none; }
  .nav-links { justify-content: flex-start; font-size: 0.86rem; gap: 10px; }
  h1 { font-size: clamp(3.7rem, 22vw, 5.4rem); }
  .section-title { font-size: clamp(2.35rem, 14vw, 3.5rem); }
  .hero-copy { padding-bottom: 300px; }
  .hero-art { width: min(70vw, 320px); }
  .lane-grid,
  .metrics,
  .crew-grid,
  .product-grid { grid-template-columns: 1fr; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}
