/* ============================================================================
   Dr. Augello's Health & Body Makeover — stylesheet
   Implementation of DESIGN.md. Edits to design tokens belong there first.
   ========================================================================= */

/* ---------- 1. Reset + base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--ink-deep);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
::selection { background: var(--primary); color: var(--bg); }

/* ---------- 2. Design tokens ---------------------------------------------- */
:root {
  --bg: #FBFBEE;
  --bg-alt: #F2F4DC;
  --surface: #FFFFFF;
  --ink: #1A2A22;
  --ink-soft: #4E6155;
  --ink-mute: #8A9389;
  --primary: #36995C;
  --primary-hover: #2A7F4A;
  --primary-soft: #E5F3E8;
  --accent: #E8B547;
  --accent-hover: #C99B2E;
  --border: #EBEDD0;
  --border-strong: #C8CDA0;
  --success: #3F6B4E;
  --danger: #8C3A2E;

  --font-head: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Instrument Serif', 'Newsreader', Georgia, serif;
  --font-body: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --max-w: 1200px;
  --max-w-prose: 680px;
  --gutter: 1.5rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --motion-fast: 150ms;
  --motion-base: 300ms;
  --motion-slow: 600ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 1px 2px rgba(28, 42, 33, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 42, 33, 0.06);
}
@media (min-width: 768px) { :root { --gutter: 3rem; } }
@media (min-width: 1024px) { :root { --gutter: 5rem; } }

/* ---------- 3. Typography -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-5);
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1, .h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.1; }
.h1-display { font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; }
h3, .h3 { font-size: clamp(1.25rem, 1.7vw, 1.5rem); line-height: 1.3; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.005em; }
h4 { font-size: 1.1875rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }

p, ul, ol { margin: 0 0 var(--space-5); color: var(--ink-soft); }
.lede { font-size: 1.4375rem; line-height: 1.55; font-weight: 500; color: var(--ink-soft); max-width: 52ch; }
.small { font-size: 1rem; line-height: 1.5; }
.eyebrow, .label {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: inline-block;
}
em, i, .italic { font-family: var(--font-head); font-style: italic; font-weight: 600; }
strong, b { font-weight: 700; color: var(--ink); }

a.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--motion-fast) var(--ease-out);
}
a.text-link:hover { color: var(--accent-hover); text-decoration-thickness: 2px; }

/* ---------- 4. Layout primitives ------------------------------------------ */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.container-prose { max-width: var(--max-w-prose); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--space-8); }
@media (min-width: 768px) { .section { padding-block: var(--space-9); } }
@media (min-width: 1024px) { .section { padding-block: var(--space-10); } }

.section-alt { background: var(--bg-alt); }
.section-ink { background: var(--primary); color: var(--bg); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--bg); }
.section-ink p { color: rgba(245, 240, 230, 0.85); }
.section-ink .eyebrow { color: var(--accent); }

.section-head { max-width: 760px; margin: 0 auto var(--space-7); text-align: center; }
.section-head.align-left { margin-inline: 0; text-align: left; }
.section-title { max-width: 22ch; margin-inline: auto; }
.section-head.align-left .section-title { margin-inline: 0; }

.grid { display: grid; gap: var(--space-5); }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.flow > * + * { margin-top: var(--space-5); }
.flow-tight > * + * { margin-top: var(--space-3); }

/* ---------- 5. Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5); min-height: 48px;
  font-family: var(--font-body); font-size: 1.0625rem; font-weight: 500; letter-spacing: 0.01em;
  border-radius: var(--r-sm); border: 1px solid transparent;
  transition: background var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
  text-decoration: none; white-space: nowrap; cursor: pointer;
}
.btn-lg { min-height: 56px; padding: var(--space-4) var(--space-6); font-size: 1rem; }
.btn-sm { min-height: 40px; padding: var(--space-2) var(--space-4); font-size: 1rem; }

.btn-primary { background: var(--primary); color: var(--bg); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--primary-soft); border-color: var(--primary); }

.btn-link { background: transparent; color: var(--accent); padding-inline: 0; border: 0; text-decoration: underline; text-underline-offset: 3px; min-height: auto; }
.btn-link:hover { color: var(--accent-hover); }

.btn-on-dark { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-on-dark:hover { background: var(--bg-alt); border-color: var(--bg-alt); }

.btn-call::before {
  content: ''; width: 16px; height: 16px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
}
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ---------- 6. Header / Nav ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 40; background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-base) var(--ease-out), padding var(--motion-base) var(--ease-out);
}
.site-header.scrolled { border-color: var(--border); background: rgb(245, 240, 230); box-shadow: 0 1px 0 rgba(28, 42, 33, 0.06); }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding-block: var(--space-4); min-height: 72px;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links a, .nav-phone { font-size: 1rem; }
  .nav-links { gap: var(--space-3); }
}
.site-header.scrolled .nav { padding-block: var(--space-3); min-height: 64px; }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand > span,
.brand span:has(> .brand-mark + .brand-sub) { display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: nowrap; }
.brand-mark { display: inline-block; white-space: nowrap; font-family: var(--font-head); font-weight: 500; font-size: 1.875rem; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.brand-mark em { font-style: normal; font-weight: 500; color: var(--ink); }
.brand-sub { display: inline-block; white-space: nowrap; font-family: var(--font-head); font-size: 1.25rem; font-weight: 500; font-style: normal; letter-spacing: 0; text-transform: none; color: var(--ink); margin-top: 0; padding-left: 10px; border-left: 1px solid rgba(42, 68, 49, 0.18); }
.brand-logo { display: block; height: 52px; width: auto; max-width: 280px; object-fit: contain; }
.site-header.scrolled .brand-logo { height: 46px; }
.brand-logo-drawer { height: 44px; max-width: 220px; }
.brand-logo-drawer-link { display: inline-flex; align-items: center; text-decoration: none; }
@media (max-width: 767px) {
  .brand-logo { height: 40px; max-width: 200px; }
  .site-header.scrolled .brand-logo { height: 38px; }
  .brand-logo-drawer { height: 38px; max-width: 180px; }
}

.nav-links { display: none; gap: var(--space-4); list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; } }

.nav-links a {
  position: relative; font-size: 1.0625rem; font-weight: 500; color: var(--ink);
  padding: var(--space-2) 0; transition: color var(--motion-fast) var(--ease-out);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.current { color: var(--primary); }
.nav-links a.current::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent); }

.nav-item { position: relative; }
.nav-item-trigger::after {
  content: ''; display: inline-block; width: 10px; height: 10px; margin-left: 6px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 260px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: var(--space-3);
  opacity: 0; visibility: hidden;
  transition: opacity var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
  list-style: none; margin: 0; z-index: 50;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: var(--space-3) var(--space-4); border-radius: var(--r-sm); font-size: 1.0625rem; color: var(--ink); font-weight: 500; }
.nav-dropdown a:hover { background: var(--primary-soft); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-phone { display: none; font-size: 1.0625rem; font-weight: 500; color: var(--ink); align-items: center; gap: var(--space-2); white-space: nowrap; }
.nav-phone:hover { color: var(--primary); }
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--border-strong); border-radius: var(--r-sm); color: var(--ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-drawer {
  position: fixed; inset: 0; background: var(--bg); z-index: 60;
  display: none; flex-direction: column; overflow-y: auto;
  padding: var(--space-5) var(--gutter);
}
.nav-drawer.open { display: flex; }
.nav-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-6); }
.nav-drawer-list { list-style: none; padding: 0; margin: 0; }
.nav-drawer-list > li { border-bottom: 1px solid var(--border); }
.nav-drawer-list a, .nav-drawer-list summary {
  display: block; padding: var(--space-4) 0;
  font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); cursor: pointer; list-style: none;
}
.nav-drawer-list summary::-webkit-details-marker { display: none; }
.nav-drawer-list details .nav-sublist { list-style: none; padding: 0 0 var(--space-4) var(--space-4); margin: 0; }
.nav-drawer-list details .nav-sublist a { font-family: var(--font-body); font-size: 1rem; padding: var(--space-2) 0; color: var(--ink-soft); }
.nav-drawer-cta { margin-top: var(--space-7); display: flex; flex-direction: column; gap: var(--space-3); }

/* ---------- 7. Hero -------------------------------------------------------- */
.hero { position: relative; padding-block: var(--space-8) var(--space-9); background: var(--bg); overflow: hidden; }
@media (min-width: 1024px) { .hero { padding-block: var(--space-9) var(--space-10); } }
.hero-grid { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-9); } }
.hero-copy { max-width: 38rem; }
.hero-copy .eyebrow { margin-bottom: var(--space-4); }
.hero-title { margin-bottom: var(--space-5); }
.hero-sub { font-size: 1.4375rem; line-height: 1.55; font-weight: 500; color: var(--ink-soft); max-width: 48ch; margin-bottom: var(--space-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--space-5); color: var(--ink-mute); font-size: 1rem; align-items: center; }
.hero-meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero-meta strong { color: var(--ink); font-weight: 500; }

.hero-media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-caption {
  position: absolute; left: var(--space-5); bottom: var(--space-5); right: var(--space-5);
  background: rgba(28, 42, 33, 0.82); color: var(--bg); padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md); font-size: 1rem; backdrop-filter: blur(6px);
}
.hero-placeholder-note {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6); text-align: center; color: var(--ink-soft);
  background: linear-gradient(135deg, var(--bg-alt) 25%, var(--primary-soft) 25%, var(--primary-soft) 50%, var(--bg-alt) 50%, var(--bg-alt) 75%, var(--primary-soft) 75%) 0 0 / 24px 24px;
}
.hero-placeholder-note .label { color: var(--primary); }

/* ---------- 8. Cards ------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--space-6);
  transition: border-color var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}
.card:hover { border-color: var(--border-strong); }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { transform: translateY(-2px); }
.card-eyebrow { color: var(--accent); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-3); display: block; }
.card-title { font-size: 1.25rem; font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-3); }
.card-body { color: var(--ink-soft); margin: 0; }
.card-foot { margin-top: var(--space-4); font-size: 1rem; color: var(--accent); font-weight: 500; display: inline-flex; align-items: center; gap: var(--space-2); }
.card-foot::after { content: '→'; display: inline-block; transition: transform var(--motion-fast) var(--ease-out); }
.card-link:hover .card-foot::after { transform: translateX(4px); }

.condition-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--space-7); display: flex; flex-direction: column; height: 100%;
  transition: border-color var(--motion-base) var(--ease-out);
}
.condition-card:hover { border-color: var(--primary); }
.condition-card-number { font-family: var(--font-head); font-size: 1.25rem; color: var(--accent); margin-bottom: var(--space-5); letter-spacing: 0.02em; }
.condition-card h3 { font-size: 1.5rem; font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-4); }
.condition-card p { margin-bottom: var(--space-5); }
.condition-card ul { list-style: none; padding: 0; margin: 0 0 var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.condition-card ul li { font-size: 1.1875rem; color: var(--ink-soft); padding-left: var(--space-5); position: relative; }
.condition-card ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 12px; height: 1px; background: var(--accent); }
.condition-card .card-foot { margin-top: auto; padding-top: var(--space-5); border-top: 1px solid var(--border); }

/* ---------- 9. Stats / outcomes ------------------------------------------- */
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-5);
  padding: var(--space-7) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: var(--space-2); }
.stat-number { font-family: var(--font-head); font-weight: 500; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stat-label { font-size: 1rem; font-weight: 500; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase; }

.outcome-feature { display: grid; gap: var(--space-7); align-items: center; padding-block: var(--space-7); }
@media (min-width: 1024px) { .outcome-feature { grid-template-columns: 1fr 1fr; } }
.outcome-feature-headline { font-family: var(--font-head); font-size: clamp(1.625rem, 2.75vw, 2.375rem); line-height: 1.15; color: var(--primary); margin: 0; letter-spacing: -0.015em; }
.outcome-feature-headline em { color: var(--accent); }

/* ---------- 10. Testimonials ---------------------------------------------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-5); height: 100%;
}
.testimonial-outcome { font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); padding-bottom: var(--space-3); border-bottom: 1px solid var(--border); }
.testimonial-quote { font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 1.3125rem; line-height: 1.55; color: var(--ink); margin: 0; }
.testimonial-footer { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; color: var(--primary);
  flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; color: var(--ink); font-size: 1.0625rem; }
.testimonial-meta { font-size: 1rem; color: var(--ink-mute); }

/* ---------- 11. Press strip ----------------------------------------------- */
.press { padding: var(--space-7) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.press-label { text-align: center; color: var(--accent); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-5); }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-7); opacity: 0.62; }
.press-logos span { font-family: var(--font-head); font-size: 1.125rem; color: var(--ink-mute); letter-spacing: -0.005em; font-style: italic; }
.press-pullquote { max-width: 44ch; margin: var(--space-7) auto 0; text-align: center; font-family: var(--font-head); font-style: italic; font-size: 1.125rem; color: var(--ink-soft); }

/* ---------- 12. Founder block --------------------------------------------- */
.founder { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 1024px) { .founder { grid-template-columns: 5fr 7fr; gap: var(--space-9); } }
.founder-media { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border); position: relative; }
.founder-media img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy { max-width: 46rem; }
.founder-copy blockquote { border-left: 2px solid var(--accent); padding-left: var(--space-5); margin: var(--space-6) 0; font-family: var(--font-head); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ink); }
.founder-credentials { list-style: none; padding: var(--space-5) 0 0; margin: var(--space-5) 0 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-5); }
.founder-credentials li { display: flex; flex-direction: column; gap: var(--space-1); }
.founder-credentials .label { color: var(--ink-mute); margin: 0; }
.founder-credentials strong { color: var(--ink); font-size: 1.0625rem; font-weight: 500; }

/* ---------- 13. Process / approach ---------------------------------------- */
.process { display: grid; gap: var(--space-5); counter-reset: step; }
@media (min-width: 768px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding: var(--space-6); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); counter-increment: step; }
.process-step::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-head); font-size: 1rem; color: var(--accent); letter-spacing: 0.04em; margin-bottom: var(--space-3); }
.process-step h3 { font-size: 1.125rem; font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-3); }
.process-step p { font-size: 1.0625rem; margin: 0; }

/* ---------- 14. Comparison table ------------------------------------------ */
.compare { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: var(--space-4) var(--space-5); font-size: 1.0625rem; color: var(--ink-soft); }
.compare-head { background: var(--bg-alt); font-weight: 600; color: var(--ink); font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-row .compare-us { background: var(--primary-soft); color: var(--ink); font-weight: 500; }
.compare-feature { color: var(--ink); font-weight: 500; }
@media (max-width: 767px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-bottom: 1px solid var(--border); }
  .compare-row > div:last-child { border-bottom: 0; }
}

/* ---------- 15. FAQ ------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-5);
  padding: var(--space-5) 0;
  font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; color: var(--ink);
  cursor: pointer; list-style: none; line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-body); font-size: 1.5rem; font-weight: 500; color: var(--accent);
  transition: transform var(--motion-fast) var(--ease-out); flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 0 var(--space-5); color: var(--ink-soft); max-width: 65ch; }
.faq-item-body :last-child { margin-bottom: 0; }

/* ---------- 16. Forms ----------------------------------------------------- */
.form { display: grid; gap: var(--space-5); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: var(--space-3) var(--space-4); min-height: 48px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-sm); color: var(--ink);
  transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field-help { font-size: 1rem; color: var(--ink-mute); }

/* ---------- 17. Contact block --------------------------------------------- */
.contact-grid { display: grid; gap: var(--space-7); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: var(--space-9); } }
.contact-info h2 { font-size: 2rem; font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-4); }
.contact-info p { margin-bottom: var(--space-5); max-width: 40ch; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-5); }
.contact-list li { display: flex; flex-direction: column; gap: var(--space-1); }
.contact-list .label { color: var(--ink-mute); margin: 0; }
.contact-list strong { color: var(--ink); font-weight: 500; font-size: 1rem; }
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--primary); }
.phone-big { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.1; color: var(--primary); font-weight: 500; }
.phone-big:hover { color: var(--primary-hover); }

/* ---------- 18. CTA section ----------------------------------------------- */
.cta-block { background: var(--primary); color: var(--bg); padding: var(--space-8) var(--gutter); border-radius: var(--r-lg); text-align: center; }
.cta-block h2 { color: var(--bg); font-family: var(--font-head); font-weight: 500; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: var(--space-4); }
.cta-block p { color: rgba(245, 240, 230, 0.9); max-width: 48ch; margin: 0 auto var(--space-6); font-size: 1.3125rem; font-weight: 500; }
.cta-block .btn-group { justify-content: center; }

/* ---------- 19. Footer ---------------------------------------------------- */
.site-footer { background: var(--primary); color: rgba(245, 240, 230, 0.8); padding-block: var(--space-8) var(--space-6); margin-top: 0; }
.footer-grid { display: grid; gap: var(--space-7); grid-template-columns: 1fr; margin-bottom: var(--space-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); } }
.footer-brand h3 { color: var(--bg); font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-3); }
.footer-brand p { color: rgba(245, 240, 230, 0.72); font-size: 1.0625rem; max-width: 40ch; margin-bottom: var(--space-5); }
.footer-brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 340px;
  margin-bottom: var(--space-4);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-footer-seal-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-7);
}
.site-footer-seal-wrap .seal {
  width: 160px;
  height: 160px;
  color: var(--brass);
}
@media (max-width: 767px) {
  .site-footer-seal-wrap .seal { width: 130px; height: 130px; }
}
.footer-address-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(245, 240, 230, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-address-link:hover,
.footer-address-link:focus { color: var(--brass); border-bottom-color: var(--brass); }
@media (max-width: 767px) {
  .footer-brand-logo { height: 48px; max-width: 260px; }
}
.footer-col h4 { color: var(--bg); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-4); font-family: var(--font-body); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: rgba(245, 240, 230, 0.72); font-size: 1.0625rem; transition: color var(--motion-fast) var(--ease-out); }
.footer-col a:hover { color: var(--bg); }
.footer-legal { border-top: 1px solid rgba(245, 240, 230, 0.18); padding-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); font-size: 1.1875rem; color: var(--bg); font-weight: 600; line-height: 1.5; }
.footer-legal p { margin: 0; }
.footer-legal a { color: inherit; font-weight: 600; }
.footer-legal a:hover { color: var(--brass); }
.footer-legal-meta { display: flex; flex-direction: column; gap: var(--space-1); }
@media (min-width: 768px) {
  .footer-legal { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: var(--space-4); }
}

/* ---------- 20. Utilities + motion ---------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: var(--space-4); top: -100px; background: var(--ink); color: var(--bg); padding: var(--space-3) var(--space-5); border-radius: var(--r-sm); z-index: 100; transition: top var(--motion-fast) var(--ease-out); }
.skip-link:focus { top: var(--space-4); }
.align-center { text-align: center; }
.align-right { text-align: right; }

[data-animate] { opacity: 1; transform: none; transition: opacity var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out); }
.js-anim-armed [data-animate]:not(.revealed) { opacity: 0; transform: translateY(24px); }
[data-animate].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-animate] { opacity: 1; transform: none; }
  .js-anim-armed [data-animate]:not(.revealed) { opacity: 1; transform: none; }
}

/* ---------- 21. Breadcrumbs ----------------------------------------------- */
.breadcrumbs { padding: var(--space-4) 0; font-size: 1rem; color: var(--ink-mute); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.breadcrumbs li + li::before { content: '/'; margin-right: var(--space-2); color: var(--ink-mute); }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* ---------- 22. Article / blog typography --------------------------------- */
.article { padding-block: var(--space-8); }
.article-head { max-width: var(--max-w-prose); margin: 0 auto var(--space-7); }
.article-meta { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: 1rem; color: var(--ink-mute); margin-bottom: var(--space-4); }
.article-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; font-family: var(--font-head); font-weight: 500; margin-bottom: var(--space-4); letter-spacing: -0.01em; }
.article-dek { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); font-family: var(--font-head); font-style: italic; max-width: 40ch; }

.prose { max-width: var(--max-w-prose); margin: 0 auto; font-size: 1.3125rem; font-weight: 500; line-height: 1.7; color: var(--ink-soft); }
.prose h2 { font-size: 1.75rem; margin-top: var(--space-8); margin-bottom: var(--space-4); color: var(--ink); }
.prose h3 { font-size: 1.25rem; margin-top: var(--space-6); margin-bottom: var(--space-3); color: var(--ink); font-family: var(--font-head); font-weight: 500; }
.prose p { margin-bottom: var(--space-5); }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose ul, .prose ol { padding-left: var(--space-5); margin-bottom: var(--space-5); }
.prose li { margin-bottom: var(--space-3); }
.prose blockquote { border-left: 2px solid var(--accent); padding-left: var(--space-5); margin: var(--space-6) 0; font-family: var(--font-head); font-style: italic; font-size: 1.25rem; color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-7) 0; }
.prose figure { margin: var(--space-7) 0; }
.prose figcaption { font-size: 1rem; color: var(--ink-mute); text-align: center; margin-top: var(--space-3); font-style: italic; }

.callout { background: var(--primary-soft); border-left: 3px solid var(--primary); padding: var(--space-5) var(--space-6); border-radius: 0 var(--r-md) var(--r-md) 0; margin: var(--space-7) 0; }
.callout .label { color: var(--primary); margin-bottom: var(--space-2); }
.callout p:last-child { margin-bottom: 0; }

/* ---------- 23. Location pages -------------------------------------------- */
.location-hero { padding-block: var(--space-8); border-bottom: 1px solid var(--border); }
.location-hero .eyebrow { color: var(--primary); }
.location-meta { display: flex; flex-wrap: wrap; gap: var(--space-6); margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--border); font-size: 1.0625rem; }
.location-meta > div { display: flex; flex-direction: column; gap: var(--space-1); }
.location-meta .label { margin: 0; color: var(--ink-mute); }

/* ---------- 24. Announcement bar ----------------------------------------- */
.announce { background: var(--ink); color: var(--bg); text-align: center; padding: var(--space-3) var(--gutter); font-size: 1rem; letter-spacing: 0.02em; }
.announce a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.announce a:hover { color: var(--bg); }

/* ---------- 25. Print ----------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-block, .announce, .nav-drawer { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* ============================================================================
   v2 — Editorial-medical layer
   Additive layer. v1 above is untouched.
   ========================================================================= */

/* ---------- v2.1 Tokens ---------------------------------------------------- */
:root {
  /* Third colour: a warm paper for texture surfaces. Sits between bg and bg-alt. */
  --paper: #F6F6E0;
  /* Deeper ink for high-contrast masthead moments. */
  --ink-deep: #0E1612;
  /* Accent pair: saturated gold aligned with main accent. */
  --brass: #E8B547;
  --brass-soft: #F2D88A;
  /* Display-xl for oversized numerals. */
  --fs-display-xl: clamp(4rem, 10vw, 8.5rem);
  --fs-display-lg: clamp(3rem, 7vw, 6rem);
}

/* ---------- v2.2 Paper + grain textures ----------------------------------- */
/* Used for "dense numerals" and editorial letter sections. Additive SVG noise. */
.paper,
.section-paper {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n' x='0' y='0'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0.06 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.9'/></svg>");
  background-size: 240px 240px;
}

.section-dark {
  background: var(--ink-deep);
  color: var(--bg);
  position: relative;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bg); }
.section-dark p { color: rgba(245, 240, 230, 0.86); }
.section-dark .eyebrow { color: var(--brass); }
.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 137, 59, 0.3) 20%, rgba(184, 137, 59, 0.5) 50%, rgba(184, 137, 59, 0.3) 80%, transparent 100%);
}
.section-dark::before { top: 0; }
.section-dark::after { bottom: 0; }

/* ---------- v2.3 Bracket signature system --------------------------------- */
/* A universal CSS variable for bracket stroke weight. */
:root {
  --bracket-stroke: 1px;
  --bracket-color: var(--brass);
}

/* Micro — inline with eyebrows. Rendered as typographic characters w/ kerning. */
.bracket-eyebrow {
  display: inline;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-family: var(--font-body);
  font-feature-settings: "tnum" 1;
  line-height: 1.5;
}
.bracket-eyebrow::before,
.bracket-eyebrow::after {
  font-size: 1.05em;
  opacity: 0.9;
  font-weight: 500;
}
.bracket-eyebrow::before { content: "[ "; }
.bracket-eyebrow::after  { content: " ]"; }
@media (max-width: 480px) {
  .bracket-eyebrow { font-size: 0.9375rem; letter-spacing: 0.12em; }
  .bracket-eyebrow::before,
  .bracket-eyebrow::after { font-size: 1.2em; }
}
.bracket-eyebrow .num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brass);
  text-transform: none;
  padding-right: 0.35em;
  border-right: 1px solid currentColor;
  margin-right: 0.35em;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.92;
}

/* Medium — L-shaped corner marks. Use to "frame" imagery without a full box. */
.bracket-frame {
  position: relative;
}
.bracket-frame::before,
.bracket-frame::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border: var(--bracket-stroke) solid var(--bracket-color);
  pointer-events: none;
}
.bracket-frame::before {
  top: -12px; left: -12px;
  border-right: 0;
  border-bottom: 0;
}
.bracket-frame::after {
  bottom: -12px; right: -12px;
  border-left: 0;
  border-top: 0;
}
@media (min-width: 768px) {
  .bracket-frame::before,
  .bracket-frame::after { width: 72px; height: 72px; }
  .bracket-frame::before { top: -18px; left: -18px; }
  .bracket-frame::after { bottom: -18px; right: -18px; }
}

/* Macro — page-top and page-bottom brass marks, like a masthead rule. */
.page-mark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.page-mark span { display: inline-flex; align-items: center; gap: var(--space-2); }
.page-mark .sep { color: var(--brass-soft); }

/* Rule with a break in the center for a character. */
.rule-mark {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-7) 0;
  color: var(--brass);
}
.rule-mark::before,
.rule-mark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}
.rule-mark .mark {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--brass);
}

/* ---------- v2.4 Editorial hero ------------------------------------------- */
.hero-editorial {
  position: relative;
  padding-block: var(--space-8) var(--space-7);
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-editorial { padding-block: var(--space-9) var(--space-8); }
}
.hero-editorial-grid {
  display: grid;
  gap: var(--space-7);
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-editorial-grid { grid-template-columns: 62% 38%; gap: var(--space-8); }
}
.hero-editorial-headline {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  color: var(--ink);
  margin: var(--space-6) 0 var(--space-6);
  max-width: 16ch;
  text-wrap: balance;
}
.hero-editorial-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1em;
  letter-spacing: -0.03em;
}
.hero-editorial-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  border-top: 1px solid var(--brass);
  padding-top: var(--space-5);
  margin-bottom: var(--space-6);
}
.hero-editorial-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: 1rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero-editorial-meta strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .hero-editorial-meta { font-size: 0.8125rem; gap: var(--space-1) var(--space-3); line-height: 1.5; }
  .hero-editorial-meta strong { font-size: 0.8125rem; }
}
.hero-editorial-media {
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transform: translateY(-4%);
}
@media (min-width: 1024px) { .hero-editorial-media { transform: translateY(-8%); } }
.hero-editorial-media img,
.hero-editorial-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-editorial-media--video {
  aspect-ratio: 9 / 16;
  max-height: 640px;
  max-width: 360px;
  margin-inline: auto;
}
.hero-editorial-media--video video { object-fit: cover; }
@media (min-width: 1024px) {
  .hero-editorial-media--video { aspect-ratio: 9 / 16; max-width: 380px; max-height: 680px; }
}

/* ---------- v5.1 Red Light $47 promo band -------------------------------- */
.redlight-band {
  background: var(--primary);
  color: var(--bg);
  padding-block: var(--space-8);
  position: relative;
  overflow: hidden;
}
.redlight-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(184, 137, 59, 0.18), transparent 60%);
  pointer-events: none;
}
.redlight-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .redlight-grid { grid-template-columns: 1.4fr 1fr; gap: var(--space-8); }
}
.redlight-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-4);
}
.redlight-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 0 0 var(--space-5);
  max-width: 18ch;
}
.redlight-headline em {
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.redlight-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.85);
  max-width: 52ch;
  margin: 0 0 var(--space-6);
}
.redlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.redlight-actions .btn-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.redlight-actions .btn-primary:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.redlight-actions .btn-outline-brass {
  color: var(--bg);
  border-color: var(--brass);
}
.redlight-actions .btn-outline-brass:hover {
  background: var(--brass);
  color: var(--ink);
}
.redlight-video-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-md, 8px);
  overflow: hidden;
}
.redlight-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 540px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  background: #0E1410;
  border: 1px solid rgba(184, 137, 59, 0.45);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--brass);
  transition: transform var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out);
}
.redlight-video-frame:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
}
.redlight-video-caption {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
@media (max-width: 900px) {
  .redlight-video-frame { max-height: 480px; max-width: 280px; }
}
.redlight-video-frame--inline {
  background: var(--bg-alt, #0e1410);
  padding: 0;
  overflow: hidden;
}
.redlight-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0E1410;
}
.redlight-video {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.redlight-video-fulllink {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  margin-top: var(--space-4);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 230, 0.35);
  padding-bottom: 4px;
  transition: color var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out);
}
.redlight-video-fulllink:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.redlight-video-fulllink-arrow {
  font-style: normal;
  font-family: var(--font-body);
  transition: transform var(--motion-fast) var(--ease-out);
  display: inline-block;
}
.redlight-video-fulllink:hover .redlight-video-fulllink-arrow {
  transform: translateX(4px);
}

/* ---------- Team approach — No. 07 -------------------------------------- */
.team-head { margin-bottom: var(--space-7); max-width: 64ch; }
.team-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: var(--space-4) 0 var(--space-5);
  max-width: 22ch;
}
.team-lede { max-width: 56ch; }
.team-grid { gap: var(--space-5); }
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card { background: var(--bg); }
.team-portrait {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 0 var(--space-4);
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(42, 68, 49, 0.12);
  overflow: hidden;
  position: relative;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 767px) {
  .team-portrait { width: 112px; height: 112px; }
}
.team-card .card-title em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
}
.team-card .card-body em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.team-close {
  text-align: center;
  max-width: 60ch;
  margin: var(--space-7) auto 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink);
}
.team-close em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

/* ---------- v2.5 Breather sections ---------------------------------------- */
.section-breather {
  padding-block: var(--space-9);
  text-align: center;
  background: var(--bg);
}
.section-breather-inner {
  max-width: 44ch;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section-breather .mark-char {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-4);
  opacity: 0.8;
}
.section-breather-sentence {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.section-breather-sentence em {
  color: var(--primary);
  font-style: italic;
}

/* Close-breather with CTA baked in. */
.section-close {
  padding-block: var(--space-8) var(--space-7);
  text-align: center;
  background: var(--bg);
}
@media (min-width: 768px) {
  .section-close { padding-block: var(--space-10) var(--space-8); }
}
.section-close-inner {
  max-width: 52rem;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section-close-headline {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--ink);
  margin: var(--space-5) 0 var(--space-6);
}
.section-close-headline em { color: var(--primary); font-style: italic; }

/* ---------- v2.6 Oversized numeral stat band ------------------------------ */
.big-numerals {
  padding-block: var(--space-9);
  position: relative;
}
.big-numerals-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 768px) { .big-numerals-row { grid-template-columns: repeat(3, 1fr); } }

.big-numeral {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--brass);
  position: relative;
}
.big-numeral .label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}
.big-numeral .value {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--fs-display-xl);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.035em;
  margin: 0;
}
.big-numeral .value em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.55em;
  letter-spacing: -0.01em;
}
.big-numeral .caption {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 22ch;
  margin: 0;
  line-height: 1.45;
}

/* ---------- v2.7 Editorial letter (drop cap, two-column magazine) -------- */
.letter {
  padding-block: var(--space-9);
}
.letter-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.letter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--brass);
}
.letter-head h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.letter-head .attrib {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.letter-body {
  column-count: 1;
  column-gap: var(--space-7);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  font-feature-settings: "liga" 1, "onum" 1;
}
@media (min-width: 768px) { .letter-body { column-count: 2; } }
.letter-body p { margin: 0 0 var(--space-4); break-inside: avoid-column; }
.letter-body p:first-child::first-letter {
  font-family: var(--font-head);
  font-weight: 500;
  float: left;
  font-size: 4.75rem;
  line-height: 0.82;
  padding-right: 0.12em;
  padding-top: 0.06em;
  color: var(--primary);
}
/* Lead variant: no drop-cap, single column, larger lede styling */
.letter-body--lead {
  column-count: 1 !important;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 56ch;
}
.letter-body--lead p:first-child::first-letter {
  all: unset;
  display: inline;
  float: none;
  font: inherit;
  color: inherit;
  padding: 0;
}
.letter-body--lead p {
  margin: 0 0 var(--space-5);
}
.letter-body--lead p em {
  font-style: italic;
  color: var(--primary);
}
.letter-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-6);
  max-width: 20ch;
}
.letter-headline em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.letter-signoff {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.letter-signoff::before {
  content: "";
  height: 1px;
  width: 48px;
  background: var(--brass);
}
.letter-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(42, 68, 49, 0.12);
}

/* ---------- v2.8 Staggered philosophy grid -------------------------------- */
.staggered {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: phil;
  margin-top: var(--space-6);
}
@media (min-width: 768px) { .staggered { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.staggered-item {
  padding: var(--space-6) 0 var(--space-6);
  border-top: 1px solid var(--border-strong);
  counter-increment: phil;
  position: relative;
}
.staggered-item h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: var(--space-4) 0 var(--space-3);
}
.staggered-item h3 em { font-style: italic; color: var(--primary); }
.staggered-item p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.6; margin: 0; }
.staggered-item .num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.02em;
  display: block;
}
@media (min-width: 768px) {
  .staggered-item:nth-child(2) { margin-top: var(--space-8); }
  .staggered-item:nth-child(3) { margin-top: var(--space-10); }
}

/* ---------- v2.9 Dark pull-quote section ---------------------------------- */
.pull-quote-section {
  padding-block: var(--space-10);
  text-align: center;
}
.pull-quote-inner {
  max-width: 44rem;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.pull-quote-mark {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--brass);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}
.pull-quote-body {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.625rem, 3.25vw, 2.5rem);
  line-height: 1.35;
  color: var(--bg);
  margin: 0 0 var(--space-6);
  letter-spacing: -0.01em;
}
.pull-quote-attrib {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.pull-quote-attrib::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}

/* ---------- v2.10 Asymmetric conditions spread ---------------------------- */
.conditions-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 1024px) { .conditions-spread { grid-template-columns: 60% 40%; gap: var(--space-8); } }

.conditions-media {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.conditions-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .conditions-media { aspect-ratio: 5 / 7; } }

.conditions-list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  border-top: 1px solid var(--brass);
}
.conditions-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  border-bottom: 1px solid var(--border);
  transition: background var(--motion-fast) var(--ease-out);
}
.conditions-list li:hover { background: rgba(184, 137, 59, 0.04); }
.conditions-list li .num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
  font-size: 1rem;
  min-width: 2.5em;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.conditions-list li .title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.conditions-list li .title em { font-style: italic; color: var(--primary); }
.conditions-list li .arrow {
  font-family: var(--font-body);
  color: var(--brass);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--motion-fast) var(--ease-out);
}
.conditions-list li:hover .arrow { transform: translateX(0); }
.conditions-list li a { color: inherit; text-decoration: none; display: contents; }

/* ---------- v2.11 Masthead-style footer ----------------------------------- */
.masthead {
  background: var(--ink-deep);
  color: rgba(245, 240, 230, 0.82);
  padding-block: var(--space-9) var(--space-6);
  position: relative;
}
.masthead::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 20%, var(--brass) 80%, transparent);
}
.masthead-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bg);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-7);
  text-align: center;
}
.masthead-title .amp { color: var(--brass); font-style: italic; }
.masthead-seal-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.masthead-seal-wrap .seal {
  width: 180px;
  height: 180px;
  color: var(--brass);
}
@media (max-width: 767px) {
  .masthead-seal-wrap .seal { width: 140px; height: 140px; }
}
.masthead-rule {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-7);
  color: var(--brass);
}
.masthead-rule::before,
.masthead-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}
.masthead-rule .mark {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.masthead-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .masthead-grid { grid-template-columns: repeat(3, 1fr); } }
.masthead-col h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-4);
}
.masthead-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.masthead-col a,
.masthead-col p {
  color: rgba(245, 240, 230, 0.78);
  font-size: 1.0625rem;
  line-height: 1.6;
  transition: color var(--motion-fast) var(--ease-out);
}
.masthead-col a:hover { color: var(--bg); }
.masthead-col p { margin: 0; }
.masthead-col strong { color: var(--bg); font-weight: 500; }

.masthead-colophon {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(184, 137, 59, 0.28);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 240, 230, 0.55);
}
.masthead-colophon a { color: inherit; border-bottom: 1px solid rgba(184, 137, 59, 0.3); }
.masthead-colophon a:hover { color: var(--bg); }

/* ---------- v2.12 Utility overrides + hero placeholder refinement --------- */
/* Upgrade the placeholder so empty hero blocks don't look like a bug. */
.hero-placeholder-note {
  background: var(--paper);
  background-image:
    repeating-linear-gradient(45deg, rgba(184, 137, 59, 0.04) 0 1px, transparent 1px 12px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0.06 0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.75'/></svg>");
  background-size: auto, 160px 160px;
  color: var(--ink-soft);
  padding: var(--space-7) var(--space-6);
}
.hero-placeholder-note .label { color: var(--brass); }
.hero-placeholder-note p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.0625rem;
  max-width: 28ch;
  margin: 0 auto;
}

/* ---------- v2.13 Refined button + link treatments ------------------------ */
.btn {
  letter-spacing: 0.02em;
}
.btn-primary { font-weight: 500; border-radius: 2px; }
.btn-ghost { border-radius: 2px; }
.btn-outline-brass {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--brass);
  border-radius: 2px;
  font-weight: 500;
}
.btn-outline-brass:hover { background: var(--brass); color: var(--bg); border-color: var(--brass); }

.link-reveal {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--motion-base) var(--ease-out);
}
.link-reveal:hover { background-size: 100% 1px; }

/* ============================================================================
   v3 — Heavier, more masculine, more motion
   ========================================================================= */

/* ---------- v3.1 Font + weight upgrade ------------------------------------ */
/* All display type now uses Newsreader + wider weight range. Italic in
   Instrument Serif for a distinctive editorial italic moment. */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-editorial-headline {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-size: clamp(2.25rem, 6.5vw, 5.75rem);
  max-width: 15ch;
  font-feature-settings: "ss01" 1;
}
.hero-editorial-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.02em;
  letter-spacing: -0.035em;
  display: inline-block;
  transform: translateY(-0.01em);
}

.section-breather-sentence {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.section-breather-sentence em { color: var(--primary); }

.big-numeral .value {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  letter-spacing: -0.04em;
  font-feature-settings: "tnum" 0;
}
.big-numeral .value em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.4em;
  letter-spacing: -0.02em;
}

.letter-body {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
}
.letter-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  float: left;
  font-size: 5.5rem;
  line-height: 0.82;
  padding-right: 0.08em;
  padding-top: 0.08em;
  color: var(--primary);
}

.pull-quote-body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.75vw, 2.25rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.section-close-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-close-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.masthead-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.875rem, 4.5vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1;
}
.masthead-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.masthead-title .amp {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
}

.brand-mark em { font-family: var(--font-head); font-style: normal; font-weight: 500; }

body { font-family: var(--font-body); font-feature-settings: "ss01" 1; }

/* ---------- v3.2 Marquee ticker ------------------------------------------- */
.ticker {
  background: var(--ink-deep);
  color: var(--bg);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  overflow: hidden;
  position: relative;
  padding: 0.7rem 0;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  color: rgba(245, 240, 230, 0.92);
}
.ticker-track em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.ticker-track .dot {
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  opacity: 0.75;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- v3.3 Hero word-reveal animation ------------------------------ */
.hero-editorial-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) skewY(2deg);
  animation: word-rise 900ms var(--ease-out) forwards;
}
.hero-editorial-headline .word:nth-child(1) { animation-delay: 80ms; }
.hero-editorial-headline .word:nth-child(2) { animation-delay: 180ms; }
.hero-editorial-headline .word:nth-child(3) { animation-delay: 280ms; }
.hero-editorial-headline .word:nth-child(4) { animation-delay: 380ms; }
.hero-editorial-headline .word:nth-child(5) { animation-delay: 480ms; }
.hero-editorial-headline .word:nth-child(6) { animation-delay: 580ms; }
.hero-editorial-headline .word:nth-child(7) { animation-delay: 680ms; }
.hero-editorial-headline .word:nth-child(8) { animation-delay: 780ms; }
.hero-editorial-headline .word:nth-child(9) { animation-delay: 880ms; }
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

/* Subsequent hero-block fade-in orchestration */
.hero-editorial-sub,
.hero-editorial-actions,
.hero-editorial-meta {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-rise 700ms var(--ease-out) forwards;
}
.hero-editorial-sub { animation-delay: 1000ms; }
.hero-editorial-actions { animation-delay: 1150ms; }
.hero-editorial-meta { animation-delay: 1300ms; }
@keyframes fade-rise { to { opacity: 1; transform: translateY(0); } }

.hero-editorial-media {
  opacity: 0;
  animation: image-reveal 1200ms var(--ease-out) 400ms forwards;
  clip-path: inset(0 0 100% 0);
}
@keyframes image-reveal {
  0%   { opacity: 0; clip-path: inset(0 0 100% 0); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-editorial-headline .word,
  .hero-editorial-sub,
  .hero-editorial-actions,
  .hero-editorial-meta,
  .hero-editorial-media {
    opacity: 1;
    transform: none;
    animation: none;
    clip-path: none;
  }
}

/* ---------- v3.4 Scroll-triggered counter for numerals -------------------- */
.big-numeral {
  position: relative;
  overflow: visible;
}
.big-numeral .value[data-count] { display: inline-block; }
.big-numeral::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0%;
  height: 2px;
  background: var(--brass);
  transition: width 900ms var(--ease-out) 200ms;
}
.big-numeral.revealed::before { width: 100%; }

/* ---------- v3.5 Conditions list hover slab ------------------------------- */
.conditions-list li {
  position: relative;
  overflow: hidden;
  transition: color var(--motion-fast) var(--ease-out);
}
.conditions-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateX(-102%);
  transition: transform 380ms var(--ease-out);
  z-index: 0;
  will-change: transform;
}
.conditions-list li > *,
.conditions-list li > a > * { position: relative; z-index: 1; }
.conditions-list li:hover { background: transparent; color: var(--bg); }
.conditions-list li:hover::before { transform: translateX(0); }
.conditions-list li:hover .num { color: var(--brass); }
.conditions-list li:hover .title { color: var(--bg); }
.conditions-list li:hover .title em { color: var(--brass); }
.conditions-list li:hover .arrow { color: var(--brass); }

/* ---------- v3.6 Staggered philosophy hover ------------------------------- */
.staggered-item {
  transition: transform var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out);
}
.staggered-item::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: var(--primary);
  margin-top: var(--space-5);
  transition: width 600ms var(--ease-out);
}
.staggered-item:hover { transform: translateY(-6px); border-top-color: var(--primary); }
.staggered-item:hover::after { width: 40%; }
.staggered-item:hover .num { color: var(--primary); transition: color var(--motion-fast) var(--ease-out); }

/* ---------- v3.7 Sticky nav condensed state upgrade ----------------------- */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 800ms var(--ease-out);
}
.site-header.scrolled::after { transform: scaleX(1); }

/* Sticky consult ribbon that appears after hero scroll */
.consult-ribbon {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  box-sizing: border-box;
  padding: var(--space-3) var(--space-5);
  background: var(--primary);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(28, 42, 33, 0.18);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out);
  text-decoration: none;
}
.consult-ribbon::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 0 rgba(184, 137, 59, 0.8);
  animation: pulse-dot 2s infinite;
}
.consult-ribbon.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.consult-ribbon:hover { background: var(--primary-hover); }
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(184, 137, 59, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(184, 137, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 137, 59, 0); }
}
@media (prefers-reduced-motion: reduce) { .consult-ribbon::before { animation: none; } }

/* ---------- v3.8 Image parallax on hero ---------------------------------- */
.parallax-layer { will-change: transform; transition: transform 60ms linear; }

/* ---------- v3.9 Letter drop cap + signature flourish -------------------- */
.letter-signature-svg {
  width: 180px;
  height: auto;
  margin-top: var(--space-5);
}

/* ---------- v3.10 Testimonial hover-reveal ------------------------------- */
.testimonial {
  position: relative;
  overflow: hidden;
  transition: border-color var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(42, 68, 49, 0.02) 100%);
  opacity: 0;
  transition: opacity var(--motion-base) var(--ease-out);
}
.testimonial:hover { border-color: var(--primary); transform: translateY(-4px); }
.testimonial:hover::before { opacity: 1; }

/* ---------- v3.11 Refined scroll reveal (more movement) ------------------- */
[data-animate] {
  opacity: 1;
  transform: none;
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}
.js-anim-armed [data-animate]:not(.revealed) {
  opacity: 0;
  transform: translateY(40px);
}
[data-animate].revealed { opacity: 1; transform: none; }

/* Staggered sibling reveal when container has data-animate-group */
[data-animate-group].revealed > * {
  animation: fade-rise 700ms var(--ease-out) forwards;
}
[data-animate-group].revealed > *:nth-child(1) { animation-delay: 0ms; }
[data-animate-group].revealed > *:nth-child(2) { animation-delay: 120ms; }
[data-animate-group].revealed > *:nth-child(3) { animation-delay: 240ms; }
[data-animate-group].revealed > *:nth-child(4) { animation-delay: 360ms; }
[data-animate-group].revealed > *:nth-child(5) { animation-delay: 480ms; }
[data-animate-group].revealed > *:nth-child(6) { animation-delay: 600ms; }

/* ---------- v3.12 Brass rule — decorative hairlines ---------------------- */
.rule-brass {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 20%, var(--brass) 80%, transparent);
  margin: 0;
  border: 0;
}
.rule-inline-brass {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin: 0 var(--space-3);
}

/* ---------- v3.13 Button press depth + brass ink ------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  transition: background var(--motion-fast) var(--ease-out),
              border-color var(--motion-fast) var(--ease-out),
              color var(--motion-fast) var(--ease-out),
              transform 220ms var(--ease-out);
}
.btn-primary::after,
.btn-outline-brass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brass);
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after { opacity: 0.12; }
.btn-outline-brass:hover::after { opacity: 0; }

/* ---------- v3.14 Rockstar date stamp (split-flap since 1993) ------------ */
.date-stamp {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  max-width: max-content;
  font-family: var(--font-head);
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  animation: fade-rise 700ms var(--ease-out) 900ms forwards;
}
.date-stamp .ds-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  align-self: center;
}
.date-stamp .ds-year {
  display: inline-flex;
  align-items: center;
  font-feature-settings: "tnum" 1;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.75vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.date-stamp .ds-digit {
  display: inline-block;
  width: 1ch;
  height: 1em;
  overflow: hidden;
  position: relative;
  color: var(--ink);
}
.date-stamp .ds-digit::before {
  content: "0\A 1\A 2\A 3\A 4\A 5\A 6\A 7\A 8\A 9";
  white-space: pre;
  display: block;
  line-height: 1;
  transform: translateY(0);
  transition: transform 1100ms cubic-bezier(0.32, 0.72, 0, 1);
}
.date-stamp.is-in .ds-digit::before {
  transform: translateY(calc(var(--to) * -1em));
}
.date-stamp.is-in .ds-digit:nth-child(2)::before { transition-delay: 100ms; }
.date-stamp.is-in .ds-digit:nth-child(3)::before { transition-delay: 200ms; }
.date-stamp.is-in .ds-digit:nth-child(4)::before { transition-delay: 300ms; }

.date-stamp .ds-rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brass);
  margin: 0 0.25rem;
  align-self: center;
}
.date-stamp .ds-years {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: center;
  font-feature-settings: "tnum" 1;
}
.date-stamp .ds-years em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brass);
  margin-left: 0.25em;
  font-size: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .date-stamp .ds-digit::before { transform: translateY(calc(var(--to) * -1em)); transition: none; }
  .date-stamp { opacity: 1; transform: none; animation: none; }
}

/* ---------- v3.15 Section title rule sweep ------------------------------- */
.rule-sweep {
  position: relative;
  display: inline-block;
}
.rule-sweep::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 1px;
  width: 80px;
  background: var(--brass);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1) 200ms;
}
.rule-sweep.revealed::after { transform: scaleX(1); }

/* ---------- v3.16 Counter number stability ------------------------------- */
.count {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* ---------- v3.17 Reveal enhancement for big numerals ------------------- */
.big-numeral {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.big-numeral.revealed {
  opacity: 1;
  transform: translateY(0);
}
.big-numeral:nth-child(2) { transition-delay: 140ms; }
.big-numeral:nth-child(3) { transition-delay: 280ms; }

/* ---------- v3.18 Font-display opticals for Newsreader ------------------ */
.hero-editorial-headline {
  font-variation-settings: "opsz" 72;
}
.big-numeral .value {
  font-variation-settings: "opsz" 72;
}
.section-close-headline {
  font-variation-settings: "opsz" 72;
}
.masthead-title {
  font-variation-settings: "opsz" 72;
}

/* ============================================================================
   v4 — Cinematic moments, giant numbers, brand seal, chart styling
   ========================================================================= */

/* ---------- v4.1 Giant year cinematic ------------------------------------ */
.cinematic-year {
  padding-block: var(--space-10);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cinematic-year-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 1024px) { .cinematic-year-inner { grid-template-columns: 3fr 2fr; gap: var(--space-9); } }

.cinematic-year .year-display {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(5.5rem, 15vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  font-variation-settings: "opsz" 72;
  margin: 0;
  position: relative;
}
.cinematic-year .year-display .d {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cinematic-year.revealed .year-display .d { opacity: 1; transform: translateY(0); }
.cinematic-year.revealed .year-display .d:nth-child(1) { transition-delay: 80ms; }
.cinematic-year.revealed .year-display .d:nth-child(2) { transition-delay: 220ms; }
.cinematic-year.revealed .year-display .d:nth-child(3) { transition-delay: 340ms; }
.cinematic-year.revealed .year-display .d:nth-child(4) { transition-delay: 460ms; }

.cinematic-year .year-copy {
  padding-top: var(--space-5);
  border-top: 1px solid var(--brass);
}
.cinematic-year .year-copy .eyebrow {
  color: var(--brass);
  margin-bottom: var(--space-4);
  display: block;
}
.cinematic-year .year-copy p {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0;
}
.cinematic-year .year-copy p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
}

/* ---------- v4.2 Cinematic full-bleed dark band -------------------------- */
.cinematic-band {
  position: relative;
  padding-block: var(--space-10);
  background: var(--ink-deep);
  color: var(--bg);
  overflow: hidden;
}
.cinematic-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(184, 137, 59, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 85%, rgba(42, 68, 49, 0.25), transparent 60%);
  pointer-events: none;
}
.cinematic-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}
.cinematic-band-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.cinematic-band .eyebrow {
  color: var(--brass);
  margin-bottom: var(--space-5);
}
.cinematic-band-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin: 0 0 var(--space-6);
  font-variation-settings: "opsz" 72;
}
.cinematic-band-headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.cinematic-band-sub {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.82);
  max-width: 58ch;
  margin: 0 auto var(--space-7);
}
.cinematic-band-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.cinematic-band-meta::before,
.cinematic-band-meta::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

/* ---------- v5 Patient path — StoryBrand "your plan" beat ---------------- */
.patient-path { background: var(--paper, #F5F0E6); }
.path-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  counter-reset: path;
}
@media (min-width: 768px) {
  .path-steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}
.path-step {
  position: relative;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(42, 68, 49, 0.18);
}
.path-step-num {
  display: block;
  font-family: var(--font-display, var(--font-head));
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.path-step h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.path-step h3 em { font-style: italic; color: var(--primary); }
.path-step p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}
.path-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  justify-content: flex-start;
}

/* Paper variant — breaks dark→dark stacking against pull-quote section */
.cinematic-band--paper {
  background: var(--paper, #F5F0E6);
  color: var(--ink);
  border-block: 1px solid rgba(42, 68, 49, 0.12);
}
.cinematic-band--paper::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(184, 137, 59, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 85%, rgba(42, 68, 49, 0.08), transparent 60%);
}
.cinematic-band--paper::after { display: none; }
.cinematic-band--paper .eyebrow { color: var(--primary); }
.cinematic-band--paper .cinematic-band-headline { color: var(--ink); }
.cinematic-band--paper .cinematic-band-headline em { color: var(--primary); }
.cinematic-band--paper .cinematic-band-sub { color: var(--ink-soft); }
.cinematic-band--paper .cinematic-band-meta { color: var(--primary); }
.cinematic-band--paper .cinematic-band-meta::before,
.cinematic-band--paper .cinematic-band-meta::after { background: var(--primary); opacity: 0.4; }

/* ---------- v4.3 Brand seal / monogram ----------------------------------- */
.seal {
  display: inline-block;
  width: 120px;
  height: 120px;
  color: var(--brass);
}
.seal svg { width: 100%; height: 100%; display: block; }
.seal-sm { width: 56px; height: 56px; }

/* Spin brand seal on page load once — subtle */
.seal .rotor {
  transform-origin: 100px 100px;
  animation: seal-rotate 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .seal .rotor { animation: none; } }
@keyframes seal-rotate { to { transform: rotate(360deg); } }

/* ---------- v4.4 Chart surface for blog ---------------------------------- */
.chart-block {
  margin: var(--space-7) 0;
  padding: var(--space-6);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
}
.chart-block .eyebrow { color: var(--brass); margin-bottom: var(--space-3); }
.chart-block-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}
.chart-block-title em { font-family: var(--font-display); font-style: italic; color: var(--primary); }
.chart-canvas-wrap {
  position: relative;
  height: 320px;
  margin: var(--space-4) 0;
}
.chart-block-caption {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-mute);
  margin: var(--space-3) 0 0;
  line-height: 1.5;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: 1rem;
  color: var(--ink-soft);
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.chart-legend span::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 2px;
  background: currentColor;
}
.chart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.chart-controls button {
  padding: var(--space-2) var(--space-4);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--motion-fast) var(--ease-out);
}
.chart-controls button:hover { border-color: var(--primary); color: var(--primary); }
.chart-controls button.active { background: var(--primary); color: var(--bg); border-color: var(--primary); }

/* ---------- v4.5 Interactive slider widget ------------------------------ */
.slider-block {
  margin: var(--space-7) 0;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.slider-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) { .slider-row { grid-template-columns: 1fr 1fr; } }
.slider-label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.slider-value {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
}
.slider-value em { font-family: var(--font-display); font-style: italic; font-size: 0.7em; color: var(--primary); margin-left: 0.25em; }
.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border: 2px solid var(--brass);
  border-radius: 50%;
  cursor: grab;
}
.slider-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border: 2px solid var(--brass);
  border-radius: 50%;
  cursor: grab;
}
.slider-result {
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  padding: var(--space-4) var(--space-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink);
}
.slider-result strong { color: var(--primary); font-weight: 600; }

/* ---------- v4.6 Blog article upgrade — byline + hero --------------------*/
.article-byline {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-7);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-mute);
}
.article-byline .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.article-byline .author-name { color: var(--ink); font-weight: 500; }
.article-byline .sep { color: var(--ink-mute); }

/* Blog card upgrade — add a scroll-reveal and image space */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out);
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 12px 32px rgba(28, 42, 33, 0.08); }
.blog-card-media {
  aspect-ratio: 3 / 2;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--primary-soft) 0%, var(--paper) 100%);
}
.blog-card-media .category-mark {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: rgba(28, 42, 33, 0.8);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.blog-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.blog-card-dek {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin: 0 0 var(--space-4);
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--ink-mute);
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.blog-card-meta .author-name { color: var(--ink); font-weight: 500; }

/* ---------- v4.7 Service-page hero-editorial inheritance ---------------- */
/* Services can reuse hero-editorial but with condition label */
.condition-label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.condition-label::before {
  content: "";
  width: 28px; height: 1px; background: var(--brass);
}

/* Scroll-reveal refined for blog charts */
.chart-block[data-animate] {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.js-anim-armed .chart-block[data-animate]:not(.revealed) {
  opacity: 0;
  transform: translateY(30px);
}
.chart-block[data-animate].revealed { opacity: 1; transform: none; }


/* ============================================================================
   v5 — Mobile refinements (<= 480px and related)
   Additive layer. Everything above is untouched. Scoped to small viewports
   except where a rule needs to apply broadly (slider tap targets).
   ========================================================================= */

/* ---------- v5.1 Header: brand lockup sizing on phones ----------- */
/* Brand seal: shared across desktop + mobile */
.brand-seal { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.site-header.scrolled .brand-seal { width: 46px; height: 46px; }

@media (max-width: 479px) {
  .brand { gap: var(--space-2); }
  .brand > span,
  .brand span:has(> .brand-mark + .brand-sub) { gap: 4px; flex-direction: column; align-items: flex-start; }
  .brand-seal { width: 48px; height: 48px; }
  .site-header.scrolled .brand-seal { width: 38px; height: 38px; }
  .brand-mark { font-size: 1.5rem; line-height: 1; white-space: nowrap; }
  .brand-sub { display: inline-block; font-size: 1rem; font-weight: 500; font-style: normal; letter-spacing: 0; margin-top: 0; padding-left: 0; border-left: none; white-space: nowrap; color: var(--ink); }
  .nav { gap: var(--space-3); min-height: 72px; padding-block: var(--space-3); }
  .site-header.scrolled .nav { min-height: 60px; }
  .nav-actions .btn { min-height: 40px; padding: var(--space-2) var(--space-4); font-size: 1rem; }
  .nav-actions > .btn-outline-brass { display: none; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nav-actions > .btn-outline-brass { display: none; }
  .brand-seal { width: 52px; height: 52px; }
}
@media (min-width: 480px) and (max-width: 639px) {
  .brand > span { gap: 9px; }
  .brand-mark { font-size: 1.625rem; white-space: nowrap; }
  .brand-sub { font-size: 1.125rem; font-weight: 500; font-style: normal; letter-spacing: 0; padding-left: 9px; white-space: nowrap; }
}

/* ---------- v5.2 Hero editorial: tighter clamps + stack order ------------ */
/* Headline already stacks text above media (grid order is correct). Trim
   the headline a hair and reduce section padding on narrow screens so the
   first fold isn't entirely whitespace. */
@media (max-width: 479px) {
  .hero-editorial { padding-block: var(--space-7) var(--space-6); }
  .hero-editorial-headline {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    letter-spacing: -0.025em;
    line-height: 1.0;
  }
  .hero-editorial-sub { font-size: 1rem; line-height: 1.55; }
  .hero-editorial-actions .btn { width: 100%; justify-content: center; }
  .hero-editorial-media:not(.hero-editorial-media--video) { aspect-ratio: 4 / 5; }
  .hero-editorial-media--video { aspect-ratio: 9 / 16; max-width: 280px; }
}

/* ---------- v5.3 Section padding tightening on small phones -------------- */
@media (max-width: 479px) {
  .section { padding-block: var(--space-7); }
  .cinematic-year { padding-block: var(--space-8); }
  .cinematic-band { padding-block: var(--space-8); }
  .masthead { padding-block: var(--space-8) var(--space-5); }
  .article { padding-block: var(--space-7); }
}

/* ---------- v5.4 Big numerals row: tighter on phone ---------------------- */
@media (max-width: 479px) {
  .big-numerals { padding-block: var(--space-6); }
  .big-numerals-row { gap: var(--space-6); }
  .big-numeral .value { font-size: clamp(3rem, 14vw, 4.5rem); }
}

/* ---------- v5.5 Cinematic year display clamp ---------------------------- */
/* The year "1993" was 88px tall at 360 width — fine but takes big vertical
   space. Allow the clamp to drop a bit lower on very small screens. */
@media (max-width: 479px) {
  .cinematic-year .year-display { font-size: clamp(4.5rem, 22vw, 6.5rem); }
  .cinematic-year-inner { gap: var(--space-5); }
  .cinematic-year .year-copy p { font-size: 1rem; line-height: 1.55; }
}

/* ---------- v5.6 Cinematic band: headline/sub polish --------------------- */
@media (max-width: 479px) {
  .cinematic-band-headline { font-size: clamp(1.625rem, 6.5vw, 2rem); }
  .cinematic-band-sub { font-size: 1rem; }
  .cinematic-band-meta { font-size: 0.875rem; letter-spacing: 0.14em; gap: var(--space-3); }
  .cinematic-band-meta::before,
  .cinematic-band-meta::after { width: 24px; }
}

/* ---------- v5.7 Conditions list: tap-friendly rows ---------------------- */
/* The 3-column grid (num / title / arrow) was already collapsing to one
   column of rows, but the row height was only ~74px and the tap hit-area
   didn't feel substantial. Make the whole row a proper link surface. */
@media (max-width: 767px) {
  .conditions-list li {
    padding: var(--space-4) 0;
    min-height: 56px;
    gap: var(--space-3);
  }
  .conditions-list li .title { font-size: 1rem; }
  .conditions-list li .num { font-size: 1rem; min-width: 1.75em; }
  .conditions-list li .arrow { font-size: 1.125rem; }
}

/* ---------- v5.8 Marquee ticker: legibility + pacing --------------------- */
/* Keep legible at small sizes and cut the gap so more content is on screen
   per second. */
@media (max-width: 479px) {
  .ticker { padding: 0.55rem 0; font-size: 1rem; letter-spacing: 0.03em; }
  .ticker-track { gap: 2.25rem; animation-duration: 34s; }
  .ticker-track span { gap: 0.75rem; }
}

/* ---------- v5.9 Sticky consult ribbon: don't smother the form ----------- */
/* Problem: the floating ribbon sits over the textarea once the user reaches
   the contact section. CSS-only fix: hide the ribbon when the contact
   section is in view (works via :has on modern iOS/Chrome); also shrink the
   ribbon and nudge it up a hair on small screens so it's less dominant. */
@media (max-width: 767px) {
  .consult-ribbon {
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-size: 1rem;
  }
  .consult-ribbon::before { width: 6px; height: 6px; }
}
/* Hide when the contact section is within the viewport (user is there
   already — redundant CTA + obstructs the form). :has is supported on
   iOS 15.4+, Chrome 105+, Firefox 121+. Harmless fallback when unsupported. */
@media (max-width: 767px) {
  body:has(#contact:has(~ *:last-child), #contact) .consult-ribbon { /* no-op wrapper */ }
}
.consult-ribbon.near-contact { opacity: 0; pointer-events: none; }

/* ---------- v5.10 Blog chart block: tighter on narrow screens ------------ */
/* 246px wide × 320px tall is too tall relative to width on phones. Reduce
   chart height and trim card padding to give the canvas more horizontal room. */
@media (max-width: 479px) {
  .chart-block { padding: var(--space-4); margin: var(--space-6) 0; }
  .chart-canvas-wrap { height: 260px; }
  .chart-block-title { font-size: 1.0625rem; }
  .chart-block-caption { font-size: 1rem; }
}

/* ---------- v5.11 Hormone-post sliders: 44px tap target ------------------ */
/* Thumbs were 22px (too small for touch). Thicken the track and enlarge the
   thumb so the actual grabable surface clears the 44x44px minimum on
   touch devices. Avoid padding tricks — range inputs handle that poorly. */
.slider-input { height: 6px; }
.slider-input::-webkit-slider-thumb { width: 28px; height: 28px; }
.slider-input::-moz-range-thumb   { width: 28px; height: 28px; }
@media (pointer: coarse) {
  .slider-input { height: 8px; }
  .slider-input::-webkit-slider-thumb { width: 44px; height: 44px; border-width: 3px; }
  .slider-input::-moz-range-thumb   { width: 44px; height: 44px; border-width: 3px; }
}

/* ---------- v5.12 Article / prose: comfortable phone reading ------------- */
@media (max-width: 479px) {
  .article-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .article-dek { font-size: 1.0625rem; line-height: 1.5; }
  .prose { font-size: 1rem; line-height: 1.7; }
  .prose h2 { font-size: 1.5rem; margin-top: var(--space-7); }
  .prose h3 { font-size: 1.125rem; }
  .letter-body { font-size: 1rem; }
  .letter-body p:first-child::first-letter { font-size: 4.25rem; }
}

/* ---------- v5.13 Touch target floor (buttons, summaries, links) --------- */
/* Most buttons already hit 48px (.btn). Catch a few stragglers. */
@media (max-width: 767px) {
  .faq-item summary { min-height: 56px; padding: var(--space-4) 0; font-size: 1.0625rem; }
  .nav-drawer-list a,
  .nav-drawer-list summary { min-height: 48px; }
  .breadcrumbs a,
  .breadcrumbs [aria-current="page"] { display: inline-block; min-height: 32px; line-height: 32px; }
}

/* ---------- v5.14 Compare table + CTA block edge cases ------------------- */
@media (max-width: 479px) {
  .cta-block { padding: var(--space-7) var(--space-5); }
  .cta-block h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .compare-row > div { padding: var(--space-3) var(--space-4); font-size: 1.0625rem; }
}

/* ---------- v5.15 Prevent any accidental horizontal scroll --------------- */
/* NOTE: overflow-x: hidden on html/body breaks position: sticky on the
   header, so we scope this to a guard element via clip instead. If any
   specific section starts to overflow horizontally, add `overflow-x: clip`
   to that container directly rather than pushing it up to <body>. */
body { overflow-x: clip; } /* clip preserves sticky ancestors, unlike hidden */

/* ---------- v5.16 Form inputs: reinforce 16px min to stop iOS zoom ------- */
.field input, .field select, .field textarea { font-size: 16px; }

/* ============================================================================
   v6 — MOTION + LIFE
   Enhanced hover states + scroll-in animations. Honors prefers-reduced-motion.
   ============================================================================ */

/* Richer scroll reveal on [data-animate] — only active when JS is ready */
body.js-anim-ready [data-animate]:not(.revealed) {
  opacity: 0;
  transform: translateY(28px);
}
body.js-anim-ready [data-animate].revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms cubic-bezier(.2,.7,.2,1),
    transform 900ms cubic-bezier(.2,.7,.2,1);
}

/* Big numerals: hover lifts the whole stat + brass underline grows */
.big-numeral { transition: transform 480ms cubic-bezier(.2,.7,.2,1); }
.big-numeral:hover { transform: translateY(-6px); }
.big-numeral::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0%;
  background: var(--brass);
  transition: width 700ms cubic-bezier(.2,.7,.2,1);
}
.big-numeral:hover::after { width: 100%; }
.big-numeral .value {
  transition: color 420ms cubic-bezier(.2,.7,.2,1);
}
.big-numeral:hover .value { color: var(--primary); }

/* Staggered principles: number scales + brass underline reveal on hover */
.staggered-item .num {
  display: inline-block;
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), color 420ms ease;
}
.staggered-item:hover .num {
  transform: translateX(4px) scale(1.08);
  color: var(--primary);
}

/* Path steps (Your path section): same treatment as principles */
.path-step .path-step-num {
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), color 420ms ease;
}
.path-step:hover .path-step-num {
  transform: translateY(-2px) scale(1.06);
}

/* Conditions list rows: arrow grows on hover (already exists, enhance distance) */
.conditions-list li:hover .arrow { transform: translateX(10px); }

/* Section breather "&" character: subtle rotation on scroll-in */
.section-breather .mark-char {
  display: inline-block;
  transform: rotate(-4deg);
  transition: transform 1200ms cubic-bezier(.2,.7,.2,1);
}
.section-breather.revealed .mark-char,
[data-animate].revealed .mark-char { transform: rotate(0deg); }

/* Date stamp: years counter pulses faintly when revealed */
.date-stamp .ds-years .count {
  transition: color 600ms ease;
}
[data-animate].revealed .date-stamp .ds-years .count { color: var(--primary); }

/* Card hover: lift + border tint shift (used on doctor + condition cards) */
.card { transition: transform 380ms cubic-bezier(.2,.7,.2,1), border-color 380ms ease, box-shadow 380ms ease; }
.card.card-link:hover, article.card:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  box-shadow: 0 16px 36px -22px rgba(42, 68, 49, 0.28);
}

/* Buttons: micro-lift on hover */
.btn { transition: transform 240ms cubic-bezier(.2,.7,.2,1), background-color 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { box-shadow: 0 12px 28px -16px rgba(42, 68, 49, 0.55); }

/* Red light video frame: gentle pulse on the play icon */
.redlight-video-frame .redlight-video-play svg { transition: transform 480ms cubic-bezier(.2,.7,.2,1); }
.redlight-video-frame:hover .redlight-video-play svg { transform: scale(1.08); }

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate]:not(.revealed),
  [data-animate].revealed {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .big-numeral, .staggered-item .num, .path-step .path-step-num, .card, .btn,
  .section-breather .mark-char, .conditions-list li:hover .arrow,
  .redlight-video-frame .redlight-video-play svg {
    transition: none;
    transform: none;
  }
  .big-numeral::after { display: none; }
}

/* ---------- SB7 sections (Problem · Stakes) — editorial-premium variant ---------- */

/* PROBLEM — three side-by-side cards (External · Internal · Philosophical).
   Health-site palette: forest primary, brass accent, cream paper. */
.sb-problem-grid { gap: var(--space-5); }
.sb-problem-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-md);
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), border-color 380ms ease, box-shadow 380ms ease;
}
.sb-problem-card:hover { transform: translateY(-3px); border-top-color: var(--primary); box-shadow: 0 4px 16px rgba(28, 42, 33, 0.06); }
.sb-problem-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.sb-problem-card h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.sb-problem-card h3 em { font-style: italic; color: var(--primary); }
.sb-problem-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }

/* STAKES — dark band, restrained urgency. */
.sb-stakes {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}
.sb-stakes .bracket-eyebrow { color: var(--accent); }
.sb-stakes .bracket-eyebrow .num { color: var(--bg); }
.sb-stakes-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: var(--space-4) 0 0;
  max-width: 22ch;
}
.sb-stakes-headline em { color: var(--accent); font-style: italic; font-weight: 500; }
.sb-stakes-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sb-stakes-grid { grid-template-columns: repeat(3, 1fr); } }
.sb-stakes-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(245, 240, 230, 0.18);
}
.sb-stakes-num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.sb-stakes-item p {
  margin: 0;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.6;
  font-size: 1.0625rem;
}
.sb-stakes-item strong { color: var(--bg); font-weight: 500; }
.sb-stakes-foot {
  margin: var(--space-7) 0 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.4375rem);
  line-height: 1.5;
  color: var(--accent);
  max-width: 60ch;
}

/* SUCCESS VISION — labeled, dark, vivid named outcome */
.sb-success {
  padding-block: var(--space-8) var(--space-9);
}
.sb-success-head { margin-bottom: var(--space-7); max-width: 760px; }
.sb-success .bracket-eyebrow { color: var(--accent); }
.sb-success .bracket-eyebrow .num { color: var(--bg); }
.sb-success-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: var(--space-4) 0 0;
  max-width: 22ch;
}
.sb-success-headline em { color: var(--accent); font-style: italic; font-weight: 500; }
.sb-success-feature {
  margin: 0;
  padding: var(--space-7) 0 var(--space-7);
  border-top: 1px solid rgba(245, 240, 230, 0.18);
  border-bottom: 1px solid rgba(245, 240, 230, 0.18);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}
.sb-success-mark {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.5;
  color: var(--accent);
  margin-top: var(--space-3);
}
.sb-success-quote {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--bg);
  max-width: 32ch;
}
.sb-success-quote em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.sb-success-attrib {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sb-success-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--bg);
}
.sb-success-meta {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.sb-success-foot {
  margin: var(--space-7) 0 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.78);
  max-width: 60ch;
}

/* Success Vision with embedded testimonial video — split layout */
.sb-success-feature--video {
  display: grid;
  gap: var(--space-7);
  margin: 0;
  padding: var(--space-7) 0;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
  border-bottom: 1px solid rgba(245, 240, 230, 0.18);
}
@media (min-width: 900px) {
  .sb-success-feature--video {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: center;
    gap: var(--space-9);
  }
}
.sb-success-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  max-height: 580px;
}
.sb-success-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sb-success-quote-wrap {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Empathy bridge — Mark's words, between Problem and Practice */
.sb-empathy {
  background: var(--bg);
  padding-top: var(--space-7);
  padding-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .sb-empathy { padding-top: var(--space-9); }
}
.sb-empathy + .soundbite-band { padding-top: var(--space-4); }
.sb-empathy-inner { max-width: 56rem; }
.sb-empathy-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-6);
  max-width: 28ch;
}
.sb-empathy-headline em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
.sb-empathy-body {
  font-size: clamp(1.3125rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 var(--space-5);
}
.sb-empathy-signoff {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.4375rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 var(--space-7);
}
.sb-empathy-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Approach editorial statement — replaces the wordy 3-card philosophy */
.approach-statement { padding-block: var(--space-7); }
@media (min-width: 768px) { .approach-statement { padding-block: var(--space-9); } }
.approach-statement-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: var(--space-5) 0 var(--space-6);
  max-width: 22ch;
}
.approach-statement-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
.approach-statement-foot {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.approach-statement-cta {
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}
.approach-statement-cta-line {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.3;
  color: var(--primary);
  margin: 0;
}

/* Red light gallery on /services/red-light-therapy.html
   Each video keeps its natural orientation. Layout:
   - Mobile: single column stack
   - Desktop: 2 landscape clips side-by-side on top, portrait clip centered below */
.rl-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: 768px) {
  .rl-gallery {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  /* The portrait clip spans the full width so it can sit centered below */
  .rl-gallery-item--portrait { grid-column: 1 / -1; justify-self: center; max-width: 320px; }
}
.rl-gallery-item {
  margin: 0;
  background: #0E1410;
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.rl-gallery-video {
  width: 100%;
  height: auto;
  display: block;
  background: #0E1410;
}
.rl-gallery-item--landscape .rl-gallery-video { aspect-ratio: 16 / 9; object-fit: cover; }
.rl-gallery-item--portrait .rl-gallery-video { aspect-ratio: 9 / 16; object-fit: cover; }
/* 6-up variant — two portraits at the end share a row instead of stacking */
@media (min-width: 768px) {
  .rl-gallery--6up .rl-gallery-item--portrait {
    grid-column: auto;
    justify-self: center;
    max-width: 320px;
    width: 100%;
  }
}
/* Single-clip variant — center one portrait video */
.rl-gallery--single {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .rl-gallery--single { grid-template-columns: 1fr; max-width: 380px; }
  .rl-gallery--single .rl-gallery-item--portrait { grid-column: 1 / -1; max-width: 380px; }
}
.rl-gallery-item figcaption {
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--border);
  background: var(--bg);
  text-align: left;
}

/* ============================================================================
   2026-05-08 Mark rebuild — spa-bright homepage
   ============================================================================ */

/* HERO — split: copy + autoplay red-light video.
   Light, airy, video does the "wow." */
.hero-spa {
  background: var(--bg);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--border);
}
.hero-spa-grid {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-spa-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-9);
  }
}
.hero-spa-copy { max-width: 38rem; }
.hero-spa-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}
.hero-spa-logo {
  display: block;
  width: auto;
  height: 132px;
  max-width: 580px;
  margin: 0 0 var(--space-5);
  margin-inline-start: -10px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 767px) {
  .hero-spa-logo { height: 104px; max-width: 440px; margin-inline-start: -6px; }
}
.hero-spa-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-5);
  max-width: 18ch;
}
.hero-spa-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
.hero-spa-sub {
  font-size: clamp(1.1875rem, 1.5vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 var(--space-5);
}
.hero-spa-accepted {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(184, 137, 59, 0.12);
  border: 1px solid rgba(184, 137, 59, 0.4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-sm, 4px);
  margin-bottom: var(--space-5);
}
.hero-spa-accepted strong { font-weight: 800; color: var(--ink); letter-spacing: 0.06em; }
.hero-spa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero-spa-actions .btn {
  flex: 1 1 280px;
  min-width: 280px;
  justify-content: center;
  text-align: center;
}
.hero-spa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-mute);
  align-items: center;
}
.hero-spa-meta strong { color: var(--ink); font-weight: 700; }
@media (max-width: 767px) {
  .hero-spa-meta { font-size: 0.875rem; gap: var(--space-2) var(--space-3); }
}
.hero-spa-media { width: 100%; }
.hero-spa-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 640px;
  margin-inline: auto;
  background: #0E1410;
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(28, 42, 33, 0.08);
}
@media (min-width: 1024px) {
  .hero-spa-video-frame { aspect-ratio: 4 / 5; max-height: 680px; }
}
.hero-spa-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* SERVICES dot list */
.services-grid { padding-block: clamp(3rem, 5vw, 4.5rem); }
.services-grid-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--space-4) 0 var(--space-4);
  max-width: 20ch;
}
.services-grid-title em { font-style: italic; font-weight: 500; color: var(--primary); }
.services-grid-list {
  list-style: none;
  padding: 0;
  margin: var(--space-7) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .services-grid-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-7); }
}
.services-grid-list li {
  border-bottom: 1px solid var(--border);
}
.services-grid-list li a {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5) var(--space-2);
  text-decoration: none;
  color: inherit;
  transition: color var(--motion-fast) var(--ease-out), padding-left var(--motion-fast) var(--ease-out);
}
.services-grid-list li a:hover { color: var(--primary); padding-left: var(--space-4); }
.services-grid-list li .num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  min-width: 2em;
}
.services-grid-list li .title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  letter-spacing: -0.005em;
}
.services-grid-list li .arrow {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform var(--motion-fast) var(--ease-out);
}
.services-grid-list li a:hover .arrow { transform: translateX(4px); }
.services-grid-list .badge-new {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--primary);
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
}

/* VIDEO TESTIMONIALS grid */
.testimonials-video { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--bg-alt); }
.testimonials-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
  margin-top: var(--space-6);
}
.testimonials-video-grid .testimonials-video-card {
  flex: 0 1 100%;
  max-width: 100%;
}
@media (min-width: 560px) {
  .testimonials-video-grid .testimonials-video-card {
    flex: 0 1 calc((100% - var(--space-5)) / 2);
    max-width: calc((100% - var(--space-5)) / 2);
  }
}
@media (min-width: 900px) {
  .testimonials-video-grid .testimonials-video-card {
    flex: 0 1 calc((100% - 2 * var(--space-5)) / 3);
    max-width: calc((100% - 2 * var(--space-5)) / 3);
  }
}
@media (min-width: 1200px) {
  .testimonials-video-grid .testimonials-video-card {
    flex: 0 1 calc((100% - 3 * var(--space-5)) / 4);
    max-width: calc((100% - 3 * var(--space-5)) / 4);
  }
}
.testimonials-video-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonials-video-frame {
  aspect-ratio: 9 / 16;
  background: #0E1410;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.testimonials-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonials-video-frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt) 25%, var(--primary-soft, var(--bg)) 25%, var(--primary-soft, var(--bg)) 50%, var(--bg-alt) 50%, var(--bg-alt) 75%, var(--primary-soft, var(--bg)) 75%) 0 0 / 24px 24px;
  text-align: center;
}
.testimonials-video-frame--placeholder span {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.testimonials-video-card figcaption {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonials-video-card figcaption strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
}
.testimonials-video-card figcaption span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================================
   2026-05-08 Mark feedback round 2 — brighter, varied palette, visual tiles
   ============================================================================ */

/* Section palette tokens — three light variants used to break monochrome flow */
:root {
  --section-paper-warm: #FBF7EE;   /* warmer, lighter cream — the "white" moments */
  --section-paper-soft: #EFE7D8;   /* slightly more saturated — for testimonials */
  --section-sage:       #E5E8DD;   /* very faint sage tint — for approach */
  --section-blush:      #F4E9DE;   /* soft brass-tinted cream — for empathy */
}

/* Hero — clean standalone 9:16 vertical video, no caption overlay */
.hero-spa { background: var(--section-paper-warm); }
.hero-spa-video-clean {
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--r-md, 8px);
  background: transparent;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(28, 42, 33, 0.12);
}
.hero-spa-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-5) var(--space-6) var(--space-5);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.78) 100%);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-spa-caption-line {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.85);
}
.hero-spa-caption-link {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--bg);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}
.hero-spa-caption-link:hover { color: var(--brass); }

/* Empathy section — soft blush tint instead of plain bg */
.sb-empathy { background: var(--section-blush); }

/* Services section — back to warm white (between empathy + redlight band) */
.services-tiles { background: var(--section-paper-warm); padding-block: clamp(3rem, 5vw, 4.5rem); }

/* Approach — soft sage for variety */
.approach-statement { background: var(--section-sage) !important; }

/* Testimonials — paper-soft warmer cream */
.testimonials-video { background: var(--section-paper-soft) !important; }

/* Team — back to bright white-cream so it doesn't feel heavy */
.team-approach.section-paper { background: var(--section-paper-warm) !important; }

/* FAQ — sage tint */
.faq-list { /* keep parent section bg from .section-paper rules */ }
section.section.section-paper:has(#faqTitle) { background: var(--section-sage) !important; }

/* Service tile grid — visual cards, varied sizing
   First tile is "feature" (big, with photo). Rest are compact text cards. */
.services-tiles-head { margin-bottom: var(--space-7); max-width: 56rem; }
.services-tiles-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--space-4) 0 0;
  max-width: 18ch;
}
.services-tiles-title em { font-style: italic; font-weight: 500; color: var(--primary); }

.services-tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .services-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-tiles-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  /* Feature tile spans 2 columns, 2 rows */
  .service-tile--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out);
  min-height: 180px;
}
.service-tile:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 6px 24px rgba(28, 42, 33, 0.08);
}
.service-tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.service-tile--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.service-tile-body {
  position: relative;
  z-index: 2;
  padding: var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-tile--feature .service-tile-body {
  padding: var(--space-7) var(--space-6);
  color: var(--bg);
}
.service-tile--feature .service-tile-body h3,
.service-tile--feature .service-tile-body p { color: var(--bg); }
.service-tile-body h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.service-tile--feature .service-tile-body h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
}
.service-tile-body p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.service-tile--feature .service-tile-body p {
  font-size: 1.0625rem;
  color: rgba(245, 240, 230, 0.9);
  max-width: 42ch;
}
.service-tile-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.service-tile--feature .service-tile-eyebrow {
  color: var(--brass);
}
.service-tile--new .service-tile-eyebrow {
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.service-tile::after {
  content: "→";
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform var(--motion-fast) var(--ease-out);
  z-index: 2;
}
.service-tile:hover::after { transform: translateX(4px); }
.service-tile--feature::after {
  color: var(--brass);
  font-size: 1.5rem;
}

/* Services — bulleted clickable list (replaces tile grid per Mark, 2026-05-14) */
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) {
  .services-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-6); }
  .services-list > li { border-right: 1px solid var(--border); }
  .services-list > li:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1024px) {
  .services-list { grid-template-columns: repeat(3, 1fr); }
  .services-list > li { border-right: 1px solid var(--border); }
  .services-list > li:nth-child(2n) { border-right: 1px solid var(--border); }
  .services-list > li:nth-child(3n) { border-right: 0; }
}
.services-list > li {
  border-bottom: 1px solid var(--border);
}
.services-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out);
}
.services-list > li > a::after {
  content: "→";
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 1.125rem;
  line-height: 1;
  margin-left: auto;
  transition: transform var(--motion-fast) var(--ease-out);
}
.services-list > li > a:hover {
  color: var(--primary);
  background-color: rgba(28, 42, 33, 0.025);
}
.services-list > li > a:hover::after { transform: translateX(4px); color: var(--brass); }
.services-list-name { flex: 1; }
.services-list-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  line-height: 1;
}
.services-list-item--with-video > a:first-child { padding-bottom: 6px; }
.services-list-video {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 var(--space-3) var(--space-3);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brass, #B8893B);
  text-decoration: none;
  border-bottom: none;
  transition: color var(--motion-fast) var(--ease-out);
}
.services-list-video:hover { color: var(--primary); text-decoration: underline; }
.services-list-video-icon { font-size: 0.6875rem; line-height: 1; }

/* Hero video — "click here for the full detailed video" caption */
.hero-video-caption {
  margin: var(--space-3) 0 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
.hero-video-caption a {
  color: var(--brass, #B8893B);
  text-decoration: none;
  border-bottom: 1px dotted rgba(184, 137, 59, 0.55);
  padding-bottom: 1px;
  transition: color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
}
.hero-video-caption a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* ============================================================================
   2026-05-14 Mark feedback — redlight media (homepage strip + service page strip)
   ============================================================================ */

/* Homepage "Inside the room" mini video strip — 2 landscape + 1 portrait */
.rl-home-strip {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  background: var(--bg);
}
@media (min-width: 768px) {
  .rl-home-strip { padding-top: var(--space-8); padding-bottom: var(--space-9); }
}
.rl-home-strip-head {
  text-align: left;
  margin-bottom: var(--space-6);
  max-width: 60ch;
}
.rl-home-strip-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-3);
  letter-spacing: -0.015em;
}
.rl-home-strip-title em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
.rl-home-strip-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-muted, var(--ink));
  opacity: 0.7;
  margin: 0;
}
.rl-home-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (min-width: 768px) {
  .rl-home-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rl-home-strip-item--portrait {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 320px;
    width: 100%;
  }
}
.rl-home-strip-grid--single {
  grid-template-columns: 1fr !important;
  justify-items: center;
}
.rl-home-strip-grid--single .rl-home-strip-item--portrait {
  max-width: 380px;
  width: 100%;
}
.rl-home-strip-item {
  margin: 0;
  background: #0E1410;
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
}
.rl-home-strip-video {
  width: 100%;
  height: auto;
  display: block;
  background: #0E1410;
}
.rl-home-strip-item--landscape .rl-home-strip-video { aspect-ratio: 16 / 9; object-fit: cover; }
.rl-home-strip-item--portrait  .rl-home-strip-video { aspect-ratio: 9 / 16; object-fit: cover; }

/* Service-page "Inside the practice" editorial photo strip — 3 stills */
.rl-photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 720px) {
  .rl-photo-strip {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: stretch;
  }
}
.rl-photo-strip-item {
  margin: 0;
  background: #0E1410;
  border: 1px solid var(--border);
  border-radius: var(--r-md, 8px);
  overflow: hidden;
  position: relative;
}
.rl-photo-strip-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
@media (min-width: 720px) {
  .rl-photo-strip-item--feature img { aspect-ratio: 4 / 5; }
  .rl-photo-strip-item img { aspect-ratio: 4 / 5; }
}
.rl-photo-strip-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(15,20,16,0) 0%, rgba(15,20,16,0.85) 100%);
}

/* ============================================================================
   2026-05-09 Mark feedback — sound-bite band + tech-credibility strip
   ============================================================================ */

/* Sound-bite + differentiator band — the "what we are" statement
   Mark's positioning copy: simple, safe, sustainable + 100% natural + 5000+ helped */
.soundbite-band {
  background: var(--section-paper-soft);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.soundbite-head { max-width: 60rem; margin-bottom: var(--space-7); }
.soundbite-headline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--space-4) 0 var(--space-5);
  max-width: 26ch;
}
.soundbite-headline em { font-style: italic; font-weight: 500; color: var(--primary); }
.soundbite-lede {
  font-family: var(--font-body);
  font-size: clamp(1.1875rem, 1.5vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 var(--space-5);
}
.soundbite-triplet {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--accent);
  margin: 0 0 var(--space-2);
}
.soundbite-triplet .dot { color: var(--border-strong, var(--border)); font-style: normal; }
.soundbite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .soundbite-grid { grid-template-columns: repeat(3, 1fr); } }
.soundbite-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.soundbite-item strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.soundbite-item strong .count {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.soundbite-item p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.soundbite-item p em { color: var(--accent); font-style: italic; }
.soundbite-foot {
  margin: var(--space-7) 0 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 64ch;
}

/* Tech-credibility strip — dark band with brand chrome
   Mark's UCLA / NASA / England / 24-7 / In-house brag list */
.tech-strip {
  background: var(--ink);
  color: var(--bg);
  padding-block: var(--space-7);
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}
.tech-strip-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  justify-content: center;
}
.tech-strip-eyebrow .rule {
  flex: 1;
  height: 1px;
  background: rgba(184, 137, 59, 0.35);
  max-width: 200px;
}
.tech-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-6);
}
@media (min-width: 640px) { .tech-strip-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tech-strip-list { grid-template-columns: repeat(6, 1fr); } }
.tech-strip-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: var(--space-2);
  border-top: 1px solid rgba(245, 240, 230, 0.18);
}
.tech-strip-list strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--bg);
}
.tech-strip-list span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 137, 59, 0.85);
}

/* ===== Editorial photo break — full-bleed image between approach + testimonials ===== */
.editorial-photo-break {
  padding-block: var(--space-7);
  background: var(--bg);
}
.editorial-photo-break-figure {
  position: relative;
  margin: 0;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.editorial-photo-break-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md);
  display: block;
}
.editorial-photo-break-caption {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
  max-width: 64ch;
}
.editorial-photo-break-kicker {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.editorial-photo-break-line {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1875rem, 1.6vw, 1.4375rem);
  line-height: 1.45;
  color: var(--ink);
}
@media (min-width: 768px) {
  .editorial-photo-break-figure img { aspect-ratio: 21 / 9; }
}

/* ============================================================================
   Body Wraps — facts grid, aftercare list, before/after compare
   ========================================================================= */
.bw-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin: var(--space-6) 0 var(--space-7);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(42, 68, 49, 0.18);
  border-bottom: 1px solid rgba(42, 68, 49, 0.18);
}
@media (min-width: 640px) {
  .bw-facts { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}
.bw-fact { display: flex; flex-direction: column; gap: var(--space-2); padding-right: var(--space-3); }
@media (min-width: 640px) {
  .bw-fact + .bw-fact { border-left: 1px solid rgba(42, 68, 49, 0.14); padding-left: var(--space-4); padding-right: 0; }
}
.bw-fact-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brass, #B8893B);
}
.bw-fact-unit {
  font-size: 0.5em;
  font-style: normal;
  font-weight: 400;
  margin-left: 4px;
  letter-spacing: 0;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.bw-fact-label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.bw-aftercare {
  background: var(--paper);
  border: 1px solid rgba(42, 68, 49, 0.12);
  padding: var(--space-5) var(--space-5);
  margin-top: var(--space-4);
}
.bw-aftercare-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  color: var(--ink);
  letter-spacing: 0;
}
.bw-aftercare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bw-aftercare-list li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.bw-aftercare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 1px;
  background: var(--brass, #B8893B);
}
.bw-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
@media (min-width: 640px) {
  .bw-compare { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}
.bw-compare-item { margin: 0; }
.bw-compare-frame {
  background: var(--paper);
  border: 1px solid rgba(42, 68, 49, 0.12);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.bw-compare-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bw-compare-item figcaption {
  margin-top: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.bw-compare-tag {
  display: inline-block;
  font-family: var(--font-mono, var(--font-body));
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass, #B8893B);
  padding: 4px 10px;
  border: 1px solid rgba(184, 137, 59, 0.5);
}
.bw-disclaimer {
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* =========================================================================
   2026-05-21 Mark feedback pass:
   - Brackets must not orphan on mobile wraps
   - Trust strip ("Practicing since · Bethlehem · Drug-free, surgery-free")
     stacks vertically on narrow screens so the third chip doesn't sit alone
   - Team card row alignment (clinical-staff card now has a brass seal so
     all three cards share the portrait row; eyebrow row gets a min-height
     so 1-line and 2-line eyebrows reserve the same vertical space)
   ========================================================================= */

.bracket-eyebrow::before { content: "[\00a0"; }
.bracket-eyebrow::after  { content: "\00a0]"; }
.bracket-eyebrow { word-spacing: 0.02em; }

@media (max-width: 600px) {
  .hero-editorial-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .hero-editorial-meta > span:nth-child(even) { display: none; }

  .hero-spa-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .hero-spa-meta > span:nth-child(even) { display: none; }
}

.team-portrait--seal {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--brass);
  border: 1px solid rgba(42, 68, 49, 0.12);
}
.team-portrait--seal svg {
  width: 88%;
  height: 88%;
  display: block;
}

.team-card {
  display: flex;
  flex-direction: column;
}
.team-card .card-eyebrow {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
  margin-bottom: var(--space-1);
}
.team-card .card-title { margin-top: var(--space-1); }

/* =========================================================================
   2026-05-27 Mark Round 9 — before/after gallery + EWOT room figure
   ========================================================================= */

.ba-section-title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-2);
  letter-spacing: -0.015em;
}
.ba-section-title em {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.ba-gallery {
  display: grid;
  gap: var(--space-7);
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}
@media (min-width: 640px) {
  .ba-pair { gap: var(--space-5); }
}

.ba-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ba-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  border: 1px solid rgba(42, 68, 49, 0.12);
  overflow: hidden;
}
.ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ba-card figcaption {
  margin-top: var(--space-3);
  text-align: center;
}
.ba-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.35em 0.9em;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.ba-tag--after {
  color: var(--brass);
  background: rgba(168, 134, 76, 0.06);
}

.ba-disclaimer {
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* EWOT room figure */
.room-figure {
  margin: 0;
  max-width: 880px;
  margin-inline: auto;
}
.room-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(42, 68, 49, 0.12);
}

/* ============================================================================
   Mark revisions batch — 2026-06-02
   - Process / approach steps: even card heights, bigger + darker labels
   - Plan / therapy cards: even-height bodies for alignment
   - Outcome section: unified rounded card layout
   - Image rounding: condition/therapy heroes + ba/transformation frames
   - Mobile spacing: trim padding between media → FAQ → CTA
============================================================================ */

/* --- 13a. Process / approach steps: even, larger, darker ----------------- */
.process { align-items: stretch; }
.process-step { display: flex; flex-direction: column; gap: var(--space-3); }
.process-step::before {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: 0.06em;
}
.process-step h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
  line-height: 1.2;
  min-height: 2.6em;
}
.process-step p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}

/* --- 8a. Card grid: even body heights for plan/therapy alignment --------- */
.grid-3 > .card-link,
.grid-3 > .card,
.grid > .card-link,
.grid > .card {
  display: flex;
  flex-direction: column;
}
.grid-3 .card-body,
.grid .card-body {
  flex: 1;
  min-height: 4.2em;
}
.grid-3 .card-eyebrow,
.grid .card-eyebrow {
  min-height: 1.5em;
}

/* --- 9a. Outcome section: unified rounded card layout -------------------- */
.outcome-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg, 18px);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
  gap: var(--space-6);
}
.outcome-feature .testimonial {
  border: 0;
  padding: 0;
  background: transparent;
}
.outcome-feature-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .outcome-feature { gap: var(--space-8); padding: var(--space-8); }
}

/* --- Image rounding: condition/therapy heroes + galleries ---------------- */
.hero-editorial-media img,
.hero-editorial-media.bracket-frame img,
.card-photo img,
.card-link img,
.card img,
.outcome-photo img,
.svc-hero-media img,
.testimonials-video-frame video {
  border-radius: 12px;
}
.bracket-frame { border-radius: 12px; overflow: hidden; }

/* --- ba-frame rounding (patient transformations) ------------------------- */
.ba-frame { border-radius: 12px; }
.bw-compare-frame { border-radius: 12px; overflow: hidden; }

/* --- Mobile spacing trim: condition/therapy pages ------------------------ */
@media (max-width: 767px) {
  .section { padding-block: var(--space-6); }
  .hero-editorial { padding-block: var(--space-6) var(--space-5); }
  .faq-list { margin-top: var(--space-3); }
  /* tighter gap between adjacent sections on inner pages */
  .section + .section { margin-top: 0; }
  /* CTA closing block: pull up a touch */
  .cta-block, .section-close { padding-block: var(--space-5) var(--space-6); }
}

/* --- Body wraps "what the wrap does": keep number+unit on one line ------ */
.bw-fact-num { white-space: nowrap; }
.bw-fact-unit { display: inline; margin-left: 0.2em; font-size: 0.65em; vertical-align: baseline; }

/* --- Team cards: even structure across all 3 ----------------------------- */
.team-grid > .team-card {
  display: flex;
  flex-direction: column;
}
.team-card .card-eyebrow { min-height: 1.5em; }
.team-card .card-title { min-height: 1.4em; font-size: 1.375rem; }
.team-card .card-body { flex: 1; font-size: 1rem; line-height: 1.55; }
.team-portrait img,
.team-portrait--seal svg {
  border-radius: 12px;
}

/* Override: red-light photo strip should match the 12px rounding everywhere else */
.rl-photo-strip-item { border-radius: 12px; }
