:root{
  --bg0:#07080B;
  --bg1:#13141B;
  --ivory:#F7F3EE;
  --ink:#101114;
  --muted:#7D8591;
  --muted2:rgba(239,231,214,.72);
  --gold1:#E7C883;
  --gold2:#8A6B2F;
  --line: rgba(255,255,255,.14);
  --line2: rgba(17,18,20,.12);
  --card: rgba(255,255,255,.88);
  --radius: 22px;
  --shadow: 0 22px 55px rgba(0,0,0,.20);
  --shadow2: 0 14px 28px rgba(0,0,0,.14);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--ivory), #fff 58%);
  line-height: 1.6;
}
.container{max-width:1160px;margin:0 auto;padding:0 20px}
a{color:inherit}
a:hover{opacity:.92}
.skip{position:absolute; left:-999px; width:1px; height:1px; overflow:hidden}
.skip:focus{left:20px;top:20px;width:auto;height:auto;background:#fff;padding:10px;border-radius:12px;box-shadow:var(--shadow2);z-index:1000}

/* Floating CTA */
.floating{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  gap:10px;
  z-index:80;
}
.float-btn{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(17,18,20,.14);
  background: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:900;
  box-shadow: var(--shadow2);
}
.float-btn.primary{
  color:#fff;
  border-color: transparent;
  background: linear-gradient(135deg,var(--gold1),var(--gold2));
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:70;
  background: rgba(247,243,238,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(17,18,20,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{text-decoration:none; display:flex; align-items:center}
.logo{height:44px;width:auto;display:block}
.logo.small{height:34px}
.nav{display:flex; gap:18px; align-items:center}
.nav a{text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{text-decoration:underline}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(17,18,20,.14);
  background: rgba(255,255,255,.70);
  font-weight:900; font-size:13px; text-decoration:none;
}
.pill-dark{
  background: rgba(11,12,15,.94);
  color:#fff;
  border-color: rgba(255,255,255,.14);
}
.menu{display:none; width:44px; height:44px; border-radius:14px; border:1px solid rgba(17,18,20,.14); background: rgba(255,255,255,.8)}
.menu span{display:block; width:18px; height:2px; background: var(--ink); margin:4px auto; border-radius:2px}
.mobile{
  border-top:1px solid rgba(17,18,20,.10);
  background: rgba(247,243,238,.92);
  padding:10px 0 14px;
}
.mobile a{display:block; padding:12px 20px; text-decoration:none; font-weight:800; border-bottom:1px solid rgba(17,18,20,.06)}
.mobile .btn{margin:12px 20px 0}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(17,18,20,.14);
  text-decoration:none;
  gap:10px;
}
.btn-sm{padding:10px 12px; font-size:13px}
.btn-primary{
  color:#fff;
  border-color:transparent;
  background: linear-gradient(135deg,var(--gold1),var(--gold2));
  box-shadow: var(--shadow2);
}
.btn-ghost{background: rgba(255,255,255,.72)}
.btn-ghost:hover{background: rgba(255,255,255,.95)}
.w-full{width:100%}

/* Hero */
.hero{
  position:relative;
  padding:72px 0 24px;
  background: var(--bg0);
  color:#efe7d6;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background: url('assets/bg.svg') center/cover no-repeat;
  opacity:.92;
}
.hero-photo{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.22;
  filter: saturate(1.08) contrast(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(1100px 600px at 20% 10%, rgba(0,0,0,.18), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.72));
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:start;
}
.eyebrow{
  margin:0 0 12px;
  font-weight:700;
  color: rgba(239,231,214,.78);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
h1{
  font-family:"Cormorant Garamond", serif;
  margin:0 0 16px;
  font-size:60px;
  line-height:1.02;
  letter-spacing:-.02em;
}
.lead{margin:0 0 18px; color: rgba(239,231,214,.86); font-size:16px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 14px}
.trust{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
.trust-item{
  flex:1 1 170px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 12px 14px;
}
.t1{font-weight:900}
.t2{color: rgba(239,231,214,.72); font-size:13px; font-weight:600}

.panel{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  position: sticky;
  top: 92px;
}
.kicker{font-size:12px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; color: rgba(239,231,214,.70)}
.panel-title{font-weight:900; font-size:18px; margin-top:6px}
.panel-muted{color: var(--muted)}
.line{height:1px; background: rgba(255,255,255,.14); margin:14px 0}
.row{display:flex; justify-content:space-between; gap:12px; padding:10px 12px; border-radius:16px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); margin:10px 0}
.row span{color: rgba(239,231,214,.70); font-weight:800}
.panel-img{width:100%; height:180px; object-fit:cover; border-radius:18px; border:1px solid rgba(255,255,255,.12)}
.wave{
  height: 28px;
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(214,179,106,.22), rgba(255,255,255,.06));
  clip-path: polygon(0 60%, 10% 40%, 20% 60%, 30% 35%, 40% 65%, 50% 40%, 60% 70%, 70% 45%, 80% 65%, 90% 40%, 100% 60%, 100% 100%, 0 100%);
  opacity:.52;
}

/* Sections */
.section{padding: 72px 0}
.section-head{margin-bottom:18px}
.section-head h2{
  margin:0 0 8px;
  font-family:"Cormorant Garamond", serif;
  font-size:44px;
  letter-spacing:-.02em;
}
.section-head p{margin:0;color: rgba(17,18,20,.70)}
.dark{background: linear-gradient(180deg, rgba(17,18,20,.05), rgba(255,255,255,0)); border-top:1px solid rgba(17,18,20,.06); border-bottom:1px solid rgba(17,18,20,.06)}
.light{color: rgba(239,231,214,.78)}
.light-head h2, .light-head p{color:#efe7d6}
.eyebrow.gold{color: rgba(231,200,131,.86)}

.serif{font-family:"Cormorant Garamond", serif; font-size:44px; letter-spacing:-.02em; margin:0 0 10px}

/* Services */
.svc-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:16px}
.svc{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(17,18,20,.12);
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  padding: 18px;
}
.svc-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.svc h3{margin:0; font-size:18px}
.badge{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: #fff;
  background: linear-gradient(135deg,var(--gold1),var(--gold2));
  padding:6px 10px;
  border-radius:999px;
}
.svc p{margin:10px 0 10px; color: rgba(17,18,20,.70)}
.svc-line{font-weight:800; color: rgba(17,18,20,.75)}
.svc-link{display:inline-block; margin-top:12px; font-weight:900; text-decoration:none}
.svc-link:hover{text-decoration:underline}

/* Experience */
.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:stretch}
.split-copy{padding-right:10px}
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chip{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color:#efe7d6;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
.split-media{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background-size:cover;
  background-position:center;
  min-height: 340px;
}
.gallery{margin-top:18px; display:grid; grid-template-columns:repeat(5,1fr); gap:12px}
.tile{margin:0; border-radius:22px; overflow:hidden; border:1px solid rgba(255,255,255,.12); box-shadow: 0 12px 26px rgba(0,0,0,.14)}
.tile img{width:100%; height:180px; object-fit:cover; display:block}

/* Reviews */
.reviews{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.review{
  margin:0;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(17,18,20,.12);
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  padding: 18px;
  position:relative;
}
.review:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(231,200,131,.16);
}
.review-date{
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color: rgba(17,18,20,.55);
}
.review blockquote{
  margin:12px 0 0;
  font-family:"Cormorant Garamond", serif;
  font-size:22px;
  line-height:1.15;
  color: rgba(17,18,20,.80);
}
.review figcaption{
  margin-top:12px;
  font-weight:900;
  color: rgba(17,18,20,.62);
}

/* Medical director */
.director{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items:stretch;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.director-photo img{width:100%; height:100%; object-fit:cover; display:block; min-height:340px}
.director-copy{padding:18px}
.director-copy h3{margin:10px 0 8px; color:#efe7d6; font-size:24px}
.director-copy .lead{color: rgba(239,231,214,.82)}

/* Booking */
.book-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start}
.card{
  background: rgba(255,255,255,.90);
  border:1px solid rgba(17,18,20,.12);
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  padding: 18px;
}
.card.dark{
  background: rgba(11,12,15,.94);
  color:#efe7d6;
  border-color: rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.two{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:block; font-weight:900; font-size:13px; margin:12px 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(17,18,20,.14);
  background: rgba(255,255,255,.94);
  font:inherit;
}
textarea{resize:vertical}
.success{
  margin: 12px 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(231,200,131,.16);
  border: 1px solid rgba(231,200,131,.22);
  font-weight: 900;
}
.map{margin-top:12px;border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.10);box-shadow: 0 10px 18px rgba(0,0,0,.14)}
.map iframe{width:100%;height:280px;border:0}
.darkline{background: rgba(255,255,255,.12)}
.small{font-size:13px}

/* Footer */
.footer{
  padding: 28px 0;
  background: rgba(11,12,15,.96);
  color: #efe7d6;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer a{color:#efe7d6}
.foot{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-end}
.foot-left{max-width:620px}

/* Responsive */
@media (max-width: 1150px){
  .svc-grid{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .reviews{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 940px){
  .nav,.pill{display:none}
  .menu{display:block}
  .hero-grid{grid-template-columns: 1fr}
  .panel{position:relative; top:auto}
  h1{font-size:46px}
  .split{grid-template-columns: 1fr}
  .director{grid-template-columns: 1fr}
  .book-grid{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .reviews{grid-template-columns: 1fr}
}
@media (max-width: 520px){
  .floating{right:12px; bottom:12px}
  .float-btn{padding:12px 14px}
}
/* === Medical Director Readability Fix === */
#directors .director-copy h3,
#directors .director-copy p,
#directors .director-copy .lead {
  color: #F7F3EE !important;
}

#directors .director {
  background: linear-gradient(180deg, rgba(7,8,11,.92), rgba(19,20,27,.96)) !important;
}
