:root {
  --sand: #f6f2eb;
  --sand-dark: #ebe4d8;
  --white: #ffffff;
  --navy: #1a2744;
  --navy-light: #2a3f66;
  --copper: #c87941;
  --copper-dark: #a8612e;
  --ice: #e4edf5;
  --ice-deep: #d0dde9;
  --text: #1a2744;
  --muted: #5a6478;
  --line: #d8d0c4;
  --radius: 4px;
  --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { display: block; }

.container {
  width: min(94%, var(--max));
  margin: 0 auto;
}

/* ═══ HEADER ═══ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
}

.page-home .site-header.scrolled {
  background: rgba(246, 242, 235, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-mark { display: none; }

.brand-text { display: flex; align-items: baseline; gap: 8px; }

.brand-text span:first-child {
  font-size: 0.7rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.brand-text span:last-child {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.nav { display: flex; align-items: center; gap: 16px; }

.nav-links {
  display: flex;
  gap: 32px;
  padding: 0;
  background: none;
  border: none;
}

.nav-link {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.nav-link::after { display: none; }

.nav-link:hover,
.nav-link.active { color: var(--copper); background: none; }

.contact-inline {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.header-cta {
  padding: 11px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.header-cta:hover { background: var(--copper); }

/* ═══ BUTTONS ═══ */

.button, button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.button.primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--copper);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.button.primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
}

.button.ghost {
  padding: 12px 24px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.button.ghost:hover { background: var(--navy); color: #fff; }

.pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--ice);
  color: var(--navy-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

/* ═══ HOMEPAGE: SPLASH HERO ═══ */

.page-home .site-header .brand-text span:last-child,
.page-home .site-header .nav-link { color: var(--navy); }
.page-home .site-header.scrolled .nav-link { color: var(--muted); }
.page-home .site-header.scrolled .nav-link.active { color: var(--copper); }

.splash {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  background: var(--sand);
  padding-top: 80px;
}

.splash-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px min(6vw, 80px) 60px max(3vw, 24px);
  border-right: 1px solid var(--line);
}

.splash-copy .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}

.splash-copy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 28px;
}

.splash-copy h1 em {
  font-style: italic;
  color: var(--copper);
}

.splash-copy .lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 36px;
  line-height: 1.75;
}

.splash-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.splash-product {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.splash-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 41px
    );
}

.splash-product img {
  width: 55%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
}

.splash-stats {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stat-cell {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat-cell:last-child { border-right: none; }

.stat-cell strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-cell span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══ MARQUEE ═══ */

.marquee-wrap {
  background: var(--copper);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track span { flex-shrink: 0; }
.marquee-track span::before { content: "◆ "; opacity: 0.6; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ BENTO GRID ═══ */

.bento-section {
  padding: 80px 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento-cell {
  background: var(--white);
  padding: 32px;
}

.bento-cell--wide {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-cell--img {
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.bento-cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cell--list {
  grid-column: span 3;
  background: var(--ice);
}

.bento-cell--quote {
  grid-column: span 7;
  background: var(--navy);
  color: rgba(255,255,255,0.88);
}

.bento-cell--cta {
  grid-column: span 5;
  background: var(--copper);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bento-cell h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 0 0 12px;
  line-height: 1.15;
}

.bento-cell--quote h2 { color: #fff; }

.bento-cell p { margin: 0; font-size: 0.95rem; }
.bento-cell--quote p { color: rgba(255,255,255,0.7); }

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.benefit-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--ice-deep);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-list li:last-child { border-bottom: none; }

.benefit-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--copper);
  flex-shrink: 0;
}

.bento-cell--cta .button.primary {
  background: #fff;
  color: var(--copper);
  margin-top: 16px;
}

.bento-cell--cta .button.primary:hover { background: var(--sand); }

/* ═══ INGREDIENT BAND ═══ */

.ingredient-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}

.ingredient-band .band-head {
  text-align: center;
  margin-bottom: 48px;
}

.ingredient-band .band-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0 0 8px;
  color: #fff;
}

.ingredient-band .band-head p {
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-size: 0.92rem;
}

.ingredient-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.ingredient-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
}

.ingredient-item:hover { background: rgba(255,255,255,0.12); }

.ingredient-item .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 12px;
}

.ingredient-item p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ═══ HORIZONTAL FLOW ═══ */

.flow-section {
  padding: 80px 0;
  background: var(--white);
}

.flow-head {
  text-align: center;
  margin-bottom: 56px;
}

.flow-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 8px;
  color: var(--navy);
}

.flow-head p { color: var(--muted); margin: 0; }

.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.flow-step {
  flex: 1;
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--sand);
}

.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--copper);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  z-index: 2;
}

.flow-step .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  color: var(--ice-deep);
  line-height: 1;
  margin-bottom: 12px;
}

.flow-step h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
}

.flow-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ═══ GALLERY STRIP ═══ */

.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ═══ ORDER SPLIT ═══ */

.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.order-left {
  background: var(--copper);
  color: #fff;
  padding: 64px min(6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-left .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

.order-left h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 8px;
  line-height: 1.1;
}

.order-left .price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin: 16px 0 24px;
}

.order-left p {
  opacity: 0.85;
  max-width: 360px;
  margin: 0;
  font-size: 0.95rem;
}

.order-right {
  background: var(--white);
  padding: 64px min(6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.order-right h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 28px;
  color: var(--navy);
}

/* ═══ DISCLAIMER BAR ═══ */

.disclaimer-bar {
  padding: 40px 0;
  background: var(--sand-dark);
  border-top: 1px solid var(--line);
}

.disclaimer-bar p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══ FOOTER (light) ═══ */

.footer {
  background: var(--sand);
  color: var(--text);
  padding: 48px 0 56px;
  border-top: 3px solid var(--navy);
  margin-top: 0;
}

.footer::before { display: none; }

.footer-grid { display: grid; gap: 28px; padding-top: 0; }

.footer a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0;
  background: none;
  border-radius: 0;
}

.footer a:hover { color: var(--copper); background: none; }

.footer .muted { color: var(--muted); font-size: 0.88rem; }

.footer small,
.footer .legal-line {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

/* ═══ INNER PAGES (shared) ═══ */

.hero {
  padding: 120px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--navy);
  margin: 12px 0;
  line-height: 1.1;
}

.hero-tagline {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.lead { font-size: 1.02rem; color: var(--muted); margin-bottom: 20px; }

.hero-visual {
  background: var(--navy);
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.hero-visual img { width: 60%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.bullet-list li {
  padding: 12px 16px;
  background: var(--sand);
  border-left: 3px solid var(--copper);
  font-size: 0.92rem;
}

.bullet-list li::before { display: none; }

.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-sage { background: var(--ice); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--navy);
  margin: 8px 0;
}
.section-subtitle { color: var(--muted); margin: 0; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: var(--radius);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--copper); box-shadow: none; transform: none; }

.card h3, .feature-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
}

.feature-card::before { display: none; }

.muted { color: var(--muted); }
.stat-card { background: var(--ice); border-color: var(--ice-deep); }
.info-block { background: var(--sand); }

.image-frame { overflow: hidden; border-radius: var(--radius); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--line);
}

.steps { display: grid; gap: 8px; }
.steps::before { display: none; }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: none;
  border-radius: 0;
}

.step:last-child { border-bottom: none; }

.step-badge {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: none;
}

.step a { color: var(--copper); }

.form { display: grid; gap: 18px; }

.form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  background: var(--sand);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}

.content-page { padding: 120px 0 64px; }

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: var(--radius);
}

.content-card h1, .content-card h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  margin-top: 0;
}

.content-card h1 { font-size: clamp(1.8rem, 2.5vw, 2.8rem); }
.content-card p { margin: 0 0 16px; }

.list-inline { display: flex; gap: 20px; flex-wrap: wrap; }

.tag {
  padding: 6px 12px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  border-radius: var(--radius);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card { gap: 12px; }
.blog-card img {
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: none;
}
.blog-card:hover img { transform: none; }

.blog-card h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0;
}

.blog-meta { display: flex; gap: 12px; color: var(--muted); font-size: 0.85rem; }

.post-hero {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.legal-text p { line-height: 1.8; font-size: 0.94rem; }
.legal-text p strong { color: var(--navy); }

.order-section { background: var(--navy); border: none; border-radius: 0; }
.order-section .section-title, .order-section h2 { color: #fff; }
.order-section .muted { color: rgba(255,255,255,0.65); }
.order-section .card { background: var(--white); border: none; }
.order-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

/* Legacy classes kept harmless */
.trust-strip, .how-card, .price-tag, .trust-item { display: none; }

/* ═══ VALUES GRID ═══ */

.values-section {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.value-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--ice);
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.value-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
}

.value-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══ ABOUT SPLIT ═══ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.about-split__text {
  padding: 72px min(6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sand);
  border-right: 1px solid var(--line);
}

.about-split__text h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: var(--navy);
  margin: 12px 0 20px;
  line-height: 1.12;
}

.about-split__text p {
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 480px;
}

.about-split__img {
  position: relative;
  overflow: hidden;
}

.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--copper);
  color: #fff;
  padding: 20px 28px;
  max-width: 260px;
}

.about-split__badge strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-split__badge span {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* ═══ ZONES ═══ */

.zones-section {
  padding: 80px 0;
  background: var(--ice);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.zone-card {
  background: var(--white);
  border: 1px solid var(--ice-deep);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.zone-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
}

.zone-card .zone-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.zone-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
}

.zone-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══ SCIENCE PANEL ═══ */

.science-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--navy);
  color: #fff;
}

.science-panel__content {
  padding: 72px min(6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.science-panel__content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 12px 0 20px;
  color: #fff;
}

.science-panel__content p {
  color: rgba(255,255,255,0.72);
  margin: 0 0 20px;
  max-width: 520px;
}

.science-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.science-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.science-points li strong {
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}

.science-panel__visual {
  background: var(--navy-light);
  display: grid;
  place-items: center;
  padding: 48px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.science-panel__visual img {
  width: 70%;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}

/* ═══ ROUTINE DUO ═══ */

.routine-section {
  padding: 80px 0;
  background: var(--white);
}

.routine-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.routine-card {
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.routine-card--am { background: linear-gradient(160deg, #fff9f0, var(--white)); }
.routine-card--pm { background: linear-gradient(160deg, var(--ice), var(--white)); }

.routine-card .time-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.routine-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 20px;
}

.routine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.routine-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.routine-list li span:first-child {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

/* ═══ REVIEWS ═══ */

.reviews-section {
  padding: 80px 0;
  background: var(--sand);
  border-top: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--copper);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--ice);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}

.review-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ═══ FAQ ═══ */

.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
}

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

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { background: var(--sand); }

.faq-item p {
  margin: 0;
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══ PROMISE BAR ═══ */

.promise-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #fff;
}

.promise-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.promise-item:last-child { border-right: none; }

.promise-item .promise-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.promise-item h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.promise-item p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ═══ COMPARE TABLE ═══ */

.compare-section {
  padding: 80px 0;
  background: var(--sand-dark);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.compare-table th {
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table th:first-child { background: var(--sand-dark); color: var(--muted); }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  background: var(--sand);
}

.compare-table .check { color: var(--copper); font-weight: 700; }
.compare-table .dash { color: var(--muted); }

.compare-table td.highlight {
  background: rgba(200, 121, 65, 0.08);
  font-weight: 600;
  color: var(--navy);
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 960px) {
  .splash {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .splash-copy {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    padding: 40px 24px;
  }

  .splash-product {
    grid-column: 1;
    grid-row: 2;
    min-height: 360px;
  }

  .splash-stats {
    grid-column: 1;
    grid-row: 3;
    border-right: none;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid var(--line); }

  .bento-cell--wide,
  .bento-cell--img,
  .bento-cell--list,
  .bento-cell--quote,
  .bento-cell--cta {
    grid-column: span 12;
  }

  .ingredient-row { grid-template-columns: 1fr 1fr; }
  .flow { flex-direction: column; }
  .flow-step:not(:last-child)::after {
    right: auto;
    top: auto;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 240px; }

  .order-split { grid-template-columns: 1fr; }
  .order-left, .order-right { padding: 40px 24px; }
  .order-right { border-left: none; border-top: 1px solid var(--line); }

  .hero-grid, .grid-2, .grid-3, .lifestyle-grid, .order-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { gap: 16px; flex-wrap: wrap; }
  .header-cta { display: none; }
  .contact-inline { display: block; }
  .site-header .inner { flex-wrap: wrap; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__text { border-right: none; border-bottom: 1px solid var(--line); padding: 48px 24px; }
  .about-split__img { min-height: 320px; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .science-panel { grid-template-columns: 1fr; }
  .science-panel__visual { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); min-height: 300px; }
  .routine-duo { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .promise-bar { grid-template-columns: 1fr 1fr; }
  .promise-item:nth-child(2) { border-right: none; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 14px 16px; }
}

@media (max-width: 640px) {
  .splash-stats { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; }
  .ingredient-row { grid-template-columns: 1fr; }
  .content-card { padding: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .promise-bar { grid-template-columns: 1fr; }
  .promise-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
