/* ============================================================
   DESIGN TOKENS
   Palette: Deep navy / champagne gold / warm ivory
   Signature: Hairline gold rule + italic Fraunces accent
   ============================================================ */
:root {
  --navy:        #0a2647;
  --navy-mid:    #0f3460;
  --navy-light:  #18467e;
  --gold:        #c9a86c;
  --gold-light:  #e2c98e;
  --gold-dim:    rgba(201,168,108,.18);
  --ivory:       #f2ede4;
  --text:        #eaf0f7;
  --muted:       #9eb5cc;
  --border:      rgba(201,168,108,.22);
  --glass:       rgba(255,255,255,.045);
  --glass-hover: rgba(255,255,255,.08);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --shadow:      0 20px 60px rgba(0,0,0,.35);
  --shadow-sm:   0 8px 24px rgba(0,0,0,.22);
  --transition:  .32s cubic-bezier(.4,0,.2,1);
}

/* ============================================================ RESET */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body {
  background: linear-gradient(180deg, var(--navy) 0%, #123059 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto }
a { color: inherit; text-decoration: none }
button { cursor: pointer; font: inherit }
ul, ol { list-style: none }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important }
}

/* ============================================================ SCROLL PROGRESS */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width .1s linear;
}

/* ============================================================ LOADING SCREEN */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none }
.loader-logo {
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.loader-bar-wrap {
  width: 160px; height: 2px;
  background: var(--gold-dim);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill { from { width:0 } to { width:100% } }

/* ============================================================ TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: Fraunces, serif; line-height: 1.1; font-weight: 500 }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: -.02em }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.015em }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500 }
h4 { font-size: 1.1rem; font-weight: 500 }
em { font-style: italic; color: var(--gold) }
.eyebrow {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: '— '; opacity: .6 }
.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
  margin-top: 14px;
}
.section-lead.center { margin-inline: auto }

/* ============================================================ LAYOUT */
.section { padding: 110px 0 }
.section-alt { background: linear-gradient(180deg, var(--navy-mid), var(--navy)) }
.section-dark { background: linear-gradient(180deg, #0d2c52, var(--navy)) }
.wrap { max-width: 1180px; margin-inline: auto; padding-inline: 28px }
.wrap-narrow { max-width: 760px; margin-inline: auto; padding-inline: 28px }
.center { text-align: center }
.grid { display: grid; gap: 22px }
.grid-2 { grid-template-columns: repeat(2, 1fr) }
.grid-3 { grid-template-columns: repeat(3, 1fr) }
.grid-4 { grid-template-columns: repeat(4, 1fr) }
@media (max-width:900px) {
  .grid-4 { grid-template-columns: repeat(2,1fr) }
  .grid-3 { grid-template-columns: repeat(2,1fr) }
}
@media (max-width:560px) {
  .grid-4,.grid-3,.grid-2 { grid-template-columns:1fr }
  .section { padding: 80px 0 }
}

/* Gold hairline divider — the page signature */
.gold-rule {
  display: block;
  width: 52px; height: 1.5px;
  background: var(--gold);
  margin: 20px auto 36px;
  opacity: .75;
}
.gold-rule.left { margin-left: 0 }

/* ============================================================ GLASS CARDS */
.card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,108,.55);
  background: var(--glass-hover);
  box-shadow: var(--shadow);
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #12202e;
  border-color: transparent;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,108,.35) }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold) }
.btn-block { width: 100%; display: flex }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,24,40,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4) }
.nav-inner {
  max-width: 1200px; margin-inline: auto;
  padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; gap: 20px;
}
.brand {
  font-family: Fraunces, serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--text);
  display: flex; align-items: center; gap: 9px;
  white-space: nowrap;
  margin-right: 6px;
  flex-shrink: 0;
}
.brand-mark { color: var(--gold); line-height: 0 }
.brand em { color: var(--gold); font-style: italic }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 13px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--glass) }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 100px;
  color: #25d166;
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-wa:hover { background: rgba(37,211,102,.1); border-color: #25d166 }
.nav-cta { flex-shrink: 0; font-size: .85rem; padding: 9px 22px }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  background: none; border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity:0; transform: scaleX(0) }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(7,24,40,.97);
  backdrop-filter: blur(20px);
  padding: 24px 28px 32px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: all var(--transition);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1 }
.mobile-menu a {
  padding: 13px 0;
  font-size: 1.05rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none }
.mobile-menu a:hover { color: var(--gold) }
.mobile-menu .btn { margin-top: 16px; justify-content: center }
@media (max-width:960px) {
  .nav-links, .nav-wa { display: none }
  .nav-toggle { display: flex }
  .nav-cta { display: none }
}

/* ============================================================ HERO */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 60px;
  position: relative; overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .6;
}
/* Ambient orbs */
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,108,.1), transparent 70%);
  top: -120px; right: -60px;
  animation: orb1 12s ease-in-out infinite alternate;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,100,180,.08), transparent 70%);
  bottom: 40px; left: -80px;
  animation: orb2 16s ease-in-out infinite alternate;
}
@keyframes orb1 { from { transform:translate(0,0) scale(1) } to { transform:translate(40px,20px) scale(1.1) } }
@keyframes orb2 { from { transform:translate(0,0) scale(1) } to { transform:translate(-20px,-30px) scale(1.05) } }
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin-inline: auto; padding-inline: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-copy { max-width: 580px }
.hero h1 { color: var(--text); margin-bottom: 22px }
.hero h1 .accent {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* Hero Visual — photo + revolving orbit */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-orbit-wrap {
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Photo frame */
.hero-photo-frame {
  position: relative; z-index: 2;
  width: 260px; height: 320px;
  border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 30px 80px rgba(0,0,0,.5);
  background: linear-gradient(160deg, var(--navy-light), var(--navy-mid));
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
/* Fallback illustrated doctor when hero.png not found */
.hero-photo-frame .hero-photo-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
/* scan line over photo */
.hero-photo-scan {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
}
.hero-photo-scan::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: .45;
  animation: heroScan 4s ease-in-out infinite;
}
@keyframes heroScan { 0%,100%{top:0} 50%{top:100%} }

/* Tag at bottom of frame */
.hero-photo-tag {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; align-items: center; gap: 6px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .72rem; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.hero-photo-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #25d166;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* Orbit rings */
.orbit-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}
.orbit-ring-outer {
  inset: -10px;
  border-color: rgba(201,168,108,.12);
  animation: orbitSpin 28s linear infinite;
}
.orbit-ring-mid {
  inset: 20px;
  border-color: rgba(201,168,108,.08);
  animation: orbitSpin 22s linear infinite reverse;
}
@keyframes orbitSpin { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }

/* Orbiting badges */
.orbit-badges {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}
.orbit-badge {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  background: rgba(20,40,64,.95);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(226,201,142,.55);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: .74rem; font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.35), 0 0 14px rgba(201,168,108,.25);
  letter-spacing: .04em;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  /* counter-rotate so text stays upright */
  animation: orbitSpin 18s linear infinite reverse;
}
.orbit-badge svg { flex-shrink: 0 }
/* Position each badge on the circle (radius ≈ 180px from center 210,210) */
/* angle = 0,45,90,135,180,225,270,315 → 8 badges */
.orbit-badges { width: 420px; height: 420px; top: 0; left: 0 }
/* We position the orbit-badges container's children using CSS custom props */
.ob1  { top: calc(210px - 1.25em - 180px); left: calc(210px - 50px) }
.ob2  { top: calc(210px - 1.25em - 127px); left: calc(210px - 50px + 127px) }
.ob3  { top: calc(210px - 1.25em);         left: calc(210px - 50px + 180px) }
.ob4  { top: calc(210px - 1.25em + 127px); left: calc(210px - 50px + 127px) }
.ob5  { top: calc(210px - 1.25em + 180px); left: calc(210px - 50px) }
.ob6  { top: calc(210px - 1.25em + 127px); left: calc(210px - 50px - 127px) }
.ob7  { top: calc(210px - 1.25em);         left: calc(210px - 50px - 180px) }
.ob8  { top: calc(210px - 1.25em - 127px); left: calc(210px - 50px - 127px) }

/* Glow behind photo */
.hero-orbit-glow {
  position: absolute; z-index: 0;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,108,.14) 0%, transparent 70%);
  pointer-events: none;
  animation: orb1 10s ease-in-out infinite alternate;
}

@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; text-align:center }
  .hero-copy { max-width:100% }
  .hero-sub { max-width:100% }
  .hero-actions { justify-content:center }
  .hero-badge { display:none }
  .hero-visual { display:none }
}

/* Stats bar */
.stats-bar {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 60px auto 0;
  padding-inline: 28px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  background: var(--glass);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.stat-num {
  font-family: Fraunces, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  font-weight: 400;
  display: block; line-height: 1;
}
.stat-suffix { color: var(--gold); font-size: 1.4rem; font-family: Fraunces, serif }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 6px; display: block; letter-spacing: .04em }
@media (max-width:700px) { .stats-bar { grid-template-columns: repeat(2,1fr) } }
@media (max-width:400px) { .stats-bar { grid-template-columns: 1fr } }

/* ============================================================ WHY US */
.why-grid { margin-top: 56px }
.feature-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px }
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.7 }

/* ============================================================ DIFFERENT */
.different-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 70px; align-items: start;
}
.different-copy { position: sticky; top: 110px }
.different-copy h2 { margin-bottom: 0 }
.diff-list {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
.diff-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 20px 20px 20px;
  transition: background var(--transition), transform var(--transition);
}
.diff-item:hover { background: var(--glass-hover); transform: translateX(4px) }
.diff-item strong {
  display: block;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.diff-item span { color: var(--muted); font-size: .84rem; line-height: 1.65 }
@media (max-width:900px) {
  .different-layout { grid-template-columns:1fr }
  .different-copy { position:static }
  .diff-list { grid-template-columns:1fr }
}

/* ============================================================ SERVICES */
.service-card { overflow: hidden; padding: 0 }
.service-body { padding: 26px 26px 28px }
.service-img-wrap {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-img-wrap svg { width: 100%; height: 100%; display: block }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease }
.service-card:hover .service-img-wrap img { transform: scale(1.05) }
.service-body h3 { font-size: 1.1rem; margin-bottom: 8px }
.service-body p { color: var(--muted); font-size: .88rem; line-height: 1.7 }
.service-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease, gap .2s ease;
}
.service-cta:hover { color: var(--gold-light); border-color: var(--gold-light); gap: 8px }

/* ============================================================ TECHNOLOGY */
.tech-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  margin-top: 56px;
}
.tech-item { padding: 0; overflow: hidden }
.tech-img-wrap {
  height: 190px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tech-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease }
.tech-item:hover .tech-img-wrap img { transform: scale(1.05) }
.tech-item-body { padding: 26px 26px 28px }
.tech-item h4 { margin-bottom: 8px; font-size: 1rem }
.tech-item p { color: var(--muted); font-size: .87rem; line-height: 1.7 }
@media (max-width:900px) { .tech-grid { grid-template-columns: repeat(2,1fr) } }
@media (max-width:560px) { .tech-grid { grid-template-columns: 1fr } }

/* ============================================================ TEAM */
.doc-card { padding: 0; overflow: hidden; text-align: center }
.doc-photo-wrap {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.doc-avatar-svg { color: var(--gold); opacity: .18; position: absolute; bottom: -20px }
.doc-initials {
  position: relative; z-index: 1;
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: Fraunces, serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 500;
}
.doc-body { padding: 24px 24px 28px }
.doc-body h3 { font-size: 1.1rem; margin-bottom: 5px }
.doc-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.doc-body p { color: var(--muted); font-size: .87rem; line-height: 1.7 }

/* ============================================================ GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  height: 200px;
}
.gallery-half {
  display: flex; align-items: flex-end; justify-content: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.gallery-half.before { background: #0e2235; color: var(--muted) }
.gallery-half.after  { background: #112940; color: var(--gold) }
.gallery-half .label {
  position: relative; z-index: 2;
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(7,24,40,.75);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .65rem; letter-spacing: .1em;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(7,24,40,.9));
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
@media (max-width:900px) { .gallery-grid { grid-template-columns: 1fr } }

/* ---- Clinic video tour ---- */
.tour-grid { grid-template-columns: repeat(2, 1fr); }
.tour-card { padding: 0; overflow: hidden; }
.tour-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #071828; overflow: hidden; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.tour-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(7,24,40,.28); cursor: pointer; border: none; padding: 0;
  transition: background var(--transition);
}
.tour-play:hover { background: rgba(7,24,40,.4); }
.tour-play-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(10,38,71,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.tour-play:hover .tour-play-icon { transform: scale(1.08); background: rgba(201,168,108,.25); }
.tour-play-icon svg { width: 20px; height: 20px; margin-left: 3px; }
.tour-video-wrap.playing .tour-play { display: none; }
.tour-caption { padding: 20px 24px 24px; }
.tour-caption h3 { font-size: 1.05rem; margin-bottom: 4px; }
.tour-caption p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (max-width:900px) { .tour-grid { grid-template-columns: 1fr } }

/* ---- Real clinical case photos ---- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.case-grid .gallery-card:first-child { grid-column: span 2; grid-row: span 1; }
.case-photo {
  position: relative; height: 240px; overflow: hidden; background: #0e2235;
}
.case-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease }
.gallery-card:hover .case-photo img { transform: scale(1.05) }
.case-credit {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(7,24,40,.75); border: 1px solid var(--border); border-radius: 100px;
  padding: 3px 10px; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
}
@media (max-width:1100px) { .case-grid { grid-template-columns: repeat(2,1fr) } .case-grid .gallery-card:first-child{grid-column:span 2} }
@media (max-width:600px) { .case-grid { grid-template-columns: 1fr } .case-grid .gallery-card:first-child{grid-column:span 1} }

/* ---- Featured smile transformation ---- */
.feature-ba {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
}
.feature-ba-photo { position: relative; height: 100%; min-height: 360px; background: #0e2235 }
.feature-ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.feature-ba-copy {
  padding: 44px 44px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}
.feature-ba-copy .eyebrow { margin-bottom: 14px }
.feature-ba-copy h3 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.2 }
.feature-ba-copy p { color: var(--muted); font-size: .92rem; line-height: 1.75; margin-bottom: 8px }
@media (max-width:860px) {
  .feature-ba { grid-template-columns: 1fr }
  .feature-ba-photo { min-height: 280px }
  .feature-ba-copy { padding: 32px 26px }
}

/* ---- Smile / full-mouth case strip ---- */
.smile-strip-head { margin-top: 64px; text-align: center }
.smile-strip-head h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px }
.smile-strip-head p { color: var(--muted); font-size: .85rem }
.smile-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  margin-top: 28px;
}
.smile-strip .gallery-card .case-photo { height: 170px }
@media (max-width:1100px) { .smile-strip { grid-template-columns: repeat(3,1fr) } }
@media (max-width:640px) { .smile-strip { grid-template-columns: repeat(2,1fr) } }

/* ============================================================ TESTIMONIALS */
.testimonial {
  padding: 32px 28px;
  position: relative;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px }
.testimonial p { color: var(--muted); font-size: .93rem; line-height: 1.75; font-style: italic }
.testimonial cite {
  display: block; margin-top: 18px;
  color: var(--text); font-style: normal;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
}
.testimonial cite::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); margin-right: 8px; vertical-align: middle }
.testimonial-quote {
  position: absolute; top: 20px; right: 24px;
  font-family: Fraunces, serif; font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .08; pointer-events: none;
  font-weight: 500;
}

/* Google Reviews band */
.reviews-band {
  margin-top: 52px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  backdrop-filter: blur(12px);
}
.reviews-band .g-logo { flex-shrink: 0 }
.reviews-rating { font-family: Fraunces, serif; font-size: 3rem; color: var(--gold); line-height: 1 }
.reviews-meta { display: flex; flex-direction: column; gap: 4px }
.reviews-meta .stars { font-size: .9rem; letter-spacing: 1px }
.reviews-meta small { color: var(--muted); font-size: .8rem }
.reviews-cta { margin-left: auto }
@media (max-width:600px) { .reviews-band { flex-direction:column; text-align:center } .reviews-cta { margin-left:0 } }

/* ============================================================ PATIENT JOURNEY */
.journey-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  margin-top: 56px; position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
  z-index: 0;
}
.journey-step { text-align: center; padding: 0 12px; position: relative; z-index: 1 }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--glass);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: Fraunces, serif; font-size: 1.3rem; color: var(--gold); font-weight: 500;
  backdrop-filter: blur(8px);
}
.journey-step h4 { font-size: .92rem; margin-bottom: 6px }
.journey-step p { color: var(--muted); font-size: .82rem; line-height: 1.6 }
@media (max-width:860px) {
  .journey-steps { grid-template-columns: 1fr; gap: 24px }
  .journey-steps::before { display: none }
}

/* ============================================================ FAQ */
.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 12px }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(201,168,108,.45) }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem; color: var(--gold); line-height: 1;
  flex-shrink: 0; transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg) }
.faq-item[open] summary { color: var(--gold) }
.faq-body { padding: 0 24px 22px; color: var(--muted); font-size: .9rem; line-height: 1.75 }

/* ============================================================ BOOKING */
.book-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.book-aside h2 { margin-bottom: 14px }
.book-info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px }
.book-info-item { display: flex; gap: 14px; align-items: flex-start }
.book-info-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.book-info-icon svg { width: 16px; height: 16px }
.book-info-text strong { display: block; font-size: .88rem; margin-bottom: 2px }
.book-info-text span { color: var(--muted); font-size: .83rem }
.book-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
}
.form-group { margin-bottom: 18px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: Inter, sans-serif; font-size: .93rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.form-group select option { background: var(--navy-mid); color: var(--text) }
.form-group textarea { resize: vertical; min-height: 90px }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(.5) }
.form-success {
  text-align: center; padding: 28px;
  color: #4ade80; font-weight: 600;
  display: none;
}
.form-alt {
  text-align: center; margin-top: 18px;
  font-size: .85rem; color: var(--muted);
}
.form-alt a { color: var(--gold) }
@media (max-width:860px) { .book-wrap { grid-template-columns:1fr } .form-row { grid-template-columns:1fr } }

/* ============================================================ MAP */
.map-embed {
  width: 100%; height: 340px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 52px;
}
.map-embed iframe { width: 100%; height: 100%; border: none }

/* ============================================================ FOOTER */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #040e18 100%);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
  max-width: 1180px; margin-inline: auto; padding-inline: 28px;
}
.footer-brand { margin-bottom: 14px }
.footer-brand .brand { font-size: 1.4rem }
.footer-tagline { color: var(--muted); font-size: .88rem; line-height: 1.7; margin-bottom: 22px }
.social-row { display: flex; gap: 10px }
.social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all var(--transition);
}
.social-icon:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold) }
.footer-col h5 {
  font-family: Inter, sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  color: var(--muted); font-size: .88rem; line-height: 1.8; display: block;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold) }
.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding: 22px 28px;
  max-width: 1180px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: .8rem; color: var(--muted);
}
@media (max-width:860px) { .footer-inner { grid-template-columns: 1fr } }

/* ============================================================ FLOATING BUTTONS */
.fab-wa, .fab-call, .fab-top {
  position: fixed; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transition: all var(--transition);
  color: #fff;
}
.fab-wa {
  bottom: 150px; right: 20px;
  background: #25d166;
}
.fab-call {
  bottom: 88px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.fab-call svg { color: #12202e }
.fab-top {
  bottom: 20px; right: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  color: var(--gold);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0) }
.fab-wa:hover, .fab-call:hover, .fab-top:hover { transform: scale(1.08) translateY(-2px) }
.fab-wa:hover { box-shadow: 0 8px 28px rgba(37,209,102,.4) }
.fab-call:hover { box-shadow: 0 8px 28px rgba(201,168,108,.4) }
.fab-label {
  position: absolute; right: 62px;
  background: rgba(7,24,40,.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .75rem; font-weight: 600; white-space: nowrap;
  color: var(--text);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.fab-wa:hover .fab-label, .fab-call:hover .fab-label { opacity: 1 }

/* ============================================================ SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ============================================================ MISC */
.gold-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  color: var(--gold); text-transform: uppercase;
}
