/* ============================================================
   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; }

