/* =========================================================================
   Branch and Root Consulting — Editorial Redesign
   ========================================================================= */

/* ----- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--moss-light); outline-offset: 3px; border-radius: 2px; }

/* ----- Base ---------------------------------------------------------- */
html, body {
  background: var(--page-bg);
  color: var(--body-fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

main { flex: 1; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: var(--track-tight);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: var(--track-tighter); }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.15; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.25; }

p { color: var(--body-fg); max-width: var(--max-w-reading); text-wrap: pretty; }
p + p { margin-top: var(--s-2); }

em, i, .italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

strong { font-weight: 600; color: var(--heading); }

a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(45, 106, 79, 0.4);
  text-underline-offset: 4px;
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}
a:hover { color: var(--moss); text-decoration-color: var(--moss); }

::selection { background: var(--moss); color: var(--cream-fixed); }

/* ----- Layout primitives -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-3);
}
.container-wide { max-width: var(--max-w-wide); }
.container-narrow { max-width: var(--max-w-narrow); }

@media (min-width: 768px) {
  .container { padding-inline: var(--s-5); }
}
@media (min-width: 1100px) {
  .container { padding-inline: var(--s-6); }
}

.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section-sm { padding-block: clamp(3rem, 5vw, 5rem); }
.section-lg { padding-block: clamp(5rem, 10vw, 10rem); }

.section-cream  { background: var(--page-bg); }
.section-paper  { background: var(--paper); }
.section-bone   { background: var(--bone); }
.section-forest { background: var(--forest-fixed); color: var(--cream-fixed); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--cream-fixed); }
.section-forest p { color: rgba(247, 245, 240, 0.86); }
.section-forest a { color: var(--cream-fixed); text-decoration-color: rgba(247, 245, 240, 0.45); }
.section-forest a:hover { color: var(--bone); }

/* ----- Editorial primitives ----------------------------------------- */

/* Eyebrows — small-caps section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-forest .eyebrow { color: var(--moss-light); }

/* Annotation — marginal "small-caps location stamp" — recurring signature */
.annotation {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
}
.annotation--moss { color: var(--moss); }
.section-forest .annotation { color: rgba(247, 245, 240, 0.6); }

/* THE SIGNATURE ELEMENT — "The Horizon"
   A 1px hairline rule with a 5px filled dot at center and a 14px vertical
   tick descending below the dot. Echoes the canopy/root divider in the logo.
   Recurs as section dividers and beneath location stamps. */
.horizon {
  position: relative;
  height: 16px;
  width: 100%;
  display: block;
}
.horizon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-hair);
}
.horizon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--rule);
  border-radius: 50%;
}
.horizon i {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 12px;
  background: var(--rule);
  display: block;
}
.horizon--left::after { left: 0; transform: none; }
.horizon--left i { left: 3px; transform: none; }
.horizon--right::after { left: auto; right: 0; transform: none; }
.horizon--right i { left: auto; right: 3px; transform: none; }
.section-forest .horizon::before { background: rgba(247, 245, 240, 0.28); }
.section-forest .horizon::after { background: var(--cream-fixed); }
.section-forest .horizon i { background: var(--cream-fixed); }

/* Location stamp — the recurring south-OC signature */
.location-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  margin-top: var(--s-5);
}
.location-stamp .annotation { white-space: nowrap; }
@media (max-width: 700px) {
  .location-stamp .annotation { white-space: normal; line-height: 1.6; }
}

/* Lead paragraph */
.lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--body-fg);
  letter-spacing: -0.01em;
  max-width: 50ch;
  font-variation-settings: "opsz" 144;
}
.section-forest .lead { color: rgba(247, 245, 240, 0.92); }

/* Drop cap — first paragraph of editorial sections */
.dropcap::first-letter,
.dropcap > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3em;
  line-height: 0.85;
  float: left;
  margin: 0.12em 0.18em 0 -0.04em;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
}
.dropcap > p + p { clear: left; margin-top: var(--s-4); }
@media (prefers-color-scheme: dark) {
  .dropcap::first-letter,
  .dropcap > p:first-of-type::first-letter { color: var(--moss-light); }
}

/* Hanging quote — sits in the gutter */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.25;
  color: var(--forest);
  letter-spacing: -0.015em;
  max-width: 28ch;
  position: relative;
  padding-left: 1.2em;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 0; top: -0.15em;
  font-size: 2.6em;
  color: var(--moss);
  line-height: 1;
  font-style: italic;
  font-weight: 600;
}
.pull-quote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
}
.section-forest .pull-quote { color: var(--cream-fixed); }
.section-forest .pull-quote::before { color: var(--moss-light); }
.section-forest .pull-quote cite { color: rgba(247, 245, 240, 0.7); }

/* Oversized faded numeral — for gutter/hero accents */
.gutter-numeral {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--forest);
  opacity: 0.07;
  font-variation-settings: "opsz" 144;
  pointer-events: none;
  user-select: none;
}
.section-forest .gutter-numeral { color: var(--cream-fixed); opacity: 0.08; }

/* Editorial italic accent */
.accent-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--moss);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-forest .accent-italic { color: var(--moss-light); }

/* ----- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  min-height: 48px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;        /* editorial pill, less SaaS-y than rounded-rect */
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream-fixed);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream-fixed);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-cream {
  background: var(--cream-fixed);
  color: var(--forest-fixed);
  border-color: var(--cream-fixed);
}
.btn-cream:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--forest-fixed);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream-fixed);
  text-decoration: none;
}
.section-forest .btn-ghost {
  color: var(--cream-fixed);
  border-color: var(--cream-fixed);
}
.section-forest .btn-ghost:hover {
  background: var(--cream-fixed);
  color: var(--forest-fixed);
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
  font-weight: 400;
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-block { width: 100%; }

/* ----- Header / Nav -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  --nav-pad: 1.6rem;
  --brand-logo: 48px;
  --brand-name-size: 1.22rem;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-hair);
  --nav-pad: 0.85rem;
  --brand-logo: 40px;
  --brand-name-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--nav-pad);
  transition: padding-block 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--brand-name-size, 1.1rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  white-space: nowrap;
  transition: font-size 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand:hover { color: var(--moss); text-decoration: none; }
.brand img {
  width: var(--brand-logo, 40px);
  height: var(--brand-logo, 40px);
  border-radius: 50%;
  object-fit: cover;
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1), height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text .brand-name { font-weight: 700; }
.brand-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}

.nav-links {
  display: none;
  list-style: none;
  gap: clamp(1.1rem, 1.05rem + 1.2vw, 2.1rem);
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--body-fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--moss); }
.nav-links a.is-active { color: var(--forest); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--moss);
}

.nav-cta { display: none; }
.site-header .nav-cta {
  padding: 0.62rem 1.2rem;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--forest);
}
.nav-toggle:hover { background: var(--line-soft); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1080px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile panel */
.mobile-panel {
  display: none;
  border-top: 1px solid var(--line-hair);
  background: var(--page-bg);
}
.mobile-panel.is-open { display: block; }
.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: var(--s-2) 0;
}
.mobile-panel a {
  display: block;
  padding: 0.85rem var(--s-3);
  text-decoration: none;
  color: var(--body-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
}
.mobile-panel a:hover { color: var(--moss); }
.mobile-panel a.is-active { color: var(--forest); }
.mobile-panel .mobile-cta {
  margin: var(--s-3) var(--s-3) var(--s-4);
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.98rem;
}
@media (min-width: 1080px) {
  .mobile-panel, .mobile-panel.is-open { display: none; }
}

/* ========================================================================
   HERO — Home page (editorial, asymmetric)
   ======================================================================== */
.hero {
  background: var(--forest-fixed);
  color: var(--cream-fixed);
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 11rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: end;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 9fr 3fr;
    gap: var(--s-7);
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.75);
  margin-bottom: var(--s-4);
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(247, 245, 240, 0.5);
}
.hero h1 {
  color: var(--cream-fixed);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: var(--track-tighter);
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: rgba(247, 245, 240, 0.95);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--moss-light);
  font-weight: 500;
}
.hero-aside {
  position: relative;
  border-left: 1px solid rgba(247, 245, 240, 0.28);
  padding-left: var(--s-4);
  color: var(--cream-fixed);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 30ch;
}
.hero-aside p { color: var(--cream-fixed); }
.hero-aside .annotation {
  color: rgba(247, 245, 240, 0.82);
  display: block;
  margin-bottom: var(--s-2);
}
.hero-lead {
  margin-top: var(--s-5);
  max-width: 56ch;
  color: rgba(247, 245, 240, 0.86);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
}
.hero-actions {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  align-items: center;
}
.hero-secondary {
  color: rgba(247, 245, 240, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid rgba(247, 245, 240, 0.3);
}
.hero-secondary:hover { color: var(--cream-fixed); border-bottom-color: var(--cream-fixed); text-decoration: none; }
.hero-secondary .arrow { transition: transform var(--dur) var(--ease); }
.hero-secondary:hover .arrow { transform: translateY(2px); }

/* Hero foot — horizon mark + location stamp */
.hero-foot {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.hero-foot .annotation {
  color: rgba(247, 245, 240, 0.65);
}

/* ========================================================================
   PAGE HERO — interior pages
   ======================================================================== */
.page-hero {
  background: var(--forest-fixed);
  color: var(--cream-fixed);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: rgba(247, 245, 240, 0.75); }
.page-hero .eyebrow::before { background: rgba(247, 245, 240, 0.5); }
.page-hero h1 {
  color: var(--cream-fixed);
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: var(--track-tighter);
  line-height: 0.98;
  max-width: 22ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--moss-light);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-hero .lead {
  color: rgba(247, 245, 240, 0.88);
  margin-top: var(--s-4);
  max-width: 56ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 8fr 4fr;
    gap: var(--s-7);
    align-items: end;
  }
}
.page-hero-aside {
  border-left: 1px solid rgba(247, 245, 240, 0.18);
  padding-left: var(--s-4);
}
.page-hero-aside .annotation {
  color: rgba(247, 245, 240, 0.55);
  display: block;
  margin-bottom: var(--s-2);
}
.page-hero-aside p {
  color: rgba(247, 245, 240, 0.82);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ========================================================================
   CONTENT — editorial section header
   ======================================================================== */
.section-header {
  margin-bottom: var(--s-6);
  max-width: 56ch;
}
.section-header.wide { max-width: 70ch; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: var(--s-3); }
.section-header .lead { margin-top: var(--s-3); }

/* Two-column editorial spread (for body text on Honest Truth, etc.) */
.editorial-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .editorial-spread {
    grid-template-columns: 5fr 7fr;
    gap: var(--s-7);
    align-items: start;
  }
}
.editorial-spread .col-lede h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem); }
.editorial-spread .col-body p { font-size: 1.08rem; line-height: 1.7; }
.editorial-spread .col-body p + p { margin-top: var(--s-3); }

/* ----- Problem trio (home) ------------------------------------------ */
.problem-trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
  counter-reset: prob;
}
@media (min-width: 800px) {
  .problem-trio { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
.problem-item {
  counter-increment: prob;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-hair);
  position: relative;
}
.problem-item::before {
  content: counter(prob, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--moss);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--s-3);
}
.problem-item h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.problem-item h3 em { font-style: italic; color: var(--moss); font-weight: 500; }
.problem-item p {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ----- Solution bridge (home) --------------------------------------- */
.bridge {
  background: var(--paper);
  padding-block: clamp(4rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}
.bridge .container { max-width: 800px; text-align: center; position: relative; }
.bridge h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
  margin: var(--s-3) auto 0;
  max-width: 20ch;
}
.bridge h2 em { font-style: italic; color: var(--moss); font-weight: 500; }
.bridge p {
  margin: var(--s-4) auto 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 50ch;
  color: var(--body-fg);
}
.bridge .btn { margin-top: var(--s-5); }
.bridge .gutter-numeral {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14rem, 30vw, 28rem);
  z-index: 0;
  opacity: 0.05;
}

/* ----- About teaser (home) ------------------------------------------ */
.about-teaser {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .about-teaser { grid-template-columns: 5fr 7fr; gap: var(--s-7); align-items: center; }
}
.about-teaser .badge-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--paper);
  border-radius: 50%;
  max-width: 360px;
  margin-inline: auto;
}
.about-teaser .badge-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--line-hair);
  border-radius: 50%;
  pointer-events: none;
}
.about-teaser .badge-frame img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.about-teaser .body h2 em { font-style: italic; color: var(--moss); font-weight: 500; }

/* ========================================================================
   CTA BANNER (forest, bottom of every page)
   ======================================================================== */
.cta-banner {
  background: var(--forest-fixed);
  color: var(--cream-fixed);
  padding-block: clamp(4rem, 9vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 100%, rgba(82, 148, 111, 0.2), transparent 60%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  color: var(--cream-fixed);
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
}
.cta-banner h2 em { font-style: italic; color: var(--moss-light); font-weight: 500; }
.cta-banner p {
  color: rgba(247, 245, 240, 0.88);
  margin: var(--s-4) auto 0;
  max-width: 56ch;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
}
.cta-banner .btn { margin-top: var(--s-5); }
.cta-banner .horizon { max-width: 360px; margin: var(--s-5) auto 0; }
.cta-banner .footnote {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  color: rgba(247, 245, 240, 0.65);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
}

/* ========================================================================
   SERVICES PAGE — editorial spec sheets
   ======================================================================== */
.service-block {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.service-block + .service-block {
  border-top: 1px solid var(--line-hair);
}
.service-block .gutter-numeral {
  position: absolute;
  top: clamp(2rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 5rem);
  font-size: clamp(8rem, 18vw, 18rem);
  z-index: 0;
}
.service-block .container { position: relative; z-index: 1; }
.service-block .service-num {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--s-3);
}
.service-block .service-num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.service-block h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
  margin-bottom: var(--s-3);
  max-width: 18ch;
}
.service-block h2 em { font-style: italic; color: var(--moss); font-weight: 500; }
.service-block .lead {
  font-size: 1.32rem;
  max-width: 48ch;
  margin-bottom: var(--s-5);
}
.service-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1.35fr 1fr; gap: var(--s-7); align-items: start; }
}
.service-body p { font-size: 1.05rem; line-height: 1.7; }
.service-body h3 {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin: var(--s-5) 0 var(--s-3);
}

/* Service deliverables list — numbered editorial */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: dlv;
}
.service-list li {
  counter-increment: dlv;
  position: relative;
  padding: var(--s-3) 0 var(--s-3) 3.2rem;
  border-top: 1px solid var(--line-hair);
  color: var(--body-fg);
  font-size: 1.02rem;
  line-height: 1.55;
}
.service-list li:last-child { border-bottom: 1px solid var(--line-hair); }
.service-list li::before {
  content: counter(dlv, decimal-leading-zero);
  position: absolute;
  left: 0; top: var(--s-3);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--moss);
  letter-spacing: 0.04em;
}

/* Service meta sidebar — editorial spec block */
.service-meta {
  background: var(--paper);
  border: 1px solid var(--line-hair);
  padding: var(--s-5);
  position: sticky;
  top: var(--nav-h);
  border-radius: 2px;
}
.service-meta::before {
  content: "Spec Sheet";
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid var(--line-hair);
}
.service-meta h4 {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.service-meta .meta-row + .meta-row {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-hair);
}
.service-meta .meta-row p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--heading);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
.service-meta .meta-row .price-figure {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.2rem;
}
.service-meta .meta-row .price-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
}
.service-meta .btn { margin-top: var(--s-4); width: 100%; }

.addons-note {
  margin-top: var(--s-5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  text-align: center;
}
.addons-note em { font-style: italic; }

/* ========================================================================
   PACKAGES PAGE — editorial side-by-side spread
   ======================================================================== */
.packages-spread {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 980px) {
  .packages-spread {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .packages-spread::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--line-hair);
  }
}

.package {
  padding: var(--s-3) 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  .package { padding: 0 clamp(2rem, 4vw, 4rem); }
}

.package-marker {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.package-marker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.package h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: var(--track-tighter);
  margin-bottom: var(--s-3);
  color: var(--heading);
}
.package h3 .accent { font-style: italic; color: var(--moss); font-weight: 500; }

.package-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--forest);
  max-width: 26ch;
  margin-bottom: var(--s-5);
  font-weight: 400;
}

.package-section {
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line-hair);
}
.package-section h4 {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--s-3);
}
.package-section p { font-size: 1.02rem; line-height: 1.65; }
.package-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.package-section ul li {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--heading);
  padding: 0.5rem 0;
  font-weight: 500;
  position: relative;
  padding-left: 1.4em;
}
.package-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 400;
}

.package ol.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.package ol.steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
  margin-bottom: var(--s-3);
  color: var(--body-fg);
  font-size: 1.02rem;
  line-height: 1.55;
}
.package ol.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--moss);
  letter-spacing: 0.04em;
}
.package ol.steps li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

/* Pricing block — oversized editorial numerals */
.package-pricing {
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-hair);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.price-display {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-display .price-figure {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: var(--track-tighter);
  color: var(--forest);
}
.price-display .price-figure sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 500;
  margin-right: 0.05em;
  color: var(--moss);
}
.price-display .price-label {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
  margin-top: var(--s-2);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--s-2);
  border-top: 1px dashed var(--line-hair);
}
.price-row .label {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
}
.price-row .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--heading);
}
.package-pricing .price-note {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate);
  font-style: italic;
  line-height: 1.5;
}
.package-pricing .price-note + .price-note { margin-top: 0; }

.package .btn {
  margin-top: var(--s-4);
  width: 100%;
}

.roi-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--forest);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
  margin: var(--s-4) 0;
}
.roi-note strong {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  display: block;
  margin-bottom: 0.3rem;
}

/* Featured package emphasis, price sublabel, services cross-sell outro */
.package.package-featured { border-color: var(--moss); box-shadow: var(--elev-2); }
.price-sublabel { font-weight: 400; font-size: 0.9em; }
.services-outro { text-align: center; }
.services-outro .bundle-crosssell { max-width: 58ch; margin: 0 auto var(--s-4); font-size: 1.05rem; color: var(--body-fg); }
.services-outro .addons-note { margin-top: var(--s-5); }
.faq-cta-inline { margin-top: var(--s-3); font-weight: 600; }
.booking-fallback { text-align: center; margin-top: var(--s-4); color: var(--slate); }

/* Comparison table — editorial ledger */
.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  font-family: var(--font-body);
}
.compare-table th, .compare-table td {
  padding: 1rem var(--s-2);
  text-align: left;
  border-bottom: 1px solid var(--line-hair);
  vertical-align: middle;
}
.compare-table thead th {
  background: transparent;
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: var(--track-tight);
  border-bottom: 2px solid var(--forest);
  padding-bottom: var(--s-3);
}
.compare-table tbody th {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--heading);
  font-size: 1.05rem;
}
.compare-table tbody td {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading);
}
.compare-table tbody td.check {
  color: var(--moss);
  font-size: 1.4rem;
}
.compare-table tbody td.dash  {
  color: var(--slate-soft);
  font-size: 1.4rem;
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: 0; }

/* ========================================================================
   ABOUT PAGE — Philosophy + Roots/Branches mirrored composition
   ======================================================================== */

/* Philosophy two-up */
.philosophy {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .philosophy { grid-template-columns: 4fr 8fr; gap: var(--s-7); align-items: start; }
}
.philosophy .col-lede h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
  max-width: 12ch;
}
.philosophy .col-lede h2 em { font-style: italic; color: var(--moss); font-weight: 500; }
.philosophy .col-body p {
  font-size: 1.08rem;
  line-height: 1.7;
}
.philosophy .col-body p + p { margin-top: var(--s-3); }
.philosophy .col-body strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--forest);
  font-size: 1.15em;
}

/* The Tree — visual axis with Branches above, Roots below.
   The horizon line is THE horizontal divider in the page. */
.tree {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
}
.tree-half {
  padding-block: clamp(2rem, 5vw, 5rem);
}
.tree-half--branches {
  background: var(--page-bg);
}
.tree-half--roots {
  background: var(--paper);
}
.tree-divider {
  position: relative;
  height: 1px;
  background: var(--line-hair);
  margin: 0;
}
.tree-divider::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--page-bg);
}
.tree-divider .axis-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--page-bg);
  padding: 0 var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  white-space: nowrap;
  display: none;
}

.tree-half-label {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.tree-half-label .marker {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
}
.tree-half-label .marker::before {
  content: "— ";
}
.tree-half-label h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  font-weight: 700;
  letter-spacing: var(--track-tighter);
  line-height: 0.95;
  margin: 0;
  color: var(--heading);
}
.tree-half-label .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--slate);
  font-weight: 400;
  max-width: 30ch;
}

/* Branches use lighter weight; Roots use heavier weight */
.tree-half--branches h2 { font-weight: 500; font-style: italic; }
.tree-half--branches .team-member h3 { font-weight: 500; font-style: italic; }
.tree-half--roots h2 { font-weight: 700; }
.tree-half--roots .team-member h3 { font-weight: 700; }

.team-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
.team-member {
  display: grid;
  gap: var(--s-3);
}
.team-member .monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-fixed);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2);
}
.tree-half--branches .team-member .monogram {
  background: var(--paper);
  color: var(--forest);
  border: 1px solid var(--line-hair);
  font-weight: 500;
  font-style: italic;
}
.tree-half--roots .team-member .monogram {
  background: var(--forest);
  color: var(--cream-fixed);
  font-weight: 700;
}
/* Team headshot: matches the monogram avatar footprint. The <img> self-removes via
   onerror when the file is missing, so the monogram fallback shows until a real photo
   is added to assets/img/team/. When a photo loads, it hides the monogram below it. */
.team-member .team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: var(--s-2);
}
.team-member .team-photo + .monogram { display: none; }
.team-member h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
  margin: 0;
}
.team-member .role {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--s-2);
}
.team-member p {
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Local commitment block (about) */
.commitment {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .commitment { grid-template-columns: 5fr 7fr; gap: var(--s-7); align-items: start; }
}

/* ========================================================================
   FAQ — editorial Q/A list
   ======================================================================== */
.faq-list {
  max-width: 880px;
  margin-inline: auto;
}
.faq-item {
  border-top: 1px solid var(--line-hair);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-hair); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-4) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.25rem);
  color: var(--heading);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.faq-q .q-num {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  padding-top: 0.5em;
}
.faq-q:hover { color: var(--moss); }
.faq-q .toggle-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-hair);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.2em;
  /* Pad hit area to ≥44px while keeping visible circle 32px */
  padding: 6px;
  box-sizing: content-box;
}
.faq-q[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--cream-fixed);
  border-color: var(--forest);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}
.faq-a-inner {
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  gap: var(--s-3);
  padding: 0 0 var(--s-4) 0;
}
.faq-a-inner > div:nth-child(2) {
  color: var(--body-fg);
}
.faq-a-inner p { max-width: 64ch; font-size: 1.05rem; line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-a-inner { transition: none; }
}

/* ========================================================================
   CONTACT — editorial form
   ======================================================================== */
.contact-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 7fr 5fr; gap: var(--s-7); align-items: start; }
}


.contact-details {
  background: var(--paper);
  padding: var(--s-5);
  border-radius: 2px;
  border: 1px solid var(--line-hair);
}
.contact-details ul { list-style: none; padding: 0; margin: var(--s-4) 0 0; }
.contact-details li {
  padding: var(--s-3) 0;
  color: var(--body-fg);
  border-top: 1px solid var(--line-hair);
}
.contact-details li:first-child { border-top: 0; padding-top: 0; }
.contact-details .label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.4rem;
}
.contact-details li > div > a,
.contact-details li > div {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--heading);
}
.contact-details .area-note {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-hair);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate);
  font-style: italic;
}

/* ========================================================================
   THANK YOU + 404
   ======================================================================== */
.thank-you-wrap, .notfound {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(4rem, 9vw, 8rem);
}
.thank-you-wrap .icon-check {
  width: 88px; height: 88px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-fixed);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thank-you-wrap .icon-check svg { width: 38px; height: 38px; }
.thank-you-wrap h1 { margin-inline: auto; max-width: 18ch; }
.thank-you-wrap p { margin: var(--s-4) auto 0; max-width: 50ch; }
.thank-you-wrap .horizon { max-width: 280px; margin: var(--s-5) auto; }
.thank-you-wrap .btn { margin-top: var(--s-2); }

.notfound .big {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 1.5rem + 5vw, 5.5rem);
  color: var(--forest);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 0;
}
.notfound .big em { font-style: italic; color: var(--moss); font-weight: 500; }
.notfound h1 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); max-width: 18ch; margin: var(--s-3) auto 0; }
.notfound p { margin: var(--s-4) auto 0; max-width: 50ch; }
.notfound .horizon { max-width: 280px; margin: var(--s-5) auto; }
.notfound .hero-actions { justify-content: center; }

/* ========================================================================
   FOOTER — editorial, set against forest-deep
   ======================================================================== */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247, 245, 240, 0.82);
  padding-block: var(--s-7) var(--s-4);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: rgba(247, 245, 240, 0.12);
}
.site-footer a { color: var(--cream-fixed); text-decoration: none; }
.site-footer a:hover { color: var(--moss-light); text-decoration: underline; text-decoration-color: rgba(82, 148, 111, 0.5); }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  color: var(--cream-fixed);
  line-height: 1.3;
  max-width: 24ch;
  font-weight: 400;
  margin-top: var(--s-3);
  margin-bottom: 0;
}
.footer-tag em { color: var(--moss-light); font-weight: 500; }
.footer-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-5); }
}
.footer-brand .brand { color: var(--cream-fixed); }
.footer-brand .brand-text .brand-name { color: var(--cream-fixed); }
.footer-brand .brand-text .brand-sub { color: var(--moss-light); }
.footer-brand .tagline {
  margin-top: var(--s-3);
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(247, 245, 240, 0.7);
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: var(--s-3);
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 2.75rem;
}
.footer-col li { padding: 0.3rem 0; }
.footer-col li a {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.footer-col p {
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.98rem;
  font-family: var(--font-body);
}
.footer-col p + p { margin-top: 0.4rem; }
.footer-bottom {
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(247, 245, 240, 0.55);
  letter-spacing: 0.04em;
}

/* ========================================================================
   Utility
   ======================================================================== */
.sr-only {
  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;
  top: -100px;
  left: var(--s-3);
  background: var(--forest);
  color: var(--cream-fixed);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus { top: var(--s-2); }

.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }

.text-center { text-align: center; }
.text-italic { font-style: italic; }

/* ========================================================================
   Section dividers — dashed off-white rules at major section boundaries.
   3px thick, custom dash/gap (10px dash + 12px gap) via linear-gradient
   so the gap can be tuned independently of stroke thickness — the CSS
   `dashed` border style locks the ratio at ~2:1, which is too tight at
   3px width. Full viewport width.
   ======================================================================== */
main > section + section,
main + .site-footer {
  position: relative;
  --divider-color: var(--paper);
}
main > section + section::before,
main + .site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: linear-gradient(
    to right,
    var(--divider-color) 0 10px,
    transparent 10px 22px
  );
  background-size: 22px 3px;
  background-repeat: repeat-x;
  background-position: top left;
  pointer-events: none;
  z-index: 1;
}
/* When a section uses --paper as its own background, the dashes would
   blend in. Bump to --line-soft so they still register. */
main > section + section.section-paper,
main > section + section.bridge {
  --divider-color: var(--line-soft);
}
/* Dark mode: --paper flips to deep forest and would be invisible on
   most backgrounds. --line-hair stays readable against forest sections. */
@media (prefers-color-scheme: dark) {
  main > section + section,
  main + .site-footer,
  main > section + section.section-paper,
  main > section + section.bridge {
    --divider-color: var(--line-hair);
  }
}

/* ========================================================================
   Reveal-on-scroll — fades down-scrolled elements in once.
   JS adds .reveal; IntersectionObserver flips to .is-visible.
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Above-the-fold on initial load: skip the animation entirely. */
.reveal.no-anim {
  transition: none;
}

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

/* =========================================================================
   POLISH LAYER — depth, layering, motion, micro-interactions.
   Applied additively over the editorial base. Keeps palette + structure.
   ========================================================================= */

/* ---- Scroll progress bar (1px, forest, top of viewport) ---------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--moss) 0%, var(--moss-light) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(82, 148, 111, 0.4);
  transition: opacity 200ms var(--ease);
  opacity: 0;
}
.scroll-progress.is-active { opacity: 1; }

/* ---- Hero — atmospheric depth ----------------------------------------- */
/* Layered radials + grain + bottom vignette feathered into next section.   */
.hero::before {
  background:
    radial-gradient(ellipse 1100px 700px at 78% -8%, rgba(82, 148, 111, 0.28), transparent 60%),
    radial-gradient(ellipse 900px 500px at -8% 110%, rgba(82, 148, 111, 0.22), transparent 60%),
    radial-gradient(ellipse 1400px 800px at 50% 50%, rgba(15, 42, 30, 0.0) 0%, rgba(0,0,0,0.18) 90%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

/* Hero drift: gated on user's motion preference.
   Removed will-change — avoids pre-allocating a compositor layer on mobile. */
@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: heroDrift 22s var(--ease) infinite alternate; }
  .page-hero::before { animation: heroDrift 28s var(--ease) infinite alternate; }
  @keyframes heroDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-2%, 1%, 0) scale(1.04); }
  }
}

/* Feathered bottom edge — softens the forest→cream cut.
   Applied to the ::before glow layer only, NOT the section itself, so
   buttons and content near the bottom never get their edges masked. */
.hero::before, .page-hero::before, .cta-banner::before {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
}

/* ---- Page hero — same atmospheric treatment, gentler ------------------ */
.page-hero::before {
  background:
    radial-gradient(ellipse 1000px 600px at 88% -4%, rgba(82, 148, 111, 0.22), transparent 60%),
    radial-gradient(ellipse 800px 500px at 0% 110%, rgba(82, 148, 111, 0.15), transparent 60%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.2;
  pointer-events: none;
}

/* ---- CTA banner — same family ----------------------------------------- */
.cta-banner::before {
  background:
    radial-gradient(ellipse 950px 520px at 50% 110%, rgba(82, 148, 111, 0.28), transparent 60%),
    radial-gradient(ellipse 700px 400px at 20% -10%, rgba(82, 148, 111, 0.14), transparent 60%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 240px 240px;
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

/* ---- Cream sections — soft warm depth --------------------------------- */
.section-cream, .section-bone, .section-paper {
  position: relative;
}
.section-cream::after, .section-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 240px 240px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.section-cream > .container,
.section-paper > .container,
.section-bone > .container {
  position: relative;
  z-index: 1;
}

/* ---- Card depth — package, service-meta, contact-details, badge ------ */
.package {
  background: var(--surface-grad-2);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: clamp(1.75rem, 2vw + 1rem, 2.75rem) clamp(1.5rem, 2vw, 2.5rem);
  box-shadow: var(--elev-1);
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
}
.package:hover {
  transform: translateY(-3px);
  box-shadow: var(--elev-2);
}
@media (min-width: 980px) {
  /* Remove the dividing line; cards now provide their own boundary */
  .packages-spread { gap: var(--s-5); }
  .packages-spread::before { display: none; }
  .package { padding: clamp(2rem, 2.5vw + 1rem, 3rem); }
}
.package h3 .accent { color: var(--moss); position: relative; }

.service-meta {
  background: var(--surface-grad);
  box-shadow: var(--elev-2);
  border-radius: 8px;
  border-color: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.service-meta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 360px 200px at 100% 0%, rgba(82, 148, 111, 0.10), transparent 60%);
  pointer-events: none;
}
.service-meta > * { position: relative; z-index: 1; }

.contact-details {
  background: var(--surface-grad);
  box-shadow: var(--elev-1);
  border-radius: 8px;
}

/* About teaser badge — concentric rings + soft moss halo */
.about-teaser .badge-frame {
  background: var(--surface-grad);
  box-shadow:
    0 0 0 1px var(--line-hair),
    var(--elev-2),
    0 30px 80px -30px rgba(45, 106, 79, 0.40);
}
.about-teaser .badge-frame::before {
  inset: -16px;
  border-color: var(--line-hair);
}
.about-teaser .badge-frame::after {
  content: "";
  position: absolute;
  inset: -34px;
  border: 1px dashed var(--line-hair);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
  animation: ringPulse 18s linear infinite;
}
@keyframes ringPulse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Thank-you check — give it presence */
.thank-you-wrap .icon-check {
  box-shadow: var(--elev-2), var(--glow-moss);
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
}

/* ---- Compare table — alternating row warmth + hover ------------------ */
.compare-table tbody tr {
  transition: background var(--dur) var(--ease);
}
.compare-table tbody tr:nth-child(even) {
  background: rgba(217, 210, 194, 0.18);
}
.compare-table tbody tr:hover {
  background: rgba(82, 148, 111, 0.08);
}

/* ---- Problem trio — give each item depth on hover -------------------- */
.problem-item {
  transition: transform var(--dur) var(--ease), border-top-color var(--dur) var(--ease);
}
.problem-item:hover {
  transform: translateY(-2px);
  border-top-color: var(--moss);
}
.problem-item::before {
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.problem-item:hover::before { color: var(--forest); transform: translateX(2px); }

/* ---- Buttons — premium lift + soft moss glow ------------------------- */
/* Custom shadows per-surface — the generic --elev-* tokens have a white
   inset highlight tuned for light cards on cream, which reads as a glitchy
   bright sliver on dark or cream pills. Each variant gets its own. */
.btn-primary {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  box-shadow:
    0 1px 0 rgba(82, 148, 111, 0.18) inset,
    0 2px 6px rgba(15, 42, 30, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-deep) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(82, 148, 111, 0.22) inset,
    0 10px 24px -8px rgba(15, 42, 30, 0.35),
    var(--glow-moss);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(82, 148, 111, 0.18) inset, 0 2px 6px rgba(15, 42, 30, 0.18);
}

.btn-cream {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 6px rgba(15, 42, 30, 0.18);
}
.btn-cream:hover {
  transform: translateY(-2px);
  background: var(--cream-fixed);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 24px -8px rgba(15, 42, 30, 0.28),
    0 18px 40px -20px rgba(82, 148, 111, 0.55);
}
.btn-cream:active {
  transform: translateY(0);
}

.btn-ghost {
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: translateY(101%);
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: -1;
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-ghost:hover::before { transform: translateY(0); }

.btn-arrow::after { display: inline-block; }
.btn-arrow:hover::after { transform: translateX(6px); }

/* ---- Nav — animated underline draw on hover -------------------------- */
.nav-links a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: color var(--dur) var(--ease), background-size var(--dur-slow) var(--ease-out);
}
.nav-links a:hover { background-size: 100% 1px; }
.nav-links a.is-active { background-size: 100% 1px; }
/* The dot stays as the active marker — keep it, animate it */
.nav-links a.is-active::after {
  animation: dotPulse 2.4s var(--ease) infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%      { transform: translateX(-50%) scale(1.6); opacity: 0.6; }
}

/* ---- Horizon mark — animated draw-in --------------------------------- */
/* Line scales in, dot punches in slightly after. Triggers via .reveal.    */
.horizon::before {
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 900ms var(--ease-out);
}
.horizon::after {
  transform: translateX(-50%) scale(0);
  transition: transform 500ms var(--ease-out) 400ms;
}
.horizon i {
  transform: translateX(-50%) scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 500ms var(--ease-out) 700ms;
}
/* Once visible (parent reveal triggers), draw in */
.is-visible .horizon::before,
.reveal.is-visible.horizon::before,
.horizon.is-drawn::before { transform: scaleX(1); }
.is-visible .horizon::after,
.reveal.is-visible.horizon::after,
.horizon.is-drawn::after { transform: translateX(-50%) scale(1); }
.is-visible .horizon i,
.reveal.is-visible.horizon i,
.horizon.is-drawn i { transform: translateX(-50%) scaleY(1); }
/* Always draw within hero / page-hero / cta-banner (their containers are visible at load) */
.hero .horizon::before,
.page-hero .horizon::before,
.cta-banner .horizon::before { transform: scaleX(1); transition-delay: 600ms; }
.hero .horizon::after,
.page-hero .horizon::after,
.cta-banner .horizon::after { transform: translateX(-50%) scale(1); transition-delay: 1100ms; }
.hero .horizon i,
.page-hero .horizon i,
.cta-banner .horizon i { transform: translateX(-50%) scaleY(1); transition-delay: 1400ms; }

@media (prefers-reduced-motion: reduce) {
  .horizon::before { transform: scaleX(1) !important; transition: none !important; }
  .horizon::after  { transform: translateX(-50%) scale(1) !important; transition: none !important; }
  .horizon i       { transform: translateX(-50%) scaleY(1) !important; transition: none !important; }
}

/* ---- Gutter numerals — slow parallax drift --------------------------- */
.gutter-numeral { transition: transform 1.4s var(--ease-out); }
/* JS will set --parallax based on scroll position */
.gutter-numeral { transform: translate3d(0, var(--parallax, 0px), 0); }

/* ---- FAQ — inner fade-up on open ------------------------------------- */
.faq-a-inner {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 420ms var(--ease-out) 60ms, transform 420ms var(--ease-out) 60ms;
}
.faq-q[aria-expanded="true"] + .faq-a .faq-a-inner {
  opacity: 1;
  transform: none;
}
.faq-item {
  transition: background var(--dur) var(--ease);
}
.faq-item:hover { background: rgba(82, 148, 111, 0.04); }

/* ---- Staggered reveals — JS sets --reveal-i 0..n -------------------- */
.reveal {
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}
.reveal.no-anim { transition-delay: 0ms; }

/* ---- 404 — give the big numeral atmosphere --------------------------- */
.notfound .big {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--forest) 0%, var(--moss) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 12px 40px rgba(45, 106, 79, 0.30));
}
.notfound .big em {
  -webkit-text-fill-color: currentColor;
  color: var(--moss);
  filter: none;
}

/* ---- Footer — final-line finale -------------------------------------- */
.footer-tag {
  position: relative;
}
.footer-tag::after {
  content: "";
  display: block;
  margin-top: var(--s-3);
  width: 56px;
  height: 1px;
  background: var(--moss-light);
  opacity: 0.7;
}

/* ---- Inline font-size override safety net ---------------------------- */
/* The legacy inline `style="font-size: 60px"` on a few h1s/h3s bypasses
   the responsive token scale. We've removed them — but defend in depth. */
.hero h1[style*="font-size"],
.page-hero h1[style*="font-size"],
.package h3[style*="font-size"] {
  font-size: revert !important;
}

/* ---- GHL embedded discovery form -------------------------------------- */
/* The iframe sandboxes everything inside — visual brand styling lives in
   the GHL form's own Custom CSS field. We just give the embed a proper
   editorial frame on the parent page: heading band, intro lede, and a
   min-height so height:100% has something to fill on first paint. */
.discovery-form > h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem);
  margin-bottom: var(--s-2);
  border-bottom: 1px solid var(--line-hair);
  padding-bottom: var(--s-3);
}
.discovery-form > h2 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 500;
}
.discovery-form > .form-intro {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--slate);
  margin-bottom: var(--s-5);
  font-size: 1.05rem;
  max-width: 56ch;
}
.ghl-form-frame {
  position: relative;
  width: 100%;
  min-height: 980px;
  border-radius: 10px;
  overflow: hidden;
  /* Light-mode matte: subtle paper card so the iframe sits *in* the page */
  background: var(--surface-grad);
  border: 1px solid var(--line-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 6px rgba(15, 42, 30, 0.05),
    0 18px 40px -22px rgba(15, 42, 30, 0.18);
}
.ghl-form-frame iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  background: transparent;
}
/* Dark-mode matte: forest card frame — keeps the iframe from
   looking like a bright white sticker pasted on a dark page even
   before the GHL CSS finishes painting. */
@media (prefers-color-scheme: dark) {
  .ghl-form-frame {
    background: linear-gradient(180deg, #182A20 0%, #0F1B14 100%);
    border-color: #2A4032;
    box-shadow:
      0 1px 0 rgba(82, 148, 111, 0.12) inset,
      0 4px 14px rgba(0, 0, 0, 0.40),
      0 22px 48px -22px rgba(0, 0, 0, 0.60);
  }
}
.form-fallback {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--slate);
  font-size: 1.02rem;
  padding: var(--s-4);
  border: 1px dashed var(--line-hair);
  border-radius: 8px;
}

/* =========================================================================
   Booking page — editorial layout (book.html)
   --------------------------------------------------------------------
   Four stacked acts: dark forest hero banner, meta strip detailing the
   call, an elevated single-column calendar card, then a three-pillar
   "what to expect" coda on paper. The calendar iframe is GHL's sandbox
   so we style only the frame around it. .calendar-skeleton sits behind
   the iframe until its onload flips .is-hidden — the page never reads
   as broken during the GHL widget's paint window.
   ========================================================================= */

/* ---- Hero banner (dark forest) ---- */
.booking-hero {
  background: var(--forest);
  /* --cream-fixed (not --cream) so the hero text stays light in BOTH modes.
     --cream flips to near-black in dark mode; the hero background does not. */
  color: var(--cream-fixed);
  padding-block: clamp(2.5rem, 4vw, 3.75rem) clamp(2rem, 3vw, 2.75rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(45, 106, 79, 0.40), transparent 55%),
    radial-gradient(ellipse at 82% 100%, rgba(15, 42, 30, 0.55), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.booking-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.booking-hero .eyebrow {
  color: rgba(247, 245, 240, 0.78);
  justify-content: center;
}
.booking-hero .eyebrow::before {
  background: rgba(247, 245, 240, 0.55);
}
.booking-hero h1 {
  font-size: var(--fs-hero);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  line-height: 1.05;
  /* "Pick a time." — fixed cream so it reads white on forest in dark mode. */
  color: var(--cream-fixed);
  margin-top: var(--s-2);
  margin-bottom: var(--s-2);
}
.booking-hero h1 em {
  font-style: italic;
  /* Brighter moss than --moss-light so the italic clears AA-large contrast
     against forest in both modes. */
  color: #7FC4A0;
  font-weight: 400;
}
.booking-hero .lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(247, 245, 240, 0.88);
  max-width: 560px;
  margin: 0 auto;
}
.booking-hero-rule {
  max-width: 320px;
  margin: var(--s-5) auto 0;
}

/* ---- Meta strip (call details, four columns desktop / two mobile) ----
   --paper-soft sits one tone above --page-bg in both modes — so the strip
   reads as a distinct surface, not just an extension of the hero. */
.booking-meta-strip {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: var(--s-4);
}
.booking-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
  text-align: center;
}
@media (min-width: 720px) {
  .booking-meta {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
  }
  .booking-meta li {
    position: relative;
    padding-inline: var(--s-3);
  }
  .booking-meta li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: var(--line-hair);
  }
}
.booking-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.booking-meta .meta-label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
}
.booking-meta .meta-value {
  font-family: var(--font-display);
  font-size: var(--fs-large);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--heading, var(--ink-warm));
  line-height: 1.2;
}

/* ---- Booking card (the headline object on the page) ----
   Gradient lifts gently from --paper-soft → --paper so the section reads
   as its own act in both light and dark modes (page-bg is --cream which
   is darker than --paper-soft in dark, lighter than --paper in light). */
.booking-section {
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  /* Tighter top than bottom so the calendar rides higher up the page. */
  padding-block: clamp(1.75rem, 3vw, 2.75rem) clamp(3rem, 5vw, 5rem);
}
.booking-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-grad);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 2.6vw + 1rem, 3.25rem);
  box-shadow: var(--elev-3);
  position: relative;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 18%);
  z-index: 0;
}
.booking-card > * { position: relative; z-index: 1; }
.booking-card-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-3);
}
.booking-card-head .eyebrow { justify-content: center; }
.booking-card-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  line-height: 1.1;
  color: var(--heading, var(--ink-warm));
  margin-top: var(--s-1);
  margin-bottom: var(--s-2);
}
.booking-card-head h2 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400;
}
.booking-card-head .form-intro {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
.calendar-frame {
  position: relative;
  min-height: 740px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
}
.calendar-frame iframe {
  width: 100%;
  min-height: 740px;
  border: 0;
  display: block;
  background: transparent;
  position: relative;
  z-index: 1;
}
.calendar-skeleton {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  background: var(--paper);
  overflow: hidden;
  transition: opacity var(--dur-slow) var(--ease);
}
.calendar-skeleton.is-hidden { opacity: 0; pointer-events: none; }

/* ---- Calendar-shaped skeleton ----
   A month header, weekday strip, and 5×7 day grid built from brand-toned
   placeholder blocks — so the loading state mirrors the calendar that's
   about to replace it, rather than a blank box. A single light sweep
   passes across the whole mock to signal "working", not "broken". */
.cal-skel {
  width: min(420px, 84%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cal-skel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.cal-skel-title {
  display: block;
  width: 44%;
  height: 1.05rem;
  border-radius: 5px;
  background: var(--line-soft);
}
.cal-skel-nav { display: inline-flex; gap: 0.5rem; }
.cal-skel-nav i {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--line-soft);
}
.cal-skel-week,
.cal-skel-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.cal-skel-week span {
  height: 0.5rem;
  border-radius: 3px;
  background: var(--line-soft);
  opacity: 0.65;
}
.cal-skel-grid span {
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  background: var(--line-soft);
}
.cal-skel-label {
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
  margin: 0;
}
/* The sweep — a soft band of light translating left → right on a loop. */
.calendar-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 28%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 72%
  );
  transform: translateX(-100%);
  animation: calSkelSweep 1.7s var(--ease) infinite;
  pointer-events: none;
}
@keyframes calSkelSweep {
  to { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .calendar-skeleton::after { animation: none; opacity: 0; }
}

/* ---- What to Expect — three editorial pillars on paper ---- */
.booking-expect {
  background: var(--paper-soft);
}
.booking-expect-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-5);
}
.booking-expect-head .eyebrow { justify-content: center; }
.booking-expect-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  line-height: 1.1;
  color: var(--heading, var(--ink-warm));
  margin-top: var(--s-2);
}
.booking-expect-head h2 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400;
}
.booking-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 760px) {
  .booking-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
}
.booking-pillar {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: var(--elev-1);
  overflow: hidden;
}
.booking-pillar .pillar-numeral {
  position: absolute;
  top: -0.1em;
  right: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1;
  color: var(--forest);
  opacity: 0.08;
  letter-spacing: var(--track-tighter);
  pointer-events: none;
  user-select: none;
}
.booking-pillar h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  color: var(--heading, var(--ink-warm));
  margin: 0 0 var(--s-2);
  position: relative;
  z-index: 1;
}
.booking-pillar p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--body-fg, var(--ink-soft));
  margin: 0;
  position: relative;
  z-index: 1;
}
.booking-expect-rule {
  max-width: 360px;
  margin: var(--s-6) auto 0;
}

/* ---- Dark-mode polish for the booking page ---- */
@media (prefers-color-scheme: dark) {
  .booking-meta-strip { border-bottom-color: rgba(255, 255, 255, 0.06); }
  .booking-card {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.04) inset,
      0 30px 60px -22px rgba(0, 0, 0, 0.65),
      0 0 0 1px rgba(45, 106, 79, 0.12);
  }
  .booking-card::before {
    background: linear-gradient(180deg, rgba(45, 106, 79, 0.10), transparent 22%);
  }
  .booking-pillar {
    background: var(--bone);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .booking-pillar .pillar-numeral {
    color: var(--moss-light);
    opacity: 0.16;
  }
  /* Dimmer, moss-tinted sweep so the skeleton glows softly on dark paper
     instead of flashing a harsh white band. */
  .calendar-skeleton::after {
    background: linear-gradient(
      100deg,
      transparent 28%,
      rgba(82, 148, 111, 0.18) 50%,
      transparent 72%
    );
  }
}
.form-consent {
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.form-consent a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(45, 106, 79, 0.4);
  text-underline-offset: 3px;
}
.form-consent a:hover { color: var(--moss); text-decoration-color: var(--moss); }
@media (prefers-color-scheme: dark) {
  .form-consent a { color: var(--moss-light); }
}

/* ---- Footer legal links group ---------------------------------------- */
/* Two links (Privacy / Terms) with a hairline dot between them, sitting
   in the center of the flex footer-bottom row. */
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.footer-legal a {
  color: var(--cream-fixed);
  text-decoration: none;
  opacity: 0.78;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-legal a:hover {
  opacity: 1;
  color: var(--moss-light);
  text-decoration: underline;
  text-decoration-color: rgba(82, 148, 111, 0.5);
}
.footer-legal span[aria-hidden] {
  color: rgba(247, 245, 240, 0.35);
  font-weight: 600;
}

/* ---- Section transition feather: cream after forest band ------------- */
.hero + .section,
.page-hero + .section,
.cta-banner + footer {
  position: relative;
}
.hero + .section::before,
.page-hero + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(15, 42, 30, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ========================================================================
   Dark mode overrides — keep brand voice consistent
   ======================================================================== */
@media (prefers-color-scheme: dark) {
  /* Brand link colors */
  .brand { color: var(--heading); }
  .brand:hover { color: var(--moss-light); }
  .brand-text .brand-sub { color: var(--moss-light); }
  a { color: var(--moss-light); text-decoration-color: rgba(82, 148, 111, 0.5); }
  a:hover { color: var(--heading); text-decoration-color: var(--heading); }

  .nav-links a { color: var(--ink-soft); }
  .nav-links a:hover { color: var(--moss-light); }
  .nav-links a.is-active { color: var(--heading); }
  .nav-links a.is-active::after { background: var(--moss-light); }
  .nav-toggle { color: var(--heading); }
  .nav-toggle:hover { background: var(--line-soft); }
  .mobile-panel a { color: var(--ink-warm); }
  .mobile-panel a.is-active { color: var(--moss-light); }
  .mobile-panel { background: var(--page-bg); border-top-color: var(--line); }

  .btn-primary {
    background: var(--moss);
    border-color: var(--moss);
    color: var(--cream-fixed);
  }
  .btn-primary:hover {
    background: var(--moss-light);
    border-color: var(--moss-light);
    color: var(--cream-fixed);
  }
  .btn-ghost {
    color: var(--heading);
    border-color: var(--moss-light);
  }
  .btn-ghost::before { background: var(--heading); }
  .btn-ghost:hover {
    background: var(--heading);
    color: var(--forest-deep);
  }

  /* The Horizon signature mark */
  .horizon::before { background: var(--line); }
  .horizon::after { background: var(--moss-light); box-shadow: 0 14px 0 -2px var(--moss-light); }
  .annotation { color: var(--slate); }
  .annotation--moss { color: var(--moss-light); }
  .eyebrow { color: var(--moss-light); }

  /* Editorial accents */
  .accent-italic { color: var(--moss-light); }
  .pull-quote { color: var(--heading); }
  .pull-quote::before { color: var(--moss-light); }
  .pull-quote cite { color: var(--slate); }
  .gutter-numeral { color: var(--heading); opacity: 0.05; }

  /* Problem trio */
  .problem-item { border-top-color: var(--line); }
  .problem-item::before { color: var(--moss-light); }
  .problem-item h3 em { color: var(--moss-light); }
  .problem-item p { color: var(--ink-soft); }

  /* Bridge */
  .bridge { background: var(--paper); }
  .bridge h2 em { color: var(--moss-light); }

  /* About teaser */
  .about-teaser .badge-frame { background: var(--paper); }
  .about-teaser .badge-frame::before { border-color: var(--line); }
  .about-teaser .body h2 em { color: var(--moss-light); }

  /* Services */
  .service-block + .service-block { border-top-color: var(--line); }
  .service-block h2 em { color: var(--moss-light); }
  .service-block .service-num { color: var(--moss-light); }
  .service-body h3 { color: var(--moss-light); }
  .service-list li { border-top-color: var(--line); }
  .service-list li:last-child { border-bottom-color: var(--line); }
  .service-list li::before { color: var(--moss-light); }
  .service-meta { background: var(--paper); border-color: var(--line); }
  .service-meta::before { color: var(--moss-light); border-bottom-color: var(--line); }
  .service-meta .meta-row + .meta-row { border-top-color: var(--line); }
  .service-meta .meta-row .price-figure { color: var(--heading); }
  .service-meta .meta-row .price-sub { color: var(--slate); }

  /* Packages */
  @media (min-width: 980px) {
    .packages-spread::before { background: var(--line); }
  }
  .package-marker { color: var(--moss-light); }
  .package h3 .accent { color: var(--moss-light); }
  .package-tagline { color: var(--heading); }
  .package-section { border-top-color: var(--line); }
  .package-section h4 { color: var(--moss-light); }
  .package-section ul li { color: var(--heading); }
  .package-section ul li::before { color: var(--moss-light); }
  .package ol.steps li::before { color: var(--moss-light); }
  .package ol.steps li strong { color: var(--moss-light); }
  .package-pricing { border-top-color: var(--line); }
  .price-display .price-figure { color: var(--heading); }
  .price-display .price-figure sup { color: var(--moss-light); }
  .price-row { border-top-color: var(--line); }
  .roi-note { color: var(--heading); border-color: var(--line); }
  .roi-note strong { color: var(--moss-light); }

  /* Compare table */
  .compare-table th, .compare-table td { border-bottom-color: var(--line); }
  .compare-table thead th { color: var(--heading); border-bottom-color: var(--moss-light); }
  .compare-table tbody td.check { color: var(--moss-light); }

  /* About: Roots vs Branches */
  .tree-half--branches { background: var(--page-bg); }
  .tree-half--roots { background: var(--paper); }
  .tree-divider { background: var(--line); }
  .tree-divider::before { background: var(--moss-light); border-color: var(--page-bg); }
  .tree-half-label .marker { color: var(--moss-light); }
  .tree-half-label .sub { color: var(--slate); }
  .tree-half--branches .team-member .monogram {
    background: var(--paper);
    color: var(--moss-light);
    border-color: var(--line);
  }
  .tree-half--roots .team-member .monogram {
    background: var(--moss);
    color: var(--cream-fixed);
  }
  .team-member .role { color: var(--moss-light); }
  .philosophy .col-lede h2 em { color: var(--moss-light); }
  .philosophy .col-body strong { color: var(--moss-light); }

  /* FAQ */
  .faq-item { border-top-color: var(--line); }
  .faq-item:last-child { border-bottom-color: var(--line); }
  .faq-q { color: var(--heading); }
  .faq-q:hover { color: var(--moss-light); }
  .faq-q .q-num { color: var(--moss-light); }
  .faq-q .toggle-icon { background: transparent; color: var(--heading); border-color: var(--line); }
  .faq-q[aria-expanded="true"] .toggle-icon { background: var(--moss); border-color: var(--moss); color: var(--cream-fixed); }

  .contact-details { background: var(--paper); border-color: var(--line); }
  .contact-details li { border-top-color: var(--line); }
  .contact-details .label { color: var(--moss-light); }
  .contact-details li > div > a, .contact-details li > div { color: var(--heading); }
  .contact-details .area-note { color: var(--slate); border-top-color: var(--line); }

  /* Thank you / 404 */
  .thank-you-wrap .icon-check { background: var(--moss); color: var(--cream-fixed); }
  .notfound .big { color: var(--moss-light); }
  .notfound .big em { color: var(--heading); }
}

/* ===========================================================================
   Native lead form (replaces GHL iframe on contact.html)
   =========================================================================== */
.lead-form { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-3); }
.lead-field { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-field label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--heading);
}
.lead-field .lead-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--slate);
  font-size: 0.85rem;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--body-fg);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  box-shadow: var(--elev-1);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lead-form textarea { resize: vertical; min-height: 6rem; }
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.18);
}
.lead-form [aria-invalid="true"] { border-color: var(--error); }
.lead-field-error{ display:block; margin-top:0.35rem; font-size:0.8rem; font-weight:600; color:var(--error); min-height:1em; }
.lead-field-error:empty{ margin-top:0; }
.lead-field .req { color: var(--error); margin-left: 2px; }
.form-req-note { margin: 0 0 var(--s-3); font-family: var(--font-body); font-size: 0.85rem; color: var(--slate); }
.lead-submit { margin-top: var(--s-2); align-self: flex-start; }
.lead-submit[disabled] { opacity: 0.7; cursor: not-allowed; }
.lead-success,
.lead-error {
  margin-top: var(--s-3);
  padding: var(--s-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper-soft);
}
.lead-success { border-color: var(--moss-light); }
.lead-error a { color: var(--moss); text-decoration: underline; }

/* ========================================================================
   PROOF GRID — testimonial cards (P1.5)
   ======================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-4);
}
@media (min-width: 640px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
.proof-card {
  background: var(--surface-grad-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: var(--elev-1);
}
.proof-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--heading);
  margin-bottom: var(--s-3);
}
.proof-card cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--fs-anno);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--slate);
}

/* ========================================================================
   PROSE — legal pages (privacy-policy, terms-of-service) (P2.18)
   ======================================================================== */
.prose {
  max-width: var(--max-w-reading);
}
.prose h2 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}
.prose p {
  margin-bottom: var(--s-3);
}
.prose ul,
.prose ol {
  margin-bottom: var(--s-3);
  padding-left: var(--s-4);
}
.prose ul li,
.prose ol li {
  margin-bottom: var(--s-1);
}

/* ========================================================================
   Privacy: California notice banner, opt-out switch, status, footer icon
   (CCPA/CPRA opt-out UI — paired with assets/js/privacy-consent.js)
   ======================================================================== */
.br-privacy-banner{position:fixed;left:0;right:0;bottom:0;z-index:1000;background:var(--surface,#FFFDF8);border-top:1px solid var(--line,rgba(27,67,50,.15));box-shadow:0 -8px 30px rgba(15,42,30,.12);transform:translateY(110%);transition:transform .28s cubic-bezier(.4,0,.2,1);}
.br-privacy-banner.is-in{transform:translateY(0);}
.br-privacy-banner.is-hiding{transform:translateY(110%);}
.br-pb-inner{max-width:var(--max-w,1200px);margin:0 auto;padding:1rem 1.25rem;display:flex;gap:1.25rem;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.br-pb-text{margin:0;font-size:.9rem;line-height:1.5;color:var(--body-fg,#2B2B2B);max-width:72ch;}
.br-pb-text a{color:var(--forest,#1B4332);text-decoration:underline;text-underline-offset:3px;}
.br-pb-actions{display:flex;gap:.6rem;flex-shrink:0;}
.br-pb-btn{font-size:.9rem;padding:.55rem 1.1rem;min-width:9.5rem;}
@media (max-width:640px){.br-pb-actions{width:100%;}.br-pb-btn{flex:1;min-width:0;}}
@media (prefers-color-scheme:dark){.br-privacy-banner{background:var(--surface,#14241B);border-top-color:rgba(255,255,255,.12);}.br-pb-text{color:var(--body-fg,#E8E6E0);}.br-pb-text a{color:var(--moss,#7FB69A);}}
.br-optout-card{background:var(--surface-2,rgba(27,67,50,.04));border:1px solid var(--line,rgba(27,67,50,.15));border-radius:14px;padding:1.5rem;margin:1.5rem 0;}
.br-optout-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.br-optout-name{font-weight:600;color:var(--heading,#1B4332);}
.br-optout-status{margin:.75rem 0 0;font-size:.9rem;line-height:1.5;color:var(--muted,#5B6B63);}
.br-switch{display:inline-flex;align-items:center;gap:.6rem;background:none;border:0;cursor:pointer;padding:.25rem;font:inherit;}
.br-switch:focus-visible{outline:2px solid var(--moss,#52946F);outline-offset:3px;border-radius:8px;}
.br-switch[disabled]{cursor:not-allowed;opacity:.65;}
.br-switch-track{width:52px;height:30px;border-radius:999px;background:var(--line,#C9CFCB);position:relative;transition:background .2s ease;flex:none;}
.br-switch.is-on .br-switch-track{background:var(--accent,#2D6A4F);}
.br-switch-thumb{position:absolute;top:3px;left:3px;width:24px;height:24px;border-radius:50%;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.25);transition:transform .2s ease;}
.br-switch.is-on .br-switch-thumb{transform:translateX(22px);}
.br-switch-state{font-size:.85rem;font-weight:600;color:var(--muted,#5B6B63);min-width:2.4em;text-align:left;}
.footer-legal .br-ca-privacy{display:inline-flex;align-items:center;gap:.4rem;}
.footer-legal .br-ca-icon{display:inline-block;width:30px;height:14px;vertical-align:middle;flex:none;}
