@font-face {
  font-family: "AkMilk Inter";
  src: url("fonts/inter-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "AkMilk Inter";
  src: url("fonts/inter-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "AkMilk Display";
  src: url("fonts/dela-gothic-one-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --steppe: #053e33;
  --logo: #063f34;
  --milk: #f6f2e8;
  --paper: #fffdf7;
  --ink: #37312c;
  --earth: #ad8c65;
  --sun: #e4ae3d;
  --line: rgba(55, 49, 44, 0.18);
  --soft-line: rgba(255, 253, 247, 0.24);
  --shadow: 0 18px 60px rgba(28, 45, 38, 0.13);
  --content: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(56px, 6vw, 88px);
  --section-desktop: 88px;
  --section-mobile: 56px;
  --fast: 160ms;
  --base: 240ms;
  --slow: 420ms;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* Horizontal Top Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 100000;
  pointer-events: none;
}

.scroll-progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #053e33 0%, #0b5747 60%, #e4ae3d 100%);
  box-shadow: 0 0 10px rgba(5, 62, 51, 0.7), 0 0 4px rgba(228, 174, 61, 0.5);
  transition: width 0.05s linear;
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #053e33;
  color: #f6f2e8;
  border: 1px solid rgba(246, 242, 232, 0.3);
  box-shadow: 0 8px 24px rgba(5, 62, 51, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s, background-color 0.2s, box-shadow 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #0b5747;
  color: #fffdf7;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(5, 62, 51, 0.45);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "AkMilk Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.home-page {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -200px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--steppe);
  font-weight: 700;
  transition: top var(--fast) var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section--milk {
  background: var(--milk);
}

.section--green {
  background: var(--steppe);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-family: "AkMilk Display", "Arial Black", sans-serif;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

h2 {
  margin-bottom: 24px;
  font-family: "AkMilk Display", "Arial Black", sans-serif;
  font-size: clamp(31px, 3.6vw, 50px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.24;
}

.lede {
  max-width: 65ch;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.45;
}

.body-copy {
  max-width: 68ch;
}

.muted {
  color: rgba(55, 49, 44, 0.67);
}

.light-muted {
  color: rgba(255, 253, 247, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid var(--steppe);
  border-radius: 2px;
  background: var(--steppe);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.button::after {
  content: "→";
  transition: transform var(--fast) var(--ease);
}

.button:has(.button__arrow)::after,
.launch-notify-form__submit::after {
  content: none;
}

.button__arrow {
  display: inline-block;
  transition: transform var(--fast) var(--ease);
}

.button:hover .button__arrow,
.button:focus-visible .button__arrow {
  transform: translate(2px, -2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px);
}

.button:hover {
  background: #0a5143;
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--steppe);
}

.button--light:hover {
  background: var(--milk);
}

.button--secondary-hero {
  border: 1px solid rgba(246, 242, 232, 0.35);
  background: transparent;
  color: var(--paper);
}

.button--secondary-hero:hover {
  background: rgba(246, 242, 232, 0.12);
  border-color: rgba(246, 242, 232, 0.7);
  color: #ffffff;
}

.button--secondary {
  border: 1px solid rgba(5, 62, 51, 0.3);
  background: transparent;
  color: var(--steppe);
}

.button--secondary:hover {
  background: rgba(5, 62, 51, 0.08);
  border-color: var(--steppe);
}

.button--ghost {
  border-color: rgba(255, 253, 247, 0.55);
  background: transparent;
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 253, 247, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--steppe);
  text-decoration: underline;
  text-decoration-color: rgba(5, 62, 51, 0.4);
  text-underline-offset: 4px;
}

.text-link::after {
  content: "→";
  transition: transform var(--fast) var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.text-link:has([aria-hidden="true"])::after {
  content: none;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 84px;
  border-bottom: 1px solid rgba(247, 243, 233, 0.25);
  background: var(--steppe);
  color: var(--paper);
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 108px;
  border-bottom-color: rgba(247, 243, 233, 0.34);
  background: var(--steppe);
  color: var(--paper);
  backdrop-filter: none;
}

.site-header__inner,
.site-header__home-inner {
  display: grid;
  height: 100%;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) clamp(184px, 16vw, 240px) minmax(0, 1fr);
  align-items: stretch;
}

.desktop-nav,
.home-desktop-nav {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.desktop-nav a,
.home-desktop-nav a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(8px, 1.4vw, 22px);
  border-left: 1px solid rgba(247, 243, 233, 0.25);
  color: var(--paper);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background var(--base) var(--ease), color var(--base) var(--ease);
}

.home-page .desktop-nav a,
.home-page .home-desktop-nav a {
  padding: 12px clamp(10px, 1.5vw, 24px);
  font-size: clamp(13px, 1.12vw, 17px);
}

.desktop-nav--left a:first-child,
.home-desktop-nav--left a:first-child {
  border-left: 0;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"],
.home-desktop-nav a:hover,
.home-desktop-nav a:focus-visible,
.home-desktop-nav a[aria-current="page"] {
  background: rgba(247, 243, 233, 0.12);
}

.desktop-nav a[aria-current="page"],
.home-desktop-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 0 var(--paper);
}



.brand,
.brand--home {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  border-left: 1px solid rgba(247, 243, 233, 0.25);
}

.brand img,
.brand--home img {
  width: min(176px, 100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 243, 233, 0.54);
  border-radius: 2px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--base), opacity var(--base);
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 72px 0 0;
  display: grid;
  visibility: hidden;
  overflow-y: auto;
  align-content: start;
  padding: 34px var(--gutter) 48px;
  background: var(--steppe);
  color: var(--paper);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--base), transform var(--base), visibility 0s var(--base);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--soft-line);
}

.mobile-menu nav a {
  padding: 18px 8px 18px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: clamp(21px, 6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.mobile-menu__footer {
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}


.home-hero {
  position: relative;
  min-height: max(680px, 100svh);
  overflow: hidden;
  background: var(--steppe);
  color: var(--paper);
  isolation: isolate;
}

.home-hero__media {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  z-index: -2;
  will-change: transform;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 30, 25, 0.6) 0%, rgba(2, 30, 25, 0.36) 24%, rgba(2, 30, 25, 0.38) 60%, rgba(2, 30, 25, 0.72) 100%),
    linear-gradient(90deg, rgba(2, 30, 25, 0.45) 0%, rgba(2, 30, 25, 0.12) 65%, transparent 100%);
  pointer-events: none;
}

.home-hero__video,
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__video {
  object-position: center;
}

.home-hero__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
  z-index: 5;
}

.home-hero__top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero__top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-hero__motion {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 253, 247, 0.3);
  border-radius: var(--radius-control);
  background: rgba(2, 30, 25, 0.65);
  color: var(--paper);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              color var(--fast) var(--ease);
}

.home-hero__motion:hover {
  background: rgba(2, 30, 25, 0.9);
  border-color: rgba(255, 253, 247, 0.6);
}

.home-hero__motion:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: max(720px, 100svh);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 130px clamp(28px, 4.5vw, 80px) 24px;
  box-sizing: border-box;
}

.home-hero__headline-wrap {
  width: 100%;
  max-width: 1180px;
  margin-top: clamp(16px, 2.5vh, 32px);
  margin-bottom: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-control);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-tag--accent {
  background: rgba(246, 242, 232, 0.12);
  border: 1px solid rgba(246, 242, 232, 0.28);
  color: var(--milk);
}

.home-hero__category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 1.05vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sun);
  margin-bottom: 12px;
}

.home-hero__category-bullet {
  opacity: 0.5;
}

.home-hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-hero__title-product {
  display: block;
  font-family: "AkMilk Display", "Arial Black", sans-serif;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.home-hero__lead {
  max-width: 62ch;
  margin: 18px 0 22px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 253, 247, 0.92);
}

.home-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-control);
  background: rgba(5, 62, 51, 0.7);
  border: 1px solid rgba(246, 242, 232, 0.22);
  font-size: 12px;
  font-weight: 700;
  color: var(--milk);
  letter-spacing: 0.03em;
}

.benefit-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
}

.home-hero__bottom-wrap {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-status-beacon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border-radius: var(--radius-control);
  background: rgba(2, 30, 25, 0.65);
  border: 1px solid rgba(255, 253, 247, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(247, 243, 233, 0.92);
}

.beacon-dot,
.launch-beacon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 8px rgba(228, 174, 61, 0.6);
  animation: beaconPulse 2.4s infinite ease-in-out;
}

.home-hero__footer {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1.4fr);
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 243, 233, 0.28);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 233, 0.88);
}

.home-hero__footer p:first-child {
  justify-self: start;
  text-align: left;
}

.home-hero__footer p {
  margin: 0;
  line-height: 1.45;
}

.home-hero__footer-note {
  justify-self: center;
  text-align: center;
  color: rgba(247, 243, 233, 0.72);
  font-size: 11.5px;
}

.home-hero__footer p:last-child {
  justify-self: end;
  text-align: right;
}

/* Kinetic Entrance Cascade for Hero */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; box-shadow: 0 0 6px var(--sun); }
  50% { transform: scale(1.28); opacity: 1; box-shadow: 0 0 12px var(--sun), 0 0 16px rgba(228, 174, 61, 0.4); }
}

/* Cascading Entrance Animation — Guaranteed to run smoothly across all browsers */
.home-hero__top-bar {
  animation: heroFadeDown 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.home-hero__category-label {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.home-hero__title-product {
  animation: heroFadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.home-hero__lead {
  animation: heroFadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.home-hero__benefits {
  animation: heroFadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.home-hero__actions {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.home-hero__footer {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.68s both;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__top-bar,
  .home-hero__category-label,
  .home-hero__title-product,
  .home-hero__lead,
  .home-hero__benefits,
  .home-hero__actions,
  .home-hero__footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

html.has-gsap .home-hero__top-bar,
html.has-gsap .home-hero__category-label,
html.has-gsap .home-hero__title-product,
html.has-gsap .home-hero__lead,
html.has-gsap .home-hero__benefits,
html.has-gsap .home-hero__actions,
html.has-gsap .home-hero__footer {
  animation: none !important;
}

/* Staggered Scroll Reveal System */
.home-page [data-reveal-child] {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal-init {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-ready .reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal-child] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger-i, 0) * 140ms);
  will-change: opacity, transform;
}

.reveal-ready .is-revealed [data-reveal-child],
.reveal-ready [data-reveal-child].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.home-hero__link,
.home-proof__link,
.home-launch__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.34em;
}

.home-hero__link span,
.home-proof__link span,
.home-launch__link span {
  transition: transform var(--fast) var(--ease);
}

.home-hero__link:hover span,
.home-proof__link:hover span,
.home-launch__link:hover span {
  transform: translateX(4px);
}

/* Section: Mission & Creation Pathway */
.home-mission {
  padding-block: var(--section-desktop);
  background: var(--paper);
}

.home-mission__intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(28px, 3.5vw, 44px);
  margin-bottom: clamp(32px, 3.5vw, 48px);
}

.home-mission__header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 62, 51, 0.12);
}

.home-mission__mark,
.home-proof__mark {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--steppe);
}

.home-mission__slogan {
  margin: 0;
  color: var(--steppe);
  font-family: "AkMilk Display", "Arial Black", sans-serif;
  font-size: 14.5px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: right;
}

.home-mission__statement {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px clamp(36px, 5vw, 72px);
  align-items: start;
}

.home-mission__statement h2 {
  margin: 0;
  color: var(--steppe);
  font-family: "AkMilk Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-mission__lead-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 4px;
}

.home-mission__lead-text {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
  color: rgba(55, 49, 44, 0.85);
}

.home-mission__statement .text-link {
  font-weight: 700;
  color: var(--steppe);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  perspective: 1200px;
}

.mission-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(32px, 3vw, 42px);
  border: 1px solid rgba(5, 62, 51, 0.08);
  box-shadow: 0 10px 30px rgba(5, 62, 51, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  overflow: hidden;
}

.mission-card:hover {
  border-color: rgba(5, 62, 51, 0.22);
  box-shadow: 0 24px 56px rgba(5, 62, 51, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
}

.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: overlay;
  z-index: 10;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    480px circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 80%
  );
}

.mission-card:hover .card-glare,
.source-scene:hover .card-glare,
.home-proof__media:hover .card-glare {
  opacity: 1;
}

.mission-card__badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mission-card__num {
  font-family: "AkMilk Display", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--steppe);
  line-height: 1;
  letter-spacing: -0.02em;
}

.mission-card__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(5, 62, 51, 0.06);
  border: 1px solid rgba(5, 62, 51, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steppe);
}

.mission-card__title {
  font-family: "AkMilk Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 12px;
}

.mission-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(55, 49, 44, 0.8);
  margin: 0 0 24px;
  flex-grow: 1;
}

.mission-card__footer {
  border-top: 1px solid rgba(5, 62, 51, 0.08);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
}

/* Section: Three Sources of Milk */
.home-sources {
  overflow: hidden;
  padding-block: var(--section-desktop);
  background: var(--steppe);
  color: var(--paper);
}

.home-sources__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(32px, 3.5vw, 48px);
}

.home-sources__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 12px;
}

.home-sources__heading h2,
.home-sources__heading p {
  margin-bottom: 0;
}

.home-sources__heading h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: #ffffff;
}

.home-sources__heading p {
  max-width: 48ch;
  color: rgba(255, 253, 247, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.home-sources__gallery {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  perspective: 1200px;
}

.source-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #032b23;
  border: 1px solid rgba(246, 242, 232, 0.16);
  text-decoration: none;
  color: var(--milk);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.source-scene:hover {
  border-color: rgba(228, 174, 61, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 24px rgba(228, 174, 61, 0.2);
}

.source-scene__media {
  position: relative;
  height: clamp(340px, 30vw, 460px);
  overflow: hidden;
  background: #021a15;
}

.source-scene__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-scene__floating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 62, 51, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(246, 242, 232, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.source-scene--mare img {
  object-position: 33% center;
}

.source-scene--goat img {
  object-position: 51% center;
}

.source-scene--camel img {
  object-position: 49% center;
}

.source-scene__caption {
  padding: 24px 26px;
  background: #04362c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(246, 242, 232, 0.1);
  flex-grow: 1;
}

.source-scene__caption-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.source-scene__name {
  display: block;
  font-family: "AkMilk Display", sans-serif;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.15;
}

.source-scene__desc {
  display: block;
  font-size: 13.5px;
  color: rgba(246, 242, 232, 0.8);
  line-height: 1.45;
}

.source-scene__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(246, 242, 232, 0.12);
  border: 1px solid rgba(246, 242, 232, 0.22);
  color: var(--milk);
  font-size: 18px;
  flex-shrink: 0;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.source-scene:hover .source-scene__arrow {
  background: var(--milk);
  color: var(--steppe);
}

.home-sources__action {
  margin-top: clamp(32px, 3.5vw, 48px);
}

/* Section: Science & Proof */
.home-proof {
  padding-block: var(--section-desktop);
  background: var(--milk);
}

.home-proof__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.home-proof__media {
  position: relative;
  height: clamp(440px, 42vw, 560px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(5, 62, 51, 0.16);
  border: 1px solid rgba(5, 62, 51, 0.08);
}

.home-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-proof__media:hover img {
  transform: scale(1.04);
}

.home-proof__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home-proof__copy-lead h2 {
  max-width: none;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.16;
  color: var(--steppe);
  letter-spacing: -0.02em;
}

.home-proof__lead-text {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(55, 49, 44, 0.82);
  margin: 0;
}

.home-proof__pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 26px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(5, 62, 51, 0.08);
  box-shadow: 0 6px 20px rgba(5, 62, 51, 0.04);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.proof-pillar:hover {
  border-color: rgba(5, 62, 51, 0.22);
  box-shadow: 0 12px 32px rgba(5, 62, 51, 0.1);
}

.proof-pillar__idx {
  font-family: "AkMilk Display", sans-serif;
  font-size: 20px;
  color: var(--steppe);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.proof-pillar strong {
  display: block;
  font-size: 16px;
  color: var(--steppe);
  margin-bottom: 6px;
  line-height: 1.3;
}

.proof-pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(55, 49, 44, 0.76);
}

.home-proof__action {
  margin-top: 6px;
}

/* Section: Launch Status & Contacts */
.home-launch {
  padding-block: var(--section-desktop);
  border-top: 1px solid var(--line);
  background: var(--milk);
  color: var(--steppe);
}

.home-launch__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.home-launch__beacon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.home-launch__mark {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steppe);
}

.home-launch h2 {
  max-width: 16ch;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.home-launch__col-info > p {
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(55, 49, 44, 0.8);
  margin-bottom: 28px;
}

.launch-notify-form {
  max-width: 520px;
  margin-bottom: 34px;
}

.launch-notify-form__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steppe);
  margin-bottom: 10px;
}

.launch-notify-form__field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid rgba(5, 62, 51, 0.2);
  border-radius: var(--radius-control);
  padding: 4px 4px 4px 14px;
  box-shadow: none;
  transition: border-color var(--fast) var(--ease);
}

.launch-notify-form__field:focus-within {
  border-color: var(--steppe);
  outline: 2px solid rgba(5, 62, 51, 0.2);
}

.launch-notify-form__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  padding: 0;
}

.launch-notify-form__input::placeholder {
  color: rgba(55, 49, 44, 0.45);
}

.launch-notify-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--steppe);
  border-radius: var(--radius-control);
  background: var(--steppe);
  color: var(--paper);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 20px;
  cursor: pointer;
  white-space: nowrap;
  height: 48px;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}

.launch-notify-form__submit:hover {
  background: #0a5143;
}

.launch-notify-form__note {
  font-size: 12px;
  color: rgba(55, 49, 44, 0.62);
  margin: 8px 0 0 4px;
}

.launch-notify-form__success {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-control);
  background: rgba(5, 62, 51, 0.08);
  border: 1px solid var(--steppe);
  color: var(--steppe);
  font-size: 14px;
}

.home-launch__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.home-launch__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-launch__contacts-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(55, 49, 44, 0.62);
}

.launch-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(5, 62, 51, 0.08);
  box-shadow: 0 6px 20px rgba(5, 62, 51, 0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.launch-contact-card:not(.launch-contact-card--static):hover {
  box-shadow: 0 16px 36px rgba(5, 62, 51, 0.12);
  border-color: rgba(5, 62, 51, 0.22);
}

.launch-contact-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(55, 49, 44, 0.6);
}

.launch-contact-card__val {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: var(--steppe);
  line-height: 1.35;
}

/* Shared content compositions used by inner routes */

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

.mission-statement {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(25px, 3.2vw, 43px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.mission-facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.mission-fact {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mission-fact strong,
.mission-fact span {
  display: block;
}

.mission-fact strong {
  font-size: 16px;
}

.mission-fact span {
  margin-top: 3px;
  color: rgba(55, 49, 44, 0.68);
  font-size: 14px;
}

.science-portal {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  background: var(--steppe);
  color: var(--paper);
}

.science-portal__media {
  position: relative;
  min-width: 0;
  min-height: 520px;
}

.science-portal__copy {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: clamp(38px, 4vw, 60px);
}

.science-portal__copy h2 {
  max-width: 14ch;
  font-size: clamp(30px, 2.65vw, 40px);
  line-height: 1.18;
}

.science-portal__copy > p:not(.eyebrow) {
  max-width: 44ch;
}

.launch-panel {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  padding: clamp(38px, 6vw, 78px);
  background: var(--steppe);
  color: var(--paper);
}

.launch-panel h2 {
  max-width: 12ch;
}

.contact-list {
  display: grid;
  border-top: 1px solid var(--soft-line);
}

.contact-list a,
.contact-list span {
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--paper);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  text-decoration: none;
}

/* Inner pages */

.page-hero {
  padding-block: clamp(68px, 8vw, 108px) clamp(56px, 6vw, 82px);
  background: var(--milk);
}

.page-hero--catalog {
  padding-block: clamp(54px, 6vw, 76px) clamp(38px, 4vw, 52px);
}

.page-hero--image {
  position: relative;
  min-height: clamp(520px, 64vw, 680px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--steppe);
  color: var(--paper);
  isolation: isolate;
}

.page-hero--image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 40, 33, 0.76), rgba(7, 40, 33, 0.06) 72%);
  content: "";
}

.page-hero--image .page-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero__copy {
  max-width: 820px;
}

.page-hero--image .container {
  padding-block: 84px 54px;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
}

.breadcrumbs a {
  color: inherit;
}

.facts-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.fact {
  min-width: 0;
  padding: 21px 22px;
  border-left: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.2;
}

.fact span {
  margin-top: 5px;
  color: rgba(55, 49, 44, 0.66);
  font-size: 13px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 0.68fr);
  align-items: start;
  gap: clamp(36px, 8vw, 110px);
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  border-top: 1px solid var(--line);
}

.side-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 66px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 38px;
}

.prose li + li {
  margin-top: 9px;
}

.notice {
  margin-block: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--sun);
  background: var(--milk);
}

.notice p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

.product-card {
  min-width: 0;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  outline: none;
}

.product-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(55, 49, 44, 0.12);
  border-radius: inherit;
  background: #efe9dc;
  isolation: isolate;
  transition: border-color 220ms var(--ease), transform 420ms var(--ease);
}

.product-card:nth-child(4n + 2) .product-stage {
  background: #e1e8df;
}

.product-card:nth-child(4n + 3) .product-stage {
  background: #eadfce;
}

.product-card:nth-child(4n) .product-stage {
  background: #e7e3d9;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.62);
  filter: blur(18px);
  content: "";
}

.product-figure {
  position: relative;
  display: grid;
  width: 52%;
  height: 62%;
  place-items: center;
  background: #18312b;
  color: rgba(255, 253, 247, 0.9);
  font-family: "AkMilk Display", sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  filter: drop-shadow(0 18px 24px rgba(24, 49, 43, 0.14));
  transition: transform 420ms var(--ease);
}

.product-figure--sculpted {
  border-radius: 48% 42% 25% 30% / 32% 39% 23% 28%;
}

.product-figure--sculpted::after {
  position: absolute;
  bottom: -24px;
  left: calc(50% - 8px);
  width: 16px;
  height: 30px;
  border-radius: 0 0 8px 8px;
  background: #18312b;
  content: "";
}

.product-card:hover .product-stage {
  border-color: rgba(24, 49, 43, 0.28);
  transform: translateY(-3px);
}

.product-card:hover .product-figure {
  transform: translateY(-4px) rotate(-0.6deg);
}

.product-card:nth-child(2n) .product-figure--sculpted {
  border-radius: 38% 52% 28% 35% / 37% 32% 30% 24%;
}

.product-card:nth-child(3n) .product-figure--sculpted {
  border-radius: 52% 40% 33% 22% / 29% 41% 25% 35%;
}

.product-figure--cone {
  width: 60%;
  height: 64%;
  clip-path: polygon(16% 0, 84% 0, 52% 100%, 46% 100%);
}

.product-figure--cup {
  width: 62%;
  height: 54%;
  clip-path: polygon(8% 0, 92% 0, 78% 100%, 22% 100%);
}

.product-figure--sandwich {
  width: 64%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
}

.catalog-gallery {
  padding-top: 20px;
}

.catalog-gallery__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 34px;
}

.milk-chapters {
  display: grid;
  gap: 22px;
}

.milk-chapter {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  background: var(--milk);
}

.milk-chapter:nth-child(even) {
  grid-template-columns: minmax(340px, 5fr) minmax(0, 7fr);
}

.milk-chapter:nth-child(even) .milk-chapter__media {
  order: 2;
}

.milk-chapter__media {
  position: relative;
  min-height: 480px;
}

.milk-chapter__copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.milk-chapter__copy h2 {
  font-size: clamp(31px, 3vw, 44px);
}

.diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 14px;
}

.diagram__node {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.diagram__node span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.diagram__node strong {
  max-width: 18ch;
  font-size: 18px;
  line-height: 1.25;
}

.document-index {
  display: grid;
  border-top: 1px solid var(--line);
}

.stacked-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 48px 21px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 2px;
  content: "+";
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 72ch;
  padding: 0 54px 21px 0;
}

.faq-list details p:last-child {
  margin-bottom: 0;
}

.document-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.document-row span:first-child {
  color: rgba(55, 49, 44, 0.62);
  font-size: 13px;
}

.document-row strong {
  line-height: 1.3;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(55, 49, 44, 0.38);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
}

/* Footer */

.site-footer {
  padding-block: 56px 28px;
  background: #022d25;
  color: var(--paper);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--soft-line);
}

.site-footer__brand {
  width: 170px;
  margin-bottom: 22px;
}

.site-footer__brand[src*="green"] {
  filter: brightness(0) invert(1);
}

.site-footer__title {
  margin-bottom: 14px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 9px;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: rgba(255, 253, 247, 0.58);
  font-size: 12px;
}

.site-footer__attribution {
  max-width: 1050px;
  margin: 0;
  padding-block: 24px;
  border-bottom: 1px solid var(--soft-line);
  color: rgba(255, 253, 247, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 22px;
  }

  .brand {
    width: 144px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 64px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    inset: 64px 0 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: max(680px, 100svh);
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 104px var(--gutter) 24px;
  }

  .home-hero__headline-wrap {
    max-width: 720px;
  }

  .home-hero__title-primary {
    font-size: clamp(50px, 8.4vw, 68px);
  }

  .home-hero__title-secondary {
    font-size: clamp(29px, 5vw, 40px);
  }

  .home-mission__intro,
  .home-sources__heading,
  .home-proof__copy,
  .home-launch__inner,
  .content-grid,
  .milk-chapter,
  .milk-chapter:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .home-mission__intro,
  .home-sources__heading,
  .home-proof__copy,
  .home-launch__inner {
    gap: 28px;
  }

  .home-mission__statement h2 {
    max-width: 18ch;
  }

  .home-sources__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .source-scene {
    min-height: 500px;
  }

  .source-scene > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .facts-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milk-chapter:nth-child(even) .milk-chapter__media {
    order: 0;
  }

  .milk-chapter__media {
    min-height: 430px;
  }

  .diagram {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(36px, 10.4vw, 54px);
  }

  h2 {
    font-size: clamp(29px, 8.5vw, 40px);
  }

  .home-hero,
  .home-hero__inner {
    min-height: max(640px, 100svh);
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 22px;
  }

  .home-hero__actions .button {
    width: auto;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .mobile-menu nav {
    grid-template-columns: 1fr;
  }

  .mobile-menu nav a {
    padding-block: 13px;
    font-size: 23px;
  }

  .mobile-menu__footer {
    grid-template-columns: 1fr;
  }

  .facts-rail {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(3) {
    min-height: 62px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact:first-child {
    border-top: 0;
  }

  .home-mission {
    padding-block: 64px 58px;
  }

  .home-mission__intro {
    gap: 14px;
  }

  .home-mission__slogan {
    margin-top: 28px;
    font-size: 25px;
  }

  .home-mission__statement h2 {
    max-width: none;
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .home-mission__statement > p {
    font-size: 17px;
  }

  .home-mission__route {
    display: grid;
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .home-mission__route li,
  .home-mission__route li:first-child {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-mission__route li:first-child {
    border-top: 0;
  }

  .home-sources {
    padding-block: 58px 62px;
  }

  .home-sources__heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .home-sources__heading h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .home-sources__gallery {
    width: calc(100% - 20px);
    margin-left: 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .source-scene {
    min-height: 360px;
  }

  .source-scene img {
    max-height: 295px;
  }

  .source-scene > span {
    align-items: baseline;
    flex-direction: row;
    padding: 14px 20px 14px;
    font-size: 29px;
    line-height: 1.18;
  }

  .home-sources__action {
    margin-top: 34px;
  }

  .home-proof {
    padding-block: 64px 58px;
  }

  .home-proof__stage {
    width: 100%;
    padding-bottom: 0;
  }

  .home-proof__media {
    height: 330px;
  }

  .home-proof__media img {
    object-position: center;
  }

  .home-proof__copy {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 40px);
    margin: -24px auto 0;
    padding: 30px 24px 34px;
  }

  .home-proof__copy h2 {
    max-width: none;
    overflow-wrap: normal;
    font-size: clamp(26px, 7.5vw, 32px);
    letter-spacing: -0.04em;
  }

  .home-launch {
    padding-block: 64px;
  }

  .home-launch h2 {
    font-size: clamp(38px, 10.5vw, 46px);
  }

  .home-launch__contacts {
    margin-top: 12px;
  }

  .science-portal__copy,
  .launch-panel,
  .milk-chapter__copy {
    padding: 34px 24px;
  }

  .science-portal__copy h2 {
    font-size: clamp(28px, 7.4vw, 32px);
  }

  .science-portal__media,
  .milk-chapter__media {
    min-height: 360px;
  }

  .page-hero {
    padding-block: 56px;
  }

  .page-hero--image {
    min-height: 580px;
  }

  .page-hero--image .container {
    padding-block: 64px 48px;
  }

  .side-nav,
  .card-grid,
  .product-grid,
  .field-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .side-nav {
    gap: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-figure {
    width: 50%;
    font-size: clamp(34px, 12vw, 46px);
  }

  .document-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .field--wide {
    grid-column: auto;
  }

  .site-footer__top > div:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Responsive layout for Home and shared components */

@media (max-width: 900px) {
  .home-page .site-header {
    height: 72px;
  }

  .home-page .site-header__inner {
    padding-inline: var(--gutter);
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .home-page .desktop-nav {
    display: none;
  }

  .home-page .brand {
    width: 150px;
    padding: 0;
    border: 0;
  }

  .home-page .menu-toggle {
    display: inline-flex;
  }

  .home-page .mobile-menu {
    inset: 72px 0 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: max(640px, 100svh);
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(calc(100% - (2 * var(--gutter))), var(--content));
    margin-inline: auto;
    padding: 96px 0 24px;
  }

  .home-hero__headline-wrap {
    max-width: 720px;
    margin-top: 14px;
    margin-bottom: auto;
  }

  .home-hero__footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 20px;
  }

  .home-hero__footer p:first-child {
    grid-column: 1 / -1;
  }

  .home-hero__footer p:last-child {
    grid-column: 2;
  }

  .home-sources__gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-proof__stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-proof__media {
    height: 340px;
  }

  .home-launch__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .home-page .site-header {
    height: 64px;
  }

  .home-page .brand {
    width: 136px;
  }

  .home-page .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .home-page .mobile-menu {
    inset: 64px 0 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: max(560px, 100svh);
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(calc(100% - (2 * var(--gutter))), var(--content));
    margin-inline: auto;
    padding: 84px 0 20px;
  }

  .home-hero__top-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .home-hero__top-right {
    gap: 8px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .hero-status-beacon {
    font-size: 11px;
    padding: 4px 10px;
  }

  .home-hero__headline-wrap {
    margin-top: 10px;
    margin-bottom: auto;
  }

  .home-hero__category-label {
    font-size: 11px;
    gap: 6px;
    margin-bottom: 8px;
  }

  .home-hero__title-product {
    font-size: clamp(28px, 8.2vw, 42px);
    line-height: 1.1;
  }

  .home-hero__lead {
    font-size: 14px;
    line-height: 1.55;
    margin: 12px 0 16px;
  }

  .home-hero__benefits {
    gap: 6px;
    margin-bottom: 12px;
  }

  .benefit-chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  .home-hero__bottom-wrap {
    gap: 16px;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-hero__motion {
    min-height: 32px;
    padding: 5px 11px;
    font-size: 11px;
    gap: 5px;
  }

  .home-hero__footer {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 14px;
    text-align: left;
  }

  .home-hero__footer p {
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .home-hero__footer p:last-child {
    justify-self: start;
    text-align: left;
  }

  .home-hero__footer-note {
    text-align: left;
  }

  .home-mission {
    padding-block: var(--section-mobile);
  }

  .home-mission__intro {
    gap: 20px;
  }

  .home-mission__header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .home-mission__statement {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-mission__statement h2 {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.2;
  }

  .home-mission__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .mission-card {
    padding: 24px 20px 20px;
  }

  .home-sources {
    padding-block: var(--section-mobile);
  }

  .home-sources__heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .home-sources__heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .home-sources__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .source-scene__media {
    height: 280px;
  }

  .source-scene__caption {
    padding: 16px 18px;
  }

  .home-sources__action {
    margin-top: 28px;
  }

  .home-sources__action .button {
    width: 100%;
    justify-content: center;
  }

  .home-proof {
    padding-block: var(--section-mobile);
  }

  .home-proof__stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-proof__media {
    height: 280px;
  }

  .home-proof__copy-lead h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .home-launch {
    padding-block: var(--section-mobile);
  }

  .home-launch__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-launch h2 {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .launch-notify-form {
    max-width: 100%;
  }

  .launch-notify-form__field {
    flex-direction: column;
    align-items: stretch;
    padding: 6px;
    gap: 8px;
  }

  .launch-notify-form__input {
    height: 44px;
    padding: 4px 8px;
    font-size: 15px;
  }

  .launch-notify-form__submit {
    width: 100%;
    justify-content: center;
    height: 48px;
  }

  .home-launch__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .home-launch__cta-row .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
