/* ========================================================
   HERBELLE REMEDIES — "The Botanical Codex"
   A luxury editorial design: Aesop × Kinfolk × Apothecary
   Palette: Parchment #F3E0C6 · Forest #2D4530 · Cream #FAF5EC
   Fonts: Playfair Display (display) + Inter (body)
   ======================================================== */

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --parchment:   #F3E0C6;
  --parchment-lt:#FBF2E6;
  --forest:      #2D4530;
  --forest-mid:  #3D6B4F;
  --forest-lt:   #5A7A5C;
  --cream:       #FAF5EC;
  --ink:         #1A1A18;
  --ink-soft:    #3A3A35;
  --bronze:      #8E6B42;
  --bronze-lt:   #C49A52;
  --mist:        #E8E0D4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1180px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.inline-link {
  color: var(--bronze);
  border-bottom: 1px solid rgba(142,107,66,0.4);
  transition: border-color 0.2s;
}
.inline-link:hover { border-color: var(--bronze); }

/* ── TYPOGRAPHY SCALE ─────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ── UTILITY ──────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ── SCROLL SENTINEL ──────────────────────────────────── */
#scroll-sentinel { position: absolute; bottom: 0; height: 1px; width: 100%; pointer-events: none; }

/* ── STICKY NAV ───────────────────────────────────────── */
.site-nav {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(20,28,20,0.65) 0%, transparent 100%);
  padding-top: 0.4rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 72px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,224,198,0.82);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; font-weight: 600; border-bottom: 2px solid rgba(243,224,198,0.85); padding-bottom: 2px; }

.nav-cta {
  background: rgba(243,224,198,0.15) !important;
  color: var(--parchment-lt) !important;
  padding: 0.5rem 1.2rem !important;
  border: 1px solid rgba(243,224,198,0.4) !important;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(243,224,198,0.28) !important;
  border-color: var(--parchment) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(243,224,198,0.85); transition: all 0.3s;
}

/* ── MOBILE NAV ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(250,245,236,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(45,69,48,0.15);
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  /* Reset to dark text when expanded over light dropdown background */
  .nav-links.open a {
    color: var(--forest) !important;
    font-size: 0.9rem;
  }
  .nav-links.open a.nav-cta {
    color: var(--cream) !important;
    background: var(--forest) !important;
    border-color: var(--forest) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/header-image.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: sepia(20%) contrast(1.1) brightness(0.75);
  /* scale(1.25): 12.5% overflow each side — buffer for safe parallax translateY */
  transform: scale(1.25);
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(45,69,48,0.45) 0%,
      rgba(243,224,198,0.08) 45%,
      rgba(26,26,24,0.72) 100%);
}

/* Mobile: cap hero height */
@media (max-width: 768px) {
  .hero { min-height: 80svh; }
}
@media (max-width: 480px) {
  .hero { min-height: 72svh; }

  /* Ensure hero content has adequate horizontal padding */
  .hero-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Prevent hero-location text from touching screen edges */
  .hero-location {
    padding: 0 1.25rem;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--parchment-lt);
  padding: var(--section-pad) 5% 2rem;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

/* Large centred logo as the hero brand mark */
.hero-brand-mark {
  width: clamp(140px, 25vw, 220px);
  height: auto;
  margin-bottom: 2.5rem;
  filter: brightness(0) invert(1) sepia(1) hue-rotate(5deg) saturate(0.3) brightness(1.1);
  /* produces a warm parchment-cream tone from any PNG */
  opacity: 0.92;
}

.hero-rule {
  width: 60px; height: 1px;
  background: rgba(243,224,198,0.5);
  margin: 1.8rem auto;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-heading em {
  font-style: italic;
  color: var(--parchment);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.04em;
  color: rgba(243,224,198,0.95);
  max-width: 520px;
}

.hero-location {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  justify-content: center;
  text-align: center;
  width: 100%;
  white-space: normal;
}
@media (min-width: 540px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 480px;
    gap: 1rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    white-space: nowrap;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--forest);
  border: 2px solid var(--parchment);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 2px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--parchment);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--parchment-lt);
  border: 1px solid rgba(243,224,198,0.45);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 2px;
}

.btn-ghost:hover {
  border-color: var(--parchment-lt);
  background: rgba(243,224,198,0.08);
}

.hero-scroll-hint {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(243,224,198,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  padding-bottom: 2.5rem;
}

@media (max-height: 680px) {
  .hero-scroll-hint { display: none; }
}

.hero-scroll-hint svg { opacity: 0.55; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════
   TRUST TICKER
   ═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--parchment);
  border-top: 1px solid rgba(45,69,48,0.1);
  border-bottom: 1px solid rgba(45,69,48,0.1);
  padding: 1.1rem 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

/* Ticker never pauses — continuous scroll */
.trust-track { pointer-events: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.trust-item svg { flex-shrink: 0; color: var(--bronze); }

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ═══════════════════════════════════════════════════════
   ABOUT — CINEMATIC SPLIT
   ═══════════════════════════════════════════════════════ */
.about {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about-photo-col {
  position: relative;
  overflow: hidden;
}

.about-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: sepia(15%) contrast(1.08);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.about-photo-col:hover img { transform: scale(1.0); }

.about-photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45,69,48,0) 70%,
    rgba(45,69,48,0.6) 100%
  );
}

.about-nimh-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  background: rgba(250,245,236,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(243,224,198,0.2);
  border-radius: 4px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 200px;
}

.about-nimh-badge img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.about-nimh-badge span {
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(250,245,236,0.8);
  letter-spacing: 0.06em;
}

.about-text-col {
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}



.about-eyebrow { margin-bottom: 1.5rem; color: var(--bronze-lt); }

.about-heading {
  color: #fff;
  margin-bottom: 2rem;
}

.about-heading em {
  font-style: italic;
  color: var(--parchment-lt);
}

.about-body {
  color: rgba(243,224,198,0.75);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  max-width: 520px;
}

.about-body p + p { margin-top: 1.2rem; }

.about-rule {
  width: 40px; height: 1px;
  background: rgba(243,224,198,0.3);
  margin: 2rem 0;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.credential-item { padding-left: 0; }

.cred-img {
  display: block;
  max-height: 180px;
  width: auto;
  max-width: 100%;
}

.cred-img--heartwood {
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px;
}

.cred-img--nimh {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.credential-item .number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1;
}

.credential-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,224,198,0.5);
  margin-top: 0.2rem;
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  border-bottom: 1px solid rgba(243,224,198,0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, gap 0.2s;
}

.about-cta-link:hover { border-color: var(--parchment); gap: 0.9rem; }

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-photo-col {
    height: 55vw;
    min-height: 320px;
  }
  .about-photo-col::after { display: none; }
  .about-nimh-badge { bottom: 1.5rem; right: 1.5rem; }
  .about-text-col::before { display: none; }
  .about-credentials {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .about-credentials {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .cred-img { max-height: 140px; }
}

/* ═══════════════════════════════════════════════════════
   CONDITIONS — EDITORIAL NUMBERED LIST
   "The index that stops people in their tracks"
   ═══════════════════════════════════════════════════════ */
.conditions {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.conditions-header {
  text-align: center;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.conditions-header .eyebrow { margin-bottom: 1rem; }

.conditions-header .display-md { color: var(--forest); }

.conditions-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.conditions-intro .inline-link:hover { border-color: var(--bronze); }

.conditions-diversity {
  margin-top: 2rem;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0.7;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.conditions-list {
  list-style: none;
  border-top: 1px solid var(--mist);
}

.condition-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--mist);
  cursor: default;
  transition: background 0.25s;
  border-radius: 2px;
}

.condition-item:hover { background: rgba(243,224,198,0.35); }

.condition-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(45,69,48,0.2);
  text-align: right;
  line-height: 1;
}

.condition-body {}

.condition-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.condition-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  opacity: 0.7;
  line-height: 1.5;
}

/* Condition arrow hidden — add href links to <li> elements to re-enable */
.condition-arrow { display: none; }

@media (max-width: 600px) {
  .condition-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .condition-arrow { display: none; }
  .condition-num { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════
   BOTANICAL ILLUSTRATION — DRAW-ON SVG SECTION
   ═══════════════════════════════════════════════════════ */
.botanical-break {
  background: var(--parchment);
  padding: clamp(4rem, 7vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}



.botanical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.botanical-text {}

.botanical-text .eyebrow { margin-bottom: 1.2rem; }

.botanical-text .display-md {
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.botanical-text .display-md em { font-style: italic; }

.botanical-text p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.8;
}

.botanical-text p + p { margin-top: 1rem; }

.botanical-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Botanical SVG circles fade in after paths draw */
.draw-svg circle {
  opacity: 0;
  transition: opacity 0.6s ease 2s;
}
.draw-svg.animate-in circle {
  opacity: 1;
}

/* Stagger delay for each element */
.draw-svg path:nth-child(1)  { transition-delay: 0s; }
.draw-svg path:nth-child(2)  { transition-delay: 0.15s; }
.draw-svg path:nth-child(3)  { transition-delay: 0.3s; }
.draw-svg path:nth-child(4)  { transition-delay: 0.45s; }
.draw-svg path:nth-child(5)  { transition-delay: 0.6s; }
.draw-svg path:nth-child(6)  { transition-delay: 0.75s; }
.draw-svg path:nth-child(7)  { transition-delay: 0.9s; }
.draw-svg path:nth-child(8)  { transition-delay: 1.05s; }
.draw-svg path:nth-child(9)  { transition-delay: 1.2s; }
.draw-svg path:nth-child(10) { transition-delay: 1.35s; }
.draw-svg path:nth-child(11) { transition-delay: 1.5s; }
.draw-svg line:nth-child(1)  { transition-delay: 0s; stroke-dasharray: 400; }
.draw-svg line:nth-child(2)  { transition-delay: 0.2s; stroke-dasharray: 300; }

@media (max-width: 768px) {
  .botanical-inner { grid-template-columns: 1fr; }
  .botanical-illustration { order: -1; }
  .botanical-illustration svg { max-width: 260px; }
}

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.process-header .eyebrow { margin-bottom: 1rem; }
.process-header .display-md { color: var(--forest); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--mist);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  position: relative;
}

.process-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(45,69,48,0.2);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}

.process-step:hover .process-num {
  background: var(--forest);
  color: var(--parchment-lt);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  opacity: 0.75;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .process-grid::before { display: none; }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL — TYPOGRAPHIC HERO
   ═══════════════════════════════════════════════════════ */
.testimonial {
  position: relative;
  background: var(--forest);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/butterfly-flower.jpg');
  background-size: cover;
  background-position: center;
  filter: sepia(30%) brightness(0.25) contrast(1.2);
  mix-blend-mode: luminosity;
}

.testimonial-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.6;
  color: var(--parchment);
  opacity: 0.18;
  margin-bottom: -0.5rem;
  display: block;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(250,245,236,0.92);
  margin: 1.5rem 0 2rem;
}

.testimonial-attribution {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.55;
}

.testimonial-attribution strong {
  font-weight: 600;
  color: var(--parchment);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS — EDITORIAL GRID
   ═══════════════════════════════════════════════════════ */
.products {
  background: var(--parchment-lt);
  padding: var(--section-pad) 0;
}

.products-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.products-header .eyebrow { margin-bottom: 1rem; }
.products-header .display-md { color: var(--forest); }

.products-header .header-sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--ink-soft);
  opacity: 0.7;
  max-width: 540px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.header-provenance {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-top: 1rem;
}

.product-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(45,69,48,0.08);
  border: 1px solid rgba(45,69,48,0.15);
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border: 1px solid rgba(45,69,48,0.1);
  border-radius: 4px;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(45,69,48,0.12);
  transform: translateY(-4px);
}

.product-logo {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo img, .product-logo svg {
  width: 100%; height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.83rem;
  color: var(--ink-soft);
  opacity: 0.7;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════ */
.cta-band {
  background: var(--parchment);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band .eyebrow { margin-bottom: 1rem; color: var(--bronze-lt); }

.cta-band .display-md {
  color: var(--forest);
  margin-bottom: 1rem;
  position: relative;
}

.cta-band .display-md em { font-style: italic; }

.cta-band > p {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
  position: relative;
}

.cta-band .btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  position: relative;
  margin-top: 2rem;
}

.cta-band .btn-primary:hover {
  background: transparent;
  color: var(--forest);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  color: rgba(243,224,198,0.65);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243,224,198,0.12);
}

.footer-brand {}

.footer-brand-logo {
  height: 58px; width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1) sepia(18%) saturate(0.6);
  opacity: 0.82;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(243,224,198,0.55);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(243,224,198,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--parchment);
  background: rgba(243,224,198,0.08);
}

.footer-social a svg { display: block; }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-lt);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(243,224,198,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--parchment-lt); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(243,224,198,0.6);
  margin-bottom: 0.8rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(243,224,198,0.35); }

.footer-contact-item a {
  color: inherit;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--parchment-lt); }

.footer-nimh {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  background: rgba(243,224,198,0.05);
  border: 1px solid rgba(243,224,198,0.1);
  border-radius: 3px;
  padding: 0.8rem 1rem;
}

.footer-nimh img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-nimh span {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(243,224,198,0.5);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(243,224,198,0.3);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(243,224,198,0.3);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(243,224,198,0.7); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .trust-track { animation: none; }
  .draw-svg path, .draw-svg line, .draw-svg circle { stroke-dashoffset: 0; }
}

/* Circadian Ritual nav link — home page (dark nav) */
.nav-ritual-link {
  color: var(--bronze-lt) !important;
  border-bottom: 1px solid rgba(196,154,82,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-ritual-link:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5);
}

/* Circadian Ritual footer link — same treatment as nav */
.footer-ritual-link {
  color: var(--bronze-lt) !important;
  border-bottom: 1px solid rgba(196,154,82,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-ritual-link:hover {
  color: var(--parchment-lt) !important;
  border-color: rgba(196,154,82,0.7);
}

/* ── NEWSLETTER ──────────────────────────────────────── */
.newsletter-section {
  background: var(--forest, #2D4A3E);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.newsletter-inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-lt, #C49A52);
  margin-bottom: 0.6rem;
}

.newsletter-text h2 {
  font-family: var(--font-display, 'Playfair Display'), serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--parchment, #F3E0C6);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 38ch;
}

.newsletter-form-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form-row input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form-row input[type="email"]:focus { border-color: var(--bronze-lt, #C49A52); }

.newsletter-form-row button {
  padding: 0.75rem 1.5rem;
  background: var(--gold, #C8860A);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.newsletter-form-row button:hover { background: #a8700a; transform: translateY(-1px); }

.newsletter-privacy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.6rem;
}

@media (max-width: 680px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .newsletter-form-row {
    flex-direction: column;
  }
  .newsletter-form-row input[type="email"],
  .newsletter-form-row button {
    width: 100%;
  }
}

.botanical-icon-fallback {
  display: none;
  width: 80px;
  height: 80px;
  stroke: var(--forest);
  fill: none;
}
