/* ═══════════════════════════════════════════════════════════
   MY PRIVATE CLINIC — MAIN STYLESHEET
   Shared across all pages. Design system from index-3.html.
═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --royal:      #1B4332;
  --royal-deep: #0D2B1F;
  --royal-mid:  #2D6A4F;
  --gold:       #C9A84C;
  --gold-light: #DFC079;
  --gold-pale:  #F0DFA8;
  --cream:      #F7F3EB;
  --parchment:  #EDE6D6;
  --charcoal:   #1C1C1C;
  --mid-grey:   #6B6B6B;
  --white:      #FDFAF4;
  --nav-h:      72px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--white);
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; }
h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 500; line-height: 1.1; letter-spacing: 0.02em; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: 0.03em; line-height: 1.2; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; }
p  { font-size: 17px; line-height: 1.85; color: var(--mid-grey); font-weight: 300; }

.gold-tag {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-rule-center { margin: 20px auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--royal-deep);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 38px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 15px 38px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--royal-deep); }

.btn-outline-dark {
  display: inline-block;
  border: 1px solid rgba(27,67,50,0.4);
  color: var(--royal);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 15px 38px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--royal); color: var(--cream); }

/* ─── ACCESSIBILITY ─── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,43,31,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark { display: flex; flex-direction: column; align-items: flex-start; }
.nav-wm-my   { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 14px; letter-spacing: 0.18em; color: var(--cream); line-height: 1; }
.nav-wm-priv { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream); line-height: 1; }
.nav-wm-rule { height: 0.4px; width: 100%; background: var(--cream); margin: 4px 0; opacity: 0.25; }
.nav-wm-cli  { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 14px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--cream); opacity: 0.6; }

/* Drawer wordmark — dark text on white */
.nav-wordmark-dark .nav-wm-my   { color: var(--royal-deep); }
.nav-wordmark-dark .nav-wm-priv { color: var(--royal-deep); }
.nav-wordmark-dark .nav-wm-rule { background: var(--royal-deep); opacity: 0.2; }
.nav-wordmark-dark .nav-wm-cli  { color: var(--royal-deep); opacity: 0.5; }

/* Nav right cluster */
.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-phone {
  display: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(247,243,235,0.65);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid rgba(247,243,235,0.2);
  transition: all 0.2s;
}
.nav-phone:hover { color: var(--cream); border-color: rgba(247,243,235,0.4); }

.nav-book {
  display: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-deep);
  background: var(--gold);
  text-decoration: none;
  padding: 10px 22px;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--gold-light); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(247,243,235,0.2);
  cursor: pointer;
  padding: 10px 12px;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: rgba(247,243,235,0.5); }
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── DRAWER ─── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 440px;
  max-width: 88vw;
  height: 100%;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-drawer.open { transform: translateX(0); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,43,31,0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

body.nav-open { overflow: hidden; }

.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(27,67,50,0.08);
  flex-shrink: 0;
}

.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--royal-deep);
  opacity: 0.35;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 4px 8px;
}
.nav-drawer-close:hover { opacity: 1; }

.nav-drawer-links {
  list-style: none;
  padding: 16px 0 0;
  flex: 1;
}
.nav-drawer-links > li {
  border-bottom: 1px solid rgba(27,67,50,0.07);
}
.nav-drawer-links > li > a,
.sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--royal-deep);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.2s;
}
.nav-drawer-links > li > a:hover,
.sub-toggle:hover { color: var(--gold); }

.sub-icon {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(201,168,76,0.7);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.sub-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f9f7f3;
}
.sub-menu.open { max-height: 800px; }

.sub-menu li a {
  display: block;
  padding: 10px 28px 10px 48px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(27,67,50,0.04);
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover { color: var(--gold); }

.nav-drawer-cta {
  padding: 24px 28px 36px;
  border-top: 1px solid rgba(27,67,50,0.08);
  flex-shrink: 0;
}
.nav-drawer-cta .btn-primary {
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.nav-drawer-cta-phone {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-align: center;
  margin: 0;
}
.nav-drawer-cta-phone a { color: var(--royal); text-decoration: none; }
.nav-drawer-cta-phone a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .nav-phone { display: inline-block; }
  .nav-book  { display: inline-block; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Service pages — not full-viewport)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--royal-deep);
  padding: calc(var(--nav-h) + 80px) 5% 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -200px; bottom: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--cream); margin-bottom: 20px; }
.page-hero .hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(247,243,235,0.6);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
}
.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.page-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(247,243,235,0.5);
  font-weight: 300;
}
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(201,168,76,0.4); }

/* Coming soon hero variant */
.page-hero.coming-soon { text-align: center; }
.page-hero.coming-soon .page-hero-inner { margin: 0 auto; }
.page-hero.coming-soon .page-hero-actions { justify-content: center; }
.page-hero.coming-soon .page-hero-trust { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   SERVICES TICKER
═══════════════════════════════════════════════════════════ */
.services-ticker {
  background: rgba(13,43,31,0.97);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,243,235,0.65);
}
.ticker-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════════ */
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner-narrow { max-width: 900px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .gold-rule { margin: 20px auto; }

/* Cream section */
.section-cream {
  padding: 100px 5%;
  background: var(--cream);
}
.section-cream h2 { color: var(--royal-deep); }
.section-cream h3 { color: var(--royal-deep); }

/* White section */
.section-white {
  padding: 100px 5%;
  background: var(--white);
}
.section-white h2 { color: var(--royal-deep); }

/* Parchment section */
.section-parchment {
  padding: 100px 5%;
  background: var(--parchment);
}

/* Dark section */
.section-dark {
  padding: 100px 5%;
  background: var(--royal-deep);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  left: -200px; bottom: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  pointer-events: none;
}
.section-dark h2 { color: var(--cream); }
.section-dark p  { color: var(--cream); }

/* Green section */
.section-green {
  padding: 100px 5%;
  background: var(--royal);
  position: relative;
  overflow: hidden;
}
.section-green::before {
  content: '';
  position: absolute;
  right: -150px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.section-green h2 { color: var(--cream); }
.section-green p  { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   SERVICES OVERVIEW GRID
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--royal-deep);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 44px 36px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.3); }

.service-card.coming-soon { opacity: 0.6; }
.service-card.coming-soon:hover { opacity: 0.8; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
.service-card p {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 20px;
}
.service-price {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.service-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5px 12px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — WHO THIS IS FOR
═══════════════════════════════════════════════════════════ */
.who-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.who-card {
  background: var(--royal);
  padding: 52px 44px;
  position: relative;
}
.who-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}
.who-card .gold-tag { color: var(--gold); }
.who-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — WHAT WE COVER (coverage list)
═══════════════════════════════════════════════════════════ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.coverage-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 32px;
  transition: background 0.3s, border-color 0.25s;
}
.coverage-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.25); }
.coverage-item h3 {
  color: var(--cream);
  font-size: 21px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.coverage-item p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.pricing-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.pricing-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 44px 36px;
}
.pricing-tier-label {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pricing-tier-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pricing-tier-amount sup {
  font-size: 26px;
  vertical-align: super;
  font-weight: 300;
}
.pricing-tier-desc {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}
.pricing-tier ul {
  list-style: none;
  border-top: 1px solid rgba(201,168,76,0.12);
  margin-top: 16px;
  padding-top: 16px;
}
.pricing-tier ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: var(--cream);
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  line-height: 1.5;
}
.pricing-tier ul li:last-child { border-bottom: none; }
.pricing-tier ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Simple pricing note */
.pricing-simple {
  margin-top: 48px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-wrap: wrap;
  gap: 8px;
}
.price-row:first-child { border-top: 1px solid rgba(201,168,76,0.12); }
.price-label {
  font-size: 19px;
  color: var(--cream);
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.02em;
}
.price-val {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.price-note {
  font-size: 16px;
  color: rgba(247,243,235,0.55);
  margin-top: 20px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.how-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 44px 36px;
  position: relative;
}
.how-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.how-step h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 12px;
}
.how-step p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.faq-item {
  background: var(--parchment);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 36px 32px;
  transition: background 0.3s;
}
.faq-item:hover { background: var(--cream); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--royal-deep);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.faq-a {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.85;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA / BOOKING SECTION
═══════════════════════════════════════════════════════════ */
.booking-cta {
  text-align: center;
  padding: 100px 5%;
  background: var(--cream);
}
.booking-cta-inner { max-width: 700px; margin: 0 auto; }
.booking-cta h2 { color: var(--royal-deep); margin-bottom: 16px; }
.booking-cta p { margin-bottom: 8px; }
.booking-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.booking-cta-phone {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-top: 24px;
}
.booking-cta-phone a { color: var(--royal); text-decoration: none; }
.booking-cta-phone a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   COMING SOON — INTEREST FORM
═══════════════════════════════════════════════════════════ */
.interest-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,243,235,0.75);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--cream);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field input::placeholder { color: rgba(247,243,235,0.25); }
.form-field select option { background: var(--royal-deep); color: var(--cream); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--royal-deep);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 38px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-privacy-note {
  font-size: 14px;
  color: rgba(247,243,235,0.55);
  margin-top: 16px;
  text-align: center;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT BLOCKS (narrative sections)
═══════════════════════════════════════════════════════════ */
.content-block {
  max-width: 760px;
}
.content-block p {
  margin-bottom: 18px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block h3 {
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  margin-top: 48px;
  letter-spacing: 0.03em;
}
.content-block h3:first-child { margin-top: 0; }

/* Medication cards */
.medication-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.medication-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px 32px;
}
.medication-card h3 {
  color: var(--cream);
  font-size: 24px;
  margin-bottom: 6px;
  margin-top: 0;
}
.medication-name-sub {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.medication-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Criteria list */
.criteria-list {
  list-style: none;
  margin-top: 24px;
}
.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 16px;
  color: rgba(247,243,235,0.6);
  font-weight: 300;
  line-height: 1.6;
}
.criteria-list li:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
.criteria-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Included items */
.included-list {
  list-style: none;
  margin-top: 24px;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27,67,50,0.2);
  font-size: 16px;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.6;
}
.included-list li:first-child { border-top: 1px solid rgba(27,67,50,0.2); }
.included-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Allergy test list grid */
.allergen-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.allergen-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 28px 24px;
}
.allergen-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.allergen-col ul {
  list-style: none;
}
.allergen-col ul li {
  font-size: 16px;
  color: var(--cream);
  font-weight: 400;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  line-height: 1.5;
}
.allergen-col ul li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   BLOOD TEST PANELS
═══════════════════════════════════════════════════════════ */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.panel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.25s;
}
.panel-card:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.25); }
.panel-card h3 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 10px;
}
.panel-card p {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.75;
}
.panel-card .panel-price {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
}

/* IV drip cards */
.drip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.drip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 32px;
}
.drip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 14px;
}
.drip-card h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 10px;
}
.drip-card p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--royal-deep);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 60px 5% 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-brand p {
  font-size: 15px;
  color: rgba(247,243,235,0.72);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 15px;
  color: rgba(247,243,235,0.72);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  font-size: 15px;
  color: rgba(247,243,235,0.72);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact-item a {
  color: rgba(247,243,235,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(247,243,235,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-legal li a {
  font-size: 14px;
  color: rgba(247,243,235,0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-legal li a:hover { color: var(--gold); }
.footer-cqc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-block { grid-template-columns: 1fr; }
  .who-section { grid-template-columns: 1fr; gap: 40px; }
  .medication-grid { grid-template-columns: 1fr; }
  .allergen-cols { grid-template-columns: 1fr 1fr; }
  .panel-grid { grid-template-columns: 1fr 1fr; }
  .drip-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .page-hero.coming-soon .page-hero-actions { align-items: center; }
  .booking-cta-actions { flex-direction: column; }
  .allergen-cols { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* ── Hero mobile fixes ───────────────────────────── */
  .page-hero {
    padding: calc(var(--nav-h) + 120px) 6% 64px;
  }
  .page-hero h1 {
    font-size: clamp(18px, 5.5vw, 28px);
    margin-bottom: 10px;
  }
  .page-hero .hero-sub {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .page-hero-trust {
    font-size: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
    gap: 6px;
  }
}
