/* =================================================================
   Triumph Ortho & Spine — Website Design System
   Brand tokens from official identity guide
   ================================================================= */

:root {
  /* === Color tokens (from brand identity guide) === */
  --color-navy: #071B3A;       /* Deep Navy — primary brand */
  --color-navy-90: rgba(7, 27, 58, 0.92);
  --color-navy-light: #0F2A52;
  --color-royal: #0D3B73;      /* Royal Blue */
  --color-royal-light: #1E5A92;
  --color-gold: #C9A24A;       /* Antique Gold */
  --color-gold-light: #DDBC72;
  --color-gold-dim: #A0822F;
  --color-ivory: #F4F1E8;      /* Ivory — primary light bg */
  --color-ivory-warm: #FAF7EE;
  --color-slate: #5F6B7A;      /* Slate Gray — body text on light */
  --color-slate-dark: #3F4955;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #DDD9CF;

  /* === Type scale === */
  --font-serif: 'Cinzel', 'Trajan Pro', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.5rem;      /* 24px */
  --fs-2xl: 1.875rem;   /* 30px */
  --fs-3xl: 2.25rem;    /* 36px */
  --fs-4xl: 3rem;       /* 48px */
  --fs-5xl: 3.75rem;    /* 60px */
  --fs-6xl: 4.5rem;     /* 72px */

  /* === Spacing === */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 5rem;
  --sp-16: 7rem;
  --sp-20: 9rem;

  /* === Layout === */
  --max-content: 1200px;
  --max-prose: 720px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* === Effects === */
  --shadow-sm: 0 2px 8px rgba(7, 27, 58, 0.08);
  --shadow-md: 0 6px 20px rgba(7, 27, 58, 0.12);
  --shadow-lg: 0 16px 40px rgba(7, 27, 58, 0.18);
  --shadow-gold: 0 0 24px rgba(201, 162, 74, 0.25);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =================================================================
   Reset + base
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-slate-dark);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-royal); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--color-gold-dim); }
a:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 2px; }

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 var(--sp-4) 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw + 1rem, var(--fs-5xl)); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--sp-4) 0; }
.lead {
  font-size: var(--fs-md);
  color: var(--color-slate);
  line-height: 1.7;
  max-width: 60ch;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -10000px;
  top: var(--sp-2);
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: var(--sp-2); }

/* Container */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* =================================================================
   Utility components
   ================================================================= */

/* Gold rule (brand element) */
.gold-rule {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--color-gold);
}
.gold-rule__diamond {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}
.gold-rule--center {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* =================================================================
   Top utility bar
   ================================================================= */
.utility-bar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 162, 74, 0.18);
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  max-width: var(--max-content);
  margin: 0 auto;
}
.utility-bar a { color: rgba(255, 255, 255, 0.85); }
.utility-bar a:hover { color: var(--color-gold); }
.utility-bar__left, .utility-bar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.utility-bar__item { display: inline-flex; align-items: center; gap: var(--sp-2); }
.utility-bar__icon { width: 14px; height: 14px; color: var(--color-gold); }
@media (max-width: 720px) {
  .utility-bar__left .utility-bar__item:not(:first-child),
  .utility-bar__right { display: none; }
}

/* =================================================================
   Header / nav
   ================================================================= */
.site-header {
  background: var(--color-navy);
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  max-width: var(--max-content);
  margin: 0 auto;
  gap: var(--sp-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  height: 92px;
  width: auto;
  /* The primary lockup SVG ships with a navy background — sits cleanly in the navy header */
  display: block;
}
@media (max-width: 960px) {
  .brand__logo { height: 72px; }
}
@media (max-width: 640px) {
  .brand__logo { height: 56px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.main-nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-2) 0;
  position: relative;
}
.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease);
}
.main-nav__link:hover, .main-nav__link[aria-current="page"] {
  color: var(--color-gold);
}
.main-nav__link:hover::after, .main-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
}
.nav-toggle__bars {
  width: 22px;
  height: 16px;
  position: relative;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 85vw);
    background: var(--color-navy);
    border-left: 1px solid var(--color-gold);
    padding: var(--sp-10) var(--sp-6);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav__list { flex-direction: column; align-items: stretch; gap: var(--sp-4); }
  .main-nav__link { font-size: var(--fs-base); padding: var(--sp-3) 0; }
  .main-nav .btn { width: 100%; margin-top: var(--sp-4); }
}

/* =================================================================
   Hero — seamless, continuous with the homepage
   The Spartan image is positioned to the right, on the same navy bg
   that flows out into the page (no card border, no rounded edge).
   A left-to-right gradient mask keeps the headline area dark for
   contrast while letting the figure emerge naturally on the right.
   ================================================================= */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--color-white);
  /* Navy base — same color used elsewhere on the page so it bleeds into the next section */
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 162, 74, 0.18), transparent 55%),
    linear-gradient(125deg, var(--color-navy) 0%, var(--color-navy-light) 55%, var(--color-royal) 100%);
  overflow: hidden;
  padding: var(--sp-12) 0 var(--sp-12);
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* The Spartan figure — a real <img> element so it always renders.
   Sized to bleed off the right edge so it feels continuous with the navy. */
.hero__spartan {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 58%;
  max-width: 780px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  /* Soften the left edge of the figure so it dissolves into the hero bg.
     Both -webkit- and standard for cross-browser support; degrades to
     fully-visible image if mask isn't supported. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 15%, #000 35%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 15%, #000 35%, #000 100%);
}

/* Left-to-right scrim — guarantees text contrast over any part of the figure
   that drifts into the headline column. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-navy) 0%,
    var(--color-navy) 28%,
    rgba(7, 27, 58, 0.85) 48%,
    rgba(7, 27, 58, 0.35) 70%,
    rgba(7, 27, 58, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Subtle gold accent at the bottom — keeps brand continuity without
   a hard divider line. */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 74, 0.35) 30%,
    rgba(201, 162, 74, 0.75) 50%,
    rgba(201, 162, 74, 0.35) 70%,
    transparent 100%
  );
  z-index: 3;
}

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  width: 100%;
}
.hero__content {
  max-width: 560px;
}

.hero h1 {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw + 1rem, var(--fs-5xl));
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-5);
}
.hero h1 .accent { color: var(--color-gold); display: block; font-style: italic; font-weight: 600; }
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--color-gold-light);
  margin: var(--sp-5) 0 var(--sp-6);
  line-height: 1.4;
}
.hero__intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  line-height: 1.7;
  margin-bottom: var(--sp-7);
  max-width: 50ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Mobile / tablet: pull the figure back, give the text room.
   On the narrowest screens, the figure becomes a faint backdrop. */
@media (max-width: 960px) {
  .hero { min-height: 560px; padding: var(--sp-10) 0; }
  .hero__spartan {
    width: 66%;
    right: -10%;
    opacity: 0.85;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 18%, #000 50%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 18%, #000 50%, #000 100%);
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      var(--color-navy) 0%,
      var(--color-navy) 32%,
      rgba(7, 27, 58, 0.88) 55%,
      rgba(7, 27, 58, 0.5) 80%,
      rgba(7, 27, 58, 0.25) 100%
    );
  }
}

/* Mobile: text is the focal point. Spartan sits BEHIND the text as a
   low-opacity centered watermark — visible but unobtrusive. */
@media (max-width: 640px) {
  .hero {
    min-height: 540px;
    padding: var(--sp-10) 0 var(--sp-12);
    flex-direction: row;
    align-items: center;
  }
  .hero__spartan {
    /* Center the figure behind the content; faint watermark */
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 110%;
    max-width: none;
    height: auto;
    opacity: 0.16;
    /* No mask — keep the silhouette intact at low opacity */
    -webkit-mask-image: none;
            mask-image: none;
    z-index: 1;
  }
  /* Very light scrim so text reads cleanly over the watermark */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(7, 27, 58, 0.55) 0%,
      rgba(7, 27, 58, 0.4) 50%,
      rgba(7, 27, 58, 0.7) 100%
    );
  }
  .hero::after { display: block; }
  .hero__inner {
    padding: 0 var(--sp-5);
    width: 100%;
  }
  .hero__content { max-width: 100%; }
}

/* =================================================================
   Sections
   ================================================================= */
section { padding: var(--sp-12) 0; }
@media (max-width: 720px) { section { padding: var(--sp-10) 0; } }

.section-head {
  text-align: center;
  margin: 0 auto var(--sp-10);
  max-width: 720px;
}
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head .lead { margin: 0 auto; }

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--color-white); }
.section--navy .lead { color: rgba(255, 255, 255, 0.78); }

.section--ivory { background: var(--color-ivory); }
.section--ivory-warm { background: var(--color-ivory-warm); }

/* =================================================================
   Pillars (Expert Care / Comprehensive Treatment / Restore & Renew)
   ================================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}
.pillar__icon svg { width: 32px; height: 32px; }
.pillar h3 {
  font-family: var(--font-serif);
  color: var(--color-navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-3);
}
.pillar p { color: var(--color-slate); font-size: var(--fs-sm); line-height: 1.6; margin: 0; }

/* =================================================================
   Services grid (Pain / Spine / Joint / Sports)
   ================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--color-royal-light) 0%, var(--color-royal) 100%);
  border-radius: var(--radius-md);
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  text-align: center;
  color: var(--color-white);
  border: 1px solid rgba(201, 162, 74, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--color-white); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto var(--sp-4);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 27, 58, 0.35);
  padding: 12px;
}
.service-card__icon svg,
.service-card__icon img {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
  display: block;
  object-fit: contain;
}
.service-card__label {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.service-card__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  flex: 1;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-gold);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.service-card__cta svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

/* =================================================================
   Trust signals row
   ================================================================= */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-7) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: var(--sp-8);
}
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); } }
.trust-item {
  text-align: center;
}
.trust-item__num {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.trust-item__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-slate);
}

/* =================================================================
   CTA section
   ================================================================= */
.cta-band {
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 74, 0.15), transparent 50%),
    linear-gradient(135deg, var(--color-navy), var(--color-royal));
  color: var(--color-white);
  text-align: center;
  padding: var(--sp-12) var(--sp-5);
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}
.cta-band h2 { color: var(--color-white); margin-bottom: var(--sp-5); }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto var(--sp-7); font-size: var(--fs-md); }
.cta-band__buttons { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* =================================================================
   Service detail page sections
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-royal) 100%);
  color: var(--color-white);
  padding: var(--sp-10) 0 var(--sp-8);
  border-bottom: 3px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.1), transparent 60%);
}
.page-hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.page-hero__icon {
  width: 104px;
  height: 104px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(7, 27, 58, 0.4);
  padding: 16px;
}
.page-hero__icon svg,
.page-hero__icon img {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
  display: block;
  object-fit: contain;
}
.page-hero h1 {
  color: var(--color-white);
  margin: 0 0 var(--sp-3);
  font-size: clamp(2rem, 4vw + 0.5rem, var(--fs-4xl));
}
.page-hero__sub {
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  margin: 0;
}
@media (max-width: 640px) {
  .page-hero__inner { grid-template-columns: 1fr; text-align: center; gap: var(--sp-4); }
  .page-hero__icon { margin: 0 auto; }
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-ivory-warm);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-slate);
}
.breadcrumb a { color: var(--color-slate); }
.breadcrumb a:hover { color: var(--color-gold-dim); }
.breadcrumb__sep { color: var(--color-gold); }

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-10);
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: var(--sp-7); } }
.prose h2 { margin-top: var(--sp-8); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--sp-6); }
.prose p, .prose ul, .prose ol { font-size: var(--fs-base); line-height: 1.75; color: var(--color-slate-dark); }
.prose ul, .prose ol { padding-left: var(--sp-6); margin: 0 0 var(--sp-4); }
.prose li { margin-bottom: var(--sp-2); }
.prose strong { color: var(--color-navy); }

/* Procedure list grid */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-5) 0 var(--sp-6);
}
@media (max-width: 640px) { .procedures-grid { grid-template-columns: 1fr; } }
.procedure-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
}
.procedure-item h4 {
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-size: var(--fs-md);
  margin: 0 0 var(--sp-2);
}
.procedure-item p { font-size: var(--fs-sm); color: var(--color-slate); margin: 0; line-height: 1.6; }

/* Sidebar */
.sidebar {
  position: sticky;
  top: var(--sp-10);
}
.sidebar-card {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-gold);
  margin-bottom: var(--sp-5);
}
.sidebar-card h3 { color: var(--color-white); font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.sidebar-card p { color: rgba(255, 255, 255, 0.8); font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.sidebar-card .btn { width: 100%; }
.sidebar-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.sidebar-list h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.sidebar-list ul { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: var(--sp-2); }
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--color-slate-dark);
  padding: var(--sp-2) 0;
}
.sidebar-list a::before { content: '›'; color: var(--color-gold); font-weight: 700; }

/* FAQ */
.faq {
  max-width: var(--max-prose);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--color-navy);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--color-gold);
  font-size: var(--fs-xl);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: var(--sp-3);
  color: var(--color-slate);
  line-height: 1.7;
}

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--sp-12) 0 var(--sp-5);
  border-top: 3px solid var(--color-gold);
}
.site-footer__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 var(--sp-4);
}
.footer-col p { color: rgba(255, 255, 255, 0.7); font-size: var(--fs-sm); line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--color-gold); }
.footer-brand__logo { height: 64px; margin-bottom: var(--sp-4); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold-light);
  font-size: var(--fs-sm);
  margin-top: var(--sp-3);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--sp-5) var(--sp-5) 0;
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom__banner {
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
  font-size: var(--fs-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(201, 162, 74, 0.18);
  margin-top: var(--sp-5);
}

/* =================================================================
   Disclosure band (Medicare non-par)
   ================================================================= */
.disclosure {
  background: var(--color-ivory-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-5) 0;
  font-size: var(--fs-sm);
  color: var(--color-slate);
  text-align: center;
}
.disclosure strong { color: var(--color-navy); }

/* =================================================================
   Stub page (coming soon)
   ================================================================= */
.stub-page {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-5);
  text-align: center;
}
.stub-page h1 { margin-bottom: var(--sp-4); }
.stub-page .stub-note {
  background: var(--color-ivory-warm);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  color: var(--color-slate);
  margin: var(--sp-6) 0;
}

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