/* GOREgeous Smiles — Navy + Gold shared stylesheet
 * Used across all pages. Variables in :root; component styles below.
 */

:root {
  --bg: #ffffff;
  --surface: #fafaf7;
  --surface-warm: #f5f1eb;
  --navy: #0d1b2a;
  --navy-2: #1b263b;
  --fg: #1a1a1a;
  --fg-2: #444444;
  --muted: #6b6b6b;
  --meta: #9a9a9a;
  --gold: #b8956a;
  --gold-dark: #9a7948;
  --gold-light: #e7d9c1;
  --border: #e8e4dc;
  --border-soft: #f0ece5;
  --font-display: 'Manrope', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --text-base: 16px;
  --leading-body: 1.6;
  --leading-tight: 1.05;
  --container-max: 1280px;
  --container-narrow: 1080px;
  --section-y: 120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
}
.eyebrow.with-rule::before {
  content: ""; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);
}

/* Top bar */
.topbar { background: var(--bg); border-bottom: 1px solid var(--border-soft); position: sticky; top: 0; z-index: 50; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); }
.brand em { font-style: normal; color: var(--gold); font-weight: 600; }
.brand small {
  display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; margin-top: 2px;
}
.nav { display: flex; gap: 36px; }
.nav a {
  color: var(--fg-2); font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.18s ease;
}
.nav a:hover, .nav a.active { color: var(--gold-dark); }

/* Dropdown menu */
.nav .has-dropdown { position: relative; }
.nav .has-dropdown > a::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  color: var(--gold);
  transition: transform 0.18s ease;
}
.nav .has-dropdown:hover > a::after,
.nav .has-dropdown:focus-within > a::after { transform: rotate(180deg); }
.nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg);
  border: 1px solid var(--border);
  min-width: 280px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.08);
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
/* Bridge hover gap between trigger and panel */
.nav .has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}
.nav .dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--fg);
  border-left: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.nav .dropdown a:hover {
  background: var(--surface-warm);
  color: var(--navy);
  border-left-color: var(--gold);
}
.nav .dropdown a .meta {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
  font-weight: 600;
}
.nav .dropdown a:hover .meta { color: var(--gold-dark); }
.nav .dropdown .all-services {
  border-top: 1px solid var(--border-soft);
  margin-top: 6px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav .dropdown .all-services::after {
  content: " →";
  transition: margin 0.15s ease;
  display: inline-block;
}
.nav .dropdown .all-services:hover::after { margin-left: 4px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 24px;
  background: var(--navy); color: #fff !important;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 2px; transition: background 0.18s ease;
}
.cta-phone:hover { background: var(--gold-dark); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 32px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; cursor: pointer; border: none;
  border-radius: 2px; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-light { background: #fff; color: var(--navy); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--navy); }

/* Hero */
.hero { background: var(--bg); padding: 80px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero-content { padding-right: 40px; }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700; line-height: var(--leading-tight); letter-spacing: -0.018em;
  color: var(--navy); margin-bottom: 24px;
}
.hero h1 .gold-accent { color: var(--gold); font-weight: 500; font-style: italic; }
.hero .subhead { font-size: 18px; line-height: 1.6; color: var(--fg-2); margin-bottom: 36px; max-width: 48ch; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image-frame {
  position: relative; aspect-ratio: 4 / 5; background: var(--surface-warm);
  border-radius: 2px; overflow: hidden;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-frame::after {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.4); pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -32px; left: -32px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 24px 28px; width: 240px; text-align: center;
}
.hero-badge .seal {
  width: 56px; height: 56px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); border-radius: 50%;
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.hero-badge .title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.hero-badge .sub { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* Welcome paragraph */
.welcome-band { padding: 80px 0; text-align: center; }
.welcome-band p {
  font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1.5;
  color: var(--fg); max-width: 32ch; margin: 0 auto; letter-spacing: -0.005em;
}
.welcome-band p em { font-style: italic; color: var(--gold-dark); font-weight: 500; }

/* Press band */
.press-band { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.press-label {
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px;
}
.press-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; align-items: center; }
.press-logo {
  text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: var(--navy-2); opacity: 0.55; transition: opacity 0.2s ease;
}
.press-logo:hover { opacity: 1; }
.press-logo.serif { font-family: Georgia, serif; font-style: italic; font-weight: 500; }
.press-logo img { display: inline-block; max-height: 56px; width: auto; opacity: 0.7; }

/* Section header */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.012em;
  color: var(--navy); margin-bottom: 20px;
}
.section-header .lede { font-size: 17px; line-height: 1.6; color: var(--fg-2); max-width: 52ch; margin: 0 auto; }

/* Approach */
.approach-section { padding: var(--section-y) 0; background: var(--bg); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.approach-step .num {
  font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--gold-dark); margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gold); width: fit-content;
}
.approach-step h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.25;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.008em;
}
.approach-step p { font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* Credential band */
.credential-band { padding: var(--section-y) 0; background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.credential-band::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--gold);
}
.credential-band .container-narrow { text-align: center; }
.credential-band .label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.credential-band h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 600; line-height: 1.18; letter-spacing: -0.012em;
  margin-bottom: 24px; color: #fff;
}
.credential-band h2 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.credential-band .sub { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.75); max-width: 56ch; margin: 0 auto 36px; }
.credential-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 720px; margin: 0 auto;
}
.credential-stat .n {
  font-family: var(--font-display); font-size: 44px; font-weight: 300;
  color: var(--gold); line-height: 1; letter-spacing: -0.01em;
}
.credential-stat .l { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* Gallery */
.gallery-section { padding: var(--section-y) 0; background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.gallery-card { background: var(--bg); border-radius: 2px; overflow: hidden; transition: transform 0.25s ease; }
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card .photo { aspect-ratio: 16 / 7; overflow: hidden; background: var(--surface-warm); }
.gallery-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card .label {
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); border-top: 1px solid var(--border-soft);
}
.gallery-card .label .stars { color: var(--gold); letter-spacing: 0; font-size: 14px; }
.gallery-cta { text-align: center; }

/* Services */
.services-section { padding: var(--section-y) 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--bg); display: flex; flex-direction: column; transition: transform 0.24s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-card .photo { aspect-ratio: 4 / 3; margin-bottom: 24px; position: relative; overflow: hidden; background: var(--surface-warm); }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card .photo::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(to top, rgba(13,27,42,0.75), transparent);
  color: rgba(255,255,255,0.95); font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.service-card .num { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; color: var(--gold-dark); margin-bottom: 8px; }
.service-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.008em; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin-bottom: 16px; }
.service-card .learn-more {
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold);
  padding-bottom: 4px; align-self: flex-start; margin-top: auto;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.service-card .learn-more:hover { color: var(--gold-dark); border-color: var(--navy); }

/* CTA strip */
.cta-strip { padding: 72px 0; background: var(--surface-warm); text-align: center; }
.cta-strip h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600;
  color: var(--navy); margin-bottom: 16px; letter-spacing: -0.012em;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.cta-strip .sub { font-size: 16px; color: var(--fg-2); margin-bottom: 32px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-strip .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Signature full-bleed chapter */
.signature-chapter { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.signature-chapter .bg { position: absolute; inset: 0; background: var(--navy); overflow: hidden; }
.signature-chapter .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.signature-chapter .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.65) 60%, rgba(13,27,42,0.4) 100%);
}
.signature-chapter .content { position: relative; z-index: 2; padding: 96px 0; }
.signature-chapter .content-inner { max-width: 560px; }
.signature-chapter .label { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.signature-chapter h2 { font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 56px); font-weight: 600; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.015em; }
.signature-chapter h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.signature-chapter p { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

/* Philosophy accordion */
.philosophy-section { padding: var(--section-y) 0; background: var(--bg); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: flex-start; }
.philosophy-grid .side-photo { aspect-ratio: 3 / 4; background: var(--surface-warm); overflow: hidden; }
.philosophy-grid .side-photo img { width: 100%; height: 100%; object-fit: cover; }
.accordion-item { border-top: 1px solid var(--border); padding: 28px 0; cursor: pointer; }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--navy); cursor: pointer; gap: 16px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 28px; font-weight: 300;
  color: var(--gold); line-height: 1; transition: transform 0.2s ease;
}
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-item .body { padding-top: 16px; font-size: 16px; line-height: 1.65; color: var(--fg-2); max-width: 56ch; }

/* Process */
.process-section { padding: var(--section-y) 0; background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 48px; }
.process-step .num {
  font-family: var(--font-display); font-size: 56px; font-weight: 300; color: var(--gold);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* Doctor strip */
.doctor-strip { padding: var(--section-y) 0; background: var(--bg); }
.doctor-strip.alt { background: var(--surface); }
.doctor-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.doctor-grid.flip { grid-template-columns: 1.1fr 1fr; direction: rtl; }
.doctor-grid.flip > * { direction: ltr; }
.doctor-portrait { aspect-ratio: 4 / 5; background: var(--surface-warm); position: relative; overflow: hidden; }
.doctor-portrait img { width: 100%; height: 100%; object-fit: cover; }
.doctor-content .eyebrow { margin-bottom: 24px; }
.doctor-content h2 {
  font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 44px); font-weight: 600;
  line-height: 1.18; letter-spacing: -0.012em; color: var(--navy); margin-bottom: 28px;
}
.doctor-content h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.doctor-content p { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin-bottom: 20px; }
.doctor-credentials { list-style: none; padding: 28px 0 0; margin-top: 28px; border-top: 1px solid var(--border); }
.doctor-credentials li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; font-size: 15px; color: var(--fg-2); }
.doctor-credentials li::before { content: "✦"; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Why us 3-col */
.why-us-section { padding: var(--section-y) 0; background: var(--bg); }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.why-us-item .icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 24px; }
.why-us-item h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.008em; }
.why-us-item p { font-size: 15px; line-height: 1.65; color: var(--fg-2); }

/* Membership */
.membership-section { padding: var(--section-y) 0; background: var(--surface-warm); }
.membership-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.membership-header .eyebrow { margin-bottom: 20px; justify-content: center; }
.membership-header h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.012em; }
.membership-header .lede { font-size: 17px; color: var(--fg-2); line-height: 1.6; }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.tier-card { background: var(--bg); border: 1px solid var(--border); padding: 40px 32px; position: relative; }
.tier-card.featured { border-color: var(--navy); border-width: 2px; position: relative; }
.tier-card.featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--gold); padding: 4px 14px;
  font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: 2px;
}
.tier-card .tier-name { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.tier-card .price { font-family: var(--font-display); font-size: 56px; font-weight: 300; color: var(--navy); line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px; }
.tier-card .period { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.tier-card .includes { list-style: none; padding-top: 24px; border-top: 1px solid var(--border); }
.tier-card .includes li { font-size: 14px; color: var(--fg-2); padding: 6px 0 6px 22px; position: relative; line-height: 1.5; }
.tier-card .includes li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; font-weight: 600; }
.membership-discount { text-align: center; font-size: 14px; color: var(--fg-2); max-width: 720px; margin: 0 auto; padding: 24px; background: var(--bg); border: 1px solid var(--border); }
.membership-discount strong { color: var(--navy); font-weight: 600; }

/* Testimonials */
.testimonials-section { padding: var(--section-y) 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--surface); padding: 40px 32px; border-top: 2px solid var(--gold); display: flex; flex-direction: column; min-height: 240px; }
.testimonial-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 0.15em; margin-bottom: 20px; }
.testimonial-card blockquote {
  font-family: var(--font-display); font-size: 17px; font-weight: 400; line-height: 1.55;
  color: var(--fg); margin-bottom: 20px; flex-grow: 1; letter-spacing: -0.005em;
}
.testimonial-card cite { font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); }

/* Virtual band */
.virtual-band { padding: var(--section-y) 0; background: var(--navy); color: #fff; text-align: center; }
.virtual-band .label { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.virtual-band h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); font-weight: 600; line-height: 1.18; margin-bottom: 20px; letter-spacing: -0.012em; }
.virtual-band h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.virtual-band p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto 32px; line-height: 1.6; }

/* FAQ */
.faq-section { padding: var(--section-y) 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: flex-start; }
.faq-side h2 { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 44px); font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.012em; }
.faq-side h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.faq-side p { font-size: 16px; color: var(--fg-2); line-height: 1.65; margin-bottom: 24px; }

/* Contact */
.contact-section { padding: var(--section-y) 0; background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 44px); font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 32px; letter-spacing: -0.012em; }
.contact-info h2 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.contact-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: none; }
.contact-block .label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.contact-block address, .contact-block .v { font-style: normal; font-size: 17px; color: var(--fg); line-height: 1.55; }
.contact-block .v a { color: var(--navy); }
.contact-block .v a:hover { color: var(--gold-dark); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--fg); border-bottom: 1px solid var(--border-soft); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 500; color: var(--fg); }
.hours-list .closed { color: var(--muted); font-style: italic; }
.map-frame {
  aspect-ratio: 4 / 5; background: var(--surface-warm); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--font-display);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; text-align: center;
}
.map-frame::before { content: "📍"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 64px; opacity: 0.3; }

/* Sticky mobile call */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: #fff; padding: 14px 20px; z-index: 100;
  text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em; text-decoration: none; box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-cta:hover { background: var(--gold-dark); }
.mobile-cta .gold { color: var(--gold); }

/* Footer */
.foot { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 32px; font-size: 13px; }
.foot a { color: var(--gold-light); text-decoration: none; transition: color 0.18s ease; }
.foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand .brand-line { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.02em; }
.foot-brand .brand-line em { color: var(--gold); font-style: normal; }
.foot-brand p { line-height: 1.65; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.foot-col h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-col ul { list-style: none; }
.foot-col li { padding: 6px 0; }
.foot-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,0.5); font-size: 12px; }
.foot-legal .links { display: flex; gap: 24px; }

/* Page-specific small additions */
.page-hero {
  padding: 96px 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: var(--leading-tight); letter-spacing: -0.018em;
  color: var(--navy); margin-bottom: 20px; max-width: 22ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.page-hero .lede { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 56ch; }

/* Gallery full page — bigger grid, 2 cols not 3 */
.gallery-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  padding: var(--section-y) 0;
}
.gallery-full-card { background: var(--bg); border: 1px solid var(--border-soft); }
.gallery-full-card .photo { aspect-ratio: 16 / 7; overflow: hidden; background: var(--surface-warm); }
.gallery-full-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-full-card:hover .photo img { transform: scale(1.02); }
.gallery-full-card .meta { padding: 20px 28px; border-top: 1px solid var(--border-soft); }
.gallery-full-card .meta .case-num { font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.gallery-full-card .meta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.005em; }
.gallery-full-card .meta p { font-size: 14px; color: var(--fg-2); line-height: 1.55; }

/* Responsive */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 24px; }
  :root { --section-y: 72px; }
  .nav { display: none; }
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-content { padding-right: 0; }
  .hero-badge { left: 16px; bottom: -24px; width: 200px; padding: 18px 20px; }
  .services-grid, .gallery-grid, .testimonials-grid, .membership-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .approach-grid, .process-grid, .why-us-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .doctor-grid, .doctor-grid.flip { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .credential-stats { grid-template-columns: 1fr; gap: 32px; }
  .press-logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .philosophy-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-grid .side-photo { aspect-ratio: 16 / 9; max-height: 320px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar-inner { height: 64px; }
  .cta-phone { padding: 0 14px; font-size: 12px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .brand small { display: none; }
  .page-hero { padding: 56px 0 48px; }
}

@media (max-width: 600px) {
  .approach-grid, .process-grid, .why-us-grid { grid-template-columns: 1fr; }
}
