/* ==========================================================================
   Bruno RMT theme  -  Formative Digital BioGeometry system, tailored for massage
   --------------------------------------------------------------------------
   System backbone (unchanged from Formative BioGeometry):
     - Fibonacci spacing: 5 8 13 21 34 55 89 144
     - Golden ratio typography: line-height 1.618 body, phi-based type scale
     - Goethe color psychology
   Massage tailoring of the Goethe palette:
     - GREEN  = healing, balance, life  -> dominant tone (bodywork)
     - BLUE   = calm, trust, depth      -> trust + credibility blocks (male-RMT frame)
     - GOLD   = warmth, approach, "good" -> CTA accent, RELEASED only at booking
                decision points (the vbinc colour-flow: withhold, then release at phi)
     - BLACK  = authority, grounding    -> headings + the deep-pressure/strength block
     - RED    = withheld entirely (avoids the "spa" and the alarming registers)
   No em dashes or en dashes in any visible copy (house rule).
   ========================================================================== */

:root {
  /* ---- Spacing (Fibonacci) ---- */
  --space-xs: 5px;
  --space-sm: 8px;
  --space-md: 13px;
  --space-lg: 21px;
  --space-xl: 34px;
  --space-2xl: 55px;
  --space-3xl: 89px;
  --space-4xl: 144px;

  /* ---- Goethe palette, massage-tailored ---- */
  --color-black: #0A0A0A;
  --color-charcoal: #1A1A1A;
  --color-slate: #2C2C2C;

  --color-green: #2F6F5E;        /* healing, dominant */
  --color-green-deep: #1E4A3E;
  --color-green-sage: #6B8E6B;
  --color-green-mist: #E4EFE8;

  --color-blue-deep: #1E3A5F;    /* trust, depth */
  --color-blue: #2E5A86;
  --color-blue-mist: #E6EEF6;

  --color-gold: #C9A227;         /* warm accent, released at decisions */
  --color-gold-light: #D9B948;
  --color-gold-dark: #9E7E1E;
  --color-gold-glow: rgba(201, 162, 39, 0.12);

  --color-orange-warm: #D4752A;  /* energy, used sparingly */

  --color-white: #FFFFFF;
  --color-cream: #FAFAF8;
  --color-pearl: #F5F5F3;
  --color-sand: #E8E6E1;
  --color-stone: #9A9A96;
  --color-line: #E3DED2;

  /* ---- Typography (Fraunces display tailoring of the system serif + Inter body) ---- */
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;   /* ~17px, the Formative comfortable-reading body size */
  --text-lg: 1.1875rem;
  --text-xl: 1.333rem;      /* golden */
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.618rem;     /* phi squared */
  --text-5xl: 3.236rem;     /* phi x 2 */

  --leading-tight: 1.18;
  --leading-snug: 1.3;
  --leading-normal: 1.618;  /* golden ratio body */
  --leading-relaxed: 1.75;

  --maxw: 1180px;
  --maxw-text: 660px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.06), 0 4px 14px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 10, 10, 0.07), 0 18px 44px rgba(10, 10, 10, 0.10);
  --ease-natural: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-slate);
  background-color: var(--color-cream);
  /* whisper of paper grain, SVG so there is no extra request */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-green-deep); text-underline-offset: 0.18em; transition: color 150ms var(--ease-natural); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-black);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-lg);
  font-optical-sizing: auto;
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
p { margin: 0 0 var(--space-lg); }
strong, b { font-weight: 600; color: var(--color-charcoal); }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.measure { max-width: var(--maxw-text); }
.eyebrow {
  font-family: var(--font-sans); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-green);
  margin: 0 0 var(--space-md);
}
.lede { font-size: var(--text-xl); line-height: var(--leading-snug); color: var(--color-slate); }
.section-head { max-width: var(--maxw-text); margin-bottom: var(--space-xl); }

/* tonal section backgrounds (Goethe grounds) */
.bg-cream { background: var(--color-cream); }
.bg-pearl { background: var(--color-pearl); }
.bg-green { background: var(--color-green); color: #fff; }
.bg-green-mist { background: var(--color-green-mist); }
.bg-blue { background: var(--color-blue-deep); color: #fff; }
.bg-ground { background: var(--color-black); color: var(--color-pearl); }
.bg-green h2, .bg-green h3, .bg-blue h2, .bg-blue h3, .bg-ground h2, .bg-ground h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--text-base); line-height: 1;
  text-decoration: none; cursor: pointer; padding: 0.95em 1.6em; border-radius: 999px;
  border: 2px solid transparent; transition: transform .18s var(--ease-natural), background-color .18s var(--ease-natural), box-shadow .18s var(--ease-natural), color .18s var(--ease-natural);
}
/* GOLD = the released warm accent. Primary CTA only. */
.btn--book { background: var(--color-gold); color: var(--color-black); box-shadow: var(--shadow-sm); }
.btn--book:hover { background: var(--color-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-green-deep); border-color: var(--color-green); }
.btn--ghost:hover { background: var(--color-green); color: #fff; border-color: var(--color-green); }
.btn--light { background: #fff; color: var(--color-green-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--on-dark { background: var(--color-gold); color: var(--color-black); }
.btn--on-dark:hover { background: var(--color-gold-light); transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--color-cream) 90%, transparent);
  backdrop-filter: saturate(1.08) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); padding-block: var(--space-md); }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.32rem; color: var(--color-black); letter-spacing: -0.01em; }
.brand__tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-green); font-weight: 600; margin-top: var(--space-xs); }
.nav { display: flex; align-items: center; gap: var(--space-lg); }
.nav__links { display: none; gap: var(--space-lg); list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--color-slate); text-decoration: none; font-weight: 500; font-size: 0.98rem; }
.nav__links a:hover { color: var(--color-green); }
.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: var(--space-sm); cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--color-black); border-radius: 2px; }
.header-cta { display: none; }
.mobile-menu { display: none; border-top: 1px solid var(--color-line); background: var(--color-cream); }
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: var(--space-md) 0; }
.mobile-menu a { display: block; padding: var(--space-md) var(--space-lg); text-decoration: none; color: var(--color-slate); font-weight: 500; border-bottom: 1px solid var(--color-line); }
.mobile-menu .btn--book { margin: var(--space-md) var(--space-lg); }
@media (min-width: 64rem) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { padding-block: var(--space-3xl) var(--space-2xl); overflow: clip; }
.hero__grid { display: grid; gap: var(--space-xl); align-items: center; }
.hero__title { margin-bottom: var(--space-lg); }
.hero__title .accent { color: var(--color-green); font-style: italic; }
.hero__sub { font-size: var(--text-xl); line-height: var(--leading-snug); color: var(--color-slate); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-xl); align-items: center; }
.hero__note { margin-top: var(--space-lg); font-size: var(--text-sm); color: var(--color-stone); }
.hero__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-green), var(--color-green-deep));
  box-shadow: var(--shadow-md); overflow: hidden; display: grid; place-items: center;
  text-align: center; color: var(--color-green-mist); padding: var(--space-lg);
}
.placeholder-label { font-family: var(--font-sans); font-size: var(--text-sm); letter-spacing: 0.03em; line-height: 1.5; opacity: 0.9; }
@media (min-width: 64rem) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-3xl); } }

/* ---------- Trust stat strip (BLUE = trust) ---------- */
.stats { background: var(--color-blue-deep); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: color-mix(in srgb, #fff 14%, transparent); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--color-blue-deep); padding: var(--space-lg) var(--space-md); text-align: center; }
.stat__big { font-family: var(--font-serif); font-size: var(--text-2xl); color: #fff; line-height: 1; margin-bottom: var(--space-xs); }
.stat__label { font-size: var(--text-sm); color: var(--color-blue-mist); letter-spacing: 0.02em; }
.stat--verify a { color: #fff; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.4em; }
.stat--verify a svg { width: 1.05em; height: 1.05em; flex: none; }
.stat--verify a:hover { color: var(--color-gold-light); }
@media (min-width: 48rem) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Deep-pressure differentiator (BLACK = grounding / strength) ---------- */
.pressure { background: var(--color-black); color: var(--color-pearl); border-radius: var(--radius-lg); padding: var(--space-2xl); position: relative; overflow: hidden; }
.pressure::after { content: ""; position: absolute; inset: auto -10% -40% auto; width: 60%; height: 80%; background: radial-gradient(circle, var(--color-gold-glow), transparent 70%); pointer-events: none; }
.pressure h2 { color: #fff; max-width: 18ch; position: relative; }
.pressure p { color: var(--color-sand); max-width: 48ch; position: relative; }
.pressure__reassure { position: relative; margin-top: var(--space-lg); display: inline-flex; align-items: center; gap: 0.6em; background: color-mix(in srgb, #fff 8%, transparent); border: 1px solid color-mix(in srgb, var(--color-gold) 50%, transparent); padding: 0.7em 1.1em; border-radius: 999px; font-size: var(--text-sm); color: #fff; }
.pressure__reassure svg { width: 1.1em; height: 1.1em; color: var(--color-gold-light); }

/* ---------- Service cards (by the problem) ---------- */
.cards { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 38rem) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: var(--space-lg); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-xs);
  transition: transform .18s var(--ease-natural), box-shadow .18s var(--ease-natural);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--color-green); }
.card__benefit { color: var(--color-slate); margin-bottom: var(--space-md); }
.card__meta { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-md); border-top: 1px solid var(--color-line); padding-top: var(--space-md); }
.card__price { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--color-green-deep); }
.card__price small { font-family: var(--font-sans); font-size: var(--text-sm); color: var(--color-stone); font-weight: 500; }
.card__book { display: inline-flex; align-items: center; gap: 0.35em; font-weight: 600; color: var(--color-gold-dark); text-decoration: none; white-space: nowrap; }
.card__book svg { width: 1.05em; height: 1.05em; flex: none; }
.card__book:hover { color: var(--color-gold); text-decoration: underline; }

/* ---------- About / Meet Bruno ---------- */
.about { display: grid; gap: var(--space-xl); }
.about__photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--color-green-sage), var(--color-green-deep)); box-shadow: var(--shadow-md); display: grid; place-items: center; color: #fff; text-align: center; padding: var(--space-lg); }
.cred-list { list-style: none; margin: var(--space-lg) 0 0; padding: 0; display: grid; gap: var(--space-md); }
.cred-list li { display: flex; gap: 0.7em; align-items: flex-start; }
.cred-list svg { flex: none; width: 1.3em; height: 1.3em; color: var(--color-green); margin-top: 0.15em; }
@media (min-width: 60rem) { .about { grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: var(--space-3xl); } }

/* ---------- Logistics / home as upgrade ---------- */
.feature-row { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 48rem) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
.feature { display: flex; gap: var(--space-md); align-items: flex-start; }
.feature svg { flex: none; width: 1.7em; height: 1.7em; color: var(--color-green); }
.feature h3 { font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.feature p { color: var(--color-slate); margin: 0; }

/* ---------- Safety standards (BLUE = trust) ---------- */
.safety-list { list-style: none; margin: var(--space-lg) 0 0; padding: 0; display: grid; gap: var(--space-md); }
.safety-list li { display: flex; gap: 0.7em; align-items: flex-start; color: var(--color-slate); }
.safety-list svg { flex: none; width: 1.3em; height: 1.3em; color: var(--color-green); margin-top: 0.2em; }
/* On dark grounds (e.g. homepage safety block), flip safety-list to light text + warm icon */
.bg-blue .safety-list li, .bg-ground .safety-list li, .bg-green .safety-list li { color: var(--color-blue-mist); }
.bg-blue .safety-list svg, .bg-ground .safety-list svg, .bg-green .safety-list svg { color: var(--color-gold-light); }

/* ---------- Social proof ---------- */
.proof { display: grid; gap: var(--space-lg); }
.rating-badge { display: inline-flex; align-items: center; gap: 0.6em; background: var(--color-white); border: 1px solid var(--color-line); border-radius: 999px; padding: 0.6em 1.1em; box-shadow: var(--shadow-sm); font-weight: 600; }
.rating-badge .stars { color: var(--color-gold); letter-spacing: 0.1em; }
.quote { background: var(--color-pearl); border: 1px solid var(--color-line); border-left: 4px solid var(--color-green); border-radius: 0 var(--radius) var(--radius) 0; padding: var(--space-lg); }
.quote blockquote { margin: 0 0 var(--space-md); font-family: var(--font-serif); font-size: var(--text-xl); color: var(--color-black); font-style: italic; }
.quote cite { font-style: normal; font-weight: 600; color: var(--color-slate); font-size: var(--text-sm); }

/* ---------- Booking band (GREEN healing ground, GOLD released CTA = colour-flow climax) ---------- */
.booking-band { background: linear-gradient(150deg, var(--color-green), var(--color-green-deep)); color: #fff; border-radius: var(--radius-lg); padding: var(--space-2xl); text-align: center; }
.booking-band h2 { color: #fff; }
.booking-band p { color: var(--color-green-mist); }
.steps { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; margin: var(--space-xl) 0; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step__num { width: 2.6rem; height: 2.6rem; margin: 0 auto var(--space-sm); border-radius: 999px; background: var(--color-gold); color: var(--color-black); display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.2rem; }
.step h3 { color: #fff; font-size: var(--text-xl); margin-bottom: var(--space-xs); }
.step p { color: var(--color-green-mist); margin: 0; font-size: var(--text-sm); }
.booking-band .jane-embed { margin-top: var(--space-md); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: var(--space-sm); max-width: 50rem; }
.faq details { background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 0 var(--space-lg); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: var(--space-md) 0; font-family: var(--font-serif); font-size: var(--text-xl); color: var(--color-black); display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); color: var(--color-gold-dark); font-size: 1.7rem; line-height: 1; transition: transform .2s var(--ease-natural); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: var(--space-lg); color: var(--color-slate); margin: 0; }

/* ---------- Footer (BLACK = grounding, GOLD links = system footer pattern) ---------- */
.site-footer { background: var(--color-black); color: var(--color-stone); padding-block: var(--space-2xl) var(--space-xl); margin-top: var(--space-3xl); }
.site-footer a { color: var(--color-pearl); text-decoration: none; }
.site-footer a:hover { color: var(--color-gold); }
.site-footer a svg { width: 1em; height: 1em; flex: none; vertical-align: -0.15em; }
.footer-grid { display: grid; gap: var(--space-xl); grid-template-columns: 1fr; }
@media (min-width: 38rem) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--space-md); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-sm); }
.footer__brand .brand__name { color: #fff; font-size: 1.5rem; }
.footer__brand p { color: var(--color-stone); }
.footer__legal { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid color-mix(in srgb, #fff 14%, transparent); font-size: var(--text-sm); color: var(--color-stone); display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: space-between; }
.placeholder { color: var(--color-gold-light); font-weight: 600; }

/* ---------- Jane embed ---------- */
.jane-embed { display: inline-block; }
.jane-embed iframe { border: 0; }

/* ---------- Article / inner-content patterns (carried from BioGeometry) ---------- */
.prose { max-width: var(--maxw-text); margin-inline: auto; }
.prose h2 { margin-top: var(--space-2xl); }
.prose h3 { margin-top: var(--space-xl); }
.prose ul, .prose ol { margin-bottom: var(--space-lg); padding-left: var(--space-xl); }
.prose li { margin-bottom: var(--space-sm); line-height: var(--leading-relaxed); }
.prose li::marker { color: var(--color-green); }
.quick-answer { background: linear-gradient(135deg, var(--color-green-mist) 0%, var(--color-cream) 100%); border-left: 4px solid var(--color-green); padding: var(--space-lg) var(--space-xl); margin-bottom: var(--space-2xl); border-radius: 0 var(--radius) var(--radius) 0; font-size: var(--text-lg); line-height: var(--leading-relaxed); }
.quick-answer strong { color: var(--color-green-deep); }
.note-box { background: linear-gradient(135deg, var(--color-blue-mist) 0%, var(--color-cream) 100%); border-left: 4px solid var(--color-blue); padding: var(--space-md) var(--space-lg); margin: var(--space-lg) 0; border-radius: 0 var(--radius) var(--radius) 0; }

/* ---------- Motion (sparse, respectful) ---------- */
/* Progressive enhancement: reveal only hides when JS is active (.has-js on <html>),
   so content is always visible if scripts fail or are disabled. */
@media (prefers-reduced-motion: no-preference) {
  .has-js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-natural), transform .6s var(--ease-natural); }
  .has-js .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- Responsive type ---------- */
@media (max-width: 48rem) {
  :root { --text-5xl: 2.4rem; --text-4xl: 1.9rem; --text-3xl: 1.6rem; }
  .section { padding-block: var(--space-2xl); }
  .hero { padding-block: var(--space-2xl) var(--space-xl); }
  .pressure, .booking-band { padding: var(--space-xl); }
  .stat__big { font-size: var(--text-xl); }
  .faq summary { font-size: var(--text-lg); }
}

/* ==========================================================================
   Audit fixes 2026-06-13 (verified multi-lens audit). Override above by cascade.
   ========================================================================== */
:root { --color-muted: #5b574f; } /* AA-legible muted text on cream / white / green-mist */

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Legible muted text (was --color-stone, failed AA contrast) */
.hero__note { color: var(--color-muted); }
.card__price small { color: var(--color-muted); }

/* Tap targets >= 44px */
.nav__toggle { align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.card__meta { align-items: center; }
.card__book { padding: 0.5em 0; min-height: 44px; color: var(--color-green-deep); text-decoration: underline; text-underline-offset: 0.18em; }
.card__book:hover { color: var(--color-green); }
.footer-grid ul { gap: var(--space-md); }
.footer-grid li a { display: inline-block; padding: 6px 0; }

/* Persistent Book CTA from tablet up (was hidden 48-64rem) */
@media (min-width: 38rem) { .header-cta { display: inline-flex; } }

/* Sticky header: solid + cheap to composite on mobile, glass only on desktop */
.site-header { background: var(--color-cream); }
@media (min-width: 64rem) {
  .site-header { background: color-mix(in srgb, var(--color-cream) 90%, transparent); backdrop-filter: saturate(1.08) blur(8px); }
}

/* Hero media placeholder: cap height so it is not a giant slab on tablet */
@media (max-width: 64rem) { .hero__media { aspect-ratio: 16 / 10; max-height: 420px; } }

/* Cards: healing-green top accent so they read as part of the system, not generic white boxes */
.card { border-top: 3px solid var(--color-green-sage); }
.card:hover { border-color: var(--color-green-sage); }

/* Colour-flow discipline: gold is the booking-action colour, de-gold decorative accents */
.faq summary::after { color: var(--color-green); }

/* Focus ring visible on gold-filled buttons */
.btn--book:focus-visible, .btn--on-dark:focus-visible, .btn--light:focus-visible { outline-color: var(--color-black); outline-offset: 3px; }

/* Hide the tiny fixed-width Jane button on mobile (the two band buttons cover the CTA) */
@media (max-width: 48rem) { .booking-band .jane-embed { display: none; } }

/* Placeholder quote should read as a reserved slot, not a real testimonial */
.quote--placeholder blockquote { font-family: var(--font-body); font-style: normal; font-size: var(--text-base); color: var(--color-muted); }
.quote--placeholder { border-left-style: dashed; }

/* ==========================================================================
   Article helpers (used by the brunoarticle skill inside .prose)
   ========================================================================== */
.reading-time { font-size: var(--text-sm); color: var(--color-muted); margin: 0 0 var(--space-md); }
.table-of-contents { background: var(--color-pearl); border: 1px solid var(--color-line); border-radius: var(--radius); padding: var(--space-lg) var(--space-xl); margin: 0 0 var(--space-2xl); }
.table-of-contents h2 { font-size: var(--text-lg); margin: 0 0 var(--space-sm); }
.table-of-contents ul { margin: 0; padding-left: var(--space-lg); }
.table-of-contents a { color: var(--color-green-deep); }
.table-wrap { overflow-x: auto; margin: var(--space-lg) 0; -webkit-overflow-scrolling: touch; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.prose th { background: var(--color-green-deep); color: #fff; text-align: left; padding: var(--space-sm) var(--space-md); }
.prose td { padding: var(--space-sm) var(--space-md); border-bottom: 1px solid var(--color-line); }
.prose tr:last-child td { border-bottom: none; }
.faq-section { margin-top: var(--space-2xl); }
.faq-section h2 { margin-bottom: var(--space-lg); }

/* ---------- Pressure dial (on the black .pressure panel) 2026-06-27 ---------- */
.pscale { position: relative; margin-top: var(--space-2xl); max-width: 42rem; }
.pscale__rail {
  position: relative; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #8A6E1A 0%, var(--color-gold) 46%, var(--color-sand) 100%);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.45), 0 0 26px rgba(201,162,39,0.30);
}
.pscale__rail::before { /* end + mid ticks, faint */
  content: ""; position: absolute; left: 50%; top: -5px; bottom: -5px; width: 1px;
  background: rgba(255,255,255,0.22);
}
.pscale__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff 0%, #F4EFE1 44%, var(--color-gold-light) 100%);
  border: 1.5px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.55), 0 0 0 6px color-mix(in srgb, var(--color-gold) 20%, transparent);
}
.pscale__knob::after { /* grip notch */
  content: ""; position: absolute; inset: 0; margin: auto; width: 2px; height: 12px;
  background: color-mix(in srgb, var(--color-gold-dark) 75%, transparent); border-radius: 2px;
}
.pscale__marks { display: flex; margin-top: var(--space-md); gap: var(--space-md); }
.pscale__mark { flex: 1; }
.pscale__mark:nth-child(2) { text-align: center; }
.pscale__mark:last-child { text-align: right; }
.pscale__mark b { display: block; font-family: var(--font-sans); color: #fff; font-size: var(--text-base); font-weight: 700; letter-spacing: 0.02em; }
.pscale__mark span { display: block; margin-top: 2px; color: var(--color-stone); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; }
.pscale__say { margin-top: var(--space-xl); max-width: 52ch; color: var(--color-sand); font-size: var(--text-sm); line-height: 1.65; }
.pscale__say strong { color: var(--color-gold-light); font-weight: 600; }
@media (max-width: 30rem) {
  .pscale__mark span { display: none; }
  .pscale__say { margin-top: var(--space-lg); }
}


/* Sticky mobile call/text CTA */
.sticky-cta { display: none; }
@media (max-width: 48rem) {
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(10,10,10,0.12); box-shadow: 0 -2px 16px rgba(10,10,10,0.16); padding-bottom: env(safe-area-inset-bottom); }
  .sticky-cta__btn { display: flex; align-items: center; justify-content: center; gap: 0.5em; min-height: 54px; padding: 0.9rem 1rem; font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; text-decoration: none; }
  .sticky-cta__btn svg { width: 1.2em; height: 1.2em; }
  .sticky-cta__btn--book { background: var(--color-gold); color: var(--color-black); }
  .sticky-cta__btn--text { background: var(--color-green-deep); color: #fff; }
  .sticky-cta__btn:active { filter: brightness(0.92); }
  body { padding-bottom: calc(54px + env(safe-area-inset-bottom)); }
}


/* Credential / fact list: bold label + flowing text, green check */
.cred-facts { margin: var(--space-lg) 0 0; }
.cred-facts ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-md); }
.cred-facts li { position: relative; padding-left: 1.85em; line-height: 1.55; }
.cred-facts li::before { content: ""; position: absolute; left: 0.05em; top: 0.62em; width: 0.55em; height: 0.55em; border-radius: 50%; background: var(--color-green); }
.cred-facts li { padding-left: 1.6em; }
.cred-facts strong { font-weight: 700; }


/* Vertical scroll gradient on article pages: sky at the top flowing to warmth at the bottom.
   The article boxes (quick-answer, note-box, tables) keep their own solid backgrounds and float on it.
   Homepage (.home) keeps its designed section rhythm. */
body.page:not(.home) {
  background: linear-gradient(180deg,
    #E7F2FA 0%,
    #EFF4F2 20%,
    #FAFAF8 42%,
    #FAF1E8 68%,
    #F7E4D9 88%,
    #F5DCCE 100%);
}
