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

:root {
  --navy:     #1A2D5A;
  --navy-mid: #243B72;
  --navy-lt:  #EEF2FA;
  --blue:     #2E5FA3;
  --gold:     #C09A45;
  --gold-lt:  #F7F0DC;
  --white:    #FFFFFF;
  --off-white:#F9F8F5;
  --text:     #1C1C1C;
  --muted:    #6A6A6A;
  --border:   #E0DDD6;
  --shadow:   0 2px 24px rgba(26,45,90,.09);
  --shadow-lg:0 10px 50px rgba(26,45,90,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; font-size: 16px; letter-spacing: 0.5px; font-weight: 400; }
img { display: block; max-width: 100%; }

/* ── CONTAINERS ─────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 36px; }
.section { padding: 96px 0; }
.section-gray { background: var(--off-white); }
.section-navy { background: var(--navy); }
.text-center { text-align: center; }

/* ── TYPE ─────────────────────────────── */
.eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }

h1, h2, h3 { font-family: 'Raleway', sans-serif; line-height: 1.15; letter-spacing: -0.2px; }

.section-heading {
  font-size: clamp(30px, 3.5vw, 46px); font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.section-sub.wide { max-width: 780px; }
.section-sub.centered { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  padding: 15px 34px; border: none; cursor: pointer; transition: .22s;
}
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a8832e; }
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0f1c3a; }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── TOP BAR ─────────────────────────────── */
.topbar { background: #0E1C38; padding: 8px 0; font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-grp { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.72); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: .2s; font-family: 'Roboto', sans-serif; letter-spacing: 0.3px; }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); font-size: 11px; }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--gold); border-bottom: none;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.nav-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-emblem { width: 54px; height: 50px; object-fit: cover; object-position: left center; flex-shrink: 0; }
.nav-brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > a, .nav-links > .nav-dropdown > .nav-drop-toggle {
  padding: 10px 15px; font-family: 'Raleway', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 1px; color: var(--white);
  text-decoration: none; transition: color .2s; white-space: nowrap; text-transform: uppercase;
  background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px;
}
.nav-links > a:hover,
.nav-links > .nav-dropdown:hover > .nav-drop-toggle { color: var(--navy); }
.nav-links > a.active,
.nav-links > .nav-dropdown.active > .nav-drop-toggle { color: var(--navy); }

.nav-book {
  margin-left: 16px;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 11px 24px !important;
  font-weight: 700 !important;
}
.nav-book:hover { background: #0f1c3a !important; color: var(--white) !important; }

/* ── DROPDOWN ─────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-drop-toggle i.fa-chevron-down { font-size: 10px; transition: transform .2s; }
.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  min-width: 280px;
  box-shadow: 0 16px 48px rgba(10,20,50,.45);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 100;
}
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: none; }

.drop-section-label {
  font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  padding: 16px 20px 5px; border-top: 1px solid rgba(255,255,255,.1);
}
.drop-section-label:first-child { border-top: none; padding-top: 14px; }

.nav-drop-menu a {
  display: block; padding: 9px 20px 9px 22px;
  font-family: 'Roboto', sans-serif; font-size: 13.5px; color: rgba(255,255,255,.78);
  text-decoration: none; white-space: nowrap;
  text-transform: none; letter-spacing: 0; font-weight: 400;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s, padding-left .15s;
}
.nav-drop-menu a:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-left-color: var(--gold);
  padding-left: 28px;
}
.nav-drop-menu .drop-view-all {
  display: block; padding: 12px 20px; margin: 6px 0 0;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: none;
  font-weight: 700;
  font-family: 'Raleway', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
}
.nav-drop-menu .drop-view-all:hover {
  background: var(--gold); color: var(--navy);
  padding-left: 20px; border-left-color: transparent;
}

/* wide dropdown */
.nav-drop-menu.wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; }
.nav-drop-menu.wide .drop-col { padding-bottom: 12px; }
.nav-drop-menu.wide .drop-col:first-child { border-right: 1px solid rgba(255,255,255,.08); }
.nav-drop-menu.wide .drop-section-label { padding-top: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--white); border-radius: 1px; transition: .3s; }

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/001-83-web.jpg');
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(26,45,90,.82) 0%, rgba(26,45,90,.50) 35%, rgba(26,45,90,.18) 65%, rgba(26,45,90,.10) 100%),
    linear-gradient(to right, rgba(26,45,90,.30) 0%, rgba(26,45,90,.05) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  min-height: 80vh; padding: 18px 0 72px;
}
.hero-bottom { max-width: 620px; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(42px, 6vw, 78px);
  font-weight: 700; color: var(--white); line-height: 1.12;
  margin-bottom: 22px; letter-spacing: 0;
  text-shadow: 0 2px 28px rgba(10,20,50,.6);
  text-align: center;
}
.hero h1 span {
  font-family: 'Playfair Display', serif;
  color: #e8c96a; font-weight: 400; display: block;
  font-style: italic; font-size: 1em; letter-spacing: 0.5px;
  text-align: center;
}
.hero-sub { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.7; max-width: 520px; margin-bottom: 38px; font-weight: 400; letter-spacing: 0.3px; text-align: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.15); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; }
.hero-stat strong { display: block; font-family: 'Raleway', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat span { font-size: 11.5px; color: rgba(255,255,255,.6); letter-spacing: .8px; text-transform: uppercase; margin-top: 4px; display: block; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 56px 0 52px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(192,154,69,.08);
}
.page-hero-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(32px, 4vw, 54px); font-weight: 900;
  color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 620px; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Roboto', sans-serif; font-size: 12.5px; color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner i { font-size: 9px; }
.breadcrumb-inner span { color: var(--navy); font-weight: 500; }

/* ── STRIP ─────────────────────────────── */
.trust-strip { background: var(--gold); }
.trust-strip-inner { display: flex; justify-content: space-around; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 20px; color: var(--white); flex: 1; min-width: 190px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 22px; opacity: .9; }
.trust-item-text strong { display: block; font-family: 'Raleway', sans-serif; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.trust-item-text span { font-size: 12px; opacity: .82; margin-top: 2px; display: block; }

/* ── SERVICES ─────────────────────────────── */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.services-sticky { position: sticky; top: 120px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.svc-card {
  background: var(--white); padding: 32px 26px;
  transition: .22s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transition: .25s; transform-origin: bottom;
}
.svc-card:hover { background: var(--off-white); }
.svc-card:hover::after { transform: scaleY(1); }
.svc-card a { text-decoration: none; color: inherit; display: block; }
.svc-icon-wrap {
  width: 46px; height: 46px; margin-bottom: 16px;
  background: var(--navy-lt); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; transition: .22s;
}
.svc-card:hover .svc-icon-wrap { background: var(--gold); color: var(--white); }
.svc-card h3 {
  font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; letter-spacing: -.1px;
}
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.svc-card .svc-link { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-top: 12px; display: block; }

/* ── ABOUT ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; }
.about-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-inset {
  position: absolute; bottom: -32px; right: -32px;
  width: 52%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; top: 28px; left: -24px;
  background: var(--gold); color: var(--white); text-align: center; padding: 20px 18px;
}
.about-badge strong { display: block; font-family: 'Raleway', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }

.about-text { font-size: 15.5px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 34px; }
.about-feat {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--off-white);
}
.about-feat-icon { color: var(--gold); margin-top: 2px; font-size: 15px; flex-shrink: 0; }
.about-feat strong { display: block; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-feat p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 5px;
}
.gal-item { overflow: hidden; position: relative; }
.gal-item.tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,45,90,.55) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: var(--white); font-size: 13px; font-weight: 600; font-family: 'Raleway', sans-serif; letter-spacing: .4px; }

/* ── TEAM ─────────────────────────────── */
.dentist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.dentist-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: .25s; text-decoration: none; display: block; }
.dentist-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.dentist-photo-wrap { overflow: hidden; aspect-ratio: 3/4; }
.dentist-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; }
.dentist-card:hover .dentist-photo { transform: scale(1.04); }
.dentist-info { padding: 26px 24px 28px; }
.dentist-name { font-family: 'Raleway', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 3px; letter-spacing: -.2px; }
.dentist-creds { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.dentist-divider { width: 28px; height: 2px; background: var(--gold); margin-bottom: 14px; }
.dentist-bio { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.dentist-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dentist-tag { font-size: 11px; font-weight: 600; font-family: 'Raleway', sans-serif; background: var(--navy-lt); color: var(--navy); padding: 4px 10px; letter-spacing: .3px; }

/* Support staff cards */
.staff-section { margin-top: 70px; }
.staff-section-title {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.staff-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.staff-card {
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 18px; padding: 20px 22px;
  transition: .22s;
}
.staff-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.staff-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800;
}
.staff-name { font-family: 'Raleway', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.staff-role { font-size: 12px; font-weight: 600; font-family: 'Raleway', sans-serif; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.staff-cred { font-size: 12px; color: var(--muted); }

/* ── TEAM BANNER ─────────────────────────────── */
.team-banner { position: relative; overflow: hidden; }
.team-banner-img { width: 100%; height: 480px; object-fit: cover; object-position: center 35%; display: block; }
.team-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,45,90,.9) 0%, rgba(26,45,90,.55) 55%, transparent 100%);
  display: flex; align-items: center;
}
.team-banner-text { color: var(--white); padding: 0 72px; max-width: 560px; }
.team-banner-text h2 { font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.team-banner-text p { font-size: 16px; color: rgba(255,255,255,.76); line-height: 1.8; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px; position: relative; transition: .22s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); font-size: 13px; margin-bottom: 16px; }
.testi-text {
  font-size: 14.5px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 22px;
}
.testi-mark { font-size: 72px; color: var(--navy-lt); font-family: Georgia, serif; position: absolute; top: 12px; left: 20px; line-height: 1; opacity: .4; }
.testi-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.testi-av-name { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-av-label { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.testi-platform {
  position: absolute; top: 16px; right: 18px;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.testi-platform i { font-size: 15px; }
.testi-platform.google { color: #4285F4; }
.testi-platform.yelp   { color: #d32323; }

.ratings-bar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--navy); margin-top: 44px;
}
.rating-cell {
  padding: 30px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.rating-cell:last-child { border-right: none; }
.rating-cell strong { display: block; font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.rating-cell span { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; display: block; }
.rating-platform { display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 10px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: 'Raleway', sans-serif; }
.rating-platform i { font-size: 14px; }
.rating-platform.google { color: #6aaff5; }
.rating-platform.yelp   { color: #f5876a; }

/* ── LOCATION ─────────────────────────────── */
.location-split { display: grid; grid-template-columns: 1fr 1fr; }
.location-map-wrap { min-height: 500px; }
.location-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.location-info { background: var(--navy); color: var(--white); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.location-info h2 { font-family: 'Raleway', sans-serif; font-size: 34px; font-weight: 800; margin-bottom: 32px; }
.loc-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-item i { color: var(--gold); margin-top: 4px; font-size: 13px; width: 16px; flex-shrink: 0; }
.loc-item-text { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.6; }
.loc-item-text a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; }
.loc-item-text a:hover { color: var(--gold); }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.h-day { color: rgba(255,255,255,.6); }
.h-time.open  { color: #6DD9B3; font-weight: 600; }
.h-time.appt  { color: var(--gold); font-weight: 600; }
.h-time.closed { color: rgba(255,255,255,.3); }

/* ── NEW PATIENTS / FORMS ─────────────────────────────── */
.np-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.np-steps { display: flex; flex-direction: column; gap: 30px; margin-top: 36px; }
.np-step { display: flex; gap: 20px; align-items: flex-start; }
.np-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800;
}
.np-step h4 { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.np-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.np-note { margin-top: 30px; padding: 20px 22px; background: var(--gold-lt); border-left: 3px solid var(--gold); font-size: 14px; color: var(--muted); line-height: 1.7; }
.np-note strong { color: var(--navy); }

.np-form { background: var(--white); border: 1px solid var(--border); padding: 42px 38px; box-shadow: var(--shadow); }
.np-form h3 { font-family: 'Raleway', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 26px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label.form-label { display: block; font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 0;
  font-size: 14px; font-family: 'Roboto', sans-serif; color: var(--text);
  background: var(--white); outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,154,69,.12); }
select.form-control { cursor: pointer; }
.btn-form {
  width: 100%; padding: 15px; margin-top: 8px;
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; transition: background .22s;
}
.btn-form:hover { background: var(--gold); }

/* ── SERVICE PAGE LAYOUT ─────────────────────────────── */
.service-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.service-sidebar { position: sticky; top: 110px; }
.service-sidebar .np-form { margin-bottom: 24px; }
.service-sidebar .np-form h3 { font-size: 20px; margin-bottom: 20px; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
.benefit-item {
  padding: 22px; background: var(--off-white); border-left: 3px solid var(--gold);
  display: flex; gap: 14px; align-items: flex-start;
}
.benefit-item i { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.benefit-item h4 { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.benefit-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.process-steps { display: flex; flex-direction: column; gap: 0; margin: 36px 0; }
.process-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 40px; height: 40px; flex-shrink: 0; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800;
}
.process-step h4 { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy);
}
.faq-question i { font-size: 12px; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { font-size: 14.5px; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ── RELATED SERVICES ─────────────────────────────── */
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.related-svc {
  background: var(--white); padding: 24px 20px; text-decoration: none;
  transition: .22s; display: block;
}
.related-svc:hover { background: var(--gold-lt); }
.related-svc i { color: var(--gold); font-size: 20px; margin-bottom: 10px; display: block; }
.related-svc h4 { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.related-svc p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── SIDEBAR QUICK LINKS ─────────────────────────────── */
.sidebar-nav { background: var(--navy); padding: 28px; }
.sidebar-nav h4 { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.sidebar-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: 13.5px; color: rgba(255,255,255,.75); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07); transition: .2s;
  font-family: 'Roboto', sans-serif;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { color: var(--gold); }
.sidebar-nav a.current { color: var(--gold); font-weight: 600; }

/* ── DOCTOR PROFILE ─────────────────────────────── */
.doctor-hero { background: var(--off-white); padding: 0; overflow: hidden; }
.doctor-hero-inner { display: grid; grid-template-columns: 400px 1fr; min-height: 500px; }
.doctor-photo-full { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.doctor-hero-content { padding: 56px 64px; display: flex; flex-direction: column; justify-content: center; }
.doctor-quote {
  font-size: 18px; color: var(--navy); font-style: italic; line-height: 1.7;
  border-left: 3px solid var(--gold); padding-left: 20px; margin: 28px 0;
}
.credential-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.credential-item { display: flex; gap: 12px; align-items: flex-start; }
.credential-item i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.credential-item span { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ── CTA ─────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('/images/001-64-web.jpg'); background-size: cover; background-position: center 30%; }
.cta-overlay { position: absolute; inset: 0; background: rgba(26,45,90,.88); }
.cta-inner { position: relative; z-index: 1; padding: 96px 0; text-align: center; color: var(--white); }
.cta-inner h2 { font-family: 'Raleway', sans-serif; font-size: clamp(28px,4vw,46px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.3px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 38px; line-height: 1.8; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────── */
footer { background: #0E1C38; color: rgba(255,255,255,.62); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 70px 0 48px; }

.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-wrap img { height: 44px; width: auto; }

.footer-brand-text { font-size: 13.5px; line-height: 1.8; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; transition: .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: .2s; font-family: 'Roboto', sans-serif; }
.footer-list a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.fc { display: flex; gap: 12px; align-items: flex-start; }
.fc i { color: var(--gold); font-size: 12px; margin-top: 4px; width: 14px; flex-shrink: 0; }
.fc span, .fc a { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.55; text-decoration: none; }
.fc a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,.38); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--navy); flex-direction: column; padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mm-head img { height: 42px; }
.mm-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--white); }
.mm-links { display: flex; flex-direction: column; flex: 1; gap: 2px; }
.mm-links a { padding: 14px 10px; font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 600; color: rgba(255,255,255,.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.1); text-transform: uppercase; letter-spacing: 1px; }
.mm-links a:hover { color: var(--gold); }
.mm-section { font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 16px 10px 4px; }
.mm-links .mm-sub { font-size: 15px; padding: 10px 10px 10px 22px; color: rgba(255,255,255,.65); }
.mm-cta { margin-top: 24px; }

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ── BLOG ─────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: .25s; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-cat { font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-title { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.blog-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.blog-meta { font-size: 12px; color: var(--muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

/* ── OFFER CARD ─────────────────────────────── */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card { background: var(--white); border: 1px solid var(--border); padding: 36px 32px; text-align: center; transition: .25s; }
.offer-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.offer-price { font-family: 'Raleway', sans-serif; font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.offer-price sup { font-size: 24px; }
.offer-label { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.offer-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1050px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-sticky { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .about-inset { display: none; }
  .about-badge { top: 16px; left: 16px; }
  .dentist-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ratings-bar { grid-template-columns: repeat(3, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .doctor-hero-inner { grid-template-columns: 1fr; }
  .doctor-photo-full { max-height: 400px; }
  .nav-drop-menu.wide { min-width: 280px; grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .location-split { grid-template-columns: 1fr; }
  .location-map-wrap { min-height: 300px; }
  .np-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .team-banner-text { padding: 0 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .related-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 64px 0; }
  .dentist-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.tall { grid-row: span 1; }
  .ratings-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .team-banner-img { height: 320px; }
  .team-banner-overlay { align-items: flex-end; }
  .team-banner-text { padding: 0 20px 32px; max-width: 100%; }
  .team-banner-text h2 { font-size: 26px; }
  .hero-stats { gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .doctor-hero-content { padding: 32px 24px; }
}

/* ── AFFILIATIONS MARQUEE ──────────────────── */
.affiliations-section {
  background: #fff;
  padding: 32px 0 28px;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  overflow: hidden;
}
.affiliations-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.affiliations-title {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.affiliations-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.affiliations-track-wrap {
  overflow: hidden;
  position: relative;
}
.affiliations-track-wrap::before,
.affiliations-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.affiliations-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 60%, transparent);
}
.affiliations-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 60%, transparent);
}
.affiliations-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding: 8px 32px;
  animation: affiliations-scroll 32s linear infinite;
}
.affiliations-track:hover {
  animation-play-state: paused;
}
@keyframes affiliations-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.affil-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.affil-logo:hover { opacity: 1; }
.affil-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── FOOTER SERVICE AREAS ──────────────────── */
.footer-service-areas {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 10px 0 0;
  letter-spacing: 0.2px;
}


/* ── ONLINE BOOKING (Practice by Numbers) ───────────────── */
a.btn-form {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; text-align: center;
}
.book-intro { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 22px; }
.book-points { list-style: none; margin: 0 0 24px; padding: 0; }
.book-points li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 10px;
}
.book-points i { color: var(--gold); font-size: 13px; margin-top: 4px; flex-shrink: 0; }
.book-alt {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 14px; line-height: 1.7; color: var(--text);
}
.book-alt a { color: var(--navy); font-weight: 600; }
