/* =========================================================
   Kratibella PureCare — Little Gator
   Designed in the spirit of modern Indian D2C brands
   (think: Mama Earth, The Moms Co., Plum, Pilgrim).
   ========================================================= */

:root {
  /* Brand greens � Kratibella palette (deep forest + sage), aligned with the
     reference site's design tokens: --forest #0D4943, --moss, --sage #8DC793 */
  --green:        #0D4943;   /* primary brand green (sections, type on light) */
  --green-dark:   #093532;   /* deeper forest for hover/active */
  --green-darker: #06221F;   /* near-ink for strong contrast */
  --moss:         #2C5E50;   /* mid-green for muted type on dark */
  --sage:         #8DC793;   /* soft sage accent */
  --green-soft:   #E5EFE9;   /* light green tint background */
  --green-tint:   #F2F7F2;   /* softest green wash */

  /* Neutrals */
  --ink:        #142019;
  --ink-2:      #3A4A41;
  --ink-3:      #6B7B71;
  --line:       #E6E9E7;
  --line-soft:  #F0F2F0;
  --bg:         #FFFFFF;
  --bg-soft:    #FAFBFA;
  --bg-cream:   #FBF7EE;

  /* Accent (used sparingly, not loudly) */
  --accent:     #8DC793;   /* sage � used sparingly like the reference site */

  /* Type */
  --serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(20,32,25,.04), 0 2px 8px rgba(20,32,25,.04);
  --shadow:    0 4px 14px rgba(20,32,25,.06), 0 12px 32px rgba(20,32,25,.06);
  --shadow-lg: 0 18px 60px rgba(20,32,25,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--green); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ===================== Typography ===================== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); letter-spacing: -.02em; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { color: var(--ink-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
}

.lead { font-size: 1.1rem; color: var(--ink-2); max-width: 56ch; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); }

.btn--download { background: var(--bg-soft); color: var(--green-dark); border-color: var(--green); box-shadow: inset 0 0 0 1px rgba(20,32,25,.08); }
.btn--download:hover { background: var(--green-soft); color: var(--green-dark); border-color: var(--green-dark); }
.btn--download::before { content: '\2193'; margin-right: .4rem; font-weight: 600; }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--green-soft); }

.btn--block { width: 100%; }
.btn--sm { padding: .65em 1.2em; font-size: .85rem; }

/* ===================== Announcement bar ===================== */
.announce {
  background: var(--green-darker);
  color: #fff;
  font-size: .82rem;
  text-align: center;
  padding: .55rem 1rem;
  letter-spacing: .02em;
}
.announce strong { color: #fff; font-weight: 600; }
.announce .sep { opacity: .35; margin: 0 .65rem; }

/* ===================== Navbar ===================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: 0 6px 18px rgba(20,32,25,.05); background: #fff; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo { height: 44px; width: auto; display: block; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--green-darker); letter-spacing: -.01em; }
.brand__sub { font-size: .6rem; letter-spacing: .22em; color: var(--ink-3); margin-top: 4px; font-weight: 500; text-transform: uppercase; }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .92rem; color: var(--ink-2); font-weight: 500;
  position: relative; padding: .35rem 0;
  transition: color .2s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--green-dark); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--green); border-radius: 2px;
}

.nav__actions { display: flex; align-items: center; gap: .75rem; }
.nav__icon {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--ink-2); transition: background .2s ease, color .2s ease;
}
.nav__icon:hover { background: var(--green-soft); color: var(--green-dark); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===================== Hero (homepage) ===================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--green-tint) 0%, #fff 100%);
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__content { max-width: 560px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 999px;
  font-size: .8rem; color: var(--ink-2); font-weight: 500;
  margin-bottom: 1.6rem;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(13,73,67,.2); }
.hero__title { margin-bottom: 1.4rem; }
.hero__title em { font-style: italic; color: var(--green-dark); font-weight: 500; }
.hero__lead { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 2rem; max-width: 50ch; }
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero__trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--serif); font-size: 1.65rem; color: var(--ink); font-weight: 500; }
.hero__trust span { font-size: .82rem; color: var(--ink-3); margin-top: 2px; }

.hero__media { position: relative; }
.hero__media .img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__media .img-sticker {
  position: absolute; bottom: -28px; left: -28px;
  width: 160px; height: 160px;
  background: var(--green); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--serif); font-size: 1rem; line-height: 1.2;
  padding: 1rem;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.hero__media .img-sticker em { display: block; font-size: 1.4rem; font-style: italic; margin-top: 4px; }

/* ===================== Marquee (subtle, single-line trust strip) ===================== */
.strip {
  background: var(--ink);
  color: #fff;
  padding: .9rem 0;
  overflow: hidden;
}
.strip__track {
  display: flex; gap: 3rem; align-items: center;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.strip__track .leaf { color: var(--green); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===================== Section utilities ===================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--green-soft); }
.section--cream { background: var(--bg-cream); }
.section--green { background: var(--green-darker); color: #fff; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: rgba(255,255,255,.78); }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 720px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===================== Why / The gap ===================== */
.gap { padding: clamp(64px, 9vw, 120px) 0; }
.gap__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.gap__media { position: relative; }
.gap__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: 20px; }
.gap__media .badge {
  position: absolute; top: 24px; left: 24px;
  background: #fff; padding: .85rem 1.1rem; border-radius: 12px;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: var(--shadow);
}
.gap__media .badge strong { font-family: var(--serif); font-size: 1.2rem; }
.gap__media .badge span { font-size: .78rem; color: var(--ink-3); }

.gap__points { margin-top: 2rem; display: grid; gap: 1.25rem; }
.gap__point {
  display: flex; gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gap__point .icon {
  flex: 0 0 38px; height: 38px; border-radius: 10px;
  background: var(--green-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.gap__point h4 { margin-bottom: 4px; }
.gap__point p { font-size: .92rem; }

/* ===================== Product cards ===================== */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.pcard__media {
  position: relative;
  background: var(--green-tint);
  aspect-ratio: 4/3.4;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.pcard__media img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .35s ease; }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__tag {
  position: absolute; top: 14px; left: 14px;
  background: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px; color: var(--green-dark);
}
.pcard__body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.pcard__title { margin-bottom: .35rem; }
.pcard__desc { font-size: .92rem; color: var(--ink-2); margin-bottom: 1rem; }
.pcard__meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem;
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line-soft);
}
.pcard__sizes { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .78rem; color: var(--ink-3); }
.pcard__sizes span { padding: 2px 8px; border: 1px solid var(--line); border-radius: 4px; }
.pcard__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; font-weight: 500; color: var(--green-dark);
}
.pcard:hover .pcard__cta { gap: .55rem; }

/* Pipeline */
.pipeline { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px dashed var(--line); }
.pipeline__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.pipeline__head h3 { font-family: var(--sans); font-weight: 500; font-size: 1.05rem; color: var(--ink-2); }
.pipeline__head span { font-size: .82rem; color: var(--ink-3); }
.pipeline__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pipeline__item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-soft); padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.pipeline__item img { width: 56px; height: 64px; object-fit: contain; }
.pipeline__item h4 { font-family: var(--sans); font-size: .95rem; font-weight: 600; }
.pipeline__item span { font-size: .8rem; color: var(--ink-3); }

/* ===================== Ingredients ===================== */
.ingredients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.ing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color .2s ease, transform .2s ease;
}
.ing:hover { border-color: var(--green); transform: translateY(-2px); }
.ing__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-soft); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.ing h3 { margin-bottom: .4rem; }
.ing p { font-size: .92rem; }
.ing__pill {
  display: inline-block;
  margin-top: 1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-2);
}

/* Free-from row */
.free-from {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.free-from span {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .85rem; color: var(--ink-2);
  white-space: nowrap;
}
.free-from span::before {
  content: "\2715"; color: var(--green); font-weight: 700; font-size: .9em;
  line-height: 1;
}

/* ===================== Brand page (products + ingredients) =====================
   .brand-hero is unified with .page-hero in the "Unified Page Hero" block. */

.range-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 2.4rem 0 1rem;
}
.range-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.range-card:hover {
  transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green);
}
.range-card__media {
  aspect-ratio: 4/5; background: var(--green-tint); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.range-card__media img { width: 100%; height: 100%; object-fit: cover; max-height: 280px; }
.range-card__cat {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600;
}
.range-card h3 { font-size: clamp(1.2rem, 4.5vw, 1.45rem); color: var(--ink); }
.range-card__meta { font-size: .9rem; color: var(--ink-3); }
.range-card__desc { color: var(--ink-2); font-size: .96rem; }
.range-card__claim {
  display: inline-block; padding: .3rem .65rem; border-radius: 999px;
  background: var(--green-soft); color: var(--green-dark);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; align-self: flex-start;
}
.range-card__price {
  margin-top: auto; display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .35rem .75rem;
  padding-top: 1rem; border-top: 1px solid var(--line-soft);
}
.range-card__price .price { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.range-card__price .size { font-size: .78rem; color: var(--ink-3); }

.book-banner {
  background: var(--green-soft); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 1.6rem 1.8rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  margin: 2rem 0;
}
.book-banner__copy { flex: 1 1 240px; min-width: 0; }
.book-banner__copy h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .25rem; }
.book-banner__copy p { color: var(--ink-2); font-size: .92rem; }

.ingredients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.4rem;
}
.ingredient {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: border-color .2s ease, transform .2s ease;
}
.ingredient:hover { border-color: var(--green); transform: translateY(-2px); }
.ingredient__num {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--green); margin-bottom: .6rem; display: block;
}
.ingredient h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .4rem; }
.ingredient p { color: var(--ink-2); font-size: .92rem; line-height: 1.65; }

.section--forest-bg { background: var(--green-darker); color: rgba(255,255,255,.85); }
.section--forest-bg h2, .section--forest-bg h3 { color: #fff; }
.section--forest-bg .lead { color: rgba(255,255,255,.72); }
.section--forest-bg .ingredient {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
}
.section--forest-bg .ingredient h3 { color: #fff; }
.section--forest-bg .ingredient p { color: rgba(255,255,255,.7); }
.section--forest-bg .ingredient__num { color: var(--sage); }

/* ===================== Story / Founders ===================== */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fcard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.fcard__img { aspect-ratio: 4/4.4; overflow: hidden; }
.fcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fcard:hover .fcard__img img { transform: scale(1.05); }
.fcard__body { padding: 1.5rem 1.6rem 1.8rem; }
.fcard__role {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600; margin-bottom: .6rem;
}
.fcard h3 { margin-bottom: .5rem; }
.fcard p { font-size: .94rem; }

/* ===================== Quote band ===================== */
.quote-band {
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.quote-band__mark {
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--green); margin-bottom: -1rem; display: inline-block;
}
.quote-band__text {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3; color: var(--ink); margin-bottom: 1.5rem;
}
.quote-band__cite { font-size: .9rem; color: var(--ink-3); }

/* ===================== Values ===================== */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.value {
  padding: 1.6rem; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.value__num {
  font-family: var(--serif); font-size: 1.9rem;
  color: var(--green); margin-bottom: .8rem; display: block;
}
.value h4 { margin-bottom: .4rem; }
.value p { font-size: .9rem; }

/* ===================== CTA band ===================== */
.cta-band {
  background: var(--green);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(13,73,67,.5), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(13,73,67,.4), transparent 50%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* Newsletter inline */
.newsletter {
  display: flex; gap: .5rem; max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.08);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
}
.newsletter input {
  flex: 1; background: transparent; border: 0; color: #fff;
  padding: .65rem 1rem; font-family: var(--sans); font-size: .92rem;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter button {
  background: #fff; color: var(--ink); border: 0;
  padding: .7rem 1.4rem; border-radius: 999px;
  font-weight: 500; font-size: .9rem;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--accent); }

/* ===================== Page hero (sub-pages) =====================
   See "Unified Page Hero" block at end of file for the single source of truth. */

/* ===================== Founder rows (full page) ===================== */
.founder-row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: 5rem;
}
.founder-row:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.founder-row:nth-child(even) .founder-row__img { order: 2; }
.founder-row__img img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: 20px; }
.founder-row__body { max-width: 520px; }
.founder-row blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  line-height: 1.45; color: var(--ink);
  border-left: 3px solid var(--green); padding: .25rem 0 .25rem 1.2rem;
  margin: 1.5rem 0;
}

/* ===================== Contact ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px); }
.contact-info dl { display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-info dt { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .25rem; }
.contact-info dd { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.contact-info dd a { color: var(--green-dark); }

.cform { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.cform .field { margin-bottom: 1.2rem; }
.cform .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-2); margin-bottom: .4rem; }
.cform input, .cform select, .cform textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem;
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: 0; border-color: var(--green); box-shadow: 0 0 0 4px rgba(13,73,67,.12);
}
.cform textarea { resize: vertical; }
.form-note { margin-top: 1rem; padding: .8rem 1rem; background: var(--green-soft); color: var(--green-darker); border-radius: var(--radius-sm); font-size: .9rem; }

/* ===================== Investor specific ===================== */
.fin-table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.fin-table { width: 100%; border-collapse: collapse; min-width: 720px; color: #fff; }
.fin-table th, .fin-table td {
  padding: 1rem 1.2rem; text-align: right; font-variant-numeric: tabular-nums; font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fin-table th:first-child, .fin-table td:first-child { text-align: left; font-weight: 500; }
.fin-table thead th { background: rgba(255,255,255,.06); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; }
.fin-table .row-hero td { color: var(--accent); font-weight: 600; }
.fin-table .neg { color: #c2632f; }
.fin-table tbody tr:hover { background: rgba(255,255,255,.03); }

.faq { display: grid; gap: 1rem; max-width: 880px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--green); }
.faq summary {
  cursor: pointer; font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); transition: transform .25s ease; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .8rem; font-size: .95rem; }

.risk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.risk {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.risk__label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); margin-bottom: .5rem; }
.risk h4 { margin-bottom: .6rem; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; }
.risk p { font-size: .92rem; }

/* ===================== PDP (product detail page) ===================== */
.pdp { padding: clamp(48px, 6vw, 80px) 0; }
.pdp__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.pdp__gallery .pdp__main {
  background: var(--green-tint); border-radius: var(--radius); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1/1;
}
.pdp__gallery .pdp__main img { max-height: 100%; object-fit: contain; }
.pdp__thumbs { display: flex; gap: .6rem; margin-top: .8rem; }
.pdp__thumbs button {
  background: var(--green-tint); border: 2px solid transparent; border-radius: 10px;
  padding: .8rem; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.pdp__thumbs button.active, .pdp__thumbs button:hover { border-color: var(--green); }
.pdp__thumbs img { max-width: 100%; max-height: 100%; object-fit: contain; }

.pdp__title { margin-bottom: .8rem; }
.pdp__sub { color: var(--ink-3); margin-bottom: 1.4rem; }
.pdp__price { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); margin-bottom: 1.6rem; }
.pdp__price small { font-size: .9rem; color: var(--ink-3); margin-left: .4rem; font-family: var(--sans); }

.pdp__sizes { display: flex; gap: .5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.pdp__sizes button {
  padding: .65rem 1.1rem; border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  font-weight: 500; font-size: .9rem; color: var(--ink-2);
}
.pdp__sizes button.active { border-color: var(--green); color: var(--green-dark); background: var(--green-soft); }

.pdp__benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin: 1.6rem 0; }
.pdp__benefits div {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; color: var(--ink-2);
}
.pdp__benefits svg { flex: 0 0 18px; color: var(--green); }

.pdp__details { margin-top: 2rem; }
.pdp__details details {
  border-top: 1px solid var(--line); padding: 1rem 0;
}
.pdp__details summary {
  cursor: pointer; font-weight: 500; display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.pdp__details summary::-webkit-details-marker { display: none; }
.pdp__details summary::after { content: "+"; color: var(--green); font-size: 1.3rem; }
.pdp__details details[open] summary::after { content: "−"; }
.pdp__details p, .pdp__details ul { margin-top: .8rem; font-size: .92rem; color: var(--ink-2); }
.pdp__details ul { padding-left: 1.2rem; }

/* Related */
.related { padding: clamp(48px, 6vw, 80px) 0; background: var(--bg-soft); }

/* ===================== Legal pages ===================== */
.legal { padding: clamp(48px, 6vw, 88px) 0; background: var(--bg); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__inner h2 {
  font-size: 1.45rem; font-weight: 500; margin: 2.6rem 0 .9rem;
  color: var(--ink); letter-spacing: -.005em;
}
.legal__inner h2:first-child { margin-top: 0; }
.legal__inner p { margin-bottom: 1rem; color: var(--ink-2); line-height: 1.75; }
.legal__inner ul { margin: 0 0 1.4rem 1.2rem; }
.legal__inner li { margin-bottom: .55rem; color: var(--ink-2); line-height: 1.7; }
.legal__inner a { color: var(--green-dark); border-bottom: 1px solid var(--green-soft); transition: border-color .2s ease; }
.legal__inner a:hover { border-color: var(--green-dark); }
.legal__inner strong { color: var(--ink); font-weight: 600; }

/* ===================== Footer ===================== */
.footer {
  background: var(--green-darker);
  color: rgba(255,255,255,.78);
  padding: 5rem 0 2rem;
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand .brand__logo { height: 64px; margin-bottom: 1.1rem; }
.footer__brand .footer__mark {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem;
}
.footer__brand .footer__mark img {
  width: 56px; height: 56px; object-fit: contain;
  background: transparent; padding: 0;
  border-radius: 0; box-shadow: none;
}
.footer__brand .footer__wordmark { line-height: 1; }
.footer__brand .footer__wordmark .name {
  font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: #fff;
  letter-spacing: -.01em; display: block;
}
.footer__brand .footer__wordmark .name em {
  font-style: italic; color: var(--sage); margin-left: 2px;
}
.footer__brand .footer__wordmark .sub {
  display: block; margin-top: 4px;
  font-size: .58rem; letter-spacing: .22em; color: rgba(255,255,255,.55);
  font-weight: 500; text-transform: uppercase;
}
.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 280px; }
.footer__col h4 {
  color: #fff; font-family: var(--sans); font-weight: 500; font-size: .95rem;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em;
}
.footer__col a, .footer__col span {
  display: block; color: rgba(255,255,255,.65);
  font-size: .9rem; padding: .35rem 0; transition: color .2s ease;
}
.footer__col a:hover { color: #fff; }
.footer__col a.btn--book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  margin-top: .8rem;
  padding: .9em 1.4em;
}
.footer__social { display: flex; gap: .75rem; margin-top: 1.4rem; }
.footer__social a {
  width: 36px; height: 36px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%; color: #fff;
}
.footer__social a:hover { background: var(--green); }

.footer__bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { color: rgba(255,255,255,.5); }
.footer__legal a:hover { color: #fff; }

/* ===================== Reveal animation ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (min-width: 600px) {
  /* brand wordmark visible by default; no-op reserved for future tweaks */
}

@media (max-width: 599px) {
  .brand__logo { height: 36px; }
  .brand__name { font-size: 1rem; }
  .brand__sub { font-size: .52rem; letter-spacing: .18em; }
}

@media (max-width: 1024px) {
  .hero__inner, .gap__inner, .contact-grid { grid-template-columns: 1fr; }
  .gap__media, .hero__media { max-width: 540px; margin: 0 auto; }
  .pdp__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .founder-row, .founder-row:nth-child(even) { grid-template-columns: 1fr; }
  .founder-row:nth-child(even) .founder-row__img { order: 0; }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; background: #fff;
    flex-direction: column; gap: 0; padding: 1rem var(--pad) 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s ease;
    box-shadow: 0 20px 30px rgba(0,0,0,.08);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav__toggle { display: flex; }
  .nav__actions .btn { display: none; }
  .products-grid, .ingredients-grid, .story-grid, .pipeline__items, .risk-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .range-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .range-card { padding: 1.2rem; gap: .85rem; }
  .range-card__media { aspect-ratio: 4/4; }
  .free-from { gap: .5rem; }
  .free-from span { font-size: .8rem; padding: .45rem .75rem; }
  .brand-hero .hero__cta { flex-direction: column; align-items: stretch; }
  .brand-hero .hero__cta .btn { width: 100%; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__media .img-sticker { width: 120px; height: 120px; left: auto; right: -10px; bottom: -16px; font-size: .85rem; }
  .fund-bar { font-size: .8rem; padding: .5rem .5rem .5rem 1rem; }
  .fund-bar__actions .btn--sm { padding: .55em 1em; font-size: .8rem; }
  /* Tighten announcement bar to one tidy line */
  .announce { font-size: .72rem; padding: .45rem 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .announce .sep, .announce > span:nth-child(3) { display: none; }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cform .field-row { grid-template-columns: 1fr; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__trust { gap: 1.4rem; }
  .hero__trust strong { font-size: 1.4rem; }
  .quote-band__text { font-size: 1.4rem; }
  .fund-bar__text { display: none; }
  .fund-bar { padding: .35rem; }
  /* Below 520px, hide the announcement bar entirely for a clean mobile header */
  .announce { display: none; }
  .nav__inner { height: 64px; }
  .nav__links { inset: 64px 0 auto 0; }
}


/* ===================== FAQ (investor) ===================== */
.faq { display: grid; gap: .75rem; max-width: 880px; margin: 2rem auto 0; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--ink); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--green); line-height: 1;
  transition: transform .25s ease; flex-shrink: 0;
}
.faq details[open] summary::after { content: '-'; }
.faq details p { margin-top: 1rem; color: var(--ink-2); line-height: 1.7; }
.faq details p em { color: var(--green-dark); font-style: normal; font-weight: 600; }

/* ===================== Book Appointment ===================== */
.btn--book {
  background: var(--green); color: #fff; padding: .9em 1.4em;
  border-radius: 999px; font-weight: 600;
  display: inline-flex; align-items: center; gap: .55rem;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn--book:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,73,67,.18); }
.btn--book::before {
  content: '\2192';
  font-size: 1em;
  margin-right: .35rem;
  display: inline-block;
  line-height: 1;
}
.btn--book.btn--lg { padding: 1.05em 1.8em; font-size: 1.05rem; }
.btn--book.btn--block { display: flex; justify-content: center; width: 100%; }

/* ===================== Unified Page Hero (all sub-pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green) 55%, var(--moss) 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(141,199,147,.18), transparent 45%),
    radial-gradient(circle at 10% 82%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--accent), var(--sage));
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 820px; }
.page-hero .breadcrumb { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 1.4rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb a:hover { color: var(--sage); }
.page-hero .breadcrumb .sep { margin: 0 .55rem; color: rgba(255,255,255,.4); }
.page-hero .eyebrow {
  color: var(--sage);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(141,199,147,.35);
  padding: .45rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  font-weight: 700;
  margin: 0 0 1.4rem;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.page-hero h1 em { font-style: italic; color: var(--sage); font-weight: 500; }
.page-hero .lead,
.page-hero p {
  font-size: 1.18rem;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
  line-height: 1.6;
}
.page-hero .hero__cta { margin-top: 1.8rem; }
.page-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.page-hero .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

/* Make brand-hero look like a unified page hero */
.brand-hero {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green) 55%, var(--moss) 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  position: relative; overflow: hidden;
}
.brand-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(141,199,147,.18), transparent 45%),
    radial-gradient(circle at 10% 82%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.brand-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--accent), var(--sage));
  pointer-events: none;
}
.brand-hero > .container { position: relative; }
.brand-hero .eyebrow {
  color: var(--sage);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(141,199,147,.35);
  padding: .45rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.brand-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  font-weight: 700;
  margin: 0 0 1.4rem;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.brand-hero .lead { color: rgba(255,255,255,.88); max-width: 62ch; font-size: 1.18rem; }
.brand-hero .hero__cta { margin-top: 1.8rem; }

/* ===================== Consistent sub-heading ===================== */
.subhead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green-darker);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  padding: .7rem 1.2rem .7rem 1.4rem;
  background: linear-gradient(90deg, var(--green-soft) 0%, rgba(229,239,233,0) 100%);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  display: inline-block;
}
.subhead--with-bar {
  padding-left: 1.4rem;
  border-left: 4px solid var(--green);
}
.section--forest-bg .subhead,
.section--green .subhead {
  color: var(--sage);
  border-left-color: var(--sage);
  background: linear-gradient(90deg, rgba(141,199,147,.15) 0%, rgba(141,199,147,0) 100%);
}
.section--cream .subhead--with-bar { border-left-color: var(--green); }
.section-head .subhead { display: inline-block; }

/* ===================== Philosophy page sections (about.html) ===================== */
.philosophy-section {
  padding: clamp(64px, 9vw, 112px) 0;
}
.philosophy-section + .philosophy-section { border-top: 1px solid var(--line-soft); }
.philosophy-section .eyebrow { display: block; margin-bottom: .8rem; }
.philosophy-section p { font-size: 1.02rem; line-height: 1.78; color: var(--ink-2); }
.philosophy-section p + p { margin-top: 1rem; }

.philosophy-section .lead-block { max-width: 64ch; }

.principles {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
  margin-top: 2.4rem;
}
.principle {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: border-color .2s ease, transform .2s ease;
}
.principle:hover { border-color: var(--green); transform: translateY(-2px); }
.principle__num {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--green); margin-bottom: .6rem; display: block;
}
.principle h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: .5rem; }
.principle p { font-size: .9rem; line-height: 1.65; }

.philosophy-quote {
  text-align: center;
  max-width: 880px; margin: 0 auto;
  padding: 1rem 0;
}
.philosophy-quote .quote-band__mark { color: var(--green); }
.philosophy-quote__text {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.3; color: var(--ink); margin-bottom: 1.2rem;
}

.ingredient-story {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-top: 2.4rem;
}
.ingredient-story img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 20px; }
.ingredient-story .ingredient-list { display: grid; gap: 1rem; margin-top: 1.4rem; }
.ingredient-story .ingredient-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  font-size: .95rem; color: var(--ink-2); line-height: 1.6;
  padding: .8rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.ingredient-story .ingredient-list strong { color: var(--green-dark); font-weight: 600; display: block; margin-bottom: .2rem; }

.do-not-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.6rem;
}
.do-not-list li {
  list-style: none; position: relative; padding: 1.1rem 1.2rem 1.1rem 3rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--ink-2);
}
.do-not-list li::before {
  content: "\2715"; position: absolute; left: 1.1rem; top: 1.1rem;
  color: var(--green); font-weight: 700; font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
  .ingredient-story { grid-template-columns: 1fr; }
  .do-not-list { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .principles { grid-template-columns: 1fr; }
}

/* ===================== Brand page new layout ===================== */
.brand-detail-block {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: 4rem;
}
.brand-detail-block:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.brand-detail-block:nth-child(even) .brand-detail-block__media { order: 2; }
.brand-detail-block__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 20px; }
.brand-detail-block__body { max-width: 540px; }
.brand-detail-block__body p { font-size: 1.02rem; line-height: 1.78; }
.brand-detail-block__body p + p { margin-top: 1rem; }

.reasons-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  margin-top: 2.4rem;
}
.reason {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  transition: border-color .2s ease, transform .2s ease;
}
.reason:hover { border-color: var(--green); transform: translateY(-2px); }
.reason__num {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--green); display: block; margin-bottom: .6rem;
}
.reason h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: .4rem; }
.reason p { font-size: .88rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-detail-block, .brand-detail-block:nth-child(even) { grid-template-columns: 1fr; }
  .brand-detail-block:nth-child(even) .brand-detail-block__media { order: 0; }
}
@media (max-width: 520px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ===================== Founders page new layout ===================== */
.founder-block {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: 5rem;
}
.founder-block:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.founder-block:nth-child(even) .founder-block__media { order: 2; }
.founder-block__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: 20px; }
.founder-block__body { max-width: 540px; }
.founder-block__body p { font-size: 1.02rem; line-height: 1.78; margin-top: 1rem; }

.movement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 2.4rem;
}
.movement-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: border-color .2s ease, transform .2s ease;
}
.movement-card:hover { border-color: var(--green); transform: translateY(-2px); }
.movement-card__num {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--green); display: block; margin-bottom: .6rem;
}
.movement-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: .4rem; }
.movement-card p { font-size: .9rem; line-height: 1.65; }

@media (max-width: 1024px) {
  .movement-grid { grid-template-columns: 1fr; }
  .founder-block, .founder-block:nth-child(even) { grid-template-columns: 1fr; }
  .founder-block:nth-child(even) .founder-block__media { order: 0; }
  .founder-cards-grid { grid-template-columns: 1fr; }
}

/* Three founder cards (Daadi, The Mother, The Six-Year-Old) */
.founder-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.founder-cards-grid .fcard {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.founder-cards-grid .fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.founder-cards-grid .fcard__body p { font-size: .92rem; line-height: 1.7; }
@media (max-width: 1024px) {
  .founder-cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.book-banner {
  background: var(--green-soft); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 1.6rem 1.8rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  margin: 2rem 0;
}
.book-banner__copy { flex: 1 1 240px; min-width: 0; }
.book-banner__copy h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .25rem; }
.book-banner__copy p { color: var(--ink-2); font-size: .92rem; }
