/* ═══════════════════════════════════════════════════════════
   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; }

/* Half-hero variant (text left, image right) */
.page-hero.half-hero, section.page-hero:has(.half-hero-left) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  padding: 0;
  background: none;
}
.page-hero:has(.half-hero-left)::before,
.page-hero:has(.half-hero-left)::after { display: none; }
.half-hero-left {
  display: flex;
  align-items: center;
  background: var(--royal-deep);
  padding: calc(var(--nav-h) + 60px) 7% 60px;
}
.half-hero-left .page-hero-inner { max-width: 100%; }
.half-hero-right { position: relative; overflow: hidden; }
.half-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media(max-width:900px) {
  .page-hero:has(.half-hero-left) {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .half-hero-right { height: 75vw; min-height: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   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;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — FEATURES LIST (bullet-point variant)
═══════════════════════════════════════════════════════════ */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.features-list li {
  position: relative;
  padding-left: 28px;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream);
}
.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.section-cream .features-list li,
.section-white .features-list li { color: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.pricing-block {
  display: grid;
  grid-template-columns: 1fr 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;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  background: var(--royal-deep);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 15%, rgba(201,168,76,0.08) 0%, transparent 45%);
}
.hero-sparkle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 56px) 5% 72px;
}
.hero-inner {
  max-width: 580px;
  width: 100%;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.hero-rotating-wrap {
  position: relative;
  width: 100%;
  height: clamp(48px, 7vw, 88px);
  overflow: hidden;
  margin-bottom: 32px;
}
.hero-rotating-word {
  position: absolute;
  left: 0;
  right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.05;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.45s ease;
}
.hero-rotating-word.active { transform: translateY(0);    opacity: 1; }
.hero-rotating-word.above  { transform: translateY(-115%); opacity: 0; }
.hero-rotating-word.below  { transform: translateY(115%);  opacity: 0; }

.hero-sub {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(247,243,235,0.6);
  font-weight: 300;
  max-width: 520px;
  margin: 0 0 10px;
}
.hero-sub strong { color: var(--gold-light); font-weight: 400; }

.hero-nhs-note {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(247,243,235,0.35);
  font-weight: 300;
  margin-bottom: 32px;
}
.hero-nhs-note strong { color: rgba(247,243,235,0.55); font-weight: 400; }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-next-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 16px;
  margin-bottom: 20px;
  max-width: 100%;
}
.hero-next-avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}
.hero-next-avail a, .hero-next-avail span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(247,243,235,0.3);
  font-weight: 300;
  flex-wrap: wrap;
}
.hero-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}

.hero-image-wrap {
  position: relative;
  z-index: 5;
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--royal-deep) 0%, transparent 30%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; height: auto; min-height: 100vh; min-height: 100dvh; }
  .hero-image-wrap { display: none; }
  .hero-content { padding: calc(var(--nav-h) + 60px) 5% 80px; text-align: center; }
  .hero-inner { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero-rotating-wrap { height: clamp(38px, 9.5vw, 50px); margin-bottom: 20px; }
  .hero-rotating-word { font-size: clamp(34px, 9vw, 44px); }
  .hero-sub-1 { font-size: 12px; line-height: 1.65; color: rgba(247,243,235,0.45); margin-bottom: 6px; }
  .hero-sub-2 { font-size: 15px; line-height: 1.5; color: rgba(247,243,235,0.9); margin-bottom: 10px; }
  .hero-nhs-note { font-size: 12px; margin-bottom: 20px; font-style: italic; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { font-size: 11px; padding: 12px 20px; letter-spacing: 0.18em; }
  .hero-next-avail a, .hero-next-avail span { font-size: 10px; }
  .hero-trust { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE SERVICES CARD GRID
═══════════════════════════════════════════════════════════ */
.mag-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mag-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--royal-deep);
  border: 1px solid rgba(201,168,76,0.1);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.mag-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.mag-item:hover::before { width: 100%; }
.mag-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.3); }

.mag-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.mag-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.mag-item:hover .mag-img-wrap img { transform: scale(1.04); }

.mag-item-body {
  padding: 24px 28px 28px;
  flex: 1;
}
.mag-item-body h3 {
  color: var(--cream);
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
.mag-item-body p {
  color: rgba(247,243,235,0.55);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 900px) { .mag-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .mag-list { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE CTA MODIFIER + BASE FOOTER
═══════════════════════════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-section p { color: rgba(247,243,235,0.7); }

footer {
  background: var(--royal-deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-copy {
  font-size: 14px;
  color: rgba(247,243,235,0.35);
  font-weight: 300;
  letter-spacing: 0.05em;
}
footer .footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
footer .footer-links a {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,235,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BLOOD TESTS — ACCORDION PANELS
═══════════════════════════════════════════════════════════ */
.panels-section { padding: 80px 0; background: var(--royal-deep); }
.panels-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
@media(max-width:640px){ .panels-inner { padding: 0 20px; } }
.panel-section-hdr { text-align: center; margin-bottom: 56px; }
.acc-category { margin-bottom: 48px; }
.acc-category:last-child { margin-bottom: 0; }
.acc-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 4px; }
.acc-cat-title { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.acc-cat-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.acc-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.acc-trigger { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.acc-trigger:hover .acc-name { color: var(--gold); }
.acc-trigger-left { display: flex; align-items: center; gap: 14px; }
.acc-icon { width: 22px; height: 22px; border: 1px solid rgba(201,168,76,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-family: 'Jost', sans-serif; font-size: 16px; line-height: 1; transition: background .2s, color .2s; }
.acc-item.open .acc-icon { background: var(--gold); color: var(--white); border-color: var(--gold); }
.acc-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--cream); transition: color .2s; }
.acc-price { font-family: 'Jost', sans-serif; font-size: 19px; font-weight: 500; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.acc-body { padding: 4px 0 28px 40px; }
.acc-body.acc-closed { display: none; }
.acc-item.open .acc-body { display: block; }
.acc-desc { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; color: rgba(247,243,235,0.65); line-height: 1.75; margin-bottom: 16px; }
.acc-inc-label { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,243,235,0.45); margin-bottom: 10px; }
.acc-inc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media(max-width:500px){ .acc-inc-list { grid-template-columns: 1fr; } }
.acc-inc-list li { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300; color: rgba(247,243,235,0.75); line-height: 2; padding-left: 14px; position: relative; }
.acc-inc-list li::before { content: '·'; color: var(--gold); position: absolute; left: 0; }

/* ═══════════════════════════════════════════════════════════
   NHS RECORDS PAGE
═══════════════════════════════════════════════════════════ */
.records-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
@media(max-width:820px){ .records-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .records-grid { grid-template-columns: 1fr; } }
.record-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12); padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start; }
.record-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.record-item h3 { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.record-item p { font-size: 14px; font-weight: 300; color: rgba(247,243,235,0.65); margin: 0; line-height: 1.6; }
.consent-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
@media(max-width:820px){ .consent-steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .consent-steps { grid-template-columns: 1fr; } }
.consent-step { text-align: center; padding: 32px 20px; background: var(--white); border: 1px solid rgba(27,67,50,0.15); border-top: 3px solid var(--gold); }
.consent-step-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: rgba(13,43,31,0.1); line-height: 1; margin-bottom: 12px; }
.consent-step h3 { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--royal-deep); margin: 0 0 10px; }
.consent-step p { font-size: 14px; font-weight: 300; color: var(--charcoal); margin: 0; line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media(max-width:640px){ .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 32px 28px; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12); border-left: 3px solid var(--gold); }
.why-card h3 { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 500; color: var(--cream); margin: 0 0 10px; }
.why-card p { font-size: 15px; font-weight: 300; color: rgba(247,243,235,0.65); margin: 0; line-height: 1.7; }
.privacy-banner { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; margin-top: 48px; }
.privacy-banner-icon { flex-shrink: 0; margin-top: 2px; }
.privacy-banner h3 { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.privacy-banner p { font-size: 14px; font-weight: 300; color: rgba(247,243,235,0.7); margin: 0; line-height: 1.7; }
@media(max-width:520px){ .privacy-banner { flex-direction: column; padding: 24px 20px; } }
