*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ocean-deep:   #0a4a6e;
  --ocean-mid:    #0e7490;
  --ocean-light:  #38bdf8;
  --seafoam:      #7dd3fc;
  --pearl:        #f0f9ff;
  --sand:         #e0f2fe;
  --white:        #ffffff;
  --glass-bg:     rgba(240, 249, 255, 0.18);
  --glass-border: rgba(125, 211, 252, 0.25);
  --text-dark:    #0a2540;
  --text-mid:     #1e6a8a;
  --text-light:   rgba(10, 37, 64, 0.55);
  --section-pad:  clamp(80px, 10vw, 130px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: #f0f9ff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────── */
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  display: block;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ocean-deep);
}
.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}
.rule {
  width: 40px; height: 1px;
  background: var(--ocean-light);
  margin-bottom: 28px;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  border: none;
}
.btn-primary {
  background: var(--ocean-deep);
  color: #fff;
}
.btn-primary:hover { background: var(--ocean-mid); }

.btn-outline {
  border: 1px solid var(--ocean-mid);
  color: var(--ocean-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--ocean-mid); color: #fff; }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ─────────────────────────────────────────
   HEADER + NAV
───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 52px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(240,249,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 18px 52px;
  border-bottom: 1px solid rgba(56,189,248,0.15);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ocean-deep);
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1001;
  position: relative;
}
.logo span { font-style: italic; color: var(--ocean-mid); }

.hamburger {
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 8px;
  position: relative; z-index: 1001;
}
.hamburger .bar {
  display: block; width: 32px; height: 1.5px;
  background: var(--ocean-deep);
  transition: transform 0.45s cubic-bezier(.77,0,.175,1), opacity 0.3s ease, width 0.35s ease;
  transform-origin: center;
}
.hamburger .bar:nth-child(2) { width: 22px; }
.nav-open .hamburger .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 32px; }
.nav-open .hamburger .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-open .hamburger .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─────────────────────────────────────────
   NAV OVERLAY
───────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 500;
  display: grid;
  grid-template-columns: 1fr 380px;
  pointer-events: none;
  visibility: hidden;
}
.nav-overlay::before {
  content: '';
  position: absolute; inset: 0;
  backdrop-filter: blur(28px) saturate(1.6) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.08);
  background: rgba(224, 247, 255, 0.82);
  opacity: 0;
  transition: opacity 0.55s ease;
}
.nav-open .nav-overlay { pointer-events: all; visibility: visible; }
.nav-open .nav-overlay::before { opacity: 1; }

.nav-main {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 52px 60px 72px;
}
.nav-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ocean-mid); margin-bottom: 48px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.nav-open .nav-eyebrow { opacity: 1; transform: translateY(0); }
.nav-items { list-style: none; }
.nav-item {
  border-top: 1px solid rgba(14,116,144,0.15); overflow: visible;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nav-item:last-child { border-bottom: 1px solid rgba(14,116,144,0.15); }
.nav-open .nav-item:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.18s; }
.nav-open .nav-item:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.25s; }
.nav-open .nav-item:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.32s; }
.nav-open .nav-item:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.39s; }
.nav-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px; user-select: none;
}
.nav-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300; letter-spacing: 0.03em;
  color: var(--text-dark); line-height: 1;
  transition: color 0.25s ease;
}
.nav-trigger:hover .nav-label { color: var(--ocean-mid); }
.nav-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--ocean-mid);
  border-bottom: 1.5px solid var(--ocean-mid);
  transform: rotate(45deg); flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  margin-top: 4px;
}
.nav-item.open .nav-arrow { transform: rotate(225deg); }
.nav-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(.77,0,.175,1); }
.nav-item.open .nav-sub { grid-template-rows: 1fr; }
.nav-sub-inner { overflow: hidden; }
.nav-sub ul { list-style:none; display:flex; flex-wrap:wrap; gap:6px 20px; padding:0 0 22px 0; }
.nav-sub ul li a {
  font-size: 0.8rem; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; padding: 4px 0; position: relative; transition: color 0.2s;
}
.nav-sub ul li a::after {
  content:''; position:absolute; bottom:0; left:0; right:100%;
  height:1px; background:var(--ocean-light); transition:right 0.3s ease;
}
.nav-sub ul li a:hover { color: var(--ocean-deep); }
.nav-sub ul li a:hover::after { right: 0; }

.nav-info {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px 52px 64px 40px;
  border-left: 1px solid rgba(56,189,248,0.2);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
}
.nav-open .nav-info { opacity: 1; transform: translateY(0); }
.info-divider { width: 36px; height: 1px; background: var(--ocean-light); margin-bottom: 32px; }
.info-business {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 300; font-style: italic; color: var(--ocean-deep);
  letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 28px;
}
.info-block { margin-bottom: 22px; }
.info-tag { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ocean-mid); margin-bottom: 6px; }
.info-value { font-size: 0.82rem; font-weight: 300; letter-spacing: 0.06em; color: var(--text-dark); line-height: 1.65; }
.info-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--ocean-mid); }
.info-cta {
  display: inline-block; margin-top: 36px; padding: 13px 30px;
  border: 1px solid var(--ocean-mid); font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ocean-deep);
  text-decoration: none; transition: background 0.3s, color 0.3s;
}
.info-cta:hover { background: var(--ocean-mid); color: #fff; }

.nav-close {
  position: absolute; top: 36px; right: 52px; z-index: 10;
  display: flex; align-items: center; gap: 12px;
  background: none; border: none; cursor: pointer;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s; padding: 8px;
}
.nav-open .nav-close { opacity: 1; transform: translateY(0); }
.nav-close-label {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 300; transition: color 0.2s;
}
.nav-close-icon {
  position: relative; width: 36px; height: 36px;
  border: 1px solid rgba(14,116,144,0.35); border-radius: 50%; flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.nav-close-icon::before, .nav-close-icon::after {
  content:''; position:absolute; top:50%; left:50%;
  width:14px; height:1.5px; background:var(--ocean-mid);
  border-radius:2px; transition:background 0.25s;
}
.nav-close-icon::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-close-icon::after  { transform: translate(-50%,-50%) rotate(-45deg); }
.nav-close:hover .nav-close-label { color: var(--ocean-deep); }
.nav-close:hover .nav-close-icon { background: var(--ocean-mid); border-color: var(--ocean-mid); }
.nav-close:hover .nav-close-icon::before,
.nav-close:hover .nav-close-icon::after { background: #fff; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 72px clamp(60px,8vw,100px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 80% 10%, rgba(14,116,144,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 5% 85%, rgba(56,189,248,0.18) 0%, transparent 50%),
    linear-gradient(160deg, #cef3ff 0%, #e8f8ff 45%, #b6e8ff 100%);
}

/* decorative wave lines */
.hero::before {
  content: '';
  position: absolute; bottom: -60px; left: -5%;
  width: 110%; height: 260px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,160 C360,260 720,60 1080,160 C1260,210 1360,180 1440,160 L1440,260 L0,260 Z' fill='%23ffffff'/%3E%3C/svg%3E") center/cover no-repeat;
  z-index: 2;
}

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: 0.4;
}
.hero-orb-1 { width: 600px; height: 600px; top: -80px; right: -100px; background: rgba(56,189,248,0.4); animation: orbFloat 14s ease-in-out infinite alternate; }
.hero-orb-2 { width: 400px; height: 400px; bottom: 100px; left: -60px; background: rgba(14,116,144,0.25); animation: orbFloat 10s ease-in-out infinite alternate-reverse; }

@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px,-35px) scale(1.06); }
}

.hero-content { position: relative; z-index: 3; max-width: 820px; }

.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ocean-mid); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.01em;
  color: var(--ocean-deep);
  opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero h1 em { font-style: italic; color: var(--ocean-mid); }

.hero-sub {
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--text-mid); margin-top: 24px; max-width: 480px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-cta {
  margin-top: 44px;
  opacity: 0; animation: fadeUp 0.9s ease 1.0s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   HERO BUBBLES
───────────────────────────────────────── */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-bubbles svg {
  width: 100%; height: 100%;
}

/* ─────────────────────────────────────────
   SECTION: EXCELLENCE (split layout)
───────────────────────────────────────── */
.section-excellence {
  padding: var(--section-pad) 72px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.excellence-visual {
  position: relative; height: 520px;
}
.excellence-card {
  position: absolute;
  background: linear-gradient(135deg, #e0f7ff, #b3e6ff);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 2px;
}
.excellence-card-main {
  inset: 0 60px 0 0;
  display: flex; align-items: flex-end;
  padding: 36px;
  overflow: hidden;
}
.excellence-card-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(56,189,248,0.15) 0%, rgba(14,116,144,0.3) 100%);
}
.card-stat {
  position: relative; z-index: 1;
}
.card-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300;
  color: var(--ocean-deep); line-height: 1;
}
.card-stat-label {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ocean-mid);
  margin-top: 6px;
}
.excellence-card-accent {
  width: 200px; height: 200px;
  bottom: -30px; right: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean-deep);
}
.card-accent-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.8); text-align: center; line-height: 1.6;
  padding: 20px;
}

.excellence-text { }
.excellence-text .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }

/* ─────────────────────────────────────────
   SECTION: ANTI-AGING EXPERTS (tinted bg)
───────────────────────────────────────── */
.section-experts {
  padding: var(--section-pad) 72px;
  background: linear-gradient(160deg, #f0fbff 0%, #e2f5ff 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experts-text .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }
.experts-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-pill {
  background: #fff;
  border: 1px solid rgba(56,189,248,0.3);
  padding: 28px 24px;
  border-radius: 2px;
}
.feature-pill:nth-child(2) { margin-top: 32px; }
.feature-pill:nth-child(4) { margin-top: 32px; }
.pill-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ocean-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pill-icon svg { width: 16px; height: 16px; stroke: var(--ocean-mid); fill: none; stroke-width: 1.5; }
.pill-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--ocean-deep);
  margin-bottom: 8px;
}
.pill-body { font-size: 0.78rem; font-weight: 300; color: var(--text-light); line-height: 1.6; }

/* ─────────────────────────────────────────
   SECTION: DOCTOR BIO
───────────────────────────────────────── */
.section-doctor {
  padding: var(--section-pad) 72px;
  background: var(--ocean-deep);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.section-doctor::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(56,189,248,0.08);
  pointer-events: none;
}
.doctor-aside { padding-top: 8px; }
.doctor-name-block { border-left: 2px solid var(--ocean-light); padding-left: 24px; margin-bottom: 40px; }
.doctor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.1;
}
.doctor-title { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--seafoam); margin-top: 10px; }
.doctor-credentials { list-style: none; }
.doctor-credentials li {
  font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.6);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em; line-height: 1.5;
}
.doctor-credentials li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.doctor-bio .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 28px; }
.doctor-bio .body-text { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

/* ─────────────────────────────────────────
   SECTION: SIMPLY THE BEST + QUOTE
───────────────────────────────────────── */
.section-best {
  padding: var(--section-pad) 72px;
  background: #fff;
}
.best-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.best-text .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }

.quote-block {
  background: linear-gradient(135deg, #e8f8ff 0%, #d0efff 100%);
  border: 1px solid rgba(56,189,248,0.25);
  padding: 52px 44px;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; line-height: 0.6;
  color: rgba(14,116,144,0.12);
  position: absolute; top: 32px; left: 28px;
  pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300; font-style: italic;
  color: var(--ocean-deep); line-height: 1.7;
  position: relative; z-index: 1;
  margin-bottom: 28px;
}
.quote-attr {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ocean-mid);
}

/* ─────────────────────────────────────────
   SECTION: SERVICES TRIO (injectables / procedures / men's)
───────────────────────────────────────── */
.section-services {
  padding: var(--section-pad) 72px;
  background: linear-gradient(160deg, #f0fbff 0%, #e2f5ff 100%);
}
.services-header {
  text-align: center; max-width: 600px; margin: 0 auto 64px;
}
.services-header .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(56,189,248,0.2);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,116,144,0.1); }
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--ocean-light);
  transition: right 0.4s ease;
}
.service-card:hover::after { right: 0; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(14,116,144,0.1); line-height: 1;
  position: absolute; top: 24px; right: 32px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: var(--ocean-deep); margin-bottom: 16px; line-height: 1.2;
}
.service-body { font-size: 0.87rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.service-link {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ocean-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s; border: none; background: none; cursor: pointer; padding: 0;
  font-family: 'Jost', sans-serif;
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-link:hover { color: var(--ocean-deep); }
.service-link:hover::after { transform: translateX(4px); }

/* ─────────────────────────────────────────
   SECTION: REVIEW
───────────────────────────────────────── */
.section-review {
  padding: var(--section-pad) 72px;
  background: var(--ocean-deep);
  text-align: center;
  position: relative; overflow: hidden;
}
.section-review::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(56,189,248,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.review-stars { color: var(--ocean-light); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 36px; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.75;
  max-width: 820px; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
.review-author { font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--seafoam); }
.review-badge { color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.2em; margin-top: 6px; }

/* ─────────────────────────────────────────
   SECTION: APPOINTMENT FORM
───────────────────────────────────────── */
.section-appointment {
  padding: var(--section-pad) 72px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.appt-intro .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.appt-intro .body-text { margin-bottom: 32px; }

.appt-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ocean-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(14,116,144,0.2);
  background: #f8fcff;
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean-mid); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 8px; }

/* ─────────────────────────────────────────
   SECTION: LOCATION
───────────────────────────────────────── */
.section-location {
  padding: var(--section-pad) 72px;
  background: linear-gradient(160deg, #f0fbff 0%, #e2f5ff 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 36px; }
.location-details { display: flex; flex-direction: column; gap: 28px; }
.loc-block { }
.loc-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ocean-mid); margin-bottom: 8px; }
.loc-value { font-size: 0.9rem; font-weight: 300; color: var(--text-dark); line-height: 1.7; }
.loc-value a { color: var(--ocean-mid); text-decoration: none; }
.loc-value a:hover { color: var(--ocean-deep); }

.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 6px 24px; }
.hours-day { font-size: 0.82rem; font-weight: 400; color: var(--text-dark); }
.hours-time { font-size: 0.82rem; font-weight: 300; color: var(--text-mid); }
.hours-closed { color: rgba(10,37,64,0.35); }

.location-map {
  height: 420px;
  background: linear-gradient(135deg, #c8ecff, #a8daff);
  border: 1px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.location-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(14,116,144,0.04) 0px, rgba(14,116,144,0.04) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(14,116,144,0.04) 0px, rgba(14,116,144,0.04) 1px, transparent 1px, transparent 48px);
}
.map-pin {
  position: relative; z-index: 1; text-align: center;
}
.map-pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ocean-deep);
  margin: 0 auto 12px;
  box-shadow: 0 0 0 6px rgba(14,116,144,0.2), 0 0 0 12px rgba(14,116,144,0.08);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(14,116,144,0.2), 0 0 0 12px rgba(14,116,144,0.08); }
  50%       { box-shadow: 0 0 0 10px rgba(14,116,144,0.15), 0 0 0 20px rgba(14,116,144,0.04); }
}
.map-pin-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ocean-deep); font-weight: 400;
}

/* ─────────────────────────────────────────
   FOOTER — FULL
───────────────────────────────────────── */
.footer-full {
  background: #061e30;
  color: rgba(255,255,255,0.65);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* top bar */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 72px 64px;
  border-bottom: 1px solid rgba(56,189,248,0.1);
}

.footer-brand { }
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; display: inline-block; margin-bottom: 18px;
}
.footer-brand-logo span { font-style: italic; color: var(--seafoam); }
.footer-tagline {
  font-size: 0.78rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.4); max-width: 280px; margin-bottom: 32px;
}

/* social icons */
.footer-socials {
  display: flex; gap: 12px; align-items: center;
}
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color 0.25s, background 0.25s;
  flex-shrink: 0;
}
.social-icon svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); transition: fill 0.25s; }
.social-icon:hover { border-color: var(--ocean-light); background: rgba(56,189,248,0.1); }
.social-icon:hover svg { fill: var(--ocean-light); }

/* nav columns */
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--seafoam); margin-bottom: 22px; font-weight: 400;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col-links a {
  font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s; display: inline-block;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }

/* NAP column */
.footer-nap { display: flex; flex-direction: column; gap: 18px; }
.nap-block { }
.nap-label {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ocean-light); margin-bottom: 6px; opacity: 0.7;
}
.nap-value {
  font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.5);
}
.nap-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nap-value a:hover { color: var(--seafoam); }

/* hours mini grid */
.footer-hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.fh-day { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.fh-time { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.fh-closed { color: rgba(255,255,255,0.2); }

/* mid bar — book CTA */
.footer-mid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 72px;
  border-bottom: 1px solid rgba(56,189,248,0.08);
  gap: 24px;
}
.footer-mid-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.6);
}
.footer-mid-text strong { color: rgba(255,255,255,0.85); font-style: normal; font-weight: 300; }

/* bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 72px;
  gap: 24px; flex-wrap: wrap;
}
.footer-copy-text {
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}
.footer-legal-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-legal-links a {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 52px 28px 44px; }
  .footer-mid  { flex-direction: column; text-align: center; padding: 32px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 28px; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 20px 28px; }
  .nav-main { padding: 80px 28px 40px; }
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-info { display: none; }

  .hero { padding: 0 28px clamp(50px,8vw,80px); }
  .section-excellence,
  .section-experts,
  .section-doctor,
  .section-best .best-inner,
  .section-appointment,
  .section-location { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px; }
  .section-services { padding: 64px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-review { padding: 64px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .excellence-visual { height: 300px; }
  .excellence-card-accent { width: 130px; height: 130px; }
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
@media (pointer: fine) {
    *, *::before, *::after { cursor: none !important; }
  }

  #cursor-root {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
  }

  .cb {
    position: absolute;
    transform: translate(-50%, -50%);
    will-change: left, top, width, height;
  }

  /* Main cursor bubble */
  #cbMain {
    width: 28px; height: 28px;
    transition: width 0.25s cubic-bezier(0.34,1.56,0.64,1),
                height 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }

  /* Shrinking back — applied via JS class */
  #cbMain.shrinking {
    transition: width 1.8s cubic-bezier(0.16,1,0.3,1),
                height 1.8s cubic-bezier(0.16,1,0.3,1);
  }

  /* Trailer bubbles */
  #cbT1 { width: 11px;  height: 11px;  }   /* furthest — smallest  */
  #cbT2 { width: 16px; height: 16px; }   /* middle               */
  #cbT3 { width: 22px; height: 22px; }   /* closest — biggest    */

  .cb-trailer {
    transition: opacity 0.4s ease;
  }
