/* ==========================================================================
   Chiroport LLC — stylesheet
   Palette locked: navy, teal, red, gold, paper
   ========================================================================== */

:root {
  --navy: #0b3142;
  --navy-2: #0a2938;
  --navy-ink: #e8eef2;
  --teal: #0e7c7b;
  --teal-ink: #0a5c5b;
  --red: #c8332d;
  --red-ink: #a12722;
  --gold: #f2b84b;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #0f1e27;
  --ink-2: #3b4c55;
  --ink-3: #6a7b84;
  --rule: #e6e3db;
  --rule-2: #ededea;

  --ff-display: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --ff-body: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --radius-card: 10px;
  --radius-pill: 999px;

  --maxw: 1240px;
  --gutter: 24px;

  --section-y: clamp(72px, 9vw, 128px);
}

/* Tweak hooks (editmode sets these) */
[data-accent="amber"] { --gold: #e89a2a; }
[data-accent="silver"] { --gold: #b8c2c8; }

[data-fonts="arial"] {
  --ff-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
[data-fonts="sans"] {
  --ff-display: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

[data-density="tight"] { --section-y: clamp(56px, 6vw, 88px); }
[data-density="loose"] { --section-y: clamp(96px, 12vw, 176px); }

[data-video="subtle"] .hero-video { opacity: .55; }
[data-video="medium"] .hero-video { opacity: .85; }
[data-video="bold"]   .hero-video { opacity: 1; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; display: block; }

a { color: var(--teal-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 5.6vw, 78px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 28px); }

p { margin: 0 0 1em; color: var(--ink-2); }
p.lead { font-size: clamp(18px, 1.4vw, 21px); color: var(--ink); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-ink); }

.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-ink); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn-ghost-dark { background: transparent; color: var(--navy); border-color: rgba(11,49,66,.22); }
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(11,49,66,.04); }

.btn-lg { min-height: 56px; padding: 0 28px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 49, 66, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-light {
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.is-light .nav-logo { color: var(--navy); }
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--teal);
  display: grid; place-items: center;
  color: #fff;
  position: relative;
}
.logo-mark svg { width: 18px; height: 18px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  min-width: 0;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  letter-spacing: .01em;
  padding: 8px 2px;
  white-space: nowrap;
}
.is-light .nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: #fff; text-decoration: none; }
.is-light .nav-links a:hover { color: var(--navy); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.is-light .lang-switch { border-color: rgba(11,49,66,.18); }
.lang-switch button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 28px;
  color: rgba(255,255,255,.7);
}
.is-light .lang-switch button { color: var(--ink-3); }
.lang-switch button.is-on { background: #fff; color: var(--navy); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.is-light .nav-toggle { color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 0;
  min-height: min(780px, 92vh);
  display: flex;
  align-items: center;
}
.hero::after {
  /* left-side navy gradient to guarantee text legibility over the video */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,49,66,.98) 0%, rgba(11,49,66,.9) 38%, rgba(11,49,66,.55) 62%, rgba(11,49,66,.15) 100%),
    radial-gradient(60% 80% at 10% 50%, rgba(14,124,123,.25), transparent 70%);
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: .9;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-phone-line {
  margin-top: 22px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.hero-phone-line strong { color: #fff; font-weight: 500; }
.hero-eyebrow {
  color: var(--gold);
}

.hero-stats {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  max-width: 560px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: #fff;
  line-height: 1.1;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero-stats .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  line-height: 1.3;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-indicator::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.6); }
  50%     { opacity: 1; transform: scaleY(1); }
}

/* ---------- Emergency banner ---------- */
.emergency {
  background: linear-gradient(180deg, #1a1314 0%, #2a1616 100%);
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(200,51,45,.3);
  border-bottom: 1px solid rgba(200,51,45,.2);
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 120% at 50% 0%, rgba(200,51,45,.22), transparent 70%);
  pointer-events: none;
}
.emergency-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(200,51,45,.6);
  animation: pulse 2s infinite;
  flex: 0 0 auto;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,51,45,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(200,51,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,51,45,0); }
}
.emergency-kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f0a29e;
  margin: 0 0 4px;
}
.emergency h2 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0;
  max-width: 640px;
  line-height: 1.15;
}
.emergency-steps {
  display: flex;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}
.emergency-step {
  display: flex; gap: 12px; align-items: center;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.emergency-step .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: #fff;
}
.emergency .btn { margin-left: auto; }

/* ---------- Three step ---------- */
.steps {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
}
.step-card {
  padding: 44px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.step-card:last-child { border-right: 0; }
.step-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--teal-ink);
  margin-bottom: 18px;
}
.step-card h3 { font-family: var(--ff-display); font-size: 26px; margin-bottom: 10px; }
.step-card p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- Split: PI Care ---------- */
.split {
  background: var(--white);
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split h2 { margin-bottom: 18px; }
.split ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 20px;
  margin-top: 8px;
}
.split li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.split li:last-child { border-bottom: 1px solid var(--rule); }
.split li .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(14,124,123,.08);
  color: var(--teal-ink);
  display: grid; place-items: center;
}
.split li .ic svg { width: 16px; height: 16px; }
.split li strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; font-size: 15px; }
.split li span { color: var(--ink-2); font-size: 14px; }

/* ---------- Paying for care (3-card) ---------- */
.payways { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.payways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.payway {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(11,49,66,.03), 0 8px 24px rgba(11,49,66,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.payway:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(11,49,66,.04), 0 16px 36px rgba(11,49,66,.08); }
.payway-red  { border-top-color: var(--red); }
.payway-teal { border-top-color: var(--teal); }
.payway-gold { border-top-color: var(--gold); }
.payway-ic {
  width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: rgba(14,124,123,.08);
  color: var(--teal);
}
.payway-red  .payway-ic { background: rgba(200,51,45,.08); color: var(--red); }
.payway-gold .payway-ic { background: rgba(242,184,75,.14); color: #9a7319; }
.payway-ic svg { width: 24px; height: 24px; }
.payway h3 { font-family: var(--ff-body); font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.005em; }
.payway p { font-size: 14.5px; color: var(--ink-2); margin: 0 0 20px; line-height: 1.55; }
.payway-link {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-ink);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.payway-red  .payway-link { color: var(--red-ink); }
.payway-gold .payway-link { color: #8a6515; }
.payways-foot {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-2);
  font-size: 15px;
}
.payways-foot a { color: var(--navy); }

/* ---------- Treatments grid ---------- */
.treatments { background: var(--white); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head p { color: var(--ink-2); max-width: 520px; margin: 0; }

.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.tx-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  transition: background .2s;
}
.tx-card:hover { background: var(--paper); }
.tx-card .ic-lg {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(14,124,123,.08);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.tx-card .ic-lg svg { width: 24px; height: 24px; }
.tx-card h3 { font-family: var(--ff-body); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.005em; }
.tx-card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ---------- Urgency dark ---------- */
.urgency {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 0%, rgba(14,124,123,.18), transparent 65%);
  pointer-events: none;
}
.urgency-inner { position: relative; display: grid; grid-template-columns: minmax(0,420px) 1fr; gap: 80px; align-items: start; }
.urgency h2 { color: #fff; }
.urgency p { color: rgba(255,255,255,.78); }
.urgency .eyebrow { color: var(--gold); }
.urgency-list { display: grid; gap: 28px; }
.urgency-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.urgency-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.urgency-item .big-num {
  font-family: var(--ff-display);
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}
.urgency-item h3 { color: #fff; font-family: var(--ff-body); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.urgency-item p { color: rgba(255,255,255,.72); font-size: 14px; margin: 0; }

/* ---------- Process (4 step) ---------- */
.process { background: var(--paper); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 36px;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 28px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px);
  opacity: .35;
}
.ps-item {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.ps-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--teal);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 22px;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
}
.ps-item h3 { font-family: var(--ff-body); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.ps-item p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---------- Cash plans ---------- */
.plans { background: var(--white); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.plan {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured { background: var(--navy); color: #fff; border-color: transparent; }
.plan.featured h3, .plan.featured .plan-price { color: #fff; }
.plan.featured p, .plan.featured li { color: rgba(255,255,255,.78); }
.plan .tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--gold); color: #2a1f00;
}
.plan h3 { font-family: var(--ff-body); font-weight: 600; font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.plan-price {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--navy);
  margin: 12px 0 6px;
  line-height: 1;
}
.plan-price sup { font-size: 14px; color: var(--ink-3); font-family: var(--ff-mono); letter-spacing: .1em; margin-right: 4px; vertical-align: 18px; }
.plan-per { font-size: 13px; color: var(--ink-3); }
.plan.featured .plan-per { color: rgba(255,255,255,.6); }
.plan ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.plan li {
  font-size: 14px;
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.45;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--teal);
  font-size: 14px;
  line-height: 1.45;
}
.plan.featured li::before { color: var(--gold); }
.plan .btn { margin-top: auto; width: 100%; }

.plans-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 28px;
}

/* ---------- Doctor ---------- */
.doctor { background: var(--paper); }
.doctor-inner { display: grid; grid-template-columns: minmax(0, 440px) 1fr; gap: 72px; align-items: center; }
.doctor-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e0dfd9 0%, #d0cfc6 100%);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.doctor-creds {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}
.doctor-cred {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding-right: 20px;
}
.doctor-cred:last-child { border-right: 0; padding-left: 20px; padding-right: 0; }
.doctor-cred:nth-child(2) { padding-left: 20px; padding-right: 20px; }
.doctor-cred .k { font-family: var(--ff-display); font-size: 28px; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.doctor-cred .l { font-size: 12px; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Mobile: horizontal snap-scroll instead of stacked column */
@media (max-width: 760px) {
  .tm-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tm-grid::-webkit-scrollbar { display: none; }
  .tm-grid .tm {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
}
.tm {
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius-card);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
}
.tm-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 14px;
}
.tm-quote {
  font-family: var(--ff-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 24px;
  flex: 1;
}
.tm-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-3);
}
.tm-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(14,124,123,.12);
  color: var(--teal-ink);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 13px;
}
.tm-source {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Contact + Map ---------- */
.contact { background: var(--paper); }
.contact-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 36px;
}
.contact-card h3 { margin-bottom: 20px; font-size: 26px; }
.contact-info {
  display: grid; gap: 16px; margin: 22px 0;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ci-row { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.ci-row .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(14,124,123,.08);
  color: var(--teal-ink);
  display: grid; place-items: center;
}
.ci-row .ic svg { width: 16px; height: 16px; }
.ci-row .t { font-weight: 600; color: var(--navy); font-size: 14px; }
.ci-row .s { color: var(--ink-2); font-size: 14px; }
.ci-row a { color: var(--navy); font-weight: 500; }

.map-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #e6e9ea;
}
.map-wrap iframe { border: 0; width: 100%; height: 100%; display: block; }
.map-overlay {
  position: absolute;
  left: 16px; bottom: 16px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(11,49,66,.12);
  font-size: 13px;
  max-width: 240px;
}
.map-overlay strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.map-overlay .ad { color: var(--ink-2); font-size: 12px; line-height: 1.4; }

/* form */
form.inquiry { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: var(--ink-2); font-family: var(--ff-mono); letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  min-height: 44px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-inner { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--rule); }
details.qa {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  color: var(--navy);
  font-size: 17px;
  padding-right: 4px;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
  transition: transform .2s;
}
details.qa[open] summary::after { content: "–"; }
details.qa .a {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 700px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
  font-size: 14px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-top h4 { color: #fff; font-family: var(--ff-body); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { color: rgba(255,255,255,.72); }
.foot-col a:hover { color: #fff; }
.foot-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.foot-brand p { color: rgba(255,255,255,.65); max-width: 320px; }

.foot-bottom {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 28px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  flex-wrap: wrap;
}
.foot-bottom .legal a { color: rgba(255,255,255,.7); margin-left: 18px; }
.legal-disclaimer {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 880px;
}

/* ---------- Mobile Call Bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 10px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  background: #fff;
  border-top: 1px solid var(--rule);
}
.mobile-call-bar .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
}
.mobile-call-bar .btn-call { background: var(--red); }
.mobile-call-bar .btn-call:hover { background: var(--red-ink, #a62822); }
.mobile-call-bar .btn-text { background: var(--teal); }
.mobile-call-bar .btn-text:hover { filter: brightness(.95); }
@media (max-width: 768px) {
  .mobile-call-bar { display: flex; }
}

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 100;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(11,49,66,.18);
  padding: 18px;
  display: none;
  font-size: 13px;
}
.tweaks.is-open { display: block; }
.tweaks h4 { font-family: var(--ff-body); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.tweak-row { margin-bottom: 16px; }
.tweak-row label { display: block; font-weight: 500; color: var(--navy); font-size: 12px; margin-bottom: 8px; }
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opts button {
  flex: 1;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  color: var(--ink-2);
}
.tweak-opts button.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Hero load-in — CSS-only so content remains visible even if JS fails. */
@media (prefers-reduced-motion: no-preference) {
  html[data-motion="standard"] .hero-eyebrow,
  html[data-motion="standard"] .hero h1,
  html[data-motion="standard"] .hero-sub,
  html[data-motion="standard"] .hero-ctas,
  html[data-motion="standard"] .hero-phone-line,
  html[data-motion="standard"] .hero-stats,
  html[data-motion="subtle"] .hero-eyebrow,
  html[data-motion="subtle"] .hero h1,
  html[data-motion="subtle"] .hero-sub,
  html[data-motion="subtle"] .hero-ctas,
  html[data-motion="subtle"] .hero-phone-line,
  html[data-motion="subtle"] .hero-stats {
    animation: heroIn 550ms cubic-bezier(.2,.7,.25,1) both;
  }
  html[data-motion="subtle"] .hero-eyebrow,
  html[data-motion="subtle"] .hero h1,
  html[data-motion="subtle"] .hero-sub,
  html[data-motion="subtle"] .hero-ctas,
  html[data-motion="subtle"] .hero-phone-line,
  html[data-motion="subtle"] .hero-stats {
    animation-duration: 400ms;
  }
  .hero-eyebrow       { animation-delay: 0ms   !important; }
  .hero h1            { animation-delay: 80ms  !important; }
  .hero-sub           { animation-delay: 160ms !important; }
  .hero-ctas          { animation-delay: 240ms !important; }
  .hero-phone-line    { animation-delay: 320ms !important; }
  .hero-stats         { animation-delay: 400ms !important; }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Hmong receptionist modal ---------- */
#hmong-modal {
  position: fixed; inset: 0;
  background: rgba(11,49,66,.55);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  z-index: 200;
  padding: 20px;
  animation: hmFade .18s ease-out both;
}
.hmong-modal-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(11,49,66,.28);
  animation: hmRise .22s cubic-bezier(.2,.7,.25,1) both;
}
.hmong-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
}
.hmong-modal-close:hover { background: var(--paper); color: var(--navy); }
.hmong-modal-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
#hmong-modal-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.hmong-modal-sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.hmong-modal-card .btn { width: 100%; justify-content: center; }
.hmong-modal-hint {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin: 18px 0 0;
}
@keyframes hmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes hmRise {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .hmong-modal-card { padding: 36px 24px 24px; }
  #hmong-modal-title { font-size: 22px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(11,49,66,.85) 0%, rgba(11,49,66,.75) 60%, rgba(11,49,66,.6) 100%),
      linear-gradient(90deg, rgba(11,49,66,.95) 0%, rgba(11,49,66,.6) 100%);
  }
  .hero-video { object-position: center; }
  .split-inner, .doctor-inner, .contact-inner, .faq-inner, .urgency-inner { grid-template-columns: 1fr; gap: 44px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .tx-grid, .plans-grid, .payways-grid { grid-template-columns: repeat(2, 1fr); }
  .payways-grid .payway:last-child { grid-column: 1 / -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-steps::before { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .step-card:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  body { padding-bottom: 76px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn-red { display: none; }
  .mobile-call-bar { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 80px 0 48px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; margin-top: 36px; }
  .hero-stats .stat { display: flex; gap: 16px; align-items: baseline; }
  .hero-stats .stat-num { font-size: 28px; }
  .hero-stats .stat-label { margin: 0; }
  .emergency-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .emergency-steps { margin-left: 0; gap: 16px 28px; }
  .emergency .btn { margin-left: 0; width: 100%; }
  .tx-grid, .plans-grid, .payways-grid { grid-template-columns: 1fr; }
  .payways-grid .payway:last-child { grid-column: auto; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .foot-bottom .legal a { margin: 0 18px 0 0; }
  .doctor-creds { grid-template-columns: 1fr; }
  .doctor-cred { border-right: 0 !important; padding: 16px 0 !important; }
  .field-row { grid-template-columns: 1fr; }
  .tweaks { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
  .scroll-indicator { display: none; }
  h1 { font-size: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 32px; }
}

/* ---------- What to expect ---------- */
.expect { background: var(--paper); }
.expect-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  max-width: 920px;
}
.ex-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.ex-num {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--teal);
  padding-top: 6px;
}
.ex-body { max-width: 640px; }
.ex-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ex-head h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}
.ex-time {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 3px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
}
.ex-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.ex-body p em {
  font-style: italic;
  font-family: var(--ff-display);
  color: var(--navy);
}
.expect-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  flex-wrap: wrap;
}
.expect-cta p {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--navy);
  margin: 0;
}
@media (max-width: 720px) {
  .ex-step { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .ex-num { padding-top: 0; }
  .ex-head h3 { font-size: 22px; }
  .expect-cta { flex-direction: column; align-items: flex-start; }
}


/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .04em;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Hero attorney-lien reassurance ---------- */
.hero-lien {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0 20px;
  line-height: 1.4;
}
.hero-lien svg { flex-shrink: 0; color: var(--gold); }

/* ---------- Testimonials disclosure ---------- */
.tm-disclosure {
  font-family: var(--ff-mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-top: 10px;
  letter-spacing: .02em;
}


/* ---------- Tablet nav: tighten, don't hide ---------- */
@media (max-width: 1024px) {
  .nav { gap: 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 13px; }
  .nav-right .btn-red { font-size: 13px; padding: 10px 14px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
}


/* =========================================================
   CONDITIONS SECTIONS (A: paper, B: navy)
   ========================================================= */
.conditions { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.conditions-a { background: var(--paper); color: var(--navy); }
.conditions-b { background: var(--navy); color: var(--paper); }
.conditions-b .eyebrow { color: var(--gold); }
.conditions-b .section-head > div p, .conditions-b .section-head > p { color: rgba(251, 250, 246, 0.78); }
.conditions-b .section-head h2 { color: var(--paper); }

.cond-grid {
  display: grid;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 56px);
}
.cond-grid-a { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cond-grid-b { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1180px) {
  .cond-grid-a { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cond-grid-b { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .cond-grid-a { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cond-grid-a, .cond-grid-b { grid-template-columns: 1fr; }
}

.cond-card {
  background: #fff;
  border: 1px solid rgba(11, 49, 66, 0.09);
  border-radius: 10px;
  padding: 22px 20px 20px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cond-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -18px rgba(11, 49, 66, 0.28);
  border-color: rgba(11, 49, 66, 0.18);
}

.cond-card-dark {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(251, 250, 246, 0.10);
  color: var(--paper);
}
.cond-card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(14, 124, 123, 0.45);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.55);
}

.cond-chip {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cond-chip svg { width: 22px; height: 22px; }
.cond-chip-red  { background: rgba(200, 51, 45, 0.10); color: var(--red); }
.cond-chip-teal { background: rgba(14, 124, 123, 0.16); color: #6ed5c9; }

.conditions-a .cond-card h3 {
  font-family: var(--font-serif, "Instrument Serif", serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
  color: var(--navy);
}
.conditions-b .cond-card h3 {
  font-family: var(--font-serif, "Instrument Serif", serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--paper);
  display: inline-block;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 3px;
}

.cond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cond-list li {
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 0 10px 12px;
  border-left: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
  color: inherit;
}
.conditions-a .cond-list li { color: rgba(11, 49, 66, 0.82); }
.conditions-a .cond-list li + li { border-top: 1px solid rgba(11, 49, 66, 0.07); }
.conditions-a .cond-list li:hover { border-left-color: var(--red); background: rgba(200, 51, 45, 0.03); }

.conditions-b .cond-list li { color: rgba(251, 250, 246, 0.82); }
.conditions-b .cond-list li + li { border-top: 1px solid rgba(251, 250, 246, 0.07); }
.conditions-b .cond-list li:hover { border-left-color: var(--teal); background: rgba(14, 124, 123, 0.07); }

.cond-list strong {
  color: var(--navy);
  font-weight: 600;
}
.conditions-b .cond-list strong { color: var(--paper); }

.cond-foot {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(11, 49, 66, 0.65);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-style: italic;
}

/* =========================================================
   WELLNESS SECTION
   ========================================================= */
.wellness { background: var(--paper); padding: clamp(72px, 9vw, 128px) 0; color: var(--navy); }
.wellness-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) {
  .wellness-inner { grid-template-columns: 1fr; }
}
.wellness-copy h2 {
  margin: 10px 0 14px;
}
.wellness-copy .lead {
  font-size: 17px;
  color: rgba(11, 49, 66, 0.72);
  max-width: 56ch;
  margin: 0 0 28px;
}
.wellness-subh {
  font-family: var(--font-sans, inherit);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--teal);
  margin: 28px 0 14px;
  font-weight: 600;
}

.wellness-tiles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 760px) { .wellness-tiles { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 420px) { .wellness-tiles { grid-template-columns: 1fr; } }

.w-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(11, 49, 66, 0.08);
  border-radius: 8px;
  padding: 12px 12px;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--navy);
}
.w-tile .ic {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal);
  background: rgba(14, 124, 123, 0.10);
  border-radius: 6px;
}
.w-tile .ic svg { width: 16px; height: 16px; }

.wellness-focus {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.wellness-focus li {
  padding: 9px 0 9px 20px;
  position: relative;
  border-bottom: 1px solid rgba(11, 49, 66, 0.08);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(11, 49, 66, 0.82);
}
.wellness-focus li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 10px; height: 2px;
  background: var(--teal);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -14px rgba(242, 184, 75, 0.55); background: #f5c160; }
.btn-gold:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-lg { padding: 16px 24px; font-size: 16px; }
.wellness-cta { margin-top: 22px; }
.wellness-foot {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(11, 49, 66, 0.62);
  max-width: 52ch;
  line-height: 1.5;
}

/* Wellness visual */
.wellness-visual { position: relative; }
.wellness-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 60px rgba(11,49,66,.12);
}
.img-placeholder-wellness {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 49, 66, 0.10);
  background: var(--paper);
}
.img-placeholder-wellness svg { display: block; }
.img-placeholder-tag {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(11, 49, 66, 0.92);
  color: var(--paper);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.img-placeholder-tag .tag-k { color: var(--gold); letter-spacing: .06em; }
.img-placeholder-tag .tag-size { color: rgba(251,250,246,0.55); }

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: var(--navy);
  color: var(--paper);
  padding: 16px 20px;
  border-top: 1px solid rgba(251, 250, 246, 0.12);
  box-shadow: 0 -14px 40px -22px rgba(0,0,0,0.55);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  transition: opacity .2s ease, transform .2s ease;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner.is-closing { opacity: 0; transform: translateY(8px); }
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 70ch;
  color: rgba(251, 250, 246, 0.88);
}
.cookie-banner a.cookie-policy-link {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.cookie-banner a.cookie-policy-link:hover { color: var(--gold); }
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.cookie-accept { background: var(--teal); color: var(--paper); }
.cookie-accept:hover { background: #10918f; }
.cookie-reject { background: transparent; color: var(--paper); border-color: rgba(251, 250, 246, 0.55); }
.cookie-reject:hover { background: rgba(251, 250, 246, 0.08); border-color: var(--paper); }
.cookie-btn:focus-visible,
.cookie-banner a.cookie-policy-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 700px) {
  .cookie-banner { grid-template-columns: 1fr; padding: 14px 16px 80px; }
  .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* =========================================================
   LEGAL PAGE (privacy + terms)
   ========================================================= */
main.legal{
  background: var(--paper);
  color: var(--navy);
  padding: clamp(56px, 8vw, 96px) 0;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.6;
}
main.legal h1 {
  font-family: var(--font-serif, "Instrument Serif", serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
main.legal h2 {
  font-family: var(--font-serif, "Instrument Serif", serif);
  font-size: 26px;
  line-height: 1.2;
  margin: 40px 0 12px;
  letter-spacing: -0.005em;
}
main.legal .eff { font-size: 13px; color: rgba(11, 49, 66, 0.65); margin: 0 0 8px; letter-spacing: .04em; text-transform: uppercase; }
main.legal .meta { font-size: 13.5px; color: rgba(11, 49, 66, 0.72); margin: 0 0 36px; }
main.legal p { margin: 0 0 14px; color: rgba(11, 49, 66, 0.85); }
main.legal ul { padding-left: 1.1rem; margin: 0 0 16px; }
main.legal ul li { margin: 8px 0; color: rgba(11, 49, 66, 0.85); }
main.legal strong { color: var(--navy); }
main.legal .contact-block {
  margin-top: 8px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(11, 49, 66, 0.10);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.65;
}
main.legal a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
main.legal a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--paper);
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }
