/* ============================================================
   URTICA HERBAL — Design System v1.0
   Reusable foundation: tokens + components for every page.
   Type: Spectral (serif headings) · Newsreader (serif body) · Hanken Grotesk (sans UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;1,400&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* ---- Brand colour ---- */
  --forest:        #33503D;  /* primary brand green — ink, buttons, heading accents */
  --forest-deep:   #284032;  /* darker forest for depth / hovers */
  --sage:          #A7B8A4;  /* secondary surface */
  --sage-soft:     #C7D2C2;  /* lighter sage tint */
  --sage-haze:     #E4E9DD;  /* faintest sage wash for alt sections */
  --cream:         #F4EFE2;  /* main light background */
  --bone:          #FBF8F0;  /* lifted card / panel surface */
  --charcoal:      #3C2A1C;  /* footer / deep sections — warm walnut brown */
  --ink:           #26302A;  /* body text — charcoal-green, never pure black */
  --ink-soft:      #4A564E;  /* muted body / captions */
  --clay:          #B08A5A;  /* restrained warm accent — used sparingly */
  --clay-deep:     #84653B;  /* clay that meets AA on light backgrounds (nudged to clear 4.5:1 on cream & bone) */

  /* ---- Functional ---- */
  --line:          #DCD6C6;  /* hairline rules on cream */
  --line-soft:     #E7E2D4;
  --focus:         #B08A5A;  /* focus ring */

  /* ---- Typography ---- */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body:  'Newsreader', Georgia, 'Times New Roman', serif;

  /* fluid type scale (clamp: min · preferred · max) */
  --fs-display: clamp(2.9rem, 1.8rem + 4.6vw, 4.75rem);
  --fs-h1:      clamp(2.4rem, 1.7rem + 2.9vw, 3.5rem);
  --fs-h2:      clamp(1.95rem, 1.5rem + 1.9vw, 2.65rem);
  --fs-h3:      clamp(1.5rem, 1.25rem + 1vw, 1.9rem);
  --fs-h4:      clamp(1.2rem, 1.08rem + 0.5vw, 1.4rem);
  --fs-body-lg: 1.2rem;
  --fs-body:    1.0625rem;   /* 17px */
  --fs-small:   0.9375rem;   /* 15px */
  --fs-caption: 0.8125rem;   /* 13px */

  --lh-tight: 1.12;
  --lh-snug:  1.32;
  --lh-body:  1.66;

  --tracking-eyebrow: 0.18em;
  --tracking-caps:    0.06em;

  /* ---- Spacing scale (8pt-ish, with breathing room) ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---- Section rhythm ---- */
  --section-y: clamp(4rem, 8vw, 8rem);
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --maxw:      1200px;
  --maxw-prose: 68ch;

  /* ---- Radius & elevation (soft, no heavy shadows) ---- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(22, 24, 15, 0.04), 0 8px 24px rgba(22, 24, 15, 0.05);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ---- Motion durations (v1.1) — every transition picks one of these ---- */
  --dur-1: 0.15s;  /* instant — press / tap feedback */
  --dur-2: 0.2s;   /* quick — colour, focus ring, input border, icons */
  --dur-3: 0.3s;   /* standard — hover lift, underline grow, disclosure */
  --dur-4: 0.6s;   /* entrance — scroll-reveal fade+rise, image load-in */
  /* the hero's "self-draw" tier (~1.05–1.4s) stays hero-owned, not a shared token */
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  line-height: var(--lh-tight);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }

p { margin: 0 0 1em; max-width: var(--maxw-prose); }

a { color: var(--forest); text-decoration-color: var(--clay); text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }

strong { font-weight: 600; }
img { max-width: 100%; display: block; }

::selection { background: var(--sage); color: var(--forest-deep); }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.u-display { font-family: var(--serif); font-weight: 500; font-size: var(--fs-display); line-height: 1.04; color: var(--forest); letter-spacing: -0.018em; }
.u-eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 var(--sp-4);
}
.u-lead { font-size: var(--fs-body-lg); line-height: 1.58; color: var(--ink); }
.u-small { font-size: var(--fs-small); }
.u-caption { font-size: var(--fs-caption); letter-spacing: var(--tracking-caps); color: var(--ink-soft); }
.u-muted { color: var(--ink-soft); }
.u-serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============================================================
   LAYOUT
   ============================================================ */
.u-container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.u-section { padding-block: var(--section-y); }
.u-prose { max-width: var(--maxw-prose); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --_bg: var(--forest);
  --_fg: var(--cream);
  --_bd: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  min-height: 48px;
  border: 1.5px solid var(--_bd);
  border-radius: var(--r-pill);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-3) var(--ease), color var(--dur-3) var(--ease),
              border-color var(--dur-3) var(--ease), transform var(--dur-1) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); color: var(--cream); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: default; pointer-events: none; transform: none; }

.btn--secondary {
  --_bg: transparent;
  --_fg: var(--forest);
  --_bd: var(--forest);
}
.btn--secondary:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.btn--ghost { --_bg: transparent; --_fg: var(--forest); --_bd: transparent; padding-inline: 0.4rem; }
.btn--ghost:hover { background: transparent; color: var(--forest-deep); transform: none; }

/* on dark surfaces (forest / walnut) — primary flips to sage */
.btn--on-dark { --_bg: var(--sage); --_fg: var(--charcoal); --_bd: var(--sage); }
.btn--on-dark:hover { background: var(--sage-soft); border-color: var(--sage-soft); color: var(--charcoal); }
.btn--on-dark.btn--secondary { --_bg: transparent; --_fg: var(--cream); --_bd: rgba(244,239,226,0.45); }
.btn--on-dark.btn--secondary:hover { background: rgba(244,239,226,0.08); color: var(--cream); border-color: var(--cream); }

.btn--sm { min-height: 40px; padding: 0.6rem 1.1rem; font-size: var(--fs-caption); }

/* text link */
.link {
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size var(--dur-3) var(--ease), color var(--dur-2) var(--ease);
}
.link:hover { color: var(--forest-deep); background-size: 100% 100%; background-image: linear-gradient(rgba(176,138,90,0.16), rgba(176,138,90,0.16)); }

.link--arrow::after { content: '\2192'; margin-left: 0.4em; display: inline-block; transition: transform var(--dur-3) var(--ease); }
.link--arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   FORM (shared — contact form on home & contact pages)
   ============================================================ */
.form { display: flex; flex-direction: column; gap: var(--sp-5); max-width: 34rem; }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-family: var(--sans); font-size: var(--fs-small); font-weight: 600; color: var(--forest); }
.field label .field__opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--body); font-size: var(--fs-body); color: var(--ink);
  background: var(--bone); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 0.85rem 1rem; width: 100%; transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 70%, transparent); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(176,138,90,0.18); }

/* invalid — only after the user has interacted; clay is the warning accent */
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--clay-deep); }
.field input:user-invalid:focus, .field textarea:user-invalid:focus {
  border-color: var(--clay-deep); box-shadow: 0 0 0 3px rgba(132,101,59,0.16);
}
.field__error {
  font-family: var(--sans); font-size: var(--fs-caption); font-weight: 600;
  color: var(--clay-deep); margin: 0;
}

.form__note { font-size: var(--fs-caption); color: var(--ink-soft); margin: 0; }
.form__success { font-family: var(--sans); font-weight: 600; color: var(--forest); margin: 0 0 var(--sp-3); }
.form button { align-self: flex-start; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest);
  border-bottom: 1px solid var(--forest-deep);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.85rem var(--gutter);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 46px; height: 46px; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.brand__tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 4px;
}
.brand__person {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 4px;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: clamp(0.55rem, 1.25vw, 1.3rem); flex-wrap: nowrap; }
.nav__link {
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--sage-soft);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--dur-2) var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--clay); transition: width var(--dur-3) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--cream); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }
.icon-link {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: var(--r-pill); color: var(--sage-soft);
  transition: background var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}
.icon-link:hover { background: rgba(244,239,226,0.10); color: var(--cream); }
.icon-link svg { width: 20px; height: 20px; }

.hamburger {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(244,239,226,0.28);
  border-radius: var(--r-md); background: transparent; cursor: pointer;
  color: var(--cream); padding: 0; place-items: center;
}
.hamburger svg { width: 22px; height: 22px; }

@media (max-width: 1180px) {
  .nav, .header-actions .btn, .header-actions .icon-link { display: none; }
  .hamburger { display: grid; }
}

/* mobile drawer */
.mobile-menu {
  background: var(--cream); border-top: 1px solid var(--line);
  padding: var(--sp-5) var(--gutter) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.mobile-menu a.m-nav {
  font-family: var(--serif); font-size: 1.3rem; color: var(--forest); text-decoration: none;
  padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__actions { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
.mobile-menu .btn { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--sage-soft); }
.site-footer a { color: var(--sage-soft); text-decoration: none; transition: color var(--dur-2) var(--ease); }
.site-footer a:hover { color: var(--cream); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-8);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--sp-9) var(--gutter) var(--sp-6);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); max-width: 38ch; }
.footer__brand img { width: 64px; height: 64px; }
.footer__name { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); margin: 0; }
.footer__person { color: var(--sage-soft); font-size: var(--fs-small); line-height: 1.6; margin: 0; max-width: none; }
/* flex-wrap: the email address is a single unbreakable 163px token. Below ~400px it could not
   fit alongside the social icons and pushed the whole document wider than the viewport, giving
   every page a horizontal scrollbar on a phone — found 2026-08-06 verifying mobile rendering.
   Wrapping only takes effect when the row genuinely cannot fit; wider screens are unchanged. */
.footer__social { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-2); flex-wrap: wrap; }
.footer__social a { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: var(--fs-small); }
.footer__social svg { width: 19px; height: 19px; }
/* Footer column labels. These are <h2> for correct document outline (they were <h5>, which
   skipped h3/h4 — 2026-08-06 SEO audit, O-4). line-height and text-wrap are restated here
   because the global `h1,h2,h3,h4` rule would otherwise apply tight leading and balanced
   wrapping that the old h5 never inherited — these keep the rendering pixel-identical. */
.footer__col h2 {
  font-family: var(--sans); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--clay); margin: 0 0 var(--sp-4);
  line-height: var(--lh-body); text-wrap: wrap;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col ul a { font-family: var(--sans); font-size: var(--fs-small); }
.footer__addr { font-style: normal; line-height: 1.7; color: var(--sage-soft); font-family: var(--sans); font-size: var(--fs-small); }
.footer__prompt { margin-top: var(--sp-5); }
.footer__prompt p { color: var(--sage-soft); font-size: var(--fs-small); margin: 0 0 var(--sp-3); max-width: none; }
.footer__bar {
  border-top: 1px solid rgba(199,210,194,0.16);
  max-width: var(--maxw); margin-inline: auto;
  padding: var(--sp-5) var(--gutter);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  align-items: center; justify-content: space-between;
  font-family: var(--sans); font-size: var(--fs-caption); color: rgba(199,210,194,0.7);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Grimsdale Web Design credit — sits inline in the footer bar (prefix "gwd-" avoids clashes) ---- */
.gwd-credit__link{ position:relative; display:inline-flex; align-items:center; gap:9px; text-decoration:none; }
.gwd-credit__by{ font-family:var(--sans); font-size:var(--fs-caption); font-weight:500; letter-spacing:.01em; color:rgba(199,210,194,0.7); }
.gwd-credit__link svg{ height:22px; width:auto; display:block; }
/* brand signal-red underline wipes in on hover */
.gwd-credit__link::after{
  content:""; position:absolute; left:0; right:0; bottom:-5px; height:1.5px;
  background:#D5331E; transform:scaleX(0); transform-origin:left;
  transition:transform .3s cubic-bezier(.6,.1,.2,1);
}
.gwd-credit__link:hover::after{ transform:scaleX(1); }

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3) var(--ease), border-color var(--dur-3) var(--ease);
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--sage); }
.card__media { aspect-ratio: 4 / 3; }
.card__body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.card__body h3 { margin: 0; }
.card__body p { margin: 0; color: var(--ink-soft); }
.card__foot { margin-top: var(--sp-2); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { border: 0; height: 1px; background: var(--line); margin: var(--sp-7) 0; }
.divider--leaf {
  border: 0; height: auto; text-align: center; margin: var(--sp-7) 0;
  display: flex; align-items: center; gap: var(--sp-4); color: var(--clay);
}
.divider--leaf::before, .divider--leaf::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.divider--leaf span { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--clay); }

/* ============================================================
   PULL QUOTE / TESTIMONIAL
   ============================================================ */
.pullquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--forest);
  max-width: 24ch;
  position: relative;
  padding-left: var(--sp-5);
  border-left: 2px solid var(--clay);
}
.pullquote--center { border: 0; padding: 0; text-align: center; max-width: 32ch; margin-inline: auto; }
.pullquote__mark { font-family: var(--serif); font-size: 3.5rem; line-height: 0; color: var(--sage); display: block; height: 0.5em; }

.testimonial {
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--fs-h4);
  line-height: 1.5;
  color: var(--ink);
}
.testimonial__author { display: flex; align-items: center; gap: var(--sp-4); }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sage); flex: none; }
.testimonial__name { font-weight: 600; color: var(--forest); }
.testimonial__role { font-size: var(--fs-caption); color: var(--ink-soft); }
.stars { color: var(--clay); letter-spacing: 2px; font-size: 0.95rem; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid var(--line); max-width: 760px; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: var(--fs-h4); color: var(--forest);
  padding: var(--sp-5) 0; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); transition: color var(--dur-2) var(--ease);
}
.accordion__trigger:hover { color: var(--forest-deep); }
.accordion__icon { flex: none; width: 22px; height: 22px; position: relative; }
.accordion__icon::before, .accordion__icon::after {
  content: ''; position: absolute; background: var(--clay); border-radius: 2px;
  transition: transform var(--dur-3) var(--ease), opacity var(--dur-3) var(--ease);
}
.accordion__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.accordion__item[open] .accordion__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.accordion__panel { padding: 0 0 var(--sp-6); color: var(--ink-soft); max-width: var(--maxw-prose); }
.accordion__panel p { margin: 0; }
details.accordion__item summary { list-style: none; }
details.accordion__item summary::-webkit-details-marker { display: none; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  /* Clip the decorative watermark, which is positioned to bleed past this band's edges
     (right: -4%, bottom: -12%). Without this it extends the document on narrow viewports
     and gives the whole page a horizontal scrollbar — found 2026-08-06 while verifying
     mobile rendering. The watermark still bleeds; it just stops widening the page. */
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); margin: 0 0 var(--sp-3); max-width: 18ch; }
.cta-band p { color: var(--sage-soft); margin: 0; max-width: 42ch; }
.cta-band__text { position: relative; z-index: 1; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); position: relative; z-index: 1; }
.cta-band__watermark {
  position: absolute; right: -4%; bottom: -12%; width: 300px; opacity: 0.08;
  transform: rotate(-12deg); pointer-events: none;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-ph {
  position: relative;
  width: 100%; height: 100%;
  background-color: var(--sage-haze);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 11px,
    rgba(51,80,61,0.05) 11px, rgba(51,80,61,0.05) 12px
  );
  display: grid; place-items: center;
  color: var(--forest);
}
.img-ph__label {
  font-family: var(--sans);
  font-size: var(--fs-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--cream) 75%, transparent);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.img-ph::after {
  content: ''; position: absolute; inset: 12px; border: 1px dashed rgba(51,80,61,0.18);
  border-radius: 3px; pointer-events: none;
}

/* Real photo dropped into an img-ph container — fills & crops to the frame */
.media-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   BADGE / TAG
   ============================================================ */
.badge {
  font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--forest);
  background: var(--sage-haze); border: 1px solid var(--sage);
  padding: 0.35rem 0.75rem; border-radius: var(--r-pill);
}

/* ============================================================
   MOTION — shared reveal floor (v1.1)
   One IntersectionObserver per page (inline module beside the menu
   script) sets .u-motion on <html> only when JS runs AND reduced
   motion is off, so content is visible by default (JS off = static
   site). The hero's scroll choreography (Moment 2) layers onto this
   same mechanism — one reveal system, not two.
   ============================================================ */
html.u-motion .u-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-4) var(--ease), transform var(--dur-4) var(--ease);
  transition-delay: calc(var(--reveal-i, 0) * 70ms); /* stagger: reading order, cap 4 steps */
}
html.u-motion .u-reveal.is-in { opacity: 1; transform: none; }

/* form state motion — all gated behind .u-motion (reduced motion / JS off = instant) */
html.u-motion .field__error { opacity: 0; transition: opacity var(--dur-2) var(--ease); }
html.u-motion .field.has-error .field__error { opacity: 1; }
@keyframes u-pulse { to { opacity: 0.85; } }
html.u-motion .btn.is-busy:disabled { animation: u-pulse 0.9s var(--ease) infinite alternate; }
html.u-motion .form--done .field,
html.u-motion .form--done button[type="submit"] { opacity: 0; transition: opacity var(--dur-2) var(--ease); }
html.u-motion .form__success {
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
}
html.u-motion .form__success.is-in { opacity: 1; transform: none; }

/* disclosure motion — panel + icon move as one gesture (--dur-3).
   grid-rows fr-animation (no layout thrash); JS on the FAQ page swaps
   .is-open a frame after [open] so the row can animate from 0fr. */
html.u-motion details.accordion__item {
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows var(--dur-3) var(--ease);
}
html.u-motion details.accordion__item.is-open { grid-template-rows: auto 1fr; }
html.u-motion .accordion__panel {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease);
}
html.u-motion details.accordion__item.is-open .accordion__panel { opacity: 1; }
/* while closing ([open] still set, .is-open removed) the icon morphs back in sync */
html.u-motion details.accordion__item[open]:not(.is-open) .accordion__icon::after {
  transform: translateX(-50%);
  opacity: 1;
}

/* mobile drawer motion — same grid-rows pattern as the accordion */
html.u-motion .m-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-3) var(--ease);
}
html.u-motion .m-drawer.is-open { grid-template-rows: 1fr; }
html.u-motion .m-drawer .mobile-menu {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease);
}
html.u-motion .m-drawer.is-open .mobile-menu { opacity: 1; }

/* scrolled header — hairline lift once off the top */
.site-header { transition: box-shadow var(--dur-2) var(--ease); }
html.u-motion .site-header.is-scrolled { box-shadow: var(--shadow-soft); }

/* image load-in — lazy photography settles instead of popping.
   .u-fade is only ever added by JS, so nothing can stay hidden by CSS alone. */
html.u-motion img.u-fade { opacity: 0; transition: opacity var(--dur-4) var(--ease); }
html.u-motion img.u-fade.is-loaded { opacity: 1; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--sp-4); top: -60px; z-index: 100;
  background: var(--forest); color: var(--cream); padding: 0.7rem 1.1rem;
  border-radius: var(--r-md); transition: top var(--dur-2) var(--ease); text-decoration: none;
}
.skip-link:focus { top: var(--sp-4); }

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