/* ============================================
   Bronx Med Spa — Shared Stylesheet
   ============================================ */

:root {
  /* Editorial-cool monochrome — pure white canvas, warm-ink only.
     Legacy accent variables alias to ink-tones so existing component rules
     resolve to monochrome without rewriting them individually. */
  --paper:      #FFFFFF;
  --bone:       #F4F2EE;
  --bone-warm:  #ECE8E0;
  --ink:        #1A1612;
  --ink-soft:   #3A332B;
  --ink-muted:  #807365;
  --ink-faint:  #B8AFA1;

  /* Accent aliases — all resolve to ink-tones. No chromatic color anywhere. */
  --terracotta:      #1A1612;
  --terracotta-deep: #3A332B;
  --sage:            #1A1612;
  --gold:            #B8AFA1;

  --line:       #E5E0D6;
  --line-soft:  #EFEBE2;
  --line-dark:  rgba(26, 22, 18, 0.12);

  --ease:       cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  --container-pad: max(32px, calc((100vw - 1280px) / 2 + 32px));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Switzer', sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--ink);
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 96;
  text-wrap: balance;
}

h3 {
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 36;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h4 {
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 14;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

section[id] { scroll-margin-top: 96px; }
::selection { background: var(--ink); color: var(--paper); }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ============ ANNOUNCE BAR ============ */
.announce {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 50;
}
.announce strong { color: var(--gold); font-weight: 500; }

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  border-bottom: 1px solid var(--line-dark);
  z-index: 40;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  transform: translateY(6px);
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terracotta-deep); color: white; }

.nav-phone {
  color: var(--terracotta);
  font-weight: 500;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; gap: 12px; }
}
.nav-mobile { display: none; }

/* ============ BREADCRUMB ============ */
.crumbs {
  padding: 24px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 10px; opacity: 0.5; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 8px 7px 26px;
  border-radius: 100px;
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px -16px rgba(26, 22, 18, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 44px -18px rgba(26, 22, 18, 0.55);
}
.btn-primary:active { transform: translateY(0) scale(0.985); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease);
  flex-shrink: 0;
}
.btn-primary:hover .btn-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: translate(3px, -1px);
}
.btn-primary .btn-icon svg { display: block; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.55s var(--ease);
}
.btn-secondary:hover { gap: 20px; }
.btn-secondary svg { transition: transform 0.55s var(--ease); }
.btn-secondary:hover svg { transform: translate(3px, -3px); }

/* ============ SECTIONS ============ */
section { padding: 100px 0; position: relative; }

@media (max-width: 768px) {
  section { padding: 72px 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 96;
  line-height: 0.96;
  letter-spacing: -0.036em;
  margin-bottom: 28px;
  max-width: 22ch;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 84, "opsz" 96;
  color: var(--ink);
}

.section-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 56px;
}

/* ============ HERO ============ */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero.compact { padding: 32px 0 0; }

/* Editorial split — content left, image bleeds to viewport right.
   The whole section is NOT inside .container; each side handles its own padding. */
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 64px;
  align-items: end;
  padding-bottom: 88px;
}

.hero-content {
  padding-left: var(--container-pad);
  padding-right: 0;
  padding-top: 24px;
  padding-bottom: 8px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Service-page hero still uses the old grid; keep it working */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-grid.service { grid-template-columns: 1.2fr 1fr; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 56px;
}
.hero-eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 96;
  line-height: 0.9;
  letter-spacing: -0.048em;
  margin-bottom: 56px;
  max-width: 14ch;
  text-wrap: pretty;
  color: var(--ink);
}
.hero-grid.service h1 {
  font-size: clamp(44px, 6vw, 80px);
  margin-bottom: 24px;
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 64;
}

/* Italic-em becomes an opacity fade — no chromatic color */
.hero h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.42;
}

.hero-lede {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 56px;
}
.hero-grid.service .hero-lede { margin-bottom: 32px; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Hero visual — full-bleed image to viewport right edge (home hero only) */
.hero-shell .hero-visual {
  align-self: stretch;
  min-height: 620px;
  height: auto;
  position: relative;
  overflow: hidden;
  background: var(--bone);
  /* break out of grid track to viewport right edge */
  margin-right: calc(-1 * max(32px, calc((100vw - 1280px) / 2)));
}

.hero-shell .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(1.02) brightness(1.01);
}

/* Hero trust stats — editorial row, larger display numerals in Bricolage */
.hero-trust {
  margin-top: 80px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 64px;
  justify-content: start;
  align-items: start;
  max-width: 640px;
}

.trust-stat {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 100, "opsz" 36;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.032em;
  font-feature-settings: 'tnum' 1;
}
.trust-stat em {
  font-style: normal;
  color: var(--ink);
  opacity: 0.42;
}

.trust-label {
  font-family: 'Switzer', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Hero caption strip — editorial 3-col line below hero */
.hero-caption {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  gap: 56px;
  align-items: start;
  padding: 36px 0 96px;
  border-top: 1px solid var(--line);
}

.hero-caption-label {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 8px;
}

.hero-caption-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 92, "opsz" 24;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 58ch;
}

.hero-caption-attr {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-top: 6px;
}
.hero-caption-attr strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}

/* Quick facts (service) */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 32px 0 40px;
  max-width: 520px;
}

.fact {
  background: var(--paper);
  padding: 20px 24px;
}

.fact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.fact-value {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 620px;
}
.hero-grid.service .hero-visual { height: 560px; }

.hero-card {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(26, 24, 21, 0.25);
}

.hero-card-1, .hero-card-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 75%;
}
.hero-grid.service .hero-card-main { width: 80%; height: 78%; }

.hero-card-1 {
  background: #E8E8E5;
}

.hero-card-2, .hero-card-stat {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  background: var(--paper);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
}
.hero-grid.service .hero-card-stat { width: 60%; height: 38%; padding: 28px; }

.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.hero-card-quote {
  font-family: 'Switzer', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-card-attr {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
}

.hero-card-attr strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
}

.stat-big {
  font-family: 'Switzer', sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-big em { font-style: italic; color: var(--terracotta); }

.stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
}

.stat-foot {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}

@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-grid.service { gap: 48px; }
  .hero-visual { height: 480px; }
  .hero-grid.service .hero-visual { height: 460px; }
  .hero { padding: 48px 0 0; }
  .hero.compact { padding: 24px 0 0; }
  .hero-shell { grid-template-columns: 1fr; gap: 56px; padding-bottom: 64px; }
  .hero-content { padding-left: max(20px, var(--container-pad)); padding-right: max(20px, var(--container-pad)); }
  .hero-shell .hero-visual { min-height: 440px; margin-right: 0; }
  .hero h1 { font-size: clamp(48px, 10vw, 76px); max-width: none; margin-bottom: 40px; }
  .hero-eyebrow { margin-bottom: 36px; }
  .hero-lede { margin-bottom: 40px; max-width: none; }
  .hero-trust { margin-top: 56px; padding-top: 32px; gap: 40px; }
  .hero-caption { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 72px; }
  .hero-caption-label { padding-top: 0; }
}

@media (max-width: 600px) {
  .hero-shell { gap: 40px; }
  .hero-shell .hero-visual { min-height: 360px; }
  .hero h1 { font-size: clamp(44px, 11vw, 60px); margin-bottom: 32px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 28px 32px; max-width: 100%; }
  .hero-trust > div:nth-child(3) { grid-column: span 2; }
  .trust-stat { font-size: 26px; }
}

/* ============ CREDIBILITY (was marquee) ============ */
.credibility {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.credibility-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 56px max(32px, calc((100vw - 1280px) / 2 + 32px));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  animation: none;
  white-space: normal;
  align-items: center;
}

.cred-item {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--paper);
  line-height: 1.4;
  display: block;
  gap: 0;
  padding: 0 24px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
.cred-item:last-child { padding-right: 0; }

.cred-item::after { content: none; }

@media (max-width: 880px) {
  .credibility-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    padding: 40px max(20px, calc((100vw - 1280px) / 2 + 20px));
  }
  .cred-item { padding: 0; max-width: none; }
}

@media (max-width: 480px) {
  .credibility-track {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px;
  }
}

/* ============ SERVICES BENTO (home) ============ */
.services {
  background: var(--paper);
  padding: 128px 0 144px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 32px;
  row-gap: 48px;
  border: none;
  margin-top: 8px;
}

/* Anchor card — Botox spans cols 1-2, rows 1-2 */
.services-grid .service-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: 56px 52px;
  min-height: 100%;
}

.service-card {
  background: var(--bone);
  border: none;
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease);
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.service-card:hover { transform: translateY(-2px); }

/* Hairline scale-in on hover */
.service-card::after {
  content: '';
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.service-card:hover::after { transform: scaleX(1); }
.services-grid .service-card:first-child::after { left: 52px; right: 52px; }

.service-card:hover .service-arrow { transform: translate(4px, -4px); }

.service-num {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.service-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 36;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 4px;
}
.service-name em {
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 95, "opsz" 36;
  color: var(--ink);
}

/* Anchor card type — 40-48px, more breathing room */
.services-grid .service-card:first-child .service-name {
  font-size: clamp(40px, 4.2vw, 48px);
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 64;
  line-height: 0.98;
  letter-spacing: -0.034em;
  max-width: 14ch;
  margin-top: 8px;
}
.services-grid .service-card:first-child .service-name em {
  font-variation-settings: "wght" 400, "wdth" 95, "opsz" 64;
}

.service-desc {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex-grow: 1;
}
.services-grid .service-card:first-child .service-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
  margin-top: 8px;
}

.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Anchor card: price tag moves to top-right, no border-top on foot */
.services-grid .service-card:first-child .service-tag {
  position: absolute;
  top: 56px;
  right: 52px;
  margin: 0;
}
.services-grid .service-card:first-child .service-foot {
  border-top: none;
  padding-top: 24px;
  justify-content: flex-end;
}

.service-tag {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.service-arrow {
  color: var(--ink);
  transition: transform 0.55s var(--ease);
}

@media (max-width: 968px) {
  .services { padding: 88px 0 96px; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    row-gap: 24px;
    column-gap: 20px;
  }
  .services-grid .service-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    padding: 44px 36px;
    min-height: 320px;
  }
  .services-grid .service-card:first-child::after { left: 36px; right: 36px; }
  .services-grid .service-card:first-child .service-tag { top: 44px; right: 36px; }
  .service-card { padding: 32px 28px; min-height: 240px; }
  .service-card::after { left: 28px; right: 28px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; row-gap: 16px; }
  .services-grid .service-card:first-child {
    grid-column: 1;
    padding: 36px 28px;
    min-height: 280px;
  }
  .services-grid .service-card:first-child::after { left: 28px; right: 28px; }
  .services-grid .service-card:first-child .service-tag {
    position: static;
    top: auto;
    right: auto;
  }
  .services-grid .service-card:first-child .service-foot {
    border-top: 1px solid var(--line);
    justify-content: space-between;
  }
}

/* ============ WHY US ============ */
.why {
  background: var(--paper);
  padding: 128px 0 144px;
  overflow: hidden;
}

.why .section-title {
  margin-bottom: 88px;
  max-width: 18ch;
}

.why-row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 144px;
}
.why-row:last-child { margin-bottom: 0; }

.why-row > :first-child { grid-column: 1; }
.why-row > .why-visual {
  grid-column: 2;
  margin-right: calc(-1 * max(32px, calc((100vw - 1280px) / 2)));
}

.why-row.reverse {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  direction: ltr;
}
.why-row.reverse > * { direction: ltr; }
.why-row.reverse > :first-child { grid-column: 2; }
.why-row.reverse > .why-visual {
  grid-column: 1;
  margin-right: 0;
  margin-left: calc(-1 * max(32px, calc((100vw - 1280px) / 2)));
}

.why-num {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.why-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 64;
  line-height: 0.98;
  letter-spacing: -0.034em;
  margin-bottom: 28px;
  color: var(--ink);
  max-width: 14ch;
}
.why-title em {
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 95, "opsz" 64;
  color: var(--ink);
}

.why-text {
  font-family: 'Switzer', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}

.why-visual {
  background: var(--bone);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: none;
}

/* Aspect ratio variation per row — subtle */
.visual-1 { background: var(--bone); aspect-ratio: 5 / 6; }
.visual-2 { background: var(--bone); aspect-ratio: 4 / 5; }
.visual-3 { background: var(--bone); aspect-ratio: 6 / 7; }

.visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 72px 56px;
  background: none;
}

.visual-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 95, "opsz" 36;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 18ch;
  display: block;
  position: relative;
  padding-top: 36px;
  text-wrap: balance;
}
.visual-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: rgba(26, 22, 18, 0.22);
}

@media (max-width: 968px) {
  .why { padding: 80px 0 96px; }
  .why .section-title { margin-bottom: 56px; max-width: none; }
  .why-row,
  .why-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
  }
  .why-row > :first-child,
  .why-row > .why-visual,
  .why-row.reverse > :first-child,
  .why-row.reverse > .why-visual {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
  }
  .visual-1, .visual-2, .visual-3 {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }
  .why-title { font-size: clamp(36px, 6vw, 48px); max-width: none; }
  .visual-overlay { padding: 48px 40px; }
  .visual-tag { font-size: clamp(22px, 3vw, 28px); max-width: 22ch; }
}

@media (max-width: 600px) {
  .why-text { font-size: 16px; max-width: none; }
  .visual-overlay { padding: 36px 28px; }
  .visual-tag { font-size: 22px; padding-top: 28px; }
  .visual-tag::before { width: 40px; }
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--paper);
  padding: 128px 0 144px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 96px;
  flex-wrap: wrap;
  gap: 32px;
}

.reviews-head .section-title {
  margin-bottom: 0;
  max-width: 18ch;
}

.reviews-rating {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  min-width: 180px;
}

/* SVG star — used in stars row and review-stars */
.star {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
  color: var(--ink);
  vertical-align: baseline;
}

.stars {
  display: inline-flex;
  gap: 6px;
  color: var(--ink);
  line-height: 1;
  font-size: 0;
  letter-spacing: 0;
}
.stars .star { width: 16px; height: 16px; }

.rating-num {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  line-height: 1.4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}

.review-card {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.review-card::before { content: none; }

.review-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  gap: 36px;
  padding-right: 16px;
}

.reviews-grid > .review-card:nth-child(3) {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.review-stars {
  display: inline-flex;
  gap: 5px;
  color: var(--ink);
  line-height: 1;
  font-size: 0;
  letter-spacing: 0;
}
.review-featured .review-stars .star {
  width: 16px;
  height: 16px;
}

.review-text {
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: none;
  text-wrap: pretty;
}

.review-featured .review-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-variation-settings: "wght" 400, "wdth" 92, "opsz" 60;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.024em;
  color: var(--ink);
  max-width: 18ch;
  font-style: normal;
  hanging-punctuation: first;
}

.review-attr {
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.review-featured .review-attr {
  padding-top: 24px;
}

.review-name {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-featured .review-name { font-size: 14px; }

.review-service {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 968px) {
  .reviews { padding: 80px 0 96px; }
  .reviews-head { margin-bottom: 56px; align-items: flex-start; }
  .reviews-rating {
    text-align: left;
    align-items: flex-start;
    min-width: 0;
  }
  .reviews-head .section-title { max-width: none; }

  .reviews-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
  }
  .review-featured {
    grid-column: 1;
    grid-row: auto;
    padding-right: 0;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
  }
  .reviews-grid > .review-card:nth-child(3) {
    margin-top: 40px;
    padding-top: 40px;
  }
  .review-featured .review-text { max-width: none; }
}

@media (max-width: 600px) {
  .review-featured .review-text { font-size: clamp(26px, 7vw, 32px); }
}

/* Featured single review */
.review-feature { background: var(--paper); }
.review-feature.dark { background: var(--bone); }

.review-feature-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.review-feature-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 32px;
}

.review-feature-text {
  font-family: 'Switzer', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 32px;
}

.review-feature-attr {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.review-feature-attr strong {
  color: var(--ink);
  font-weight: 500;
}

/* ============ NEIGHBORHOODS LIST (home) ============ */
.neighborhoods {
  background: var(--ink);
  color: var(--paper);
  padding: 128px 0 144px;
}

.neighborhoods .section-title {
  color: var(--paper);
  font-size: clamp(48px, 6vw, 88px);
  max-width: 14ch;
}
.neighborhoods .section-title em { color: var(--paper); }
.neighborhoods .section-lede {
  color: rgba(255, 255, 255, 0.7);
  max-width: 56ch;
  margin-bottom: 96px;
}
.neighborhoods .section-eyebrow { color: rgba(255, 255, 255, 0.55); }
.neighborhoods .section-eyebrow::before { background: rgba(255, 255, 255, 0.55); }

.hood-list { border-top: 1px solid rgba(255, 255, 255, 0.16); }

.hood-row {
  display: grid;
  grid-template-columns: 80px 1fr 2.4fr auto;
  gap: 56px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease);
  cursor: pointer;
  position: relative;
}

.hood-row:hover {
  transform: translateY(-2px);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.hood-row:hover .hood-arrow { transform: translateX(8px); }

.hood-num {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hood-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 60;
  line-height: 1;
  letter-spacing: -0.032em;
  color: var(--paper);
}

.hood-desc {
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.hood-arrow {
  color: var(--paper);
  transition: transform 0.55s var(--ease);
}

@media (max-width: 968px) {
  .neighborhoods { padding: 80px 0 96px; }
  .neighborhoods .section-lede { margin-bottom: 56px; }
  .hood-row {
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    padding: 32px 0;
  }
  .hood-desc { display: none; }
  .hood-name { font-size: clamp(28px, 5vw, 36px); }
}

/* ============ FINANCING — compressed editorial moment ============ */
.financing {
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.financing > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 64px;
  align-items: start;
}

.financing-head { display: block; }
.financing-body { display: block; }

.financing-eyebrow {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.financing-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ink);
}

.financing h2 {
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 36;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0;
  max-width: 14ch;
}
.financing h2 em {
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 84, "opsz" 36;
  color: var(--ink);
}

.financing-lede {
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 20px;
}

.financing-logos {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  font-family: 'Switzer', sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.financing-logos span {
  padding: 0;
  border: none;
  border-radius: 0;
  display: inline-block;
}
.financing-logos span + span {
  position: relative;
  padding-left: 22px;
  margin-left: 18px;
}
.financing-logos span + span::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-muted);
  opacity: 0.5;
  font-size: 14px;
}

@media (max-width: 768px) {
  .financing { padding: 40px 0; }
  .financing > .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .financing h2 { max-width: none; }
}

/* ============ FAQ — static side-by-side list ============ */
.faq {
  background: var(--paper);
  padding: 128px 0 144px;
}
.faq.dark { background: var(--bone); }

.faq-header {
  margin-bottom: 80px;
  max-width: 720px;
}

.faq .section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 0;
  max-width: 16ch;
}

.faq-description {
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 56ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 64px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  align-items: start;
}

.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 28;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
  display: block;
  gap: 0;
}

.faq-toggle { display: none; }

.faq-a {
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
  max-height: none;
  overflow: visible;
  padding: 0;
  margin: 0;
}

@media (max-width: 880px) {
  .faq { padding: 80px 0 96px; }
  .faq-header { margin-bottom: 56px; }
  .faq-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .faq-q { font-size: clamp(20px, 4vw, 24px); max-width: none; }
}

/* ============ OVERVIEW (service) ============ */
.overview { background: var(--paper); }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) {
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
}

.overview-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.overview-body p { margin-bottom: 20px; }
.overview-body p:last-child { margin-bottom: 0; }
.overview-body strong { color: var(--ink); font-weight: 500; }

.treats-card, .meds-card {
  background: var(--bone);
  padding: 40px;
  border: 1px solid var(--line);
}

.treats-title, .meds-title {
  font-family: 'Switzer', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.treats-title { margin-bottom: 24px; }
.treats-title em, .meds-title em { font-style: italic; }

.meds-sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.treats-list, .meds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.treats-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.treats-list li:first-child { border-top: none; padding-top: 0; }
.treats-list li:last-child { padding-bottom: 0; }

.meds-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.meds-list li:first-child { border-top: none; padding-top: 0; }
.meds-list li:last-child { padding-bottom: 0; }

.treat-name { color: var(--ink); }
.treat-area {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.med-name {
  font-family: 'Switzer', sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.med-name em { font-style: italic; color: var(--terracotta); }

.med-detail {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ============ VISIT/JOURNEY ============ */
.visit { background: var(--bone); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.visit-grid.five { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .visit-grid, .visit-grid.five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .visit-grid, .visit-grid.five { grid-template-columns: 1fr; }
}

.visit-step {
  background: var(--paper);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.visit-grid.five .visit-step { padding: 36px 28px; }

.visit-num {
  font-family: 'Switzer', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  margin-bottom: 32px;
}

.visit-title {
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.visit-grid.five .visit-title { font-size: 20px; }
.visit-title em { font-style: italic; }

.visit-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.visit-time {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

/* ============ PRICING ============ */
.pricing { background: var(--paper); }

.pricing-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 880px) {
  .pricing-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}

.price-display {
  border-right: 1px solid var(--line);
  padding-right: 64px;
}
@media (max-width: 880px) {
  .price-display { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 32px; }
}

.price-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.price-range {
  font-family: 'Switzer', sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.price-range em { font-style: italic; color: var(--terracotta); }

.price-unit {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.price-typical {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.price-typical strong { color: var(--ink); font-weight: 500; }

.price-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.detail-row:last-child { border-bottom: none; }

.detail-label { color: var(--ink-soft); }
.detail-value { color: var(--ink); font-weight: 500; text-align: right; }

.pricing-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--paper);
  border-left: 3px solid var(--terracotta);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pricing-note.bone { background: var(--bone); }
.pricing-note strong { color: var(--ink); }

/* Program cards (weight loss) */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 880px) {
  .program-grid { grid-template-columns: 1fr; }
}

.program-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.program-card.featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.program-card.featured h3,
.program-card.featured .program-price,
.program-card.featured .program-price em {
  color: var(--bone);
}
.program-card.featured .program-price em { color: var(--gold); }

.program-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--terracotta);
  color: var(--paper);
  border-radius: 100px;
}

.program-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.program-card.featured .program-label { color: rgba(244, 240, 234, 0.6); }

.program-name {
  font-family: 'Switzer', sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.05;
}
.program-name em { font-style: italic; }

.program-sub {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.program-card.featured .program-sub {
  color: rgba(244, 240, 234, 0.7);
  border-color: rgba(244, 240, 234, 0.15);
}

.program-price {
  font-family: 'Switzer', sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.program-price em {
  font-size: 18px;
  font-style: italic;
  color: var(--ink-muted);
  font-weight: 400;
}

.program-cadence {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.program-card.featured .program-cadence { color: rgba(244, 240, 234, 0.6); }

.program-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}
.program-card.featured .program-features { color: rgba(244, 240, 234, 0.85); }

.program-features li {
  padding-left: 24px;
  position: relative;
}
.program-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 500;
}
.program-card.featured .program-features li::before { color: var(--gold); }

.program-note {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.program-card.featured .program-note {
  color: rgba(244, 240, 234, 0.6);
  border-color: rgba(244, 240, 234, 0.15);
}

/* ============ COMPLIANCE ============ */
.compliance { background: var(--bone); }

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) {
  .compliance-grid { grid-template-columns: 1fr; gap: 40px; }
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.compliance-item {
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
}

.compliance-item h4 {
  font-family: 'Switzer', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.compliance-item h4 em { font-style: italic; }

.compliance-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ CANDIDATE ============ */
.candidate { background: var(--bone); }
.candidate.light { background: var(--paper); }

.candidate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .candidate-grid { grid-template-columns: 1fr; }
}

.candidate-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
}
.candidate.light .candidate-card { background: var(--bone); }

.candidate-card.good { border-top: 3px solid var(--sage); }
.candidate-card.not { border-top: 3px solid var(--terracotta); }

.candidate-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.candidate-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--paper);
}
.candidate-mark.yes { background: var(--sage); }
.candidate-mark.no { background: var(--terracotta); }

.candidate-title {
  font-family: 'Switzer', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.candidate-title em { font-style: italic; }

.candidate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.candidate-list li {
  padding-left: 24px;
  position: relative;
}
.candidate-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: 'Switzer', sans-serif;
  font-style: italic;
}
.candidate-card.good .candidate-list li::before {
  content: '✓';
  color: var(--sage);
  font-style: normal;
}
.candidate-card.not .candidate-list li::before {
  content: '—';
  color: var(--terracotta);
}

/* ============ QUALIFIER FORM ============ */
.qualifier {
  background: var(--bone-warm);
  position: relative;
  overflow: hidden;
  padding: 128px 0 144px;
}

.qualifier-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: start;
}

.qualifier-intro h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 60;
  line-height: 1;
  letter-spacing: -0.034em;
  margin-bottom: 28px;
  max-width: 12ch;
  color: var(--ink);
}
.qualifier-intro h2 em {
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 84, "opsz" 60;
  color: var(--ink);
}

.qualifier-intro-text {
  font-family: 'Switzer', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 50ch;
}

.qualifier-promise {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-item {
  display: flex;
  gap: 16px;
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.promise-item strong { color: var(--ink); font-weight: 600; }

.promise-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.qual-form {
  background: var(--paper);
  border: none;
  border-radius: 4px;
  padding: 48px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 24px 48px -28px rgba(26, 22, 18, 0.14),
    0 8px 16px -10px rgba(26, 22, 18, 0.06);
}

@media (max-width: 600px) {
  .qual-form { padding: 36px 24px; }
}

.qual-step { display: none; }
.qual-step.active {
  display: block;
  animation: fadeIn 0.4s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.progress-bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background 0.45s var(--ease);
}
.progress-bar.done { background: var(--ink); }

.step-label,
.step-sub-label {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.option-grid + .step-sub-label { margin-top: 24px; }

.step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 36;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 36px;
  color: var(--ink);
  max-width: 18ch;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .option-grid { grid-template-columns: 1fr; }
}

.option {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 22px;
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  border-radius: 4px;
  letter-spacing: -0.005em;
}
.option:hover {
  border-color: var(--ink);
  background: var(--bone);
}
.option.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.option small {
  font-size: 11px;
  color: var(--ink-muted);
  display: block;
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.option.selected small { color: rgba(255, 255, 255, 0.65); }
.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.field label .label-aside {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.7;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: 'Switzer', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.35s var(--ease);
  letter-spacing: -0.005em;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.field textarea { min-height: 100px; resize: vertical; }

.qual-consent {
  font-family: 'Switzer', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 4px 0 24px;
  letter-spacing: -0.001em;
  max-width: 60ch;
}

.step-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.step-back {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.35s var(--ease);
  letter-spacing: -0.005em;
}
.step-back:hover { color: var(--ink); }

.step-next {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.005em;
  box-shadow: 0 12px 24px -16px rgba(26, 22, 18, 0.4);
}
.step-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px -16px rgba(26, 22, 18, 0.5);
}
.step-next:disabled { opacity: 0.32; cursor: not-allowed; }

.qual-success {
  text-align: center;
  padding: 48px 20px;
}

.qual-success-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 26px;
}

.qual-success h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 44;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  color: var(--ink);
}

.qual-success p {
  font-family: 'Switzer', sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .qualifier { padding: 80px 0 96px; }
  .qualifier-grid { grid-template-columns: 1fr; gap: 48px; }
  .qualifier-intro h2 { max-width: none; }
}

/* ============ RELATED ============ */
.related {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 880px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  background: var(--paper);
  padding: 40px 32px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}
.related-card:hover { background: var(--bone); }
.related-card:hover .related-arrow {
  transform: translate(4px, -4px);
  color: var(--terracotta);
}

.related-num {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-muted);
}

.related-name {
  font-family: 'Switzer', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}
.related-name em { font-style: italic; }

.related-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex-grow: 1;
}

.related-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.related-arrow {
  color: var(--ink);
  transition: all 0.3s;
}

/* ============ NEIGHBORHOOD PAGE SPECIFIC ============ */
.hood-hero {
  padding: 80px 0 60px;
  background: var(--paper);
}

.hood-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}

@media (max-width: 768px) {
  .hood-services-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hood-services-list { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 96px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 36;
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-tag {
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-phone {
  display: inline-block;
  color: var(--paper);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wght" 500, "wdth" 95, "opsz" 24;
  font-size: 24px;
  letter-spacing: -0.02em;
  transition: opacity 0.35s var(--ease);
}
.footer-phone:hover { opacity: 0.75; }

.footer-col-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.35s var(--ease);
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  font-family: 'Switzer', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.legal { max-width: 640px; }

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.35s var(--ease);
}
.footer-legal-links a:hover { color: var(--paper); }

/* ============ THANKS PAGE ============ */
.thanks-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.thanks-inner {
  max-width: 560px;
  text-align: center;
}

.thanks-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 32px;
}

.thanks-inner h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 24px;
}
.thanks-inner h1 em { font-style: italic; color: var(--terracotta); }

.thanks-inner p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.thanks-actions {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BLOG — Article & Index ============ */

/* Article header */
.article-header {
  padding: 56px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.article-category {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--terracotta);
  padding: 5px 12px;
  border-radius: 100px;
}

.article-date {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.article-read-time {
  font-size: 13px;
  color: var(--ink-muted);
}

.article-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.02;
  max-width: 900px;
  margin-bottom: 24px;
}
.article-header h1 em { font-style: italic; color: var(--terracotta); }

.article-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Switzer', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.byline-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.byline-text strong { color: var(--ink); font-weight: 500; display: block; }

/* Article body */
.article-body {
  padding: 72px 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { order: -1; }
}

/* Prose content */
.article-prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 680px;
}

.article-prose h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
  margin: 56px 0 20px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.article-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-prose h2 em { font-style: italic; color: var(--terracotta); }

.article-prose h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 16px;
}
.article-prose h3 em { font-style: italic; }

.article-prose p { margin-bottom: 24px; }
.article-prose p:last-child { margin-bottom: 0; }

.article-prose strong { color: var(--ink); font-weight: 500; }

.article-prose a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(168, 82, 58, 0.3);
  transition: text-decoration-color 0.2s;
}
.article-prose a:hover { text-decoration-color: var(--terracotta); }

.article-prose ul, .article-prose ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-prose li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.article-prose blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--bone);
  border-left: 3px solid var(--terracotta);
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.article-prose .callout {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
}

.article-prose .callout-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  font-family: 'Switzer', sans-serif;
  font-style: normal;
}

.article-prose .callout p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0;
  font-family: 'Switzer', sans-serif;
  font-style: normal;
}

/* Comparison table */
.article-prose .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}

.compare-table th {
  background: var(--ink);
  color: var(--bone);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.compare-table tr:nth-child(even) td { background: var(--bone); }
.compare-table td:first-child { font-weight: 500; color: var(--ink); }

/* Key number callout */
.article-prose .stat-pull {
  margin: 40px 0;
  padding: 32px 40px;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-pull-num {
  font-family: 'Switzer', sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  white-space: nowrap;
}

.stat-pull-label {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(244, 240, 234, 0.85);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 32px;
}

.sidebar-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}
.sidebar-card h3 em { font-style: italic; }

.sidebar-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.sidebar-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-toc li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s;
}
.sidebar-toc li:last-child a { border-bottom: none; }
.sidebar-toc li a:hover { color: var(--terracotta); }

/* Article footer */
.article-footer-cta {
  background: var(--bone-warm);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

/* Blog index page */
.blog-index { padding: 80px 0; }

.blog-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}

.blog-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin-bottom: 20px;
}
.blog-hero h1 em { font-style: italic; color: var(--terracotta); }

.blog-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 600px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--paper);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--bone); }
.blog-card:hover .blog-card-arrow { transform: translate(4px, -4px); color: var(--terracotta); }

.blog-card-category {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.blog-card-title {
  font-family: 'Switzer', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
.blog-card-title em { font-style: italic; }

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex-grow: 1;
}

.blog-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-muted);
}

.blog-card-arrow {
  color: var(--ink);
  transition: all 0.3s;
}
