/* ============================================================
   Roaming Roots Plant Co. — Design System
   doc-metadata: created 2026-07-17 · created_by: frontend_developer
                 updated 2026-08-26 · updated_by: roaming-roots-fd (cta-band follow buttons centered on wrap)
   ============================================================ */

/* ---- FONTS ----
   Lato (body + headings) and Lobster (accent) load via a Google Fonts <link> in the
   generator HTML head (Phase 2A brand pass). Self-hosted Playfair Display + Inter removed. */

/* ---- TOKENS ---- */
:root {
  /* Brand palette — Roaming Roots 2026 Brand Guidelines */
  --forest:       #2F4F3E;   /* primary green */
  --brass:        #C6A75E;   /* gold accent */
  --bark:         #271700;   /* primary dark */
  --sage:         #6F806A;   /* secondary green */
  --taupe:        #E9D7BE;   /* warm cream */
  --cedar:        #8C4A24;   /* terracotta accent */
  --true-black:   #000000;
  --true-white:   #FFFFFF;

  /* Functional aliases — map old token names to brand values */
  --espresso:     var(--bark);       /* was #2c2417 */
  --ivory:        var(--taupe);      /* was #f5f1eb */
  --cream:        #F5F0E8;           /* lighter taupe for page bg — between taupe and white */
  --tan:          var(--brass);      /* was #c4a882 */
  --sage-light:   #8da07a;           /* keep for now — no direct brand match */
  --body-ink:     #2A1F12;           /* dark readable text on cream */
  --border:       #D9C9AF;           /* warm border — derived from taupe */
  --muted:        var(--sage);       /* muted text → sage */

  /* Font stacks */
  --font-head:    'Lato', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-accent:  'Lobster', cursive;

  /* Layout */
  --radius:       6px;
  --radius-card:  10px;
  --shadow-card:  0 2px 12px rgba(39,23,0,.08);
  --shadow-hover: 0 6px 24px rgba(39,23,0,.14);
  --max-w:        1200px;
  --nav-h:        72px;
  --section-py:   5rem;
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
}
h1 { font-size: clamp(2.2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--body-ink); }
p + p { margin-top: 1em; }

/* ---- UTILITIES ---- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: var(--section-py) 0;
}
.section--dark {
  background: var(--espresso);
  color: var(--ivory);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p { color: var(--ivory); }
.section--sage {
  background: var(--sage);
  color: var(--cream);
}
.section--sage h1,
.section--sage h2,
.section--sage h3,
.section--sage p { color: var(--cream); }

.eyebrow {
  font-family: var(--font-accent);   /* Lobster accent */
  font-size: 1.15rem;                 /* F4: two points up from .95rem — script was too small to read */
  font-weight: 400;                   /* Lobster is single-weight */
  letter-spacing: 0;                  /* Lobster carries its own spacing */
  text-transform: none;               /* no uppercase on a script face */
  color: var(--sage);
  margin-bottom: .75rem;
}
.section--dark .eyebrow,
.section--sage .eyebrow { color: var(--tan); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  transition: background .18s, color .18s, transform .14s, box-shadow .18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--true-white);
}
.btn--primary:hover {
  background: #264035;                       /* Forest darkened ~10% */
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(39,23,0,.30);  /* Bark-based shadow */
}
.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
}
/* Light surfaces: ghost must not be white-on-cream (WCAG) */
.feature-band__text .btn--ghost,
.section .follow-ctas .btn--ghost,
.booking-shell .follow-ctas .btn--ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--bark);
}
.feature-band__text .btn--ghost:hover,
.section .follow-ctas .btn--ghost:hover,
.booking-shell .follow-ctas .btn--ghost:hover {
  background: var(--bark);
  color: var(--true-white);
}
.btn--tan {
  background: var(--tan);
  color: var(--espresso);
}
.btn--tan:hover {
  background: #d4b992;
  transform: translateY(-1px);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bark);
  /* No backdrop-filter: WebKit treats it as overflow:hidden, which clipped
     the position:fixed mobile menu to the 60px header bar. The fill is already opaque Bark. */
  overflow: visible;
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--taupe);                 /* readable on the Bark header */
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--brass);                 /* gold accent on hover/active */
  background: rgba(255,255,255,.08);
}
.site-nav .btn--primary {
  margin-left: .75rem;
  padding: .55rem 1.2rem;
  font-size: .8rem;
  color: var(--true-white);
  background: var(--forest);
}
.site-nav .btn--primary:hover,
.site-nav .btn--primary.active,
.site-nav .btn--primary:focus-visible {
  color: var(--true-white);
  background: #264035;
}
/* Mobile burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  color: var(--taupe);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--taupe);            /* visible on the Bark header */
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
body.nav-open { overflow: hidden; }

.skip-link {
  position: absolute;
  left: .75rem;
  top: -4rem;
  z-index: 400;
  background: var(--forest);
  color: var(--true-white);
  padding: .65rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: .75rem;
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.btn:focus { outline: none; }
.btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.site-nav a:focus { outline: none; }
.site-nav a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  /* Diagonal mid-field shift (F3): type stays on darker color at left, plants
     read on the right. ~20–30% lighter than the prior 0.92 bark wall. Soft
     stops — no hard wedge. */
  background:
    linear-gradient(
      115deg,
      rgba(39, 23, 0, 0.70) 0%,
      rgba(39, 23, 0, 0.58) 28%,
      rgba(39, 23, 0, 0.28) 52%,
      rgba(39, 23, 0, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(39, 23, 0, 0.22) 0%,
      rgba(39, 23, 0, 0.08) 42%,
      rgba(39, 23, 0, 0.36) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--true-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.hero__content h1 {
  color: var(--true-white);
  max-width: 14ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero__sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  max-width: 40ch;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- INTRO SPLIT ---- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-split--flip { direction: rtl; }
.intro-split--flip > * { direction: ltr; }
.intro-split__text p { max-width: 44ch; }
.intro-split__text .btn { margin-top: 2rem; }
.intro-split__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-split__media--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bark);
  padding: clamp(1.5rem, 4vw, 3rem);
  aspect-ratio: 1 / 1;
}
.intro-split__media--brand img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}
.follow-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- EVENT TYPE CARDS ---- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.event-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.section--dark .event-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.event-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card__icon svg { width: 100%; height: 100%; }
.section--dark .event-card__icon { color: var(--sage-light); }
.event-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.event-card p {
  font-size: .9rem;
  color: var(--muted);
}
.section--dark .event-card p { color: rgba(245,241,235,.65); }

/* ---- PLANT GRID ---- */
.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.plant-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.plant-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.plant-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory);
}
.plant-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plant-card__noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  color: var(--sage);
}
.plant-card__noimg svg {
  width: 48px;
  height: 48px;
  opacity: .45;
}
.plant-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plant-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: .2rem;
}
.plant-card__latin {
  font-style: italic;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .75rem;
}
.plant-card__tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--muted);
  border: 1px solid var(--border);
}
.tag--pet-safe { background: #edf7ee; color: #3a7a40; border-color: #c0e0c3; }
.tag--easy     { background: #f0f5ec; color: var(--sage); border-color: #d0dcca; }
.tag--low-light{ background: #f4f0f9; color: #6b54a0; border-color: #d8ceed; }
.tag--hard     { background: #fdf2ef; color: #c0522a; border-color: #f0c9bb; }

.plant-card__difficulty {
  font-size: .8rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.plant-card__difficulty strong { color: var(--body-ink); }

/* ---- CARE DETAIL (collapse) ---- */
.care-details {
  margin-top: .6rem;
}
.care-details summary {
  font-size: .8rem;
  font-weight: 500;
  color: var(--sage);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  user-select: none;
}
.care-details summary::-webkit-details-marker { display: none; }
.care-details summary::after {
  content: '↓';
  font-size: .7rem;
  transition: transform .2s;
}
.care-details[open] summary::after { transform: rotate(180deg); }
.care-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .25rem .75rem;
  font-size: .82rem;
  margin-top: .75rem;
  line-height: 1.5;
}
.care-row dt { color: var(--muted); font-weight: 500; }
.care-row dd { color: var(--body-ink); }

/* ---- SCHEDULE (where we roam) ---- */
.schedule-empty {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--ivory);
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  margin-top: 2rem;
}
.schedule-empty p { color: var(--muted); max-width: 38ch; margin: .75rem auto 0; }
.schedule-empty a { color: var(--sage); text-decoration: underline; }

.roam-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.roam-area {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
}
.roam-area h4 { margin-bottom: .35rem; }
.roam-area p { font-size: .85rem; color: var(--muted); }

/* ---- BOOKING FORM SHELL ---- */
.booking-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  max-width: 640px;
}
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--body-ink);
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
  border-color: var(--forest);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-note {
  font-size: .8rem;
  color: var(--espresso);
  margin-top: .4rem;
}
.form-status {
  margin-top: .85rem;
  font-size: .9rem;
}
.form-status.is-ok { color: var(--forest); }
.form-status.is-err { color: var(--cedar); }
.form-field fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.form-field legend {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .4rem;
  padding: 0;
}
.bgcm-seam-notice {
  background: rgba(47,79,62,.08);
  border: 1px solid rgba(47,79,62,.28);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: .85rem;
  color: var(--espresso);
}

/* ---- SHOP COMING SOON ---- */
.shop-soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
}
.shop-soon h2 { margin-bottom: 1rem; }
.shop-soon p { margin-bottom: 2rem; color: var(--muted); }
.shop-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--sage);
  opacity: .6;
}

/* ---- ABOUT SHELL ---- */
.about-hero {
  min-height: 55vh;
  background: var(--espresso);
  display: flex;
  align-items: center;
}
.about-intro {
  max-width: 640px;
}
.about-placeholder {
  background: var(--ivory);
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.about-placeholder p { color: var(--muted); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--sage);
  padding-top: .1rem;
}
.contact-item__icon svg { width: 100%; height: 100%; }
.contact-item h4 { margin-bottom: .25rem; }
.contact-item a { color: var(--sage); text-decoration: underline; }
.contact-item a:hover { color: var(--sage-light); }
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--sage);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { margin: .75rem auto 2rem; max-width: 44ch; opacity: .9; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.cta-band .btn--ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.cta-band .follow-ctas {
  justify-content: center;
  width: 100%;
}
.feature-band__text .follow-ctas {
  margin-top: 1.25rem;
  align-self: flex-start;
}
.feature-band__text .follow-ctas .btn {
  margin-top: 0;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--espresso);
  color: var(--ivory);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand img { height: 44px; width: auto; max-width: min(200px, 55vw); display: block; }
.footer-brand span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ivory);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(245,241,235,.7);
  margin-bottom: .6rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(245,241,235,.5);
}
.footer-bottom__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}
.footer-bottom a {
  color: rgba(245,241,235,.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--taupe); }
.footer-about p {
  font-size: .875rem;
  color: rgba(245,241,235,.65);
  max-width: 28ch;
  line-height: 1.6;
  margin-bottom: .75rem;
}

/* ---- PAGE HEADER (interior pages) ---- */
.page-header {
  background: var(--espresso);
  padding: 5rem 0 4rem;
}
.page-header h1 { color: #fff; }
.page-header p  { color: rgba(245,241,235,.75); margin-top: .75rem; max-width: 50ch; }
.page-header .eyebrow { color: var(--tan); }

/* ---- SECTION HEADS ---- */
.section-head {
  max-width: 52ch;
  margin-bottom: 3rem;
}
.section-head.center {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  margin-top: .75rem;
  color: var(--muted);
}
.section--dark .section-head p { color: rgba(245,241,235,.65); }

/* ---- PLANT PAGE TABS / FILTER ---- */
.plant-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.plant-filter button {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.plant-filter button:hover,
.plant-filter button.active {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

/* ---- FEATURE BAND ---- */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.feature-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-band__text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-band__text p { max-width: 40ch; }
.feature-band__text .btn { margin-top: 2rem; align-self: flex-start; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  :root { --section-py: 3.5rem; }
  .intro-split,
  .contact-grid,
  .feature-band {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-split--flip { direction: ltr; }
  .feature-band__media { min-height: 260px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --nav-h: 60px; }
  .site-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: .25rem;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; padding: .75rem .5rem; width: 100%; color: var(--bark); }  /* dark links on the cream mobile overlay */
  .site-nav a:hover,
  .site-nav a.active {
    color: var(--forest);
    background: rgba(47, 79, 62, .10);
  }
  .site-nav .btn--primary,
  .site-nav .btn--primary:hover,
  .site-nav .btn--primary.active,
  .site-nav .btn--primary:focus-visible {
    margin: .5rem 0 0;
    width: 100%;
    justify-content: center;
    color: var(--true-white);
    background: var(--forest);
  }
  .nav-toggle { display: flex; }
  .hero { min-height: 75vh; }
  .hero__content { padding: 4rem 1.25rem 3rem; }
  .hero__content h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .plant-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .booking-shell { padding: 2rem 1.25rem; }
}

@media (max-width: 440px) {
  .plant-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
}

/* ---- TRACK B: shop sections, how-it-works steps, experiences, form extras ---- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.shop-card { background: var(--true-white); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.shop-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--taupe); display: flex; align-items: center; justify-content: center; }
.shop-card__icon { width: 40px; height: 40px; color: var(--sage); opacity: .5; }
.shop-card__icon svg { width: 100%; height: 100%; }
.shop-card__body { padding: 1rem 1.15rem 1.25rem; }
.shop-card__body h4 { margin-bottom: .35rem; }
.shop-card__body p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.coming-soon-badge { position: absolute; top: .6rem; left: .6rem; background: var(--brass); color: var(--bark); font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .28rem .6rem; border-radius: 100px; }
.coming-soon-badge--inline { position: static; display: inline-block; vertical-align: middle; margin-left: .5rem; }
.split-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; background: var(--true-white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem 2.25rem; box-shadow: var(--shadow-card); }
.split-cta > div { max-width: 640px; }
.split-cta p { margin-top: .5rem; color: var(--muted); }
.sub-band { text-align: center; background: var(--taupe); border-radius: var(--radius-card); padding: 2.5rem 1.5rem; }
.sub-band .coming-soon-badge { position: static; display: inline-block; margin-bottom: 1rem; }
.sub-band p { max-width: 56ch; margin: .75rem auto 0; color: var(--body-ink); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step { background: var(--true-white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem 1.25rem; box-shadow: var(--shadow-card); }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--forest); color: var(--true-white); font-weight: 700; font-size: .95rem; margin-bottom: .9rem; }
.step h4 { margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.exp-card { background: var(--true-white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; box-shadow: var(--shadow-card); }
.exp-card h4 { margin-bottom: .6rem; color: var(--forest); }
.exp-card ul { display: flex; flex-direction: column; gap: .4rem; }
.exp-card li { position: relative; padding-left: 1.25rem; font-size: .92rem; color: var(--body-ink); line-height: 1.5; }
.exp-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1.25rem; }
.opt { display: flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--body-ink); font-weight: 400; margin: 0; cursor: pointer; }
.form-field input[type="radio"],
.form-field input[type="checkbox"] { width: auto; margin: 0; padding: 0; border: 0; background: none; accent-color: var(--forest); }
@media (max-width: 820px) {
  .shop-grid, .shop-grid--three, .exp-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .shop-grid, .shop-grid--three, .exp-grid, .steps, .check-grid { grid-template-columns: 1fr; }
  .split-cta { flex-direction: column; align-items: flex-start; }
}

/* ---- INTERIOR PAGE HERO (photo band) ---- */
.page-hero { position: relative; display: flex; align-items: flex-end; min-height: 44vh; overflow: hidden; background: var(--bark); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero__scrim {
  position: absolute;
  inset: 0;
  /* Diagonal mid-field shift (F3): photo reads above, type sits on a darker
     bottom. Lighter than the old .86 bottom wash. Soft stops — no hard wedge. */
  background: linear-gradient(
    165deg,
    rgba(39, 23, 0, 0.10) 0%,
    rgba(39, 23, 0, 0.28) 42%,
    rgba(39, 23, 0, 0.48) 58%,
    rgba(39, 23, 0, 0.62) 100%
  );
}
.page-hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 3.25rem 1.5rem; }
.page-hero .eyebrow { color: var(--brass); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45); }
.page-hero h1 { color: var(--true-white); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45); }
.page-hero__inner > p:not(.eyebrow),
.page-hero__copy > p:not(.eyebrow) { color: var(--taupe); max-width: 60ch; margin-top: .85rem; }
.page-hero--form { align-items: stretch; min-height: min(92vh, 920px); }
.page-hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}
.page-hero__copy h1 { margin-top: .35rem; }
.page-hero__form { min-width: 0; }
.booking-shell--hero {
  max-width: none;
  max-height: min(78vh, 720px);
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  background: rgba(250, 248, 244, 0.97);
  box-shadow: 0 12px 40px rgba(39, 23, 0, 0.28);
}
.booking-shell--hero .bgcm-seam-notice { margin-bottom: 1rem; font-size: .85rem; }
.booking-shell--hero .form-note { margin-top: .85rem; font-size: .8rem; color: var(--espresso); }
.booking-shell--hero .form-note a { color: var(--forest); text-decoration: underline; }
.booking-shell--hero .check-grid { max-height: 9.5rem; overflow-y: auto; padding-right: .25rem; }
.exp-card__desc { font-size: .9rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.55; }
.footer-socials { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: .75rem; }
.footer-socials a { color: var(--sage); text-decoration: underline; }
@media (max-width: 900px) {
  .page-hero--form { min-height: 0; }
  .page-hero__inner--split {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 3rem;
  }
  .booking-shell--hero { max-height: none; }
}
@media (max-width: 700px) { .page-hero { min-height: 38vh; } .page-hero__inner { padding: 2.5rem 1.25rem; } }

/* ---- Legal pages (Privacy, Terms, Cookies) — added 2026-08-18 by RRP ---- */
.page-hero--legal { min-height: 26vh; }
.footer-bottom__legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}
.legal-copy {
  max-width: 44rem;
}
.legal-copy__intro {
  font-size: 1.05rem;
  color: var(--muted);
}
.legal-copy h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: .6rem;
}
.legal-copy p { margin-bottom: 1rem; line-height: 1.7; }
.legal-copy ul { margin: 0 0 1rem 1.15rem; }
.legal-copy li { margin-bottom: .5rem; line-height: 1.7; }

/* ---- Form status messages (mailer delivery) — added 2026-08-18 by RRP ---- */
.form-status {
  margin-top: .75rem;
  font-size: .9rem;
  line-height: 1.5;
  min-height: 1.2em;
}
.form-status.is-ok { color: var(--sage); }
.form-status.is-err { color: #b3402f; }

/* GLYPHS, generated by extract-v1.py 2026-09-04. Every inline SVG v1 carried, keyed by content hash and
   drawn as a mask so the element that carries it holds no markup. Decoration is stylesheet, not content. */
.icon--f71423eb{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z%22/%3E%3Cpolyline points=%229 22 9 12 15 12 15 22%22/%3E%3C/svg%3E")}
.icon--c69fcb11{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M5 3h10l1.5 17H3.5L5 3z%22/%3E%3Cpath d=%22M15 8h2a2 2 0 010 4h-2%22/%3E%3C/svg%3E")}
.icon--73eacb1d{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpolygon points=%2212 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2%22/%3E%3C/svg%3E")}
.icon--6f0ec635{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Ccircle cx=%229%22 cy=%227%22 r=%224%22/%3E%3Cpath d=%22M3 21v-2a4 4 0 014-4h4a4 4 0 014 4v2%22/%3E%3Ccircle cx=%2219%22 cy=%227%22 r=%222%22/%3E%3Cpath d=%22M23 21v-1a2 2 0 00-2-2h-2%22/%3E%3C/svg%3E")}
.icon--5dfc0635{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z%22/%3E%3Cpolyline points=%2222,6 12,13 2,6%22/%3E%3C/svg%3E")}
.icon--b2cb76c5{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.13.96.36 1.9.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0122 16.92z%22/%3E%3C/svg%3E")}
.icon--b0e7d8b3{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Crect x=%222%22 y=%222%22 width=%2220%22 height=%2220%22 rx=%225%22 ry=%225%22/%3E%3Ccircle cx=%2212%22 cy=%2212%22 r=%224%22/%3E%3Ccircle cx=%2217.5%22 cy=%226.5%22 r=%22.5%22 fill=%22currentColor%22/%3E%3C/svg%3E")}
.icon--48de300e{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z%22/%3E%3C/svg%3E")}
.icon--a24d004c{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z%22/%3E%3Cline x1=%223%22 y1=%226%22 x2=%2221%22 y2=%226%22/%3E%3Cpath d=%22M16 10a4 4 0 01-8 0%22/%3E%3C/svg%3E")}
.icon--5e62c283{--glyph:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22currentColor%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 aria-hidden=%22true%22%3E%3Cpath d=%22M12 22V12%22/%3E%3Cpath d=%22M12 12C12 12 4 10 4 4c0 0 8 0 8 8z%22/%3E%3Cpath d=%22M12 12c0 0 8-2 8-8 0 0-8 0-8 8z%22/%3E%3C/svg%3E")}
/* INLINE STYLES, generated by extract-v1.py 2026-09-04. v1 wrote these as style="" attributes; H-13 forbids the
   attribute, so each distinct declaration list is one utility class, named by hash, carried by the same element. */
.u-80dfcf{margin-top:1.5rem !important}
.u-1fd125{text-align:center !important;margin-top:3rem !important}
.u-501202{margin-top:1.25rem !important}
.u-f7970f{display:flex !important;gap:1rem !important;justify-content:center !important;flex-wrap:wrap !important;margin-top:2rem !important}
.u-5f872b{display:flex !important;justify-content:center !important;margin-top:1.25rem !important}
.u-498769{display:flex !important;flex-direction:column !important;gap:1.25rem !important}
.u-621f16{max-width:720px !important}
.u-dca962{width:100% !important;height:480px !important;object-fit:cover !important;object-position:center !important}
.u-306895{overflow:hidden !important;max-height:480px !important}
.u-fb26c5{display:flex !important;flex-wrap:wrap !important;gap:1rem !important;align-items:center !important}
.u-c61b3f{margin-top:1rem !important;color:var(--muted) !important;max-width:720px !important}
.u-811a13{padding-top:0 !important}
.u-971aa0{display:flex !important;justify-content:center !important;margin-top:1.5rem !important}
.u-1e42c2{background:var(--ivory) !important}
.u-296d72{max-width:640px !important}
.u-7f70cc{font-weight:600 !important;margin-bottom:.35rem !important}
.u-5a0cc6{margin-bottom:1.5rem !important;color:var(--muted) !important}
.u-eac769{color:var(--muted) !important}
.u-36a751{font-size:.85rem !important;color:var(--muted) !important;margin-top:.3rem !important}
.u-77e374{margin-top:3rem !important;padding-top:2rem !important;border-top:1px solid var(--border) !important}
.u-34a9df{font-size:1.4rem !important;margin-bottom:.75rem !important}
.u-e03200{margin-top:2rem !important;display:flex !important;gap:1rem !important;justify-content:center !important;flex-wrap:wrap !important}
.u-11d0e1{color:var(--sage) !important;margin-bottom:.5rem !important}
.u-e93fbb{width:100% !important;height:400px !important;object-fit:cover !important;object-position:center !important}
.u-2dc5ca{overflow:hidden !important;max-height:400px !important}
/* ============================================================================================
   BUILD 1, 2026-09-04: what v1 drew with script, inline SVG, empty elements, inline styles or a
   third-party font host, now drawn by the stylesheet. Each rule mirrors the v1 rule it replaces,
   by name, so a measured difference points at one rule. Everything above this block is v1's
   styles.css, byte for byte.
   ============================================================================================ */

/* v1 loaded Lato and Lobster from fonts.googleapis.com (SAFE-3 refuses a third-party stylesheet). The same
   six files, latin subset, served from the fleet host. Fonts are binaries; R2 is their store (CLAUDE.md). */
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 300; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lato-300.woff2) format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lato-400.woff2) format('woff2'); }
@font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lato-400i.woff2) format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lato-700.woff2) format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 900; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lato-900.woff2) format('woff2'); }
@font-face { font-family: 'Lobster'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://media.beargrassai.com/roaming-roots/lobster-400.woff2) format('woff2'); }

/* A glyph element: the <i> a record's `glyph` part emits, masked with the SVG v1 wrote inline (icons.css sets
   --glyph per hash). Same box the v1 <svg> filled: `.event-card__icon svg { width:100%; height:100% }`. */
i[class^="icon--"], i[class*=" icon--"] {
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: var(--glyph) center / contain no-repeat;
  mask: var(--glyph) center / contain no-repeat;
}

/* The image type draws <figure><img></figure>; v1 wrote a bare <img> inside a sized wrapper. display:contents makes
   the figure invisible to layout, so the img is laid out as v1's direct child was (the hero cover, the plant-card
   4/3 crop, the feature-band fill, the centred badge) and every v1 `wrapper img` rule applies unchanged. */
figure.media-fill { display: contents; }

/* The hero scrim. v1: <div class="hero__scrim" aria-hidden="true"> (empty) between the photo and the words. Drawn
   as the media wrapper's ::after, same inset, same two gradients. Mirrors `.hero__scrim`. */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(39, 23, 0, 0.70) 0%, rgba(39, 23, 0, 0.58) 28%, rgba(39, 23, 0, 0.28) 52%, rgba(39, 23, 0, 0.10) 100%),
    linear-gradient(180deg, rgba(39, 23, 0, 0.22) 0%, rgba(39, 23, 0, 0.08) 42%, rgba(39, 23, 0, 0.36) 100%);
}

/* A card with no tags (Monstera): v1 still drew the empty .plant-card__tags and its .9rem margin. */
.no-plant-card__tags > .plant-card__latin { margin-bottom: calc(.75rem + .9rem); }

/* The current page's nav link. v1 stamped class="active" per page; the shell is one file per shape, so the page's
   own data-page attribute selects it. Mirrors `.site-nav a.active`. */
body[data-page="service-matrix"] .site-nav a[href="/service-matrix"],
body[data-page="where-we-roam"] .site-nav a[href="/where-we-roam"],
body[data-page="care-and-feeding"] .site-nav a[href="/care-and-feeding"],
body[data-page="about"] .site-nav a[href="/about"] { color: var(--brass); background: rgba(255,255,255,.08); }
body[data-page="book-an-event"] .site-nav a.btn--primary[href="/book-an-event"] { color: var(--true-white); background: #264035; }
/* …and at 700px and below the same link takes v1's MOBILE .site-nav a.active values (forest on a grey-green pill; the Book Us
   button forest on white). Validator HARD-1, 2026-09-05: the rule above out-specified v1's media block and painted the
   desktop values inside the open drawer on five routes. Mirrors the `@media (max-width: 700px)` `.site-nav a.active` and
   `.site-nav .btn--primary.active` rules. */
@media (max-width: 700px) {
  body[data-page="service-matrix"] .site-nav a[href="/service-matrix"],
  body[data-page="where-we-roam"] .site-nav a[href="/where-we-roam"],
  body[data-page="care-and-feeding"] .site-nav a[href="/care-and-feeding"],
  body[data-page="about"] .site-nav a[href="/about"] { color: var(--forest); background: rgba(47, 79, 62, .10); }
  body[data-page="book-an-event"] .site-nav a.btn--primary[href="/book-an-event"] { color: var(--true-white); background: var(--forest); }
}

/* THE PHONE DRAWER, without script. v1 toggled .site-nav.open with a script at <=700px. Here a <details> holds a
   second nav; its <summary> is v1's burger (the three spans keep v1's .nav-toggle span rules). Above 700px the
   drawer does not exist and the desktop nav is v1's; at 700px and below the desktop nav is hidden and the open
   drawer takes v1's mobile .site-nav rules. A closed <details> hides its nav natively. */
.nav-drawer { display: none; margin-left: auto; }
.nav-drawer > summary { list-style: none; }
.nav-drawer > summary::-webkit-details-marker { display: none; }
.nav-drawer > summary.nav-toggle { margin-left: 0; cursor: pointer; }   /* v1's `button { cursor: pointer }`; a summary is not a button (Validator SOFT-3) */
@media (max-width: 700px) {
  .nav-drawer { display: block; }
  .site-header__bar > nav.site-nav { display: none; }
  .nav-drawer[open] .site-nav--drawer { display: flex; }
  body:has(.nav-drawer[open]) { overflow: hidden; }   /* mirrors body.nav-open */
}

/* CSS-10: the stylesheet declares transitions, so it declares this. v1 did not. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Footer column titles are h2 (H-4 refuses v1's h4 after a page ending in h2); v1's .footer-col h4 rule, re-targeted. */
.footer-col h2 { font-family: var(--font-body); font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; }

/* 404: v1's inline style on its .wrap */
.notfound-wrap { max-width: 720px; text-align: center; }

/* ============================================================================================
   SECOND SESSION, 2026-09-04: the ten other routes.
   ============================================================================================ */

/* The page-hero scrim. v1: <div class="page-hero__scrim" aria-hidden="true"> (empty), a sibling after the media wrapper.
   Drawn as the media wrapper's ::after, same inset, same gradient. Mirrors `.page-hero__scrim`. */
.page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(39, 23, 0, 0.10) 0%,
    rgba(39, 23, 0, 0.28) 42%,
    rgba(39, 23, 0, 0.48) 58%,
    rgba(39, 23, 0, 0.62) 100%
  );
}

/* H-4 (no heading more than one level deeper than the one before it): v1 runs h2 -> h4 in every card grid and h1 -> h4 on
   contact. The extractor lowers the element to the deepest legal level and marks it `.h4`; these rules are v1's `h4` and
   `<container> h4` rules, re-targeted, so the pixels are v1's. The base `h1, h2, h3, h4` family/weight/leading/colour
   rule already covers the lowered tag. */
.h4 { font-size: 1.1rem; font-weight: 700; }
.section--dark .h4 { color: var(--ivory); }
.roam-area .h4 { margin-bottom: .35rem; }
.contact-item .h4 { margin-bottom: .25rem; }
.shop-card__body .h4 { margin-bottom: .35rem; }
.step .h4 { margin-bottom: .4rem; }
.exp-card .h4 { margin-bottom: .6rem; color: var(--forest); }

/* `Line<br>Line` (the legal pages' address block). The inline vocabulary has no br, so each line is a span in the same
   <p>, drawn as a block: one line box per line, exactly what a br produced. */
.br-lines > span { display: block; }

/* The status line. v1's forms-client.js appends an empty <p class="form-status"> to each form AT LOAD (min-height 1.2em,
   margin-top .75rem: 29px of reserved space under the note), and writes "Sending…"/"Sent" into it. v2 has no script: the
   browser navigates to the mailer's answer instead. The reserved space is v1's look and is drawn here, the way the empty
   scrim div is. Mirrors `.form-status`. */
.booking-shell form::after { content: ''; display: block; margin-top: .75rem; font-size: .9rem; line-height: 1.5; min-height: 1.2em; }
