/* =========================================================
   onthego — design system v2
   Editorial, photo-led, lifestyle-premium
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --chartreuse:       #C8D958;
  --chartreuse-soft:  #DCE890;
  --chartreuse-deep:  #A8B847;
  --kale:             #1F4028;
  --kale-deep:        #0F2818;
  --kale-soft:        #2B5235;
  --oat:              #E8DCC4;
  --oat-light:        #F0E8D4;
  --milk:             #F5F0E1;
  --white:            #FCFAF5;
  --pepper:           #0A0A0A;
  --ink:              #1A1A1A;
  --ink-soft:         #4A4A4A;

  --font-display: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:    'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(56px, 7vw, 96px);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}
.eyebrow.no-line::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -0.025em;
  font-size: clamp(54px, 9vw, 144px);
}
.display em { font-style: italic; font-weight: 300; }

.headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  font-size: clamp(36px, 6vw, 88px);
}
.headline em { font-style: italic; font-weight: 300; }

.subhead {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.01em;
}
.subhead em { font-style: italic; font-weight: 300; }

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- pill pattern ---------- */
.pill-pattern {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='currentColor' stroke-width='1' opacity='0.5'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-repeat: repeat;
  background-size: 240px 130px;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; position: relative; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--white);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(15, 40, 24, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.site-header.light-bg {
  background: rgba(252, 250, 245, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--kale-deep);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1;
  color: inherit;
}
.logo-pill {
  width: 26px;
  height: 16px;
  margin-left: -2px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 14px;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity .2s var(--ease);
}
.nav-links a:hover { opacity: .7; }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: currentColor;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--chartreuse);
  color: var(--kale-deep);
}
.btn--primary:hover { background: var(--white); transform: translateY(-1px); }

.btn--kale {
  background: var(--kale-deep);
  color: var(--white);
}
.btn--kale:hover { background: var(--chartreuse); color: var(--kale-deep); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(252, 250, 245, .5);
}
.btn--ghost:hover { background: var(--white); color: var(--kale-deep); }

.btn--small { padding: 10px 18px; font-size: 13px; }

/* ===============================================================
   HERO — Full-bleed photography with overlay
   =============================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 40, 24, .45) 0%, rgba(15, 40, 24, .25) 40%, rgba(15, 40, 24, .85) 100%),
    linear-gradient(90deg, rgba(15, 40, 24, .55) 0%, transparent 50%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(252, 250, 245, .65);
}
.hero__top .pill-tag {
  padding: 8px 16px;
  border: 1px solid rgba(252, 250, 245, .25);
  border-radius: 999px;
  background: rgba(15, 40, 24, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -0.025em;
  font-size: clamp(56px, 9vw, 140px);
  color: var(--white);
}
.hero__headline em { font-style: italic; font-weight: 300; color: var(--chartreuse); }

.hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(252, 250, 245, .85);
  max-width: 36ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ===============================================================
   MARQUEE
   =============================================================== */
.marquee {
  background: var(--chartreuse);
  color: var(--kale-deep);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(31, 64, 40, .12);
  border-bottom: 1px solid rgba(31, 64, 40, .12);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__item::after {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--kale-deep);
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 28px)); }
}

/* ===============================================================
   THE MOMENT — text + image side by side
   =============================================================== */
.moment {
  background: var(--milk);
  padding: var(--section-y) 0;
}
.moment__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.moment__copy { padding-right: clamp(0px, 4vw, 60px); }
.moment__copy .eyebrow { color: var(--kale); margin-bottom: 28px; }
.moment__copy .headline { color: var(--kale-deep); margin-bottom: 32px; max-width: 13ch; }
.moment__copy .lede { color: var(--kale); margin-bottom: 28px; max-width: 44ch; }
.moment__copy .subhead { color: var(--kale-deep); max-width: 14ch; }
.moment__copy .subhead em { color: var(--chartreuse-deep); }

.moment__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}
.moment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===============================================================
   MACHINES — two cards with hero brand mockups
   =============================================================== */
.machines {
  padding: var(--section-y) 0;
  background: var(--white);
}
.machines__head {
  max-width: var(--max-width);
  margin: 0 auto clamp(56px, 7vw, 88px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.machines__head .eyebrow { color: var(--ink-soft); margin-bottom: 16px; }
.machines__head .headline em { color: var(--chartreuse-deep); }

.machines__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
}

.machine-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: var(--milk);
  transition: transform .4s var(--ease);
}
.machine-card:hover { transform: translateY(-4px); }

.machine-card__visual {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--milk) 0%, var(--oat-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  isolation: isolate;
}
.machine-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%231F4028' stroke-width='1' opacity='0.13'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 220px 120px;
  z-index: 0;
}
.machine-card__visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(31, 64, 40, 0.18));
}
.machine-card__visual--protein {
  background: linear-gradient(155deg, var(--chartreuse-soft) 0%, var(--milk) 65%);
}
.machine-card__visual--protein::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%231F4028' stroke-width='1' opacity='0.16'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
}
.machine-card__visual--snack {
  background: linear-gradient(155deg, var(--kale) 0%, var(--kale-deep) 100%);
}
.machine-card__visual--snack::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%23C8D958' stroke-width='1' opacity='0.18'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
}
.machine-card__visual--snack img {
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
}

.machine-card__body {
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.machine-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--kale);
}
.machine-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--kale-deep);
}
.machine-card h3 em { font-style: italic; font-weight: 300; color: var(--chartreuse-deep); }
.machine-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
  max-width: 42ch;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--kale);
  font-size: 12px;
  color: var(--kale);
  letter-spacing: .01em;
}

/* ===============================================================
   FULL-BLEED BANNER (lifestyle interstitial)
   =============================================================== */
.banner {
  position: relative;
  height: 75vh;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 40, 24, .25) 0%, transparent 30%, rgba(15, 40, 24, .8) 100%),
    linear-gradient(90deg, rgba(15, 40, 24, .65) 0%, transparent 60%);
  z-index: 1;
}
.banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.banner__content .eyebrow { color: var(--chartreuse); margin-bottom: 20px; }
.banner__content .eyebrow::before { background: var(--chartreuse); }
.banner__content .headline { color: var(--white); max-width: 18ch; }
.banner__content .headline em { color: var(--chartreuse); }
.banner__content .lede { color: rgba(252,250,245,.85); margin-top: 28px; max-width: 52ch; }

/* ===============================================================
   HOW IT WORKS
   =============================================================== */
.how {
  background: var(--kale-deep);
  color: var(--white);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%23C8D958' stroke-width='1' opacity='0.07'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 320px 175px;
  z-index: -1;
}
.how__head {
  max-width: var(--max-width);
  margin: 0 auto clamp(56px, 7vw, 88px);
  padding: 0 var(--gutter);
  max-width: 70ch;
}
.how__head .eyebrow { color: var(--chartreuse); margin-bottom: 16px; }
.how__head .eyebrow::before { background: var(--chartreuse); }
.how__head .headline { color: var(--white); }
.how__head .headline em { color: var(--chartreuse); }
.how__head .lede { color: rgba(252,250,245,.7); margin-top: 24px; max-width: 50ch; }

.steps {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.step { display: flex; flex-direction: column; gap: 18px; padding-top: 24px; border-top: 1px solid rgba(252,250,245,.18); }
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(88px, 11vw, 168px);
  line-height: .85;
  color: var(--chartreuse);
  letter-spacing: -0.04em;
  margin: -8px 0 8px;
}
.step__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--chartreuse);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
}
.step p {
  color: rgba(252,250,245,.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}

/* ===============================================================
   WHERE IT LIVES — 4-card grid
   =============================================================== */
.where {
  background: var(--oat);
  padding: var(--section-y) 0;
}
.where__head {
  max-width: var(--max-width);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.where__head .eyebrow { color: var(--kale); margin-bottom: 16px; }
.where__head .headline { color: var(--kale-deep); max-width: 22ch; }
.where__head .headline em { color: var(--chartreuse-deep); }

.where__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.where-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.where-card__visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.where-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease);
}
.where-card:hover .where-card__visual img { transform: scale(1.04); }
.where-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, transparent 30%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.where-card__visual-label {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 12px;
  background: rgba(15, 40, 24, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.where-card__visual-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: .98;
  color: var(--white);
  letter-spacing: -0.015em;
}
.where-card__chip {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--kale);
  color: var(--kale);
}
.where-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.005em;
  color: var(--kale-deep);
}
.where-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ===============================================================
   BRAND STATEMENT
   =============================================================== */
.statement {
  background: var(--oat-light);
  color: var(--kale-deep);
  padding: calc(var(--section-y) * 1.1) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%231F4028' stroke-width='1' opacity='0.08'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 360px 195px;
  z-index: -1;
}
.statement .container { text-align: center; }
.statement .eyebrow { color: var(--kale); justify-content: center; margin-bottom: 28px; }
.statement .eyebrow::before { background: var(--kale); }
.statement .headline { max-width: 18ch; margin: 0 auto; }
.statement .headline em { color: var(--chartreuse-deep); }
.statement .lede { margin: 32px auto 0; color: var(--kale); }

/* ===============================================================
   FINAL CTA
   =============================================================== */
.cta {
  background: var(--chartreuse);
  color: var(--kale-deep);
  padding: var(--section-y) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%231F4028' stroke-width='1' opacity='0.18'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 280px 152px;
  z-index: -1;
}
.cta__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.cta__display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 12vw, 200px);
  line-height: .85;
  color: var(--white);
  letter-spacing: -0.035em;
}
.cta__display em { font-style: italic; font-weight: 300; }
.cta__panel { max-width: 36ch; }
.cta__panel .eyebrow { color: var(--kale-deep); margin-bottom: 20px; }
.cta__panel p { margin: 0 0 24px; line-height: 1.55; }
.cta__contact {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--kale);
  text-transform: uppercase;
}

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer {
  background: var(--kale-deep);
  color: rgba(252, 250, 245, .75);
  padding: clamp(64px, 8vw, 110px) 0 32px;
}
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.footer__brand .logo {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 24px;
}
.footer__brand p {
  max-width: 32ch;
  line-height: 1.6;
  font-size: 14px;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--chartreuse);
  font-weight: 400;
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 10px; font-size: 14px; }
.footer__col ul li a { transition: color .2s var(--ease); }
.footer__col ul li a:hover { color: var(--chartreuse); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
  border-top: 1px solid rgba(252, 250, 245, .12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(252, 250, 245, .5);
}

/* ===============================================================
   PAGE HEROES (inner pages)
   =============================================================== */
.page-hero {
  background: var(--kale-deep);
  color: var(--white);
  padding: calc(var(--section-y) + 60px) 0 var(--section-y);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%23C8D958' stroke-width='1' opacity='0.12'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 280px 152px;
  z-index: -1;
}
.page-hero .eyebrow { color: var(--chartreuse); margin-bottom: 20px; }
.page-hero .eyebrow::before { background: var(--chartreuse); }
.page-hero .display { color: var(--white); max-width: 16ch; }
.page-hero .display em { color: var(--chartreuse); }
.page-hero .lede { color: rgba(252, 250, 245, .78); margin-top: 32px; }

/* ===============================================================
   ABOUT, MACHINES, PARTNERS, CONTACT — basic scaffolding
   (carried from v1; will get photo treatments later)
   =============================================================== */
.story { padding: var(--section-y) 0; background: var(--white); }
.story__grid { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.story__grid .eyebrow { margin-bottom: 24px; }
.story__body { display: flex; flex-direction: column; gap: 24px; max-width: 64ch; }
.story__body p { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--ink); }
.story__body p strong { color: var(--kale-deep); font-weight: 500; }

.founders { background: var(--oat); padding: var(--section-y) 0; }
.founders__head { max-width: var(--max-width); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--gutter); text-align: center; }
.founders__head .eyebrow { justify-content: center; }
.founders__grid { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.founder-card { background: var(--white); border-radius: 28px; padding: clamp(28px, 3.5vw, 56px); display: flex; flex-direction: column; gap: 24px; }
.founder-card__avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(140deg, var(--chartreuse), var(--kale-soft)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 42px; color: var(--white); letter-spacing: -0.02em; }
.founder-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); letter-spacing: -0.01em; }
.founder-card__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--kale); }
.founder-card p { color: var(--ink-soft); line-height: 1.6; }

.pillars { background: var(--milk); padding: var(--section-y) 0; }
.pillars__grid { max-width: var(--max-width); margin: clamp(40px, 5vw, 64px) auto 0; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.pillar { display: flex; flex-direction: column; gap: 16px; padding: clamp(24px, 3vw, 40px) 0; border-top: 1px solid rgba(31, 64, 40, .15); }
.pillar__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--kale); }
.pillar h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.01em; }
.pillar h3 em { font-style: italic; font-weight: 300; }
.pillar p { color: var(--ink-soft); line-height: 1.6; font-size: 15px; }

.signals { background: var(--white); padding: var(--section-y) 0; }
.signals__head { max-width: var(--max-width); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--gutter); max-width: 60ch; }
.signals__grid { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.signal { display: flex; flex-direction: column; gap: 12px; padding: clamp(28px, 3vw, 40px) 0; border-top: 1px solid rgba(31, 64, 40, .2); }
.signal__stat { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(56px, 7vw, 104px); line-height: .9; color: var(--chartreuse-deep); letter-spacing: -0.03em; }
.signal__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--kale); }
.signal p { color: var(--ink-soft); line-height: 1.55; font-size: 15px; margin-top: 4px; }
.signal__source { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; opacity: .7; }

.value-prop { background: var(--kale-deep); color: var(--white); padding: var(--section-y) 0; position: relative; isolation: isolate; overflow: hidden; }
.value-prop::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%23C8D958' stroke-width='1' opacity='0.08'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>"); background-size: 300px 162px; z-index: -1; }
.value-prop__head { max-width: var(--max-width); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--gutter); max-width: 60ch; }
.value-prop__head .eyebrow { color: var(--chartreuse); }
.value-prop__head .eyebrow::before { background: var(--chartreuse); }
.value-prop__head .lede { color: rgba(252, 250, 245, .78); }
.value-list { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(40px, 5vw, 80px); }
.value-item { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid rgba(252, 250, 245, .12); }
.value-item__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .24em; color: var(--chartreuse); }
.value-item h4 { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 1.7vw, 26px); margin-bottom: 8px; letter-spacing: -0.005em; }
.value-item h4 em { font-style: italic; font-weight: 300; color: var(--chartreuse); }
.value-item p { color: rgba(252, 250, 245, .7); font-size: 15px; line-height: 1.6; max-width: 32ch; }

.contact-grid { max-width: var(--max-width); margin: 0 auto; padding: var(--section-y) var(--gutter); display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-grid .eyebrow { margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; }
.contact-block a, .contact-block p { font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 1.6vw, 24px); color: var(--kale-deep); letter-spacing: -0.005em; line-height: 1.3; }
.contact-form { background: var(--milk); border-radius: 28px; padding: clamp(28px, 3.5vw, 56px); display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea { font-family: var(--font-body); font-size: 15px; padding: 14px 16px; background: var(--white); border: 1px solid rgba(31, 64, 40, .12); border-radius: 12px; color: var(--ink); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--kale); }
.form-row textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 980px) {
  .hero { height: auto; min-height: 100vh; padding-bottom: 60px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .moment__grid { grid-template-columns: 1fr; }
  .machines__head { grid-template-columns: 1fr; }
  .machines__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .where__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta__grid { grid-template-columns: 1fr; align-items: start; }
  .value-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .founders__grid { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .signals__grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    inset: 60px 0 0;
    background: var(--milk);
    flex-direction: column;
    gap: 4px;
    padding: 40px var(--gutter);
    transform: translateY(-100%);
    transition: transform .4s var(--ease);
    color: var(--kale-deep);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { font-size: 28px; font-family: var(--font-display); padding: 14px 0; border-bottom: 1px solid rgba(31, 64, 40, .1); }
  .nav-toggle { display: flex; }
  .site-header .btn { display: none; }
}
@media (max-width: 600px) {
  .where__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row.cols { grid-template-columns: 1fr; }
}

/* ===============================================================
   MACHINE DETAIL (machines page)
   =============================================================== */
.machine-detail {
  padding: var(--section-y) 0;
  background: var(--white);
}
.machine-detail--alt { background: var(--oat); }
.machine-detail__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.machine-detail--alt .machine-detail__visual { order: 2; }

.machine-detail__visual {
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(155deg, var(--chartreuse-soft) 0%, var(--milk) 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.machine-detail__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%231F4028' stroke-width='1' opacity='0.13'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
  background-size: 200px 108px;
  z-index: 0;
}
.machine-detail__visual--snack {
  background: linear-gradient(155deg, var(--kale) 0%, var(--kale-deep) 100%);
}
.machine-detail__visual--snack::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 130' width='240' height='130'><g fill='none' stroke='%23C8D958' stroke-width='1' opacity='0.16'><rect x='10' y='10' width='100' height='50' rx='25'/><rect x='130' y='10' width='100' height='50' rx='25'/><rect x='-50' y='75' width='100' height='50' rx='25'/><rect x='70' y='75' width='100' height='50' rx='25'/><rect x='190' y='75' width='100' height='50' rx='25'/></g></svg>");
}
.machine-detail__visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(31, 64, 40, 0.2));
}
.machine-detail__visual--snack img {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.3));
}

.machine-detail__body { display: flex; flex-direction: column; gap: 20px; }
.machine-detail__body .eyebrow { margin-bottom: 4px; }
.machine-detail__body .headline em { color: var(--chartreuse-deep); }
.machine-detail__body .lede { margin-bottom: 8px; max-width: 50ch; }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin: 8px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 64, 40, .15);
}
.spec { display: flex; flex-direction: column; gap: 4px; }
.spec__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.spec__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--kale-deep);
}

.machine-detail__body .tag-row { margin: 4px 0 12px; }
.machine-detail__body .btn { align-self: flex-start; margin-top: 4px; }

@media (max-width: 900px) {
  .machine-detail__inner { grid-template-columns: 1fr; }
  .machine-detail--alt .machine-detail__visual { order: 0; }
  .specs { grid-template-columns: 1fr 1fr; }
}
