/* =============================================================================
   Florists B2B stylesheet
   A single, dependency-free stylesheet. Organised as:
     1. Design tokens (custom properties)
     2. Reset & base
     3. Typography
     4. Layout primitives
     5. Components (buttons, header, footer, cards, forms…)
     6. Page sections (hero, steps, map, directory, about, join)
     7. Utilities, motion & responsive
   Palette: dark slate-green + cream + olive + mustard gold + kraft/terracotta.
   Swap the tokens in :root to re-skin the whole site.
   ========================================================================== */

/* 1. Design tokens ---------------------------------------------------------- */
:root {
  /* Brand palette: dark slate-green, olive, mustard gold, kraft, cream */
  --green-900: #20302a;   /* darkest (headings, footer) */
  --green-800: #243a30;
  --green-700: #2f4a3c;   /* primary (buttons) */
  --green-600: #3a5747;
  --green-500: #50705c;
  --green-200: #bdccc1;
  --green-100: #dde6dd;

  --olive-700: #5d6a35;
  --olive-500: #7c8a47;   /* foliage / secondary accent */
  --olive-200: #d8ddbb;

  --gold-700: #9d7c2c;
  --gold-500: #c49a3e;    /* mustard, primary accent */
  --gold-300: #e2cb8e;
  --gold-100: #f1e7cb;

  --terracotta: #b15f37;  /* warm accent, used sparingly */

  /* Neutrals (warm) */
  --cream: #f4eee1;       /* page background */
  --sand: #ece3d1;        /* alt section background */
  --paper: #fffdf7;
  --ink: #282219;         /* primary text */
  --ink-soft: #4a4334;
  --muted: #7c7261;       /* secondary text */
  --line: #e3d9c5;        /* hairlines / borders */

  /* Semantic */
  --bg: var(--cream);
  --text: var(--ink);
  --primary: var(--green-700);
  --primary-ink: #f6f1e4;
  --accent: var(--gold-500);
  --danger: #b04a32;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.20rem, 1.10rem + 0.45vw, 1.45rem);
  --step-2:  clamp(1.50rem, 1.30rem + 0.90vw, 2.05rem);
  --step-3:  clamp(1.95rem, 1.55rem + 1.80vw, 3.05rem);
  --step-4:  clamp(2.45rem, 1.80rem + 3.10vw, 4.40rem);

  /* Space */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius / shadow / motion */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(28, 53, 45, 0.06), 0 2px 8px rgba(28, 53, 45, 0.05);
  --shadow: 0 8px 30px rgba(28, 53, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(28, 53, 45, 0.16);
  --ring: 0 0 0 3px rgba(80, 112, 92, 0.40);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1180px;
  --container-narrow: 760px;
}

/* 2. Reset & base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

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

ul, ol { list-style: none; padding: 0; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

::selection { background: var(--gold-300); color: var(--green-900); }

/* 3. Typography ------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--green-900);
  font-optical-sizing: auto;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); font-weight: 400; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }

.lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
}
.eyebrow.is-centered::before { display: none; }

.text-accent { color: var(--accent); }
.serif-italic { font-style: italic; }

/* 4. Layout primitives ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.container.is-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, var(--space-2xl)); }
.section.is-tight { padding-block: clamp(2.5rem, 5vw, var(--space-xl)); }
.section--sand { background: var(--sand); }
.section--green {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #eef3f0;
}
.section--green h2, .section--green h3 { color: #fff; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; color: var(--muted); }
.section--green .section-head p { color: #c7d6cf; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stack > * + * { margin-top: var(--flow, 1rem); }

/* 5. Components ------------------------------------------------------------- */

/* Buttons */
.btn {
  --btn-bg: var(--primary);
  --btn-ink: var(--primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn--accent { --btn-bg: var(--accent); --btn-ink: var(--green-900); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--green-800);
  border-color: var(--green-200);
}
.btn--ghost:hover { background: var(--green-100); box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-ink: var(--green-800); }
.btn--on-green { --btn-bg: #fff; --btn-ink: var(--green-900); }
.btn--block { width: 100%; }
.btn--lg { padding: 1em 1.9em; font-size: var(--step-1); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  color: var(--green-700);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.link-arrow:hover { border-color: var(--green-500); gap: 0.7em; }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--cream) 94%, transparent);
}
/* iOS Safari: backdrop-filter on a sticky element at the top of the page can
   paint a dark band (the blur has nothing to sample above the document).
   Use a solid header there instead. */
@supports (-webkit-touch-callout: none) {
  .site-header,
  .site-header.is-scrolled {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 4.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
.brand__mark { width: 40px; height: 40px; flex: none; border-radius: 50%; }
.brand__name b { font-weight: 600; }
.brand__name span { color: var(--gold-700); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.1rem);
}
.nav__link {
  position: relative;
  font-weight: 500;
  color: var(--ink-soft);
  padding-block: 0.25rem;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--green-800); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--green-800); }

.nav__cta { margin-left: 0.25rem; }

.nav__toggle {
  display: none;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  padding: 0;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 1.1rem; height: 2px;
  margin-inline: auto;
  background: var(--green-900);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Footer */
.site-footer {
  background: var(--green-900);
  color: #cdd9d3;
  padding-block: clamp(3rem, 6vw, 4.5rem) calc(2rem + env(safe-area-inset-bottom, 0px));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand p { color: #a9b9b2; max-width: 30ch; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__col a { color: #b9c7c0; line-height: 2.1; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: var(--step--1);
  color: #8fa39b;
}
.footer__bottom a { color: #b9c7c0; }
.footer__bottom a:hover { color: #fff; }

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card--feature { display: flex; flex-direction: column; gap: 0.75rem; }
.card__icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 0.5rem;
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }

/* Numbered steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.1rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.step p { color: var(--muted); }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stat__label { color: #bcccc4; margin-top: 0.5rem; font-size: var(--step--1); letter-spacing: 0.02em; }

/* Pills / tags */
.tag {
  display: inline-block;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-pill);
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.tag--muted { background: var(--sand); color: var(--muted); }

/* 6. Page sections ---------------------------------------------------------- */

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 8vw, 6.5rem); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero__content { max-width: 38rem; }
.hero h1 { margin-block: 1.1rem 1.25rem; }
.hero h1 em { font-style: italic; color: var(--green-700); }
.hero__lead { max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero__trust { margin-top: 2.25rem; color: var(--muted); font-size: var(--step--1); }
.hero__trust strong { color: var(--green-800); font-weight: 600; }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__logo {
  width: min(100%, 430px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 26px 55px rgba(32, 48, 42, 0.20);
}
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg, var(--gold-100), var(--olive-200));
  aspect-ratio: 4 / 5;
}
.hero__card svg { width: 100%; height: 100%; }
.hero__badge {
  position: absolute;
  left: -1.25rem; bottom: 1.75rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 16rem;
}
.hero__badge .dot { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); flex: none; }
.hero__badge p { font-size: 0.82rem; line-height: 1.35; color: var(--ink-soft); }
.hero__badge strong { color: var(--green-900); }

/* soft decorative blobs */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: -1;
}
.hero::before { width: 30rem; height: 30rem; background: var(--gold-100); top: -8rem; right: -6rem; }
.hero::after { width: 26rem; height: 26rem; background: var(--olive-200); bottom: -10rem; left: -8rem; }

/* Logos / "how it works" connector on desktop */
.steps.grid-3 { position: relative; }

/* Map */
.map-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--green-100);
}
.map {
  width: 100%;
  height: clamp(360px, 56vh, 600px);
  background: var(--green-100);
}
.map:focus-visible { box-shadow: inset var(--ring); }
.directory-layout .map { height: 100%; min-height: 460px; }

/* Leaflet overrides for an elegant, on-brand look */
.leaflet-container { font-family: var(--font-body); background: #eef3f0; }
.leaflet-control-zoom a {
  border-radius: 8px !important;
  color: var(--green-800) !important;
  border: 1px solid var(--line) !important;
}
.leaflet-bar { box-shadow: var(--shadow-sm) !important; border: none !important; }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  padding: 2px 4px;
}
.leaflet-popup-content { margin: 0.9rem 1.05rem !important; line-height: 1.5; }
.leaflet-popup-tip { box-shadow: var(--shadow-sm); }
.popup__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-900); margin-bottom: 0.15rem; }
.popup__meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.popup__tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.5rem 0 0.65rem; }
.popup__link { font-weight: 600; color: var(--green-700); font-size: 0.9rem; }

/* Custom marker pin */
.fb2b-pin {
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.fb2b-pin svg { filter: drop-shadow(0 4px 6px rgba(28,53,45,0.35)); }
.fb2b-pin.is-inactive svg { opacity: 0.65; }

/* Directory */
.directory-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 940px) {
  .directory-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: start; }
  .directory-layout .map-shell { position: sticky; top: 6rem; height: calc(100vh - 8rem); max-height: 760px; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.7rem;
  margin-bottom: 1.5rem;
}
.filters__label { font-weight: 600; color: var(--ink-soft); margin-right: 0.25rem; }
.chip {
  padding: 0.5em 1.05em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: var(--step--1);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--green-200); color: var(--green-800); }
.chip[aria-pressed="true"] {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.search {
  flex: 1 1 14rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55em 0.95em;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--paper);
}
.search svg { width: 1.05rem; height: 1.05rem; color: var(--muted); flex: none; }
.search input { width: 100%; border: none; background: transparent; outline: none; }

.directory-meta { color: var(--muted); font-size: var(--step--1); margin-bottom: 1rem; }

.member-list { display: grid; gap: 1rem; }
.member {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.member:hover, .member.is-active {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--green-200);
}
.member__avatar {
  grid-row: span 2;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-100), var(--olive-200));
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex: none;
}
.member__name { font-family: var(--font-display); font-size: var(--step-1); color: var(--green-900); }
.member__loc { color: var(--muted); font-size: var(--step--1); }
.member__loc svg { width: 0.9rem; height: 0.9rem; display: inline; vertical-align: -1px; margin-right: 0.2rem; }
.member__status {
  grid-row: span 2;
  align-self: center;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600; color: var(--green-600);
  white-space: nowrap;
}
.member__status .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green-500); }
.member__status.is-inactive { color: var(--muted); }
.member__status.is-inactive .dot { background: var(--muted); }
.member__tags { grid-column: 2 / -1; display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.5rem; }

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* Searchable directory card grid */
.florist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}
.florist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.florist:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--green-200); }
.florist__head { display: flex; gap: 0.85rem; align-items: flex-start; }
.florist__avatar {
  width: 3rem; height: 3rem; flex: none;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-100), var(--olive-200));
  color: var(--green-800);
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
}
.florist__name { font-family: var(--font-display); font-weight: 500; font-size: var(--step-1); line-height: 1.15; color: var(--green-900); }
.florist__loc { color: var(--muted); font-size: var(--step--1); margin-top: 0.25rem; display: flex; align-items: baseline; gap: 0.3rem; }
.florist__loc svg { width: 0.85rem; height: 0.85rem; flex: none; transform: translateY(1px); }
.florist__pc { color: var(--green-700); font-weight: 600; }
.florist__contact { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.florist__contact a {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--green-700);
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.florist__contact a:hover { transform: translateY(-1px); background: var(--green-700); color: #fff; border-color: var(--green-700); }
.florist__contact svg { width: 1.05rem; height: 1.05rem; }
.florist__contact .is-empty { color: var(--muted); font-size: 0.82rem; align-self: center; }

/* Preview password gate (temporary; see js/gate.js) */
html.locked { overflow: hidden; }
html.locked body > *:not(.site-gate) { display: none !important; }
.site-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--cream);
}
.site-gate__card {
  width: 100%;
  max-width: 23rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem);
  text-align: center;
}
.site-gate__logo { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1.25rem; box-shadow: var(--shadow-sm); }
.site-gate h1 { font-size: var(--step-2); margin-bottom: 0.35rem; }
.site-gate__card > p { color: var(--muted); font-size: var(--step--1); margin-bottom: 1.5rem; }
.site-gate form { display: grid; gap: 0.8rem; }
.site-gate input {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  font-size: var(--step-0);
}
.site-gate input:focus { outline: none; border-color: var(--green-500); background: var(--paper); box-shadow: var(--ring); }
.site-gate__error { color: var(--danger); font-size: 0.8rem; min-height: 1.1em; margin: 0; }

/* Prose (about + legal-ish) */
.prose { max-width: 42rem; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; font-size: var(--step-1); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { display: grid; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--green-800);
}

/* Pull / quote feature */
.quote {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.quote p {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  line-height: 1.35;
  color: var(--green-900);
}
.section--green .quote p { color: #fff; }
.quote cite { display: block; margin-top: 1.25rem; font-style: normal; color: var(--muted); font-size: var(--step--1); }
.section--green .quote cite { color: #bcccc4; }

/* Forms */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--ink-soft); font-size: var(--step--1); }
.field label .req { color: var(--accent); }
.field .hint { font-size: 0.8rem; color: var(--muted); }
.input, .select, .textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--green-500);
  background: var(--paper);
  box-shadow: var(--ring);
  outline: none;
}
.textarea { resize: vertical; min-height: 7rem; }
.input:user-invalid, .select:user-invalid, .textarea:user-invalid { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: 0.8rem; min-height: 0; }
.checkbox { display: flex; gap: 0.65rem; align-items: flex-start; }
.checkbox input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--green-700); flex: none; }
.checkbox label { font-weight: 400; color: var(--ink-soft); font-size: var(--step--1); }

.form-success {
  text-align: center;
  padding: 1rem 0;
}
.form-success__icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: var(--green-100);
  color: var(--green-700);
}
[hidden] { display: none !important; }

/* Facebook / community join box (clickable) */
.join-box {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.3rem 1.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.join-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.join-box__icon {
  width: 3.4rem; height: 3.4rem; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-700);
}
.join-box__icon svg { width: 1.9rem; height: 1.9rem; }
.join-box__text { display: grid; gap: 0.15rem; }
.join-box__text strong { font-family: var(--font-display); font-weight: 500; font-size: var(--step-1); color: var(--green-900); }
.join-box__text span { color: var(--muted); font-size: var(--step--1); }
.join-box__arrow { margin-left: auto; color: var(--green-600); font-size: 1.5rem; line-height: 1; transition: transform 0.25s var(--ease); }
.join-box:hover .join-box__arrow { transform: translateX(4px); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-card {
  background: linear-gradient(150deg, var(--green-800), var(--green-900));
  color: #eef3f0;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-card p { color: #c7d6cf; max-width: 50ch; margin: 1rem auto 0; }
.cta-card .hero__actions { justify-content: center; }
.cta-card::after {
  content: "";
  position: absolute;
  width: 22rem; height: 22rem;
  right: -6rem; top: -8rem;
  background: radial-gradient(circle, rgba(196,154,62,0.40), transparent 70%);
  border-radius: 50%;
}

/* Page hero (interior pages) */
.page-hero { padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-block: 1rem; }
.page-hero p { max-width: 44rem; margin-inline: auto; color: var(--muted); }

/* 7. Utilities, motion & responsive ---------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--green-900);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space-lg); }

/* Reveal-on-scroll (progressive; no-JS shows everything) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 26rem; margin-inline: auto; width: 100%; }
  .hero__card { aspect-ratio: 16 / 11; }
  .hero__content { max-width: 40rem; }
}

@media (max-width: 720px) {
  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    position: fixed;
    top: calc(4.75rem + env(safe-area-inset-top, 0px));
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.15rem, 5vw, 2rem) 1.5rem;
    transform: translateY(calc(-100% - 4.75rem - env(safe-area-inset-top, 0px)));
    transition: transform 0.35s var(--ease);
    max-height: calc(100dvh - 4.75rem - env(safe-area-inset-top, 0px));
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); box-shadow: var(--shadow); }
  .nav__link { padding-block: 0.7rem; font-size: var(--step-1); border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 0.75rem 0 0; }
  .nav__cta .btn { width: 100%; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; }
  .member { grid-template-columns: auto 1fr; }
  .member__status { grid-row: 1; grid-column: 2; justify-self: end; }
  .member__tags { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .site-footer, .map-shell, .hero__art, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}
