/* =========================================================================
   SUVAAN TEA — HerSmile Federation
   Tea Empowerment Project. Youth-facing social enterprise.
   Palette derived from the HerSmile Federation mark (navy/red/green) and the
   Suvaan Gold pack (turmeric gold). Signature motif: the highway dhaba —
   kettle, glass, road line — carried through as a recurring divider.
   ========================================================================= */

:root {
  /* Navy — sampled from the HerSmile Federation wordmark (#001c53) */
  --navy-950: #060f26;
  --navy-900: #0a1638;
  --navy-800: #0f1f4d;   /* primary — logo navy */
  --navy-700: #172c63;
  --navy-600: #223d80;

  /* HerSmile red + green — sampled from the logo's three figures (#cc030b / #186409) */
  --red-700: #9c0007;
  --red-600: #c8121a;    /* logo red */
  --red-500: #d94047;
  --green-700: #124d09;
  --green-600: #1c7a12;  /* logo green */
  --green-500: #2f9a24;

  /* Turmeric gold — sampled from the Suvaan Gold pack, used as a minor tea accent only */
  --gold-800: #8a5b1c;
  --gold-700: #a8701f;
  --gold-600: #c8862b;   /* accent */
  --gold-500: #dba149;
  --gold-400: #e9bd77;
  --gold-100: #fbedd4;

  /* Warm cream neutrals */
  --cream: #faf5ea;
  --cream-2: #f3ead6;
  --surface: #ffffff;
  --ink: #1a1712;
  --ink-soft: #423b2f;
  --muted: #6b6153;
  --line: #e6dabc;

  --bg: var(--cream);
  --radius-sm: 6px;
  --radius: 0px;
  --pill: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 31, 77, .08);
  --shadow-md: 0 14px 34px -14px rgba(15, 31, 77, .28);
  --shadow-lg: 0 30px 60px -20px rgba(15, 31, 77, .38);
  --shadow-red: 0 14px 30px -12px rgba(200, 18, 26, .45);
  --shadow-gold: 0 14px 30px -12px rgba(200, 134, 43, .5);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 78px;

  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px; --sp-8: 128px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { color: var(--ink-soft); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 54ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--red-600);
  display: inline-block;
}

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red-600); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(200, 18, 26, .55); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-navy { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline-navy:hover { background: var(--navy-800); color: #fff; }

/* ----------------------------- Top bar ----------------------------------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.ti { display: inline-flex; align-items: center; gap: 6px; color: inherit; transition: color .25s; }
.ti svg { width: 14px; height: 14px; }
.ti:hover { color: var(--red-500); }
.hide-sm { display: inline-flex; }

/* ----------------------------- Header ------------------------------------ */
:root { --nav-h: 96px; --nav-h-shrink: 68px; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 234, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: var(--sp-3);
  transition: height .3s var(--ease);
}
.brand { display: flex; align-items: center; flex: none; }
.brand-logo { height: 76px; width: auto; display: block; transition: height .3s var(--ease); }

.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header.is-scrolled .container { height: var(--nav-h-shrink); }
.site-header.is-scrolled .brand-logo { height: 52px; }

.nav-links { display: flex; align-items: center; gap: var(--sp-4); }
.nav-links a {
  font-weight: 600; font-size: .92rem; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red-600); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--navy-800); }
.nav-links a:hover::after { width: 100%; }

.header-ctas { display: flex; align-items: center; gap: 12px; }
.btn-sm { padding: 11px 20px; font-size: .85rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy-800); }

/* ----------------------------- Inner page hero ----------------------------- */
.page-hero {
  background: var(--navy-950);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--sp-6) 0 var(--sp-5);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 0%, rgba(200,18,26,.18), transparent 60%),
    radial-gradient(ellipse 45% 45% at 5% 100%, rgba(28,122,18,.14), transparent 60%);
  pointer-events: none;
}
.page-hero.has-photo::before {
  background:
    linear-gradient(100deg, rgba(6,15,38,.92) 0%, rgba(6,15,38,.72) 45%, rgba(6,15,38,.35) 100%),
    radial-gradient(ellipse 55% 60% at 90% 0%, rgba(200,18,26,.14), transparent 60%);
}
.page-hero .photo-credit { bottom: 8px; }
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--red-500); }
.page-hero .eyebrow::before { background: var(--red-500); }
.page-hero h1 { color: #fff; margin: var(--sp-2) 0 var(--sp-2); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.page-hero .lede { color: rgba(255,255,255,.78); max-width: 60ch; }

/* ----------------------------- Hero --------------------------------------- */
.hero {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(200,18,26,.20), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(28,122,18,.16), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-8) 0 var(--sp-7);
  position: relative;
}
.hero-copy .eyebrow { color: var(--red-500); }
.hero-copy .eyebrow::before { background: var(--red-500); }
.hero h1 { color: #fff; margin: var(--sp-2) 0 var(--sp-3); }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero .lede { color: rgba(255,255,255,.78); font-size: 1.15rem; margin-bottom: var(--sp-4); max-width: 50ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: var(--sp-5); }

.hero-stats { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--green-500); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.65); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px;
  background: rgba(255,255,255,.03);
}
.hero-media img { width: 100%; height: 460px; object-fit: cover; object-position: center 30%; }
.hero-media .tag {
  position: absolute; left: -1px; bottom: -1px;
  background: var(--gold-600); color: var(--navy-950);
  font-weight: 700; font-size: .78rem;
  padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
}

/* ----------------------------- Chai strip (signature) --------------------- */
.chai-strip {
  background: var(--gold-600);
  color: var(--navy-950);
  overflow: hidden;
  position: relative;
}
.chai-track {
  display: flex;
  gap: var(--sp-6);
  white-space: nowrap;
  padding: 13px 0;
  animation: scroll-strip 32s linear infinite;
  width: max-content;
}
@keyframes scroll-strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.chai-track span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chai-track svg { width: 16px; height: 16px; }

/* ----------------------------- Sections ------------------------------------ */
.section { padding: var(--sp-7) 0; }
.section.bg-navy { background: var(--navy-800); color: #fff; }
.section.bg-navy h2, .section.bg-navy h3 { color: #fff; }
.section.bg-navy p { color: rgba(255,255,255,.72); }
.section.bg-cream2 { background: var(--cream-2); }

.section-head { max-width: 680px; margin-bottom: var(--sp-5); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: var(--sp-2); }

/* ----------------------------- Impact stat band --------------------------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.impact-item { border-left: 2px solid var(--red-600); padding-left: var(--sp-3); }
.impact-item b { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--green-500); line-height: 1; margin-bottom: 6px; }
.impact-item span { font-size: .92rem; color: rgba(255,255,255,.7); }

/* ----------------------------- Programme (asymmetric 8/4) ----------------- */
.programme-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--sp-6);
  align-items: start;
}
.step-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
.step {
  display: flex; gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step-num {
  flex: none; width: 42px; height: 42px;
  background: var(--navy-800); color: var(--green-500);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { color: var(--navy-800); font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: .92rem; margin: 0; }

.programme-aside {
  background: var(--navy-800);
  color: #fff;
  padding: var(--sp-5) var(--sp-4);
}
.programme-aside h3 { color: var(--green-500); margin-bottom: var(--sp-2); }
.programme-aside p { color: rgba(255,255,255,.78); font-size: .95rem; margin-bottom: var(--sp-4); }

/* ----------------------------- Product grid -------------------------------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy-950); color: var(--gold-400);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px;
}
.product-body { padding: var(--sp-3); }
.product-body h3 { margin-bottom: 4px; }
.product-body p { font-size: .88rem; margin-bottom: var(--sp-2); }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-weight: 700; color: var(--navy-800); font-size: 1.1rem; }
.price span { font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--muted); }

/* ----------------------------- Product detail (Shop Tea page) -------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-detail .product-media { aspect-ratio: auto; height: 100%; min-height: 320px; }
.product-detail .product-body { padding: var(--sp-4); display: flex; flex-direction: column; }
.product-detail .product-body p { font-size: .95rem; }
.feature-list { list-style: none; margin: var(--sp-2) 0 var(--sp-3); display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--ink-soft); }
.feature-list svg { width: 16px; height: 16px; color: var(--green-600); flex: none; }
.product-detail .product-foot { margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--line); }
@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail .product-media { min-height: 260px; }
}

/* ----------------------------- Product detail PAGE (individual product) ----- */
.pdp-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--sp-6); align-items: start; }
.pdp-media { position: sticky; top: calc(var(--nav-h) + 24px); }
.pdp-media .frame { background: var(--surface); border: 1px solid var(--line); padding: 14px; }
.pdp-media img { width: 100%; display: block; }
.pdp-crumbs { font-size: .82rem; color: var(--muted); margin-bottom: var(--sp-3); }
.pdp-crumbs a { color: var(--navy-800); font-weight: 600; }
.pdp-crumbs a:hover { color: var(--red-600); }
.pdp-title h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 6px 0 4px; }
.pdp-tagline { color: var(--gold-700); font-family: var(--font-display); font-size: 1rem; margin-bottom: var(--sp-3); }
.pdp-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: var(--sp-4); }
.pdp-price-row .price { font-size: 1.6rem; }
.pdp-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.pdp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--cream-2); border: 1px solid var(--line);
  font-size: .78rem; font-weight: 700; color: var(--navy-800);
}
.pdp-badge svg { width: 14px; height: 14px; color: var(--green-600); }
.pdp-body-copy { font-size: 1rem; margin-bottom: var(--sp-4); max-width: 62ch; }
.pdp-block { margin-bottom: var(--sp-5); }
.pdp-block h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.pdp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.pdp-fact { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.pdp-fact span:first-child { color: var(--muted); }
.pdp-fact span:last-child { font-weight: 700; color: var(--navy-800); }
.brew-steps { display: flex; flex-direction: column; gap: 10px; }
.brew-step { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
.brew-step .n { flex: none; width: 26px; height: 26px; background: var(--navy-800); color: var(--gold-400); font-weight: 700; font-size: .8rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.pdp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.pdp-other { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
@media (max-width: 860px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-media { position: static; }
  .pdp-facts { grid-template-columns: 1fr; }
  .pdp-other { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .pdp-other { grid-template-columns: 1fr; } }

/* ----------------------------- Seller CTA band ----------------------------- */
.seller-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  color: #fff;
  padding: var(--sp-7) 0;
  position: relative;
  overflow: hidden;
}
.seller-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--sp-6);
  align-items: center;
}
.seller-copy h2 { color: #fff; }
.seller-copy .eyebrow { color: var(--red-500); }
.seller-copy .eyebrow::before { background: var(--red-500); }
.seller-copy p { color: rgba(255,255,255,.75); margin: var(--sp-3) 0 var(--sp-4); }
.seller-perks { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.perk { display: flex; gap: 12px; align-items: flex-start; }
.perk svg { flex: none; width: 22px; height: 22px; color: var(--green-500); margin-top: 2px; }
.perk h4 { color: #fff; font-size: .95rem; margin-bottom: 2px; }
.perk p { font-size: .84rem; margin: 0; }

/* ----------------------------- Forms ---------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); padding: var(--sp-5); max-width: 640px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-3); }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .85rem; color: var(--navy-800); }
.field label .req { color: var(--red-600); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(15,31,77,.12);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.field-hint { font-size: .78rem; color: var(--muted); }
.form-submit { display: flex; align-items: center; gap: 14px; margin-top: var(--sp-2); }
.form-note { font-size: .82rem; color: var(--muted); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .field.full { grid-column: auto; } }

.success-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  padding: var(--sp-4);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 640px;
}
.success-card svg { flex: none; width: 30px; height: 30px; color: var(--green-600); }
.success-card h3 { margin-bottom: 4px; }
.success-card p { margin: 0; font-size: .92rem; }

/* ----------------------------- Coming-soon placeholder ----------------------- */
.coming-soon {
  background: var(--cream-2);
  border: 1px dashed var(--line);
  padding: var(--sp-5);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.coming-soon svg { width: 34px; height: 34px; color: var(--gold-600); margin-bottom: var(--sp-2); }
.coming-soon h3 { margin-bottom: 6px; }
.coming-soon p { font-size: .92rem; margin: 0; }

/* ----------------------------- Simple content cards --------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.info-card { background: var(--surface); border: 1px solid var(--line); padding: var(--sp-4); }
.info-card svg { width: 26px; height: 26px; color: var(--red-600); margin-bottom: var(--sp-2); }
.info-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.info-card p { font-size: .9rem; margin: 0; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

/* ----------------------------- Policies page --------------------------------- */
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--sp-5); align-items: start; }
.policy-toc { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 2px; background: var(--surface); border: 1px solid var(--line); padding: var(--sp-2); }
.policy-toc a { padding: 10px 12px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); border-left: 3px solid transparent; transition: background .2s, border-color .2s, color .2s; }
.policy-toc a:hover { background: var(--cream-2); color: var(--navy-800); border-left-color: var(--red-500); }
.policy-section { background: var(--surface); border: 1px solid var(--line); padding: var(--sp-4); margin-bottom: var(--sp-3); scroll-margin-top: calc(var(--nav-h) + 24px); }
.policy-section h2 { font-size: 1.3rem; margin-bottom: 10px; }
.policy-section p, .policy-section li { font-size: .92rem; color: var(--ink-soft); }
.policy-section ul { padding-left: 20px; margin: 8px 0; }
.policy-section li { margin-bottom: 4px; }
@media (max-width: 860px) { .policy-layout { grid-template-columns: 1fr; } .policy-toc { position: static; flex-direction: row; flex-wrap: wrap; } }

/* ----------------------------- About / HerSmile ----------------------------- */
.about-grid { display: grid; grid-template-columns: 4fr 8fr; gap: var(--sp-6); align-items: center; }
.about-logo { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: var(--sp-5); display: flex; align-items: center; justify-content: center; }
.about-logo img { width: 100%; max-width: 320px; }
.about-copy .tagline { font-family: var(--font-display); font-style: normal; color: var(--red-600); font-size: 1.1rem; margin: var(--sp-2) 0 var(--sp-3); }
.values-row { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-4); }
.value-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--pill);
  background: var(--cream-2); border: 1px solid var(--line);
  font-weight: 700; font-size: .84rem; color: var(--navy-800);
}
.value-pill.red { border-color: rgba(179,53,47,.3); color: var(--red-600); }
.value-pill.green { border-color: rgba(47,122,79,.3); color: var(--green-600); }
.value-pill.gold { border-color: rgba(200,134,43,.35); color: var(--gold-700); }

/* ----------------------------- Footer --------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.68); padding: var(--sp-6) 0 var(--sp-3); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--sp-5); padding-bottom: var(--sp-5); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo-plate { background: var(--cream); padding: 14px 20px; display: inline-flex; margin-bottom: var(--sp-3); }
.footer-brand img { height: 52px; display: block; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: .9rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red-500); }
.footer-social { display: flex; gap: 12px; margin-top: var(--sp-2); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.footer-social a:hover { background: var(--red-600); border-color: var(--red-600); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--sp-3); font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--red-500); }

/* ----------------------------- Reveal-on-scroll ------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ----------------------------- Full-bleed photo sections --------------------- */
.photo-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .photo-section { background-attachment: scroll; min-height: 380px; }
}
.photo-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,15,38,.94) 0%, rgba(6,15,38,.78) 38%, rgba(6,15,38,.35) 68%, rgba(6,15,38,.1) 100%);
}
.photo-section.scrim-bottom::before {
  background: linear-gradient(0deg, rgba(6,15,38,.92) 0%, rgba(6,15,38,.5) 45%, rgba(6,15,38,.15) 100%);
}
.photo-section .container { position: relative; z-index: 1; padding-top: var(--sp-6); padding-bottom: var(--sp-6); }
.photo-section .eyebrow { color: var(--gold-400); }
.photo-section .eyebrow::before { background: var(--gold-500); }
.photo-section h2 { color: #fff; }
.photo-section p { color: rgba(255,255,255,.82); }
.photo-section .lede { max-width: 56ch; }

/* Photo credit caption, bottom-right of a photo section */
.photo-credit {
  position: absolute; right: var(--gutter); bottom: 14px; z-index: 1;
  font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .03em;
}

/* Image reveal-zoom: image scales subtly into view + on hover */
.img-zoom { overflow: hidden; display: block; }
.img-zoom img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform .8s var(--ease);
}
.img-zoom:hover img { transform: scale(1.16); }
.reveal .img-zoom img { transform: scale(1.15); }
.reveal.in .img-zoom img { transform: scale(1.08); }

/* Split image-copy band (photo left/right, alternating) */
.split-band { display: grid; grid-template-columns: 5fr 7fr; min-height: 460px; }
.split-band.reverse { grid-template-columns: 7fr 5fr; }
.split-band.reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: transform .7s var(--ease); }
.split-band:hover .split-media img { transform: scale(1.05); }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: var(--sp-6) var(--sp-5); background: var(--surface); }
@media (max-width: 860px) {
  .split-band, .split-band.reverse { grid-template-columns: 1fr; }
  .split-band.reverse .split-media { order: 0; }
  .split-media { min-height: 260px; }
  .split-copy { padding: var(--sp-5) var(--gutter); }
}

/* Textured leaf strip divider */
.leaf-divider {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.leaf-divider::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, rgba(6,15,38,.55) 30%, rgba(6,15,38,.55) 70%, var(--cream) 100%);
}
@media (max-width: 640px) { .leaf-divider { height: 140px; } }

/* ----------------------------- Responsive ------------------------------------ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: var(--sp-6) 0; }
  .hero-media { order: -1; }
  .hero-media img { height: 320px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .programme-grid, .about-grid, .seller-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .header-ctas .btn-outline-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .hide-sm { display: none; }
  .seller-perks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
