/* =========================================================
   THE GREEN WIZARD — Global Stylesheet
   Quiet. Elegant. Grounded. Nature-inspired.
   ========================================================= */

:root {
  /* Colour palette */
  --forest: #16231A;       /* Deep Forest Green */
  --forest-light: #24352A; /* lifted forest for panels */
  --earth: #45613F;        /* Earth Green */
  --sage: #A9BBA0;         /* Sage */
  --sage-soft: #D3DBC9;    /* pale sage tint */
  --stone: #DCD3C3;        /* Warm Stone */
  --gold: #C6A15B;         /* Soft Gold */
  --gold-deep: #A9803F;
  --cream: #F3EEE2;        /* Cream */
  --white: #FBFAF6;        /* Natural White */
  --charcoal: #24231F;     /* Dark Charcoal */
  --charcoal-soft: #4A473F;

  /* Typography */
  --font-head: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-body: 'Lato', 'Source Sans Pro', -apple-system, sans-serif;

  /* Spacing / rhythm */
  --section-pad: clamp(72px, 10vw, 160px);
  --container-w: 1220px;
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .9s;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
  margin: 0 0 .6em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.15; font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; }

p { margin: 0 0 1.2em; color: var(--charcoal-soft); max-width: 62ch; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1em;
  font-weight: 600;
}

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

.section {
  padding: var(--section-pad) 0;
}
.section--tight { padding: clamp(48px, 6vw, 96px) 0; }

.bg-forest { background: var(--forest); color: var(--stone); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--white); }
.bg-forest p { color: var(--sage-soft); }
.bg-forest .eyebrow { color: var(--gold); }

.bg-stone { background: var(--stone); }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--forest); color: var(--white); }

.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--forest); }

.btn--light { border-color: var(--white); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--forest); }

.btn--solid { background: var(--forest); color: var(--white); }
.btn--solid:hover { background: var(--earth); border-color: var(--earth); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
/* subtle dark scrim behind the nav so the large mark/wordmark stay legible over bright woodland photography */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,14,9,.62) 0%, rgba(8,14,9,.28) 65%, rgba(8,14,9,0) 100%);
  z-index: -1;
  opacity: 1;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.nav.is-scrolled::before,
.nav--dark::before { opacity: 0; }

.nav.is-scrolled {
  background: rgba(251,250,246,.92);
  backdrop-filter: blur(10px);
  padding: 10px 40px;
  box-shadow: 0 1px 0 rgba(22,35,26,.08);
}
.nav.is-scrolled .nav__link,
.nav.is-scrolled .nav__logo-text { color: var(--forest); text-shadow: none; }
.nav.is-scrolled .nav__mark { filter: none; }

.nav__logo { display: flex; align-items: center; gap: 18px; }
.nav__mark {
  width: clamp(78px, 9vw, 172px);
  height: clamp(78px, 9vw, 172px);
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,.45)) contrast(1.15);
  transition: filter .5s var(--ease), width .5s var(--ease), height .5s var(--ease);
}
.nav.is-scrolled .nav__mark {
  width: clamp(52px, 5vw, 84px);
  height: clamp(52px, 5vw, 84px);
  filter: brightness(1.08) contrast(1.1);
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  letter-spacing: .12em;
  color: var(--white);
  text-shadow: 0 3px 20px rgba(0,0,0,.55);
  transition: color .5s var(--ease), font-size .5s var(--ease), text-shadow .5s var(--ease);
}
.nav.is-scrolled .nav__logo-text { font-size: clamp(1rem, 1.3vw, 1.25rem); }
.nav--dark .nav__mark { filter: brightness(1.08) contrast(1.1); }
.nav--dark .nav__logo-text { color: var(--forest); text-shadow: none; }
.nav--dark:not(.is-scrolled) { background: rgba(251,250,246,.85); backdrop-filter: blur(8px); box-shadow: 0 1px 0 rgba(22,35,26,.06); }

@media (min-width: 900px) and (max-width: 1320px) {
  .nav { padding: 14px 26px; }
  .nav__mark { width: clamp(64px, 7vw, 112px); height: clamp(64px, 7vw, 112px); }
  .nav.is-scrolled .nav__mark { width: clamp(48px, 4vw, 68px); height: clamp(48px, 4vw, 68px); }
  .nav__logo-text { font-size: clamp(1.1rem, 1.7vw, 1.6rem); }
  .nav.is-scrolled .nav__logo-text { font-size: 1rem; }
  .nav__links { gap: 16px; }
  .nav__link { font-size: clamp(.7rem, 1.05vw, .86rem); }
  .nav.is-scrolled .nav__link { font-size: .68rem; }
}

@media (max-width: 560px) {
  .nav { padding: 14px 20px; }
  .nav__logo { gap: 10px; }
  .nav__mark { width: 56px; height: 56px; }
  .nav.is-scrolled .nav__mark { width: 44px; height: 44px; }
  .nav__logo-text { font-size: 1.05rem; letter-spacing: .06em; }
  .nav.is-scrolled .nav__logo-text { font-size: .92rem; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-size: clamp(.82rem, 1.27vw, 1.27rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
  transition: color .4s var(--ease), opacity .4s, font-size .5s var(--ease), text-shadow .5s var(--ease);
  opacity: 1;
}
.nav.is-scrolled .nav__link {
  font-size: clamp(.74rem, .82vw, .86rem);
  text-shadow: none;
}
.nav--dark .nav__link { color: var(--forest); text-shadow: none; }
.nav__link:hover { opacity: .8; color: var(--gold); }
.nav__link.is-active { color: var(--gold); }

.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
.nav--dark .nav__toggle span, .nav.is-scrolled .nav__toggle span { background: var(--forest); }

@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 340px;
    background: var(--forest);
    padding: 110px 44px;
    gap: 28px;
    box-shadow: -20px 0 60px rgba(0,0,0,.25);
  }
  .nav__links.is-open .nav__link { color: var(--white); font-size: 1rem; font-weight: 700; text-shadow: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,11,.5) 0%, rgba(10,16,11,.2) 40%, rgba(10,16,11,.86) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 110px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero__content h1 { color: var(--white); text-shadow: 0 4px 32px rgba(0,0,0,.45); }
.hero__content p { color: var(--stone); margin: 0 auto 2.2em; max-width: 52ch; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--stone);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .8;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0%{ transform: scaleY(0); transform-origin: top;} 50%{transform: scaleY(1); transform-origin: top;} 51%{transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero__content { padding-bottom: 0; text-align: left; margin: 0; max-width: 720px; }

/* ---------- Leaf divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 4px 0;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px; width: 64px;
  background: currentColor;
  opacity: .5;
}
.divider svg { width: 20px; height: 20px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 40px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .grid--2, .grid--3, .grid--5 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .grid--3 { grid-template-columns: repeat(2,1fr);} .grid--5 { grid-template-columns: repeat(2,1fr);} }

.card {
  background: var(--white);
  border: 1px solid rgba(22,35,26,.08);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(22,35,26,.25); }
.card__icon { width: 44px; height: 44px; margin-bottom: 22px; color: var(--gold); }
.card__icon svg { width: 100%; height: 100%; stroke: var(--earth); fill: none; stroke-width: 1.2; }

.img-frame { overflow: hidden; border-radius: var(--radius-lg); }
.img-frame img { transition: transform 1.4s var(--ease); }
.img-frame:hover img { transform: scale(1.06); }

/* ---------- Two-col layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 44px; } }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split--reverse .split__media { order: 0; } }

/* ---------- Stats / numbers ---------- */
.numeral {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ---------- Steps (How It Works) ---------- */
.steps { position: relative; }
.step {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  padding: 52px 0;
  border-top: 1px solid rgba(22,35,26,.12);
}
.step:first-child { border-top: none; }
.step__num {
  font-family: var(--font-head);
  font-size: 3.9rem;
  font-weight: 600;
  color: var(--sage);
}
@media (max-width: 640px) { .step { grid-template-columns: 80px 1fr; } .step__num { font-size: 2.6rem; } }

/* ---------- Testimonials ---------- */
.t-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
}
.t-card__quote { font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); line-height: 1.6; margin-bottom: 26px; }
.t-card__person { display: flex; align-items: center; gap: 14px; }
.t-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.t-card__name { font-weight: 700; color: var(--forest); font-size: .92rem; }
.t-card__loc { font-size: .8rem; color: var(--charcoal-soft); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid rgba(22,35,26,.14); }
.faq__item { border-bottom: 1px solid rgba(22,35,26,.14); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: 26px 4px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.faq__plus { font-size: 1.4rem; color: var(--gold); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), padding .5s var(--ease); padding: 0 4px; }
.faq__item.is-open .faq__a { max-height: 300px; padding-bottom: 26px; }

/* ---------- Form ---------- */
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(22,35,26,.22);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--charcoal);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: var(--sage-soft); padding: 90px 0 30px; }
.footer h4 { color: var(--gold); }
.footer a { color: var(--sage-soft); opacity: .85; }
.footer a:hover { opacity: 1; color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 70px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: .92rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  opacity: .7;
}
.footer__mark { width: 30px; height: 30px; margin-bottom: 18px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .12s; }
.reveal-delay-2.in-view { transition-delay: .24s; }
.reveal-delay-3.in-view { transition-delay: .36s; }

/* ---------- Watermark emblem ---------- */
.watermark {
  position: absolute;
  width: 520px; height: 520px;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}
.watermark--right { right: -140px; }
.watermark--left { left: -140px; }

.section-relative { position: relative; overflow: hidden; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.max-w-prose { max-width: 62ch; }
.small { font-size: .85rem; }
.gold-text { color: var(--gold-deep); }

/* Announcement / intro strip */
.intro-strip {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Areas covered chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  padding: 10px 20px;
  border: 1px solid rgba(22,35,26,.2);
  border-radius: 999px;
  font-size: .84rem;
  color: var(--forest);
}

/* =========================================================
   V3 — Content hierarchy "boost" utilities
   Applied to specific named sections to increase size/weight
   without altering grid structure or spacing rhythm.
   ========================================================= */
.h-boost { font-size: 1.6em !important; font-weight: 700 !important; line-height: 1.2 !important; }
.h-boost-sm { font-size: 1.5em !important; font-weight: 700 !important; line-height: 1.25 !important; }
.p-boost { font-size: 1.4em !important; line-height: 1.7 !important; font-weight: 400 !important; }
.p-boost-lg { font-size: 1.55em !important; line-height: 1.65 !important; font-weight: 500 !important; }
.label-boost { font-size: 1.3em !important; font-weight: 800 !important; letter-spacing: .08em !important; }

/* Hero brand-name treatment (Home page) */
.hero__brandname {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 8px 46px rgba(0,0,0,.6), 0 2px 10px rgba(0,0,0,.5);
  margin: 0 0 .18em;
  line-height: 1.05;
}
.hero__subhead {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  color: var(--gold);
  text-shadow: 0 3px 20px rgba(0,0,0,.5);
  margin: 0 0 .55em;
}
.hero__content p.hero__lead {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 400;
}

/* How It Works — anchor quote (calm editorial presence, not bold) */
.quote-anchor {
  font-size: clamp(1.5rem, 2.7vw, 2.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: var(--forest) !important;
}

/* Apothecary — old botanical journal intro */
.journal-heading {
  font-family: 'Cormorant Garamond', var(--font-head), serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--forest);
  letter-spacing: .02em;
  margin-bottom: .5em;
}
.journal-copy {
  font-family: 'Cormorant Garamond', var(--font-head), serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.95;
  color: var(--charcoal-soft);
  max-width: 62ch;
  margin: 0 auto 1.6em;
}

/* ---------- Apothecary — curated product cards ---------- */
.product-card__media {
  margin-bottom: 26px;
  aspect-ratio: 4 / 3;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-name {
  font-family: 'Cormorant Garamond', var(--font-head), serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  color: var(--forest);
  margin-bottom: .18em;
  letter-spacing: .01em;
}
.product-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 1em;
}
.product-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 1.4em;
}

/* ---------- Journal / Ritual — full article pages ---------- */
.article-wrap { max-width: 720px; margin: 0 auto; }
.article-meta {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 2.4em;
}
.article-copy {
  font-family: 'Cormorant Garamond', var(--font-head), serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  line-height: 1.95;
  color: var(--charcoal-soft);
  max-width: none;
}
.article-copy p { max-width: none; margin-bottom: 1.3em; }
.article-copy p.article-lede { color: var(--forest); font-style: italic; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.article-step {
  border-top: 1px solid rgba(22,35,26,.12);
  padding: 34px 0;
}
.article-step:first-of-type { border-top: none; padding-top: 0; }
.article-step h3 { margin-bottom: .5em; }
