/* ===========================================================================
   Aurum Aesthetics — Demo Clinic Website
   --------------------------------------------------------------------------
   Static stylesheet. Designed for Cloudflare Pages deployment.
   No build step. No JavaScript dependencies.
   Tokens follow clinic website study/synthesis.md
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #FAF8F5;
  --bg-soft:      #F5F1EB;
  --text:         #1B2A4A;
  --text-muted:   #6B7B8D;
  --text-dim:     #97A1B0;
  --accent:       #C9A96E;
  --accent-soft:  #E8D9B8;
  --accent-deep:  #A8884E;
  --border:       #E5E0D6;
  --border-soft:  #F1ECE2;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
  --shadow:    0 4px 16px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 12px 40px rgba(27, 42, 74, 0.10);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space:    2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --container: 1200px;
  --header-h:  80px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-sm); }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 180ms ease;
}
a:hover { color: var(--accent-deep); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-soft); color: var(--text); }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--space-xl) 0; }
section.compact { padding: var(--space-lg) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.site-logo:hover { color: var(--text); }
.site-logo__demo-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.5rem;
  margin-left: 0.5rem;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 0.5rem 0;
}
.main-nav a:hover { color: var(--accent-deep); }
.main-nav a.is-current { color: var(--accent-deep); }

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: all 180ms ease;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.cta-button:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.cta-button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.cta-button--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--text);
}

.cta-button--invert {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}
.cta-button--invert:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--text);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1.5rem;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.875rem 0; border-bottom: 1px solid var(--border-soft); }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero--image {
  color: #fff;
}
.hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.62) 0%, rgba(27, 42, 74, 0.30) 60%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.hero--image .container { position: relative; z-index: 1; }
.hero--image h1 {
  color: #fff;
  max-width: 22ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero--image p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 50ch;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero--image .cta-button--ghost {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero--image .cta-button--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}
.hero--image .hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero--center { text-align: center; }
.hero--center .container { position: relative; z-index: 1; }
.hero--center h1 {
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.hero--center p {
  max-width: 60ch;
  margin-inline: auto;
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero--center .hero-actions { justify-content: center; }

.hero--short {
  min-height: clamp(360px, 50vh, 480px);
}
.hero--short h1 { font-size: clamp(2rem, 4vw, 3rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
.hero--image .eyebrow { color: var(--accent-soft); }

/* ---------- Section Heads ---------- */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.section-head p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* ---------- Section Colors ---------- */
.section-light { background: var(--bg); }
.section-alt   { background: var(--bg-alt); }
.section-soft  { background: var(--bg-soft); }
.section-dark {
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3 { color: #fff; }

/* ---------- Cards / Grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
  color: inherit;
}
.card__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.card__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.5rem;
}
.card__copy {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}
.card__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card__link::after {
  content: "→";
  transition: transform 180ms ease;
}
.card__link:hover::after,
.card:hover .card__link::after { transform: translateX(4px); }

/* Card — minimal (no image) variant */
.card--plain {
  border: 0;
  background: transparent;
  padding: 1rem 0;
}
.card--plain:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse > :first-child { order: 0; }
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .split__media { aspect-ratio: 3 / 2; }
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.pillar {
  text-align: left;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border-soft);
  transition: all 200ms ease;
}
.pillar:hover {
  border-color: var(--accent-soft);
  background: var(--bg-alt);
}
.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(201, 169, 110, 0.3) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-deep);
  font-size: 1.4rem;
}
.pillar__title { font-size: 1.25rem; margin: 0 0 0.75rem; font-weight: 500; }
.pillar__copy { color: var(--text-muted); margin: 0; font-size: 0.9375rem; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.step__copy {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--text) 0%, #0F1A30 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin: 0 0 1rem; position: relative; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-banner .cta-button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  position: relative;
}
.cta-banner .cta-button--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.cta-banner .cta-button--invert {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  position: relative;
}
.cta-banner .cta-button--invert:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--text);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Glowgau Widget Placeholder ---------- */
.glowgau-placeholder {
  border: 2px dashed var(--accent-soft);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.glowgau-placeholder__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--bg);
  border: 1px solid var(--accent-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.glowgau-placeholder__heading {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.glowgau-placeholder__sub {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 48ch;
}

/* ---------- Forms ---------- */
.contact-form {
  max-width: 640px;
  margin-inline: auto;
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  font-weight: 400;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-row textarea { resize: vertical; min-height: 140px; }

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-member { text-align: center; }
.team-member__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--bg-soft);
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--text-muted);
}
.team-member__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member__name { font-weight: 600; margin: 0 0 0.25rem; }
.team-member__role {
  font-size: 0.875rem;
  color: var(--accent-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.team-member__bio { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.5rem 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 180ms ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 65ch;
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
  font-size: 0.9375rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--accent-soft); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 500;
  display: block;
}
.site-footer__brand:hover { color: #fff; }
.site-footer__tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin: 0;
}

.site-footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.site-footer__disclaimer-icon {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Misc helpers ---------- */
.text-muted { color: var(--text-muted); }
.text-small { font-size: 0.875rem; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 60ch;
}
.lead--center { margin-inline: auto; }

.button-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Quote / pullout ---------- */
.callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2.5rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout p { font-size: 1.0625rem; color: var(--text); }

/* ---------- Page body wrappers ---------- */
.page-hero {
  padding: calc(var(--space-xl) - 1rem) 0 var(--space-lg);
  background: var(--bg-alt);
  text-align: center;
}
.page-hero h1 { margin-top: 0; margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Wide image for treatment headers ---------- */
.treatment-hero {
  min-height: clamp(360px, 50vh, 480px);
}

/* ---------- Disclaimer page ---------- */
.disclaimer-page {
  max-width: 760px;
  margin: 0 auto;
}
.disclaimer-page h2 { margin-top: 2.5rem; }
.disclaimer-page ul { padding-left: 1.5rem; }
.disclaimer-page li { margin-bottom: 0.5rem; }

/* ---------- Responsive Type ---------- */
@media (max-width: 600px) {
  section { padding: var(--space-lg) 0; }
  .container { padding: 0 1rem; }
  .site-header__inner { padding: 0 1rem; gap: 1rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .split { gap: 1.5rem; }
  .pillar { padding: 1.5rem; }
}

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