/* summit panda — site styles
   palette: jade mountain system (brand/summit-panda-brand.md)
   type: nunito black (soul) + outfit (spec) */

:root {
  --jade: #2D5F4A;
  --jade-mid: #3A7A5A;
  --jade-deep: #1A3828;
  --jade-night: #0E1F16;
  --jade-mist: #A8CDB8;
  --jade-fog: #DCEAE0;
  --porcelain: #FBF7F0;
  --porcelain-2: #F4EEE2;
  --porcelain-3: #EDE4D3;
  --vermillion: #E85D3A;
  --vermillion-deep: #C2401F;
  --vermillion-mist: #F8DCD2;
  --walnut: #3B2F2B;
  --walnut-soft: #6B5D56;
  --ink: #2A201D;
  --sesame: #4A4140;
  --gochu: #B33A2B;
  --matcha: #7FA88B;
  --maxw: 1180px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: var(--porcelain);
  color: var(--walnut);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--vermillion); color: var(--porcelain); }

.brand-name, .display {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── placeholder imagery (swap for real photos later) ── */
.ph {
  background: var(--porcelain-3);
  border: 2px dashed rgba(59,47,43,0.28);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: var(--walnut-soft);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.8;
  overflow: hidden;
}
.ph span { max-width: 300px; }
.ph-tall { aspect-ratio: 4/5; }
.ph-wide { aspect-ratio: 16/9; }
.ph-pano { aspect-ratio: 21/9; }
.ph-sq { aspect-ratio: 1/1; }
.ph-thumb { aspect-ratio: 1/1; font-size: 8.5px; padding: 8px; border-radius: 12px; letter-spacing: 0.1em; }
.ph-dark {
  background: var(--jade-deep);
  border-color: rgba(251,247,240,0.3);
  color: var(--jade-mist);
}

/* protein flag */
.protein-flag {
  display: inline-block;
  background: var(--jade);
  color: var(--porcelain);
  border-radius: 100px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── announcement marquee ── */
.announce {
  background: var(--jade-deep);
  color: var(--jade-fog);
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.announce-belt {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  width: max-content;
}
.announce .track {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}
.announce .track + .track { display: none; }
.announce .sep { color: var(--vermillion); }
.announce .track:first-child .sep:last-child { display: none; }

@media (max-width: 640px) {
  .announce { padding-left: 0; padding-right: 0; justify-content: flex-start; }
  .announce .track + .track { display: flex; }
  .announce .track:first-child .sep:last-child { display: flex; }
  .announce-belt { animation: announce-scroll 16s linear infinite; }
}
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── nav ── */
nav.site-nav {
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(59,47,43,0.08);
  backdrop-filter: blur(10px);
  background: rgba(251,247,240,0.9);
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--walnut);
  line-height: 1;
}
.logo-rule { width: 26px; height: 1px; background: var(--vermillion); opacity: 0.75; margin: 5px 0 4px; }
.logo-sub {
  font-weight: 300;
  font-size: 8px;
  color: var(--vermillion);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-weight: 300;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--jade); }
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.btn-verm {
  background: var(--vermillion);
  color: var(--porcelain);
  box-shadow: 0 4px 0 var(--vermillion-deep);
}
.btn-verm:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--vermillion-deep); }
.btn-verm:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--vermillion-deep); }
.btn-ghost-dark {
  background: transparent;
  color: var(--walnut);
  border: 1px solid rgba(59,47,43,0.4);
}
.btn-ghost-dark:hover { border-color: var(--walnut); background: rgba(59,47,43,0.05); }
.btn-jade {
  background: var(--jade);
  color: var(--porcelain);
  box-shadow: 0 4px 0 var(--jade-deep);
}
.btn-jade:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--jade-deep); }
.nav-cta { padding: 10px 22px; font-size: 11px; }

/* ── hero (light) ── */
.hero {
  background: var(--porcelain);
  padding: 72px 0 0;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--vermillion); display: block; margin-bottom: 22px; }
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4.6vw, 45px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.hero h1 .l { display: block; white-space: nowrap; }
.hero h1 .verm { color: var(--vermillion); }
.hero h1 .jade { color: var(--jade); }
.hero-tagline {
  margin: 20px 0 16px;
  max-width: 500px;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--walnut);
  line-height: 1.4;
}
.hero-sub {
  margin: 0 0 20px;
  max-width: 500px;
  color: var(--walnut-soft);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}
.hero-sub b { font-weight: 500; color: var(--walnut); }
.hero-credit {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--walnut-soft);
  margin-bottom: 42px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.vibe-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gallery .main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gallery .thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.polaroid > img { width: 100%; display: block; border-radius: 2px; }

/* our-story founder photo */
.story-photo {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 9px solid #fff;
  box-shadow: 0 18px 44px rgba(59,47,43,0.18);
}

/* full-bleed photo banner (tahoe) */
.photo-banner { position: relative; width: 100%; overflow: hidden; padding: 0; margin: 0; }
.photo-banner img { width: 100%; height: clamp(340px, 52vh, 560px); object-fit: cover; display: block; }
.photo-banner .cap2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to top, rgba(14,31,22,0.62) 0%, rgba(14,31,22,0) 52%);
  padding: 0 28px 44px;
}
.photo-banner .cap2 p {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: 1.28;
  color: var(--porcelain);
  text-align: center;
  max-width: 780px;
}
.photo-banner .cap2 .eyebrow { display: block; color: var(--jade-mist); margin-bottom: 14px; }
.hero-img .protein-burst {
  position: absolute;
  top: -18px;
  right: -14px;
  z-index: 3;
  background: var(--vermillion);
  color: var(--porcelain);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 8px 22px rgba(194,64,31,0.35);
}
.hero-img .protein-burst .n {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}
.hero-img .protein-burst .l {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 3px;
}
.hero-stats {
  margin-top: 64px;
  border-top: 1px solid rgba(59,47,43,0.12);
  border-bottom: 1px solid rgba(59,47,43,0.12);
  background: var(--porcelain-2);
}
.hero-stats .row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.hero-stats .cell { padding: 22px 10px; border-left: 1px solid rgba(59,47,43,0.1); }
.hero-stats .cell:first-child { border-left: none; }
.hero-stats .num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--jade);
  line-height: 1.1;
}
.hero-stats .lbl {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--walnut-soft);
}

/* ── dish ticker ── */
.ticker {
  background: var(--vermillion);
  color: var(--porcelain);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}
.ticker .track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.ticker .track span { margin: 0 14px; }
.ticker .track .dot { opacity: 0.55; }

/* ── sections ── */
section { padding: 96px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { color: var(--vermillion); margin-bottom: 14px; display: block; }
.section-head h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--ink);
}
.section-head p { margin-top: 18px; color: var(--walnut-soft); font-size: 16.5px; max-width: 640px; }

/* ── manifesto ── */
.manifesto { background: var(--walnut); color: var(--porcelain); }
.manifesto .eyebrow { color: var(--vermillion); display: block; margin-bottom: 22px; }
.manifesto .shout {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  max-width: 920px;
}
.manifesto .shout .verm { color: var(--vermillion); }
.manifesto .calm {
  margin-top: 26px;
  max-width: 660px;
  color: rgba(251,247,240,0.82);
  font-weight: 300;
  font-size: 16.5px;
}
.tiles {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  border: 1px solid rgba(251,247,240,0.16);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: rgba(251,247,240,0.04);
}
.tile h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--porcelain);
}
.tile p { font-weight: 300; font-size: 14.5px; color: rgba(251,247,240,0.75); }

/* ── meal cards ── */
.meals { background: var(--porcelain); }
.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.meal-card {
  display: flex;
  flex-direction: column;
  background: var(--porcelain);
  border: 1px solid rgba(59,47,43,0.12);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.meal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(59,47,43,0.15);
  border-color: rgba(232,93,58,0.45);
}
/* large image panel with hover swap (MiLa-style) */
.meal-card .imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.meal-card .layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}
.meal-card .layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meal-card .layer.lifestyle { opacity: 0; }
.meal-card:hover .layer.product { opacity: 0; }
.meal-card:hover .layer.lifestyle { opacity: 1; }
.meal-card .shot-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--walnut-soft);
  background: rgba(251,247,240,0.66);
  border: 1px dashed rgba(59,47,43,0.32);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 82%;
  text-align: center;
  line-height: 1.7;
}
.meal-card .hoverhint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(42,32,29,0.55);
  color: var(--porcelain);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}
.meal-card:hover .hoverhint { opacity: 0; }
.meal-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.meal-card .kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--vermillion);
  display: block;
  margin-bottom: 9px;
}
.meal-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.05;
  margin-bottom: 3px;
}
.meal-card .cjk { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: var(--walnut-soft); margin-bottom: 12px; }
.meal-card .statline { font-weight: 500; font-size: 12.5px; letter-spacing: 0.04em; margin-bottom: 12px; }
.meal-card .statline .pro {
  display: inline-block;
  background: rgba(45,95,74,0.14);
  color: var(--jade-deep);
  border-radius: 100px;
  padding: 2px 10px;
  font-weight: 500;
}
.meal-card .desc { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--walnut-soft); margin-bottom: 18px; flex: 1; }
.meal-card .foot { display: flex; align-items: center; justify-content: space-between; }
.meal-card .price { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: var(--ink); }
.meal-card .arrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--vermillion); }
/* per-meal image-panel color worlds */
.imgwrap.c-kungpao { background: linear-gradient(160deg, #FBEAE2 0%, #F4CDBE 100%); }
.imgwrap.c-bibimbap { background: linear-gradient(160deg, #F3E6D8 0%, #E5CBA8 100%); }
.imgwrap.c-porridge { background: linear-gradient(160deg, #ECE7E4 0%, #D6CDC8 100%); }
.imgwrap.c-matcha { background: linear-gradient(160deg, #E4EFE6 0%, #C6DECC 100%); }
.imgwrap.c-tbd { background: var(--porcelain-2); }
.meal-card.tbd { border-style: dashed; border-color: rgba(59,47,43,0.28); }
.prices-note { margin-top: 30px; font-size: 12px; color: var(--walnut-soft); font-weight: 300; text-align: center; }

/* ── vibe band ── */
.vibe { background: var(--jade-night); color: var(--porcelain); }
.vibe .section-head h2 { color: var(--porcelain); }
.vibe .section-head p { color: var(--jade-mist); }
.vibe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vibe-grid .ph { border-radius: var(--radius); }

/* ── comparison ── */
.compare { background: var(--porcelain-2); }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--porcelain);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(59,47,43,0.1);
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(59,47,43,0.08);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 14.5px;
  background: var(--porcelain-3);
}
.compare-table .us {
  background: var(--vermillion-mist);
  font-weight: 500;
  color: #7C2D14;
}
.compare-table thead .us { background: var(--vermillion); color: var(--porcelain); }
.compare-table td:first-child {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  width: 20%;
}
.compare-table .win { white-space: nowrap; }
.footnote { margin-top: 16px; font-size: 11.5px; font-weight: 300; color: var(--walnut-soft); }

/* ── trip kits ── */
.kits .tiles { margin-top: 0; }
.kit {
  background: var(--porcelain);
  border: 1px solid rgba(59,47,43,0.1);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kit:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(59,47,43,0.1); }
.kit .eyebrow { color: var(--vermillion); display: block; margin-bottom: 10px; }
.kit h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.kit p { font-weight: 300; font-size: 14px; color: var(--walnut-soft); }
.kit ul { list-style: none; margin-top: 14px; }
.kit li {
  font-size: 13.5px;
  font-weight: 300;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(59,47,43,0.14);
}
.kit li:last-child { border-bottom: none; }

/* ── founders ── */
.founders { background: var(--jade); color: var(--porcelain); }
.founders .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.founders h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.founders p { font-weight: 300; font-size: 16px; color: var(--jade-fog); }
.founders p + p { margin-top: 16px; }
.founders .eyebrow { color: var(--jade-mist); display: block; margin-bottom: 16px; }
.founders .handle {
  display: inline-block;
  margin-top: 24px;
  color: var(--porcelain);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--vermillion);
  padding-bottom: 2px;
}
.founders .handle:hover { opacity: 0.8; }
/* polaroid stack (MiLa-style peeking real photos) */
.photo-stack { position: relative; padding: 20px 30px 40px; }
.polaroid {
  background: #fff;
  padding: 14px 14px 44px;
  border-radius: 3px;
  box-shadow: 0 20px 44px rgba(14,31,22,0.4);
  transform: rotate(-3deg);
  position: relative;
  z-index: 1;
}
.polaroid .ph { border-radius: 2px; border-color: rgba(59,47,43,0.22); }
.polaroid .cap {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--walnut);
}
.polaroid.peek {
  position: absolute;
  bottom: -22px;
  right: -12px;
  width: 42%;
  padding: 9px 9px 28px;
  transform: rotate(-5deg);
  z-index: 2;
}
.polaroid.peek .cap { bottom: 9px; font-size: 10px; }
/* MiLa-style baby cut-outs overlaid in front of the founder polaroid */
.photo-stack { padding-bottom: 64px; }
.baby {
  position: absolute;
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 10px 14px rgba(14,31,22,0.4));
  pointer-events: none;
}
.baby.matt { width: 31%; left: 2%; bottom: -8px; transform: rotate(-5deg); }
.baby.geo { width: 29%; left: 38%; bottom: -22px; transform: rotate(4deg); }

/* ── roster / waitlist ── */
.roster { background: var(--walnut); color: var(--porcelain); position: relative; overflow: hidden; }
.roster .inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.roster .eyebrow { color: var(--vermillion); display: block; margin-bottom: 16px; }
.roster h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.05;
}
.roster .sub { margin: 20px auto 40px; max-width: 480px; font-weight: 300; font-size: 16px; color: rgba(251,247,240,0.8); }
.perk-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.perk {
  border: 1px solid rgba(251,247,240,0.18);
  border-radius: var(--radius);
  padding: 20px 16px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(251,247,240,0.82);
}
.perk b {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--porcelain);
  margin-bottom: 6px;
}
.roster form { display: flex; flex-direction: column; gap: 14px; max-width: 440px; margin: 0 auto; }
.roster select, .roster input[type="email"] {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid rgba(251,247,240,0.3);
  background: rgba(251,247,240,0.07);
  color: var(--porcelain);
  outline: none;
  appearance: none;
}
.roster select:focus, .roster input:focus { border-color: var(--vermillion); }
.roster select option { color: var(--walnut); }
.roster input::placeholder { color: rgba(251,247,240,0.5); }
.roster .micro { margin-top: 18px; font-size: 12px; font-weight: 300; color: rgba(251,247,240,0.55); }
.roster .confirm {
  display: none;
  padding: 40px 0 10px;
}
.roster .confirm h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--porcelain);
}
.roster .confirm p { margin-top: 12px; font-weight: 300; color: rgba(251,247,240,0.8); }
.roster.done form, .roster.done .perk-tiles { display: none; }
.roster.done .confirm { display: block; }

/* ── FAQ ── */
.faq { background: var(--porcelain); }
.faq-list { max-width: 760px; }
.faq details {
  border-bottom: 1px solid rgba(59,47,43,0.14);
  padding: 4px 0;
}
.faq summary {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 17.5px;
  color: var(--ink);
  padding: 18px 36px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vermillion);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 0 22px;
  font-weight: 300;
  font-size: 15px;
  color: var(--walnut-soft);
  max-width: 640px;
}

/* ── footer ── */
footer {
  background: var(--jade-night);
  color: var(--jade-mist);
  padding: 70px 0 36px;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}
footer .logo-name { color: var(--porcelain); }
footer .tag { margin-top: 16px; font-weight: 300; font-size: 13.5px; max-width: 260px; color: rgba(168,205,184,0.8); }
footer h4 {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--porcelain);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: var(--jade-mist); text-decoration: none; font-weight: 300; font-size: 14px; }
footer a:hover { color: var(--porcelain); }
footer .fine {
  border-top: 1px solid rgba(251,247,240,0.12);
  padding-top: 26px;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(168,205,184,0.6);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── product detail pages ── */
.pdp-top { padding: 56px 0 80px; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 34px;
}
.breadcrumb a { color: var(--walnut-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--jade); }
.breadcrumb .sep { margin: 0 8px; color: var(--vermillion); }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.gallery .main { margin-bottom: 14px; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.buy .kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--vermillion);
  display: block;
  margin-bottom: 10px;
}
.buy h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  color: var(--ink);
}
.buy .cjk-big {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--walnut-soft);
  margin: 8px 0 18px;
}
.buy .cjk-big .roman { font-size: 12px; letter-spacing: 0.1em; font-weight: 300; }
.buy .flags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.buy .flag {
  border: 1px solid rgba(59,47,43,0.25);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--walnut);
}
.buy .flag.hero-flag { background: var(--jade); border-color: var(--jade); color: var(--porcelain); }
.buy .desc { font-weight: 300; font-size: 16px; color: var(--walnut); max-width: 460px; }
.buy .desc + .desc { margin-top: 12px; }
.buy .price-row { display: flex; align-items: baseline; gap: 14px; margin: 26px 0 18px; }
.buy .price-row .price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--ink);
}
.buy .price-row .per {
  font-size: 12px;
  font-weight: 300;
  color: var(--walnut-soft);
}
.buy .honesty {
  border-left: 3px solid var(--vermillion);
  padding: 4px 0 4px 16px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--walnut-soft);
  font-style: italic;
  margin-top: 22px;
}
.pdp-band { background: var(--jade-deep); color: var(--porcelain); padding: 64px 0; }
.pdp-band h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 30px;
}
.statband {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(251,247,240,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(251,247,240,0.04);
}
.statband .cell {
  padding: 30px 12px 24px;
  text-align: center;
  border-left: 1px solid rgba(251,247,240,0.12);
}
.statband .cell:first-child { border-left: none; }
.statband .num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1;
  color: var(--porcelain);
}
.statband .num .unit { font-size: 0.45em; }
.statband .lbl {
  margin-top: 8px;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--jade-mist);
}

/* pdp detail: ingredients + origin + nutrition */
.pdp-detail { background: var(--porcelain); padding: 88px 0; }
.pdp-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.pdp-block h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  margin-bottom: 8px;
}
.pdp-block .cjk-sub { font-size: 15px; color: var(--walnut-soft); letter-spacing: 0.14em; margin-bottom: 24px; }
.pdp-block h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  margin: 34px 0 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(59,47,43,0.18);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--walnut);
  background: var(--porcelain-2);
}
.chip b { font-weight: 500; color: var(--ink); }
.origin p { font-weight: 300; font-size: 16px; color: var(--walnut); }
.origin p + p { margin-top: 14px; }
.origin .pull {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  color: var(--jade);
  margin: 22px 0;
}
.steps { list-style: none; counter-reset: step; margin-top: 10px; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(59,47,43,0.1);
  font-weight: 300;
  font-size: 15px;
  color: var(--walnut);
  align-items: baseline;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--vermillion);
  font-size: 15px;
  flex: 0 0 30px;
}

/* nutrition facts panel (FDA-style) */
.nutrition {
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 18px 20px;
  background: var(--porcelain);
  font-family: 'Outfit', sans-serif;
  max-width: 360px;
}
.nutrition .nf-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  border-bottom: 10px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 6px;
}
.nutrition .nf-serv { font-size: 12.5px; color: var(--walnut); padding-bottom: 6px; border-bottom: 1px solid var(--ink); }
.nutrition .nf-serv b { font-weight: 500; }
.nutrition .nf-cal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 6px solid var(--ink);
  padding: 6px 0;
  margin-bottom: 4px;
}
.nutrition .nf-cal .lab { font-weight: 500; font-size: 15px; }
.nutrition .nf-cal .val { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 30px; }
.nutrition .nf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(42,32,29,0.22);
}
.nutrition .nf-row .lab { font-weight: 300; }
.nutrition .nf-row .lab b { font-weight: 500; }
.nutrition .nf-row.indent .lab { padding-left: 18px; }
.nutrition .nf-row .val { font-weight: 400; white-space: nowrap; text-align: right; }
.nutrition .nf-row .val.hi { color: var(--jade); font-weight: 500; }
.nutrition .nf-foot { font-size: 10.5px; color: var(--walnut-soft); font-weight: 300; margin-top: 10px; line-height: 1.5; }

/* pdp closing cta + related */
.pdp-cta { background: var(--walnut); color: var(--porcelain); text-align: center; }
.pdp-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.pdp-cta p { font-weight: 300; color: rgba(251,247,240,0.8); margin-bottom: 30px; max-width: 460px; margin-left: auto; margin-right: auto; }
.pdp-cta .other {
  margin-top: 46px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
}
.pdp-cta .other a { color: var(--jade-mist); text-decoration: none; margin: 0 10px; }
.pdp-cta .other a:hover { color: var(--porcelain); }

/* authenticity band */
.real { background: var(--vermillion); color: var(--porcelain); }
.real .eyebrow { color: rgba(251,247,240,0.7); display: block; margin-bottom: 20px; }
.real .shout {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  max-width: 920px;
}
.real .calm {
  margin-top: 24px;
  max-width: 640px;
  font-weight: 300;
  font-size: 16.5px;
  color: rgba(251,247,240,0.92);
}
.real .calm b { font-weight: 500; color: var(--porcelain); }

/* ── story page bits ── */
.story-hero {
  background: var(--jade-deep);
  color: var(--porcelain);
  text-align: center;
  padding: 120px 24px 104px;
}
.story-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
}
.story-hero .eyebrow { color: var(--jade-mist); display: block; margin-bottom: 20px; }
.story-hero p { margin: 24px auto 0; max-width: 520px; font-weight: 300; color: var(--jade-fog); }
.values-list { max-width: 760px; }
.values-list .value { padding: 30px 0; border-bottom: 1px solid rgba(59,47,43,0.12); }
.values-list .value h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
}
.values-list .value h3 .verm { color: var(--vermillion); }
.values-list .value p { margin-top: 8px; font-weight: 300; color: var(--walnut-soft); max-width: 560px; }
.prose { max-width: 680px; }
.prose p { font-weight: 300; font-size: 16.5px; color: var(--walnut); }
.prose p + p { margin-top: 18px; }
.prose .big {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.35;
  color: var(--ink);
}

/* ── responsive ── */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 8px; }
  .hero-img { order: -1; max-width: 460px; }
}
@media (max-width: 900px) {
  .meal-grid, .tiles, .perk-tiles, .vibe-grid { grid-template-columns: 1fr; }
  .pdp-grid, .pdp-detail-grid, .founders .grid { grid-template-columns: 1fr; gap: 40px; }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .statband .cell:nth-child(-n+2) { border-top: none; }
  .statband .cell { border-top: 1px solid rgba(251,247,240,0.12); }
  .hero-stats .row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .cell:nth-child(n+3) { border-top: 1px solid rgba(59,47,43,0.1); }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .meal-card { flex-direction: column; align-items: stretch; text-align: left; }
  .meal-card .shot { flex-basis: auto; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
  .nutrition { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .announce .track, .ticker .track { animation: none; }
  * { transition: none !important; }
}