/* ── NAV ── */

.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  mix-blend-mode: multiply;
}
.nav-tagline {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9DBEFF;
  margin-top: 4px;
  font-weight: 400;
  opacity: 1;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: #ECEEF2;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: padding 0.4s ease;
}
nav.nav-scrolled { padding: 14px 56px; }
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  color: #1A2E44;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 26px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: #ECEEF2; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 56px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(90,138,248,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(43,69,102,0.8) 0%, transparent 60%);
}
.hero-line {
  position: absolute; top: 0; left: 56px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(90,138,248,0.25) 30%, rgba(90,138,248,0.25) 70%, transparent);
}
.hero-content { position: relative; max-width: 820px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.4s ease forwards;
}
h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-mid);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover { color: var(--ivory); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 56px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-dim);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 0.4; }
  50% { width: 60px; opacity: 0.9; }
}

/* ── SECTIONS SHARED ── */
section { padding: 120px 56px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 48px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
}
h2 em { font-style: italic; color: var(--gold-light); }

/* ── VISION / VIDEO ── */
#vision {
  background: var(--navy-mid);
  border-top: 1px solid rgba(90,138,248,0.1);
  border-bottom: 1px solid rgba(90,138,248,0.1);
}
.vision-inner {
  max-width: 1100px; margin: 0 auto;
}
.vision-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 64px;
}
.vision-desc {
  color: var(--text-mid); font-size: 1rem; line-height: 1.8;
}
.video-frame {
  width: 100%; aspect-ratio: 16/9;
  background: #0c1629;
  border: 1px solid rgba(90,138,248,0.24);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 24px 44px rgba(2,8,20,0.45);
}
.video-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 120% at 20% 10%, rgba(90,138,248,0.18), transparent 60%),
    radial-gradient(80% 120% at 85% 90%, rgba(224,184,110,0.14), transparent 58%),
    linear-gradient(180deg, rgba(7,14,30,0.2), rgba(7,14,30,0.85));
  z-index: 0;
}
.story-video {
  width: 100%; height: 100%; border: none;
  position: absolute; inset: 0;
  object-fit: contain;
  background: #060d1c;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.video-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  border: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(180deg, rgba(9,16,34,0.12), rgba(9,16,34,0.66));
  color: var(--text-light);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.video-overlay:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -6px;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(224,184,110,0.78);
  background: rgba(9,16,34,0.54);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.play-btn svg { fill: var(--gold); width: 22px; margin-left: 4px; }
.video-frame:hover .play-btn { border-color: var(--gold); background: rgba(9,16,34,0.75); transform: scale(1.08); }
.video-caption {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(233,240,255,0.96);
}
.video-subcaption {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(185,201,231,0.78);
}
.video-frame.is-playing { cursor: default; }
.video-frame.is-playing .video-overlay {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}
.video-frame.is-playing .story-video { opacity: 1; }
.video-frame.is-playing .play-btn { transform: scale(0.92); }
@media (max-width: 640px) {
  .video-caption { font-size: 0.68rem; letter-spacing: 0.12em; }
  .video-subcaption { font-size: 0.62rem; letter-spacing: 0.12em; }
}
/* ── BLOG ── */
#journal { background: var(--navy); }
.journal-inner { max-width: 1100px; margin: 0 auto; }
.journal-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.view-all {
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.view-all::after { content: '→'; }
.view-all:hover { gap: 14px; }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.card {
  background: var(--navy-mid);
  border: 1px solid rgba(90,138,248,0.1);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.card:hover { border-color: rgba(90,138,248,0.4); transform: translateY(-4px); }
.card-img {
  width: 100%; aspect-ratio: 3/2;
  background: var(--navy-light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.8rem; font-style: italic;
  color: rgba(90,138,248,0.28);
}
.card-img-bg1 { background: linear-gradient(135deg, #213650 0%, #1a3a52 100%); }
.card-img-bg2 { background: linear-gradient(135deg, #213650 0%, #243d2a 100%); }
.card-img-bg3 { background: linear-gradient(135deg, #2b3450 0%, #213650 100%); }
.card-body { padding: 28px 26px 30px; }
.card-tag {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.card-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  line-height: 1.35; color: var(--ivory); margin-bottom: 14px;
}
.card-excerpt {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 22px;
}
.card-link {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.card-link::after { content: '→'; }
.card-link:hover { gap: 14px; }

/* ── ASSESSMENT ── */
#assessment {
  background: var(--navy-mid);
  border-top: 1px solid rgba(90,138,248,0.1);
  border-bottom: 1px solid rgba(90,138,248,0.1);
  text-align: center;
}
.assessment-inner { max-width: 640px; margin: 0 auto; }
.assessment-inner h2 { margin-bottom: 20px; }
.assessment-desc {
  color: var(--text-mid); font-size: 1rem; line-height: 1.7;
  margin-bottom: 56px;
}
.qr-container {
  display: inline-flex; flex-direction: column; align-items: center; gap: 24px;
}
.qr-box {
  width: 200px; height: 200px;
  background: #ffffff;
  border: 1px solid rgba(90,138,248,0.45);
  padding: 0;
  display: block;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
/* Decorative QR corners */
.qr-box::before, .qr-box::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 1;
}
.qr-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.qr-box::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
/* QR image sizing — locked to box, no percentage drift */
.qr-box img {
  display: block;
  width: 200px; height: 200px;
  object-fit: contain;
}
.qr-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
}
.qr-or {
  display: flex; align-items: center; gap: 20px;
  color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin: 32px 0;
}
.qr-or::before, .qr-or::after {
  content: ''; flex: 1; height: 1px; background: rgba(90,138,248,0.15);
}
.btn-book {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 42px;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.btn-book:hover { background: var(--gold); color: var(--navy); }

/* ── CONTACT ── */
#contact { background: var(--navy); }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-info p {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.policy-links {
  display: flex; flex-direction: row; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 10px; padding: 36px 56px 36px;
  border-top: 1px solid rgba(90,138,248,0.14);
  border-bottom: 1px solid rgba(90,138,248,0.14);
  margin-top: 36px;
}
.policy-link {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  border: 1px solid rgba(90,138,248,0.22); padding: 13px 28px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}
.policy-link:hover {
  color: var(--accent-light); border-color: var(--accent);
  background: rgba(90,138,248,0.08);
}
@media(max-width:600px){
  .policy-links { padding: 24px 20px 36px; gap: 8px; }
  .policy-link { font-size: 0.62rem; padding: 7px 12px; }
}
.contact-item {
  display: flex; flex-direction: column; gap: 4px;
}
.contact-item-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.contact-item-val {
  font-size: 0.9rem; color: var(--text-mid);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.form-input, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(90,138,248,0.18);
  color: var(--ivory);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-textarea { resize: none; height: 80px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }

/* ── FOOTER ── */
footer {
  background: #ECEEF2 !important;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.09);
  background: var(--navy-mid);
  border-top: 1px solid rgba(90,138,248,0.1);
  padding: 40px 56px;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-brand-wrap { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; object-position: left center; opacity: 0.9; }
.footer-brand {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ivory);
}
.footer-brand span { color: var(--gold); }
.footer-tagline {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--text-dim); margin-top: 4px;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.08em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Ensure animated hero elements are visible even if animation doesn't fire */
.hero-tag, h1, .hero-sub, .hero-actions, .hero-scroll-hint {
  animation-fill-mode: both;
}
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 1px;
  background: rgba(90,138,248,0.28);
  margin: 48px 0;
}

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.nav-scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { padding: 120px 24px 60px; }
  .vision-header { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  .hero-scroll-hint { left: 24px; }
  .hero-line { left: 24px; }
}

/* ── QUIET STATISTIC BANNER ── */
.stat-banner-section {
  background: var(--ivory);
  border-top: 1px solid rgba(24,43,64,0.12);
  border-bottom: 1px solid rgba(24,43,64,0.12);
  overflow: hidden;
}
.stat-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  min-height: 320px;
}
.stat-banner-number {
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  padding: 48px 64px 48px 56px;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "onum" 0;
  border-right: 1px solid rgba(24,43,64,0.14);
  white-space: nowrap;
  opacity: 1 !important;
  transform: none !important;
}
.stat-banner-text-group {
  padding: 48px 64px;
}
.stat-banner-fact {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.stat-banner-response {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

/* ── DIAGNOSTIC MARKERS ── */
.markers-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px; align-items: center;
}
.markers-sub {
  color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin-top: 24px;
}
.markers-right { display: flex; flex-direction: column; gap: 0; }
.marker-item {
  display: grid;
  grid-template-columns: 32px 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(90,138,248,0.1);
}
.marker-item:last-of-type { border-bottom: none; }
.marker-num {
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 400;
}
.marker-name {
  font-family: var(--serif); font-size: 1.1rem; color: var(--ivory);
  font-weight: 400; letter-spacing: 0.02em;
}
.marker-bar {
  height: 2px; background: rgba(90,138,248,0.18); border-radius: 2px;
  overflow: hidden; position: relative;
}
.marker-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--gold); border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.marker-item.visible .marker-fill { width: var(--w, 80%); }
.markers-hint {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 28px; text-align: right;
}

/* ── BEFORE / AFTER OUTCOMES ── */
.outcomes-section { background: var(--navy-mid); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.outcome-card {
  background: var(--navy);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.outcome-patient {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.outcome-marker {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.outcome-numbers {
  display: flex; align-items: center; gap: 24px; padding: 20px 0;
  border-top: 1px solid rgba(90,138,248,0.12);
  border-bottom: 1px solid rgba(90,138,248,0.12);
}
.outcome-col { display: flex; flex-direction: column; gap: 6px; }
.outcome-val {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 300; line-height: 1;
}
.outcome-val.before { color: var(--text-mid); }
.outcome-val.after { color: var(--gold); }
.outcome-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.outcome-arrow { font-size: 1.4rem; color: rgba(90,138,248,0.3); flex-shrink: 0; }
.outcome-quote {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--text-mid); line-height: 1.6;
}
.outcomes-note {
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-dim);
  margin-top: 40px; text-align: center;
}

/* ── PROTOCOL STEPS ── */
.protocol-section { background: var(--navy); }
.protocol-inner { max-width: 800px; margin: 0 auto; }
.protocol-inner h2 { margin-bottom: 64px; }
.steps-track { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px; align-items: start;
}
.step-num {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding-top: 4px; font-weight: 400;
}
.step-body { padding-bottom: 0; }
.step-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 10px; letter-spacing: 0.01em;
}
.step-desc {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.75;
}
.step-connector {
  width: 1px; height: 48px; margin-left: 27px;
  background: linear-gradient(to bottom, rgba(90,138,248,0.3), rgba(90,138,248,0.05));
}

@media (max-width: 900px) {
  .stat-banner-inner { grid-template-columns: 1fr; min-height: auto; }
  .stat-banner-number { font-size: clamp(5rem,22vw,8rem); border-right: none; border-bottom: 1px solid rgba(24,43,64,0.1); padding: 40px 24px 32px; text-align: center; }
  .stat-banner-text-group { padding: 32px 24px 48px; }
  .markers-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2px; }
  .protocol-inner { padding: 0; }
}


.footer-address {
  font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.08em;
  text-align: center; margin-top: 8px;
}
footer { flex-wrap: wrap; gap: 16px; }

/* Utilities (avoid inline style=) */
.btn-primary--inline-spaced {
  display: inline-block;
  margin-top: 32px;
}
.btn-primary--inline-spaced-lg {
  display: inline-block;
  margin-top: 56px;
}
.section-label--center {
  justify-content: center;
}
.section-label--center::before { display: none; }
.section-label--center-mb {
  justify-content: center;
  margin-bottom: 52px;
}
.divider--assessment {
  margin: 28px auto 0;
}
.card-img--photo {
  background: none;
  overflow: hidden;
}
.card-img__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img__img--tone-a { filter: brightness(0.75) saturate(0.8); }
.card-img__img--tone-b { filter: brightness(0.72) saturate(0.85); }
.card-img__img--tone-c { filter: brightness(0.7) saturate(0.8); }
.contact-link-inherit {
  color: inherit;
  text-decoration: none;
}
.form-submit--start {
  align-self: flex-start;
  margin-top: 8px;
}
.footer-logo-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 56px;
}
.footer-logo-img--large {
  height: 110px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

