/* =========================================================
   Héritier Essentials — Wild Rosemary Essential Oil
   Palette : #2e4b41 (green) · #c27b68 (terracotta)
   Type    : Cormorant Garamond (display/body) · Jost (utility)
   ========================================================= */

:root {
  --green:      #2e4b41;
  --green-2:    #243b32;
  --green-3:    #1a2a24;
  --terra:      #c27b68;
  --terra-2:    #b0684f;
  --cream:      #f6f2ea;
  --cream-2:    #efe8db;
  --ink:        #1e2a25;
  --muted:      #6a736d;
  --line:       #ddd4c6;

  --f-display: var(--font-cormorant), "Cormorant Garamond", Georgia, serif;
  --f-util:    var(--font-jost), "Jost", "Helvetica Neue", Arial, sans-serif;

  --fs-hero:  clamp(3.4rem, 8vw, 7rem);
  --fs-xl:    clamp(3rem, 9vw, 7rem);
  --fs-h2:    clamp(2.6rem, 5vw, 4.6rem);
  --fs-lead:  clamp(1.15rem, 1.6vw, 1.45rem);
  --fs-body:  clamp(1.05rem, 1.3vw, 1.25rem);

  /* symmetric vertical padding: tight enough that jumps land near the nav and
     sections hug their content without a lopsided bottom gap */
  --pad-y:    clamp(5rem, 6vw, 6rem);
  --pad-top:  clamp(5rem, 6vw, 6rem);
  --wrap:     min(1280px, 90vw);
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* ---------- typographic primitives ---------- */
.eyebrow {
  font-family: var(--f-util);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--light { color: rgba(246, 242, 234, 0.62); }
.eyebrow--hero { color: var(--terra-2); letter-spacing: 0.3em; }

.display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0.35em 0 0.55em;
  color: var(--green);
}
.display--light { color: var(--cream); }
.display--xl { font-size: var(--fs-xl); }
.display em { font-style: italic; font-weight: 400; }
.amp { font-style: italic; font-weight: 400; color: var(--terra); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}
.lead--light { color: rgba(246, 242, 234, 0.92); }

.body {
  font-size: var(--fs-body);
  line-height: 1.65;
  margin: 0 0 1.4rem;
  color: var(--ink);
}
.body--light { color: rgba(246, 242, 234, 0.82); }
.body:last-child { margin-bottom: 0; }

/* ---------- shared image treatment ---------- */
/* image reveal: a soft curtain wipe + slow zoom-out */
.hero__media, .treasure__media, .savoir__media, .harvest__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.hero__media img, .treasure__media img, .savoir__media img, .harvest__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* clipped/zoomed starting state only when JS will uncover it */
.js .hero__media img, .js .treasure__media img,
.js .savoir__media img, .js .harvest__media img {
  transform: scale(1.12);
  transition: transform 1.8s var(--ease), clip-path 1.2s var(--ease);
  clip-path: inset(0 0 100% 0);
}
.reveal.in.hero__media img,
.reveal.in.treasure__media img,
.reveal.in.savoir__media img,
.reveal.in.harvest__media img {
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- left vertical rail ---------- */
.rail {
  position: fixed;
  left: 22px;
  bottom: 40px;
  z-index: 60;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--f-util);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  opacity: 0;                 /* hidden over the hero video */
  transition: opacity 0.6s var(--ease);
}
.rail--show { opacity: 1; }
.rail span { color: #8f8578; }

/* ---------- section navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.4rem, 5vw, 3.2rem);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
/* self-contained top scrim so the nav is legible over ANY hero video/background */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 32, 27, 0.55) 0%, rgba(20, 32, 27, 0) 100%);
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: rgba(246, 242, 234, 0.82);
  -webkit-backdrop-filter: saturate(1.1) blur(12px);
  backdrop-filter: saturate(1.1) blur(12px);
  border-bottom: 1px solid var(--line);
  padding-block: 0.85rem;
}
.nav__brand {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(20, 32, 27, 0.5);
  transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.nav.scrolled .nav__brand { color: var(--green); text-shadow: none; }
.nav__brand em { font-style: italic; font-weight: 400; }

.nav__menu { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.8rem); }
.nav__menu a {
  position: relative;
  font-family: var(--f-util);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.85);
  text-shadow: 0 1px 12px rgba(20, 32, 27, 0.45);
  padding: 0.35rem 0;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.nav.scrolled .nav__menu a { color: rgba(30, 42, 37, 0.6); text-shadow: none; }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover { color: #fff; }
.nav__menu a.active { color: #fff; }
.nav.scrolled .nav__menu a:hover,
.nav.scrolled .nav__menu a.active { color: var(--green); }
.nav__menu a.active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block; height: 1.5px; width: 24px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled .nav__toggle span { background: var(--green); }

/* anchored jumps land the section right under the fixed bar (its top padding
   tucks beneath the nav, so no dead space and no peek of the block above) */
section[id], main[id] { scroll-margin-top: 0; }

/* ================= HERO (full-bleed video) ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem clamp(1.4rem, 5vw, 3.2rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--green-3); }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);            /* hide blurred edges */
  filter: blur(2px) brightness(0.88) saturate(1.05);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(26, 42, 36, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(26, 42, 36, 0.42) 0%, rgba(26, 42, 36, 0.32) 45%, rgba(26, 42, 36, 0.62) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 940px; }
.hero .eyebrow--hero {
  color: rgba(246, 242, 234, 0.95);
  justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-shadow: 0 1px 14px rgba(20, 32, 27, 0.6);
}
.hero .eyebrow--hero::before { background: #eec9bd; opacity: 0.95; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 1.8rem;
  text-shadow: 0 2px 50px rgba(20, 32, 27, 0.45);
  display: flex;
  flex-direction: column;
}
.hero__title .hero__em { font-style: italic; font-weight: 400; color: #eec9bd; }
.hero__title span { display: block; }
.hero .lead {
  max-width: 46ch;
  margin: 0 auto 2.6rem;
  color: rgba(246, 242, 234, 0.92);
  text-shadow: 0 1px 26px rgba(20, 32, 27, 0.5);
}

.scrolllink {
  font-family: var(--f-util);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(246, 242, 234, 0.4);
}
.scrolllink__arrow { width: 34px; height: 20px; color: #eec9bd; }
.scrolllink:hover .scrolllink__arrow { animation: nudge 0.9s var(--ease) infinite; }
@keyframes nudge { 50% { transform: translateX(5px); } }

@media (prefers-reduced-motion: reduce) {
  .hero__video { filter: brightness(0.9) saturate(1.05); }
}

/* signature sprig */
.sprig { overflow: visible; display: block; }
.sprig path, .sprig line { fill: none; }

/* Full-viewport sections: each nav target fills the screen and centres its
   content, so jumping to a section never reveals a neighbour above or below.
   min-height (not height) lets taller content grow and scroll instead of clip. */
.treasure, .savoir, .sun, .harvest, .promise, .contact {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================= NATURE'S TREASURE ================= */
.treasure {
  background: var(--green);
  color: var(--cream);
  padding: var(--pad-top) 0 var(--pad-y);
  position: relative;
}
.treasure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 85% 10%, rgba(194, 123, 104, 0.14), transparent 55%);
  pointer-events: none;
}
.treasure__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.treasure__media { height: clamp(340px, 42vw, 560px); }
.treasure__col { padding-block: 1rem; }

/* ================= SAVOIR-FAIRE ================= */
.savoir { padding: var(--pad-top) 0 var(--pad-y); }
.savoir__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.savoir__media { height: clamp(360px, 46vw, 620px); }

.stats {
  margin: 2.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.2rem;
}
.stat dt { margin-bottom: 0.6rem; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.stat__num span { font-size: 0.5em; font-style: italic; color: var(--muted); }

/* ================= BORN OF THE SUN ================= */
.sun {
  position: relative;
  color: var(--cream);
  padding-block: var(--pad-top);
  overflow: hidden;
  isolation: isolate;
}
.sun__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.sun__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 42, 36, 0.34) 0%, rgba(26, 42, 36, 0.22) 45%, rgba(26, 42, 36, 0.62) 100%),
    radial-gradient(90% 70% at 50% 55%, rgba(26, 42, 36, 0.12), rgba(26, 42, 36, 0.5));
}
.sun__inner { position: relative; max-width: 760px; margin-inline: auto; text-align: center; }
.sun .eyebrow { color: rgba(246, 242, 234, 0.8); }
.sun .eyebrow::before { display: none; }
.sun .display--xl { margin: 0.35em 0 0.5em; text-shadow: 0 2px 40px rgba(20, 32, 27, 0.4); }
.sun .lead { max-width: 52ch; margin-inline: auto; text-shadow: 0 1px 24px rgba(20, 32, 27, 0.45); }

/* ================= THE PURE HARVEST ================= */
.harvest { padding: var(--pad-top) 0 var(--pad-y); }
.harvest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.harvest__media { height: clamp(360px, 46vw, 620px); }
.specs {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.specs li {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  color: var(--green);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.specs li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--terra);
}

/* ================= OUR PROMISE ================= */
.promise {
  padding: var(--pad-top) 0 var(--pad-y);
  background:
    linear-gradient(0deg, rgba(194, 123, 104, 0.12), rgba(194, 123, 104, 0.12)),
    var(--cream-2);
}
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.promise__head { position: relative; }
.promise__body { padding-top: 0.8rem; }
.sprig--promise {
  width: clamp(88px, 8vw, 120px);
  height: auto;
  margin-top: 2.5rem;
}

/* botanical divider between sections */
.divider {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem) 0 0;
  background: var(--cream);
}
.sprig--divider { width: clamp(80px, 9vw, 118px); height: auto; }

/* sprig on the green contact panel */
.contact__intro { position: relative; }
.sprig--contact {
  width: clamp(88px, 8vw, 116px);
  height: auto;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ================= CONTACT ================= */
.contact { padding: var(--pad-top) 0 var(--pad-y); background: var(--green); color: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact__intro .display {
  color: var(--cream);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  margin: 0.4em 0 1.4rem;
}
.contact__intro .eyebrow { color: rgba(246, 242, 234, 0.62); }
.contact__intro .body { color: rgba(246, 242, 234, 0.8); }

/* form */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 2rem;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(246, 242, 234, 0.32);
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 1.25rem;
  padding: 0.4rem 0 0.7rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 3rem; line-height: 1.5; }
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--terra); }
.field label {
  position: absolute;
  left: 0; top: 0.5rem;
  font-family: var(--f-util);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.55);
  pointer-events: none;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  transform-origin: left;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.7rem) scale(0.82);
  color: var(--terra);
}
.field input:user-invalid,
.field textarea:user-invalid { border-bottom-color: var(--terra-2); }

.form__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn {
  font-family: var(--f-util);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 0;
  padding: 1.15rem 2.8rem;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--terra); outline-offset: 4px; }
.form__status { font-family: var(--f-util); font-size: 0.8rem; letter-spacing: 0.04em; margin: 0; color: var(--terra); }
.form__status.err { color: #f0b8a8; }

/* ================= FOOTER ================= */
.footer { background: var(--green-3); color: var(--cream); padding-block: clamp(4rem, 8vw, 6rem) 2.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246, 242, 234, 0.14);
}
.footer__word { font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; margin: 0; }
.footer__slogan { font-style: italic; color: var(--terra); margin: 0.3rem 0 0; font-size: 1.2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col .eyebrow { color: rgba(246, 242, 234, 0.5); margin-bottom: 0.5rem; }
.footer__col .eyebrow::before { display: none; }
.footer__col a, .footer__col span { color: rgba(246, 242, 234, 0.8); font-size: 1.05rem; }
.footer__col a { transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--terra); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-family: var(--f-util);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.45);
  align-items: center;
}
.made-by {
  font-family: var(--f-util);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.75);
  border: 1px solid rgba(246, 242, 234, 0.22);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.made-by:hover {
  color: var(--green-3);
  background: var(--terra);
  border-color: var(--terra);
}

/* ================= reveal animation ================= */
/* Only hide when JS is active, so no-JS users still see everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.in { opacity: 1; transform: none; }
/* media reveals animate their own clip/scale, not a translate */
.js .hero__media.reveal,
.js .treasure__media.reveal,
.js .savoir__media.reveal,
.js .harvest__media.reveal { transform: none; }

/* ================= responsive ================= */
@media (max-width: 900px) {
  .hero { padding-top: 7rem; }
  .treasure__grid,
  .savoir__grid,
  .harvest__grid,
  .promise__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .treasure__media, .savoir__media, .harvest__media { height: clamp(300px, 60vw, 440px); order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .rail { display: none; }
}
@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
  .topbar__loc { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
}

/* ---------- nav: mobile ---------- */
@media (max-width: 900px) {
  .nav__brand, .nav__toggle { position: relative; z-index: 2; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    /* visibility flips only after the fade-out finishes */
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s 0.4s;
  }
  .nav.open .nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s 0s;
  }
  .nav__menu a {
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--green);
  }
  .nav__menu a::after { display: none; }
  .nav__menu a.active { color: var(--terra); font-style: italic; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ================= accessibility ================= */
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img, .treasure__media img, .savoir__media img, .harvest__media img,
  .sun__bg { transform: none !important; clip-path: none !important; transition: none !important; }
  .sprig path, .sprig line { stroke-dashoffset: 0 !important; }
}
