/* ============================================================
   Accord Dental Practice  -  Beautifully redesigned stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --gold-50:  #fdf8f2;
  --gold-100: #f7edd8;
  --gold-200: #ecd8b4;
  --gold-300: #dfc08a;
  --gold-400: #cfa465;
  --gold-500: #b8894a;
  --gold-600: #9a6f38;
  --gold-700: #7c5829;
  --gold-800: #5e4120;
  --gold-900: #3e2b14;
  --gold-950: #21160a;
  --slate-50:  #faf8f6;
  --slate-100: #f3eeea;
  --slate-200: #e4ddd6;
  --slate-300: #c8bdb5;
  --slate-400: #a49890;
  --slate-500: #7d6e66;
  --slate-600: #5c504a;
  --slate-700: #3e3530;
  --slate-800: #2a2320;
  --slate-900: #1a1512;
  --red-50:  #fff1f1;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --shadow-gold: 0 4px 20px rgba(124,88,41,.25);
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); color: var(--slate-700);
  background: #fff; line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ────────────────────────────────────────────────────────────
   TOP BAR
──────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--gold-800); color: rgba(255,255,255,.9); font-size: 12px;
  padding: 7px 24px; text-align: center; display: none;
  font-family: var(--font-body); letter-spacing: .01em;
}
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 5px; transition: color var(--transition); }
.top-bar a:hover { color: #fff; }

/* ────────────────────────────────────────────────────────────
   NAV
──────────────────────────────────────────────────────────── */
.site-nav {
  background: #fff; border-bottom: 1px solid var(--slate-100);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 0 var(--slate-100), 0 4px 16px rgba(0,0,0,.04);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  cursor: pointer; position: relative; z-index: 10;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: .85; }
.nav-logo img { height: 46px; width: auto; max-width: 200px; display: block; }

.nav-links { display: none; align-items: center; gap: 4px; list-style: none; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button {
  font-size: 13.5px; font-weight: 500; color: var(--slate-600);
  background: none; border: none; padding: 6px 10px;
  display: flex; align-items: center; gap: 4px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold-700); background: var(--gold-50); }
.nav-links a.active { color: var(--gold-700); font-weight: 600; }
.nav-links .emergency-link { color: var(--red-600) !important; font-weight: 600; }
.nav-links .emergency-link:hover { background: #fff1f1 !important; }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.05);
  padding: 6px; min-width: 230px; display: none; z-index: 100;
}
.nav-dropdown.open { display: block; animation: dropIn .18s ease; }
@keyframes dropIn { from { opacity:0; transform:translateX(-50%) translateY(-6px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.nav-dropdown a {
  display: block; padding: 8px 12px; font-size: 13.5px; font-weight: 500;
  color: var(--slate-700); border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--gold-50); color: var(--gold-700); }

.chevron { width: 14px; height: 14px; transition: transform .2s; display: inline-block; opacity: .6; }
.chevron.rotated { transform: rotate(180deg); }
.chevron svg { width: 14px; height: 14px; }

.nav-right { display: none; align-items: center; gap: 10px; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-phone {
  font-size: 13.5px; font-weight: 600; color: var(--slate-700);
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-phone:hover { color: var(--gold-700); background: var(--gold-50); }
.nav-book-btn {
  background: var(--gold-800); color: #fff !important;
  font-size: 13.5px; font-weight: 600; padding: 9px 18px;
  border-radius: var(--radius-sm); transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap; box-shadow: var(--shadow-gold);
}
.nav-book-btn:hover { background: var(--gold-900); box-shadow: 0 6px 24px rgba(124,88,41,.35); }

.nav-toggle { display: flex; padding: 8px; background: none; border: none; color: var(--slate-700); border-radius: 6px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle:hover { color: var(--gold-700); background: var(--gold-50); }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none; background: #fff; padding: 12px 24px 20px;
  border-top: 1px solid var(--slate-100);
}
.mobile-menu.open { display: block; }
.mob-phone-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold-50); color: var(--gold-700);
  font-weight: 700; font-size: 14px; padding: 11px 14px;
  border-radius: var(--radius-sm); margin-bottom: 8px; border: 1px solid var(--gold-200);
}
.mobile-menu a, .mobile-menu button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 10px 12px; font-size: 14px; font-weight: 500;
  color: var(--slate-700); border-radius: var(--radius-sm); background: none; border: none; text-align: left;
  transition: background var(--transition);
}
.mobile-menu a:hover, .mobile-menu button:hover { background: var(--slate-50); }
.mobile-menu .mob-emergency { color: var(--red-600); font-weight: 600; }
.mob-sub { margin-left: 12px; }
.mob-sub a { font-size: 13.5px; color: var(--slate-500); padding: 8px 12px; }
.mob-book-btn {
  display: block; width: 100%; text-align: center; background: var(--gold-800);
  color: #fff !important; font-weight: 700; font-size: 14px; padding: 12px;
  border-radius: var(--radius-sm); margin-top: 10px; box-shadow: var(--shadow-gold);
}

/* ────────────────────────────────────────────────────────────
   STICKY CALL BAR
──────────────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 7px 16px; gap: 8px; height: 48px;
  background: var(--slate-900);
  transform: translateY(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.sticky-bar.visible { transform: translateY(0); }

@media (min-width: 640px) {  }
.sticky-call {
  display: flex; align-items: center; gap: 6px;
  background: #fff; color: var(--slate-900) !important;
  font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 6px;
  white-space: nowrap; transition: background var(--transition);
}
.sticky-call:hover { background: var(--slate-100); }
.sticky-book-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold-800); color: #fff !important;
  font-weight: 700; font-size: 12px; padding: 8px 14px; border-radius: 6px;
  white-space: nowrap; transition: background var(--transition);
}
.sticky-book-btn:hover { background: var(--gold-600); }
body.sticky-active .site-nav { top: 48px; }

/* ────────────────────────────────────────────────────────────
   HOMEPAGE HERO
──────────────────────────────────────────────────────────── */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--slate-900); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,21,18,.92) 0%, rgba(26,21,18,.75) 45%, rgba(26,21,18,.25) 100%);
}
.hero-body {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: 100px 32px 120px;
}
@media (min-width: 768px) { .hero-body { padding: 120px 32px 140px; } }

.hero-stars { display: flex; gap: 3px; margin-bottom: 20px; align-items: center; }
.hero-star { color: var(--gold-400); font-size: 15px; }
.hero-star-label { font-size: 13px; color: rgba(255,255,255,.65); margin-left: 10px; letter-spacing: .01em; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 700;
  line-height: 1.08; margin-bottom: 22px; max-width: 700px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--gold-300); }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.78);
  max-width: 520px; margin-bottom: 18px; line-height: 1.7;
  font-weight: 300;
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badge {
  font-size: 11.5px; font-weight: 500;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); padding: 5px 14px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-btns { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .hero-btns { flex-direction: row; } }
.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #fff; color: var(--gold-800) !important;
  font-weight: 700; font-size: 14px; padding: 16px 30px;
  border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all var(--transition); letter-spacing: .01em;
}
.btn-hero-primary:hover { background: var(--gold-50); box-shadow: 0 12px 32px rgba(0,0,0,.3); transform: translateY(-1px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: transparent; color: #fff !important;
  font-weight: 600; font-size: 14px; padding: 16px 30px;
  border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.hero-footnote { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 18px; font-style: italic; }

/* Hours strip */
.hero-hours {
  position: relative; background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px) saturate(1.2); border-top: 1px solid rgba(255,255,255,.1);
}
.hero-hours-grid {
  max-width: 1280px; margin: 0 auto; padding: 14px 32px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; text-align: center;
}
@media (min-width: 540px) { .hero-hours-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 768px) { .hero-hours-grid { grid-template-columns: repeat(7,1fr); } }
.hours-day { font-size: 11px; color: rgba(255,255,255,.6); line-height: 1.5; }
.hours-day .d { display: block; font-weight: 700; color: rgba(255,255,255,.85); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1px; }
.hours-day.sat .d { color: var(--gold-300); }
.hours-day.sat .time-val { color: rgba(255,255,255,.85); }
.hours-day.closed { opacity: 1; }
.hours-day.closed .d { color: var(--gold-300); }

/* ────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--gold-800);
  min-height: 260px;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.page-hero-inner {
  position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 52px 32px 60px;
  display: flex; flex-direction: column; align-items: flex-start;
}
@media (min-width: 768px) { .page-hero-inner { padding: 60px 32px 68px; display: flex; flex-direction: column; align-items: flex-start; } }

.breadcrumbs {
  display: flex; align-items: center; gap: 6px; font-size: 12px;
  color: rgba(255,255,255,.55); margin-bottom: 20px; flex-wrap: wrap;
  font-weight: 500; letter-spacing: .01em;
}
.breadcrumbs a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumbs a:hover { color: rgba(255,255,255,.9); }
.breadcrumbs .sep { color: rgba(255,255,255,.3); }

.page-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.95); font-size: 11.5px; font-weight: 600;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
  backdrop-filter: blur(8px); letter-spacing: .03em;
}
.page-hero h1, .page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700;
  line-height: 1.15; max-width: 680px; margin-bottom: 14px;
  letter-spacing: -.01em;
}
.page-hero .ph-sub, .subtitle {
  font-size: 16px; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.65; font-weight: 300;
}

/* ────────────────────────────────────────────────────────────
   EMERGENCY BAR
──────────────────────────────────────────────────────────── */
.emergency-bar {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  padding: 14px 32px;
}
.emergency-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.emergency-bar-text { display: flex; align-items: center; gap: 12px; color: #fff; }
.emergency-bar-text strong { font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.emergency-bar-text span { font-size: 14px; color: rgba(255,255,255,.85); }
.emergency-call-btn {
  background: #fff; color: #b91c1c;
  font-weight: 800; font-size: 13.5px; padding: 9px 22px;
  border-radius: var(--radius-sm); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all var(--transition);
}
.emergency-call-btn:hover { background: #fff1f1; transform: translateY(-1px); }

/* ────────────────────────────────────────────────────────────
   SECTIONS & LAYOUT
──────────────────────────────────────────────────────────── */
.section { padding: 72px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--gold-600);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem); font-weight: 700;
  color: var(--slate-900); margin-bottom: 10px; line-height: 1.2;
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--slate-500); font-size: 15px; max-width: 560px;
  line-height: 1.75; margin-bottom: 48px; font-weight: 300;
}
.text-center { text-align: center; }
.section-sub.center { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ────────────────────────────────────────────────────────────
   TREATMENT CARDS (homepage grid)
──────────────────────────────────────────────────────────── */
.treatment-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  overflow: hidden; display: block; text-decoration: none;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.treatment-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
  transform: translateY(-3px);
}
.treatment-card-icon {
  font-size: 2rem; background: var(--gold-50); padding: 22px; text-align: center;
  border-bottom: 1px solid var(--slate-100);
}
.treatment-card-body { padding: 18px; }
.treatment-card-body h3 { font-size: 14px; font-weight: 700; color: var(--slate-900); margin-bottom: 5px; }
.treatment-card-body p { font-size: 13px; color: var(--slate-500); line-height: 1.6; }

/* ────────────────────────────────────────────────────────────
   FEATURE CARDS (USPs)
──────────────────────────────────────────────────────────── */
.feature-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
  box-shadow: 0 2px 8px rgba(124,88,41,.15);
}
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--slate-500); line-height: 1.7; }

/* ────────────────────────────────────────────────────────────
   CHECKLISTS & NUMBERED LISTS
──────────────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--slate-700); line-height: 1.65;
}
.check-list li::before {
  content: ''; display: block; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5829' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

.numbered-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.numbered-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; color: var(--slate-700); line-height: 1.65;
}
.num-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  color: #fff; font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; box-shadow: 0 2px 6px rgba(124,88,41,.3);
}

/* ────────────────────────────────────────────────────────────
   TREATMENT PAGE LAYOUT
──────────────────────────────────────────────────────────── */
.treatment-layout {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .treatment-layout { grid-template-columns: 2fr 1fr; align-items: start; } }

.treatment-main { display: flex; flex-direction: column; gap: 36px; }
.treatment-main h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--slate-900);
  margin-bottom: 16px; letter-spacing: -.01em;
}
.treatment-main p { font-size: 15px; color: var(--slate-600); line-height: 1.75; }
.treatment-main > .intro-text {
  font-size: 16.5px; color: var(--slate-600); line-height: 1.8;
  border-left: 3px solid var(--gold-400); padding-left: 20px;
  font-weight: 300;
}
.treatment-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; align-self: start; }

/* Pricing table */
.pricing-table {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.pricing-table-header {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pricing-table-header h3 { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.pricing-table-header span { font-size: 11px; color: rgba(255,255,255,.65); }
.pricing-row {
  padding: 13px 18px; border-bottom: 1px solid var(--slate-50);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  transition: background var(--transition);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--slate-50); }
.pricing-row-left { flex: 1; min-width: 0; }
.pricing-row-left .item-name { font-size: 13.5px; color: var(--slate-700); line-height: 1.45; }
.pricing-row-left .item-note { font-size: 11.5px; color: var(--slate-400); margin-top: 2px; }
.pricing-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.price-main { font-size: 14px; font-weight: 700; color: var(--gold-700); white-space: nowrap; }
.price-plan { font-size: 11.5px; white-space: nowrap; padding: 2px 9px; border-radius: 999px; font-weight: 600; }
.price-plan.included { background: var(--gold-50); color: var(--gold-700); border: 1px solid var(--gold-200); }
.price-plan.na { color: var(--slate-400); }
.price-plan.amount { background: var(--slate-50); color: var(--slate-600); border: 1px solid var(--slate-200); }
.pricing-note { padding: 12px 18px; background: var(--slate-50); border-top: 1px solid var(--slate-100); font-size: 12px; color: var(--slate-500); line-height: 1.65; }

/* Sidebar widgets */
.sidebar-book {
  background: linear-gradient(135deg, var(--gold-50), #fff8ef);
  border: 1px solid var(--gold-200); border-radius: var(--radius-lg); padding: 22px;
  box-shadow: 0 4px 16px rgba(124,88,41,.1);
}
.sidebar-book h3 { font-size: 15px; font-weight: 700; color: var(--gold-800); margin-bottom: 14px; }
.sidebar-book-online {
  display: block; width: 100%; text-align: center;
  background: var(--gold-800);
  color: #fff !important; font-size: 14px; font-weight: 700; padding: 13px;
  border-radius: var(--radius-sm); margin-bottom: 10px;
  box-shadow: var(--shadow-gold); transition: all var(--transition);
}
.sidebar-book-online:hover { background: var(--gold-900); box-shadow: 0 8px 24px rgba(94,65,32,.4); transform: translateY(-1px); }
.sidebar-book-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; border: 1.5px solid var(--gold-300); color: var(--gold-700) !important;
  font-size: 14px; font-weight: 600; padding: 12px; border-radius: var(--radius-sm);
  background: none; transition: all var(--transition);
}
.sidebar-book-phone:hover { background: var(--gold-50); border-color: var(--gold-500); }
.sidebar-treatments {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-treatments h3 { font-size: 13px; font-weight: 700; color: var(--slate-900); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.sidebar-treatments ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-treatments li a {
  font-size: 13.5px; color: var(--slate-600); padding: 5px 8px; border-radius: 6px;
  display: block; transition: all var(--transition);
}
.sidebar-treatments li a:hover { color: var(--gold-700); background: var(--gold-50); }
.sidebar-treatments .see-fees { font-size: 13.5px; color: var(--gold-700); font-weight: 600; padding: 5px 8px; display: block; }
.sidebar-treatments .see-fees:hover { background: var(--gold-50); }

/* ────────────────────────────────────────────────────────────
   FAQ ACCORDION
──────────────────────────────────────────────────────────── */
.faq-section {
  padding: 72px 32px;
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700;
  color: var(--slate-900); margin-bottom: 40px; text-align: center;
  letter-spacing: -.02em;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; gap: 16px; text-align: left; cursor: pointer;
  background: none; border: none; transition: background var(--transition);
}
.faq-btn:hover { background: var(--gold-50); }
.faq-q { font-size: 14.5px; font-weight: 600; color: var(--slate-800); line-height: 1.5; flex: 1; }
.faq-chevron {
  width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  background: var(--gold-50); border-radius: 50%; padding: 2px;
}
.faq-chevron.open { transform: rotate(180deg); background: var(--gold-100); }
.faq-chevron svg { width: 16px; height: 16px; }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-answer.open { display: block; }
.faq-answer-inner {
  border-top: 1px solid var(--slate-100); padding-top: 14px;
  font-size: 14px; color: var(--slate-600); line-height: 1.8;
}

/* ────────────────────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-800) 0%, var(--gold-700) 50%, var(--gold-600) 100%);
  padding: 64px 32px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 700;
  color: #fff; margin-bottom: 10px; letter-spacing: -.01em;
}
.cta-banner p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 36px; line-height: 1.65; font-weight: 300; }
.cta-btns { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
@media (min-width: 540px) { .cta-btns { flex-direction: row; flex-wrap: wrap; } }
.cta-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #fff; color: var(--gold-800) !important;
  font-weight: 700; font-size: 14.5px; padding: 15px 30px;
  border-radius: var(--radius-md); box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: all var(--transition);
}
.cta-phone:hover { background: var(--gold-50); box-shadow: 0 8px 24px rgba(0,0,0,.2); transform: translateY(-1px); }
.cta-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold-800); color: #fff !important;
  font-weight: 700; font-size: 14.5px; padding: 15px 30px;
  border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.35);
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.cta-book:hover { background: var(--gold-900); border-color: var(--gold-700); transform: translateY(-1px); }
.cta-new {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,.85) !important;
  font-weight: 600; font-size: 14.5px; padding: 15px 30px;
  border-radius: var(--radius-md); border: 1.5px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.cta-new:hover { background: rgba(255,255,255,.1); color: #fff !important; border-color: rgba(255,255,255,.6); }

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer { background: var(--slate-900); color: var(--slate-400); }
.footer-main {
  max-width: 1280px; margin: 0 auto; padding: 64px 32px 48px;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 38px; width: auto; opacity: .9; }
.footer-logo-text .name { font-weight: 700; color: #fff; font-size: 14px; }
.footer-logo-text .sub { color: var(--gold-500); font-size: 12px; font-weight: 500; }
.footer-desc { font-size: 13px; line-height: 1.8; color: var(--slate-500); margin-bottom: 20px; max-width: 280px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 11px; padding: 4px 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; color: var(--slate-500); font-weight: 500;
  transition: color var(--transition);
}
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8);
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px; color: var(--slate-500); transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--slate-500); }
.footer-contact-icon { font-size: 15px; color: var(--gold-500); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: var(--slate-500); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-400); }
.footer-hours-title { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--slate-500); margin-bottom: 5px; }
.footer-hours-row .day { font-weight: 500; color: var(--slate-400); }
.footer-hours-row .time.closed { color: var(--slate-700); }
.footer-bottom {
  padding: 20px 32px;
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: var(--slate-600);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--slate-600); transition: color var(--transition); display: flex; align-items: center; gap: 4px; }
.footer-bottom-links a:hover { color: var(--slate-400); }

/* ────────────────────────────────────────────────────────────
   MYTH/REALITY CARDS
──────────────────────────────────────────────────────────── */
.myth-card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.myth-row { padding: 12px 18px; border-bottom: 1px solid #fecaca; background: #fff5f5; }
.myth-row .label { font-weight: 800; color: #b91c1c; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-right: 8px; }
.myth-row .text { font-size: 13.5px; color: #7f1d1d; line-height: 1.5; }
.reality-row { padding: 12px 18px; background: var(--gold-50); }
.reality-row .label { font-weight: 800; color: var(--gold-700); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-right: 8px; }
.reality-row .text { font-size: 13.5px; color: var(--gold-900); line-height: 1.5; }

/* ────────────────────────────────────────────────────────────
   DENTIST / ABOUT CARD
──────────────────────────────────────────────────────────── */
.dentist-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-md);
}
.dentist-card-inner { display: flex; flex-direction: column; gap: 36px; }
@media (min-width: 768px) { .dentist-card-inner { flex-direction: row; } }
.dentist-photo-block { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.dentist-photo-block img {
  width: 200px; height: 266px; border-radius: var(--radius-lg);
  object-fit: cover; object-position: center 10%;
  box-shadow: var(--shadow-lg);
}
.dentist-photo-block .dentist-name { font-size: 16px; font-weight: 700; color: var(--slate-900); }
.dentist-photo-block .dentist-role { color: var(--gold-700); font-size: 13px; font-weight: 600; }
.dentist-photo-block .dentist-gdc { color: var(--slate-400); font-size: 12px; margin-top: 2px; }
.cred-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.cred-tag {
  font-size: 11px; padding: 4px 10px;
  background: var(--gold-50); border: 1px solid var(--gold-200);
  color: var(--gold-700); font-weight: 700; border-radius: 999px; letter-spacing: .01em;
}
.dentist-bio { font-size: 14.5px; color: var(--slate-600); line-height: 1.8; margin-bottom: 14px; }
.dentist-meta-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 10px; }
.dentist-meta-tag {
  background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-sm);
  padding: 7px 14px; font-size: 12.5px; color: var(--slate-600);
}
.dentist-meta-tag span { font-weight: 700; color: var(--slate-800); }

/* ────────────────────────────────────────────────────────────
   STATS GRID
──────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: linear-gradient(135deg, var(--gold-50), #fffaf4);
  border: 1px solid var(--gold-100); border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
  box-shadow: 0 2px 8px rgba(124,88,41,.1);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 700; color: var(--gold-700); margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--slate-600); font-weight: 600; letter-spacing: .02em; }

/* ────────────────────────────────────────────────────────────
   STEP CARDS
──────────────────────────────────────────────────────────── */
.step-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: var(--shadow-gold);
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--slate-500); line-height: 1.7; }

/* ────────────────────────────────────────────────────────────
   MAP SECTION
──────────────────────────────────────────────────────────── */
.map-section { padding: 72px 32px; }
.map-info { display: flex; flex-direction: column; gap: 20px; }
.map-info-item { display: flex; align-items: flex-start; gap: 14px; }
.map-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
  box-shadow: 0 2px 8px rgba(124,88,41,.12);
}
.map-info-item .label { font-size: 13px; font-weight: 700; color: var(--slate-900); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .05em; }
.map-info-item .value { font-size: 14px; color: var(--slate-500); line-height: 1.55; }
.map-info-item .value a { color: var(--gold-700); font-weight: 600; }
.map-iframe {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--slate-100); height: 400px;
}
@media (min-width: 1024px) { .map-iframe { height: 500px; } }
.map-iframe iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ────────────────────────────────────────────────────────────
   BLOG CARDS
──────────────────────────────────────────────────────────── */
.blog-card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold-200); }
.blog-card-emoji {
  font-size: 2.75rem; background: linear-gradient(135deg, var(--gold-50), #fffaf4);
  padding: 28px; text-align: center; border-bottom: 1px solid var(--slate-100);
  height: 116px; display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block; background: var(--gold-50); border: 1px solid var(--gold-200);
  color: var(--gold-700); font-size: 11px; font-weight: 700;
  padding: 3px 11px; border-radius: 999px; margin-bottom: 10px;
  letter-spacing: .03em; text-transform: uppercase;
}
.blog-card h2, .blog-card h3 {
  font-size: 15px; font-weight: 700; color: var(--slate-900);
  line-height: 1.4; margin-bottom: 8px;
}
.blog-card p { font-size: 13px; color: var(--slate-500); line-height: 1.7; flex: 1; }
.blog-card-footer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--slate-100);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: var(--slate-400);
}
.read-more { color: var(--gold-700); font-weight: 700; letter-spacing: .01em; }

/* ────────────────────────────────────────────────────────────
   ARTICLE LAYOUT (BLOG POSTS)
──────────────────────────────────────────────────────────── */
.article-layout {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px;
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
@media (min-width: 1024px) { .article-layout { grid-template-columns: 1fr 320px; } }

.prose { min-width: 0; }
.prose p { font-size: 15.5px; color: var(--slate-600); line-height: 1.9; margin-bottom: 1.3rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; color: var(--slate-900);
  margin: 2.5rem 0 .8rem; letter-spacing: -.01em;
}
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin: 1.75rem 0 .6rem; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1.2rem; }
.prose li { font-size: 15px; color: var(--slate-600); line-height: 1.85; margin-bottom: 5px; }
.prose strong { color: var(--slate-900); font-weight: 700; }
.prose hr { border: none; border-top: 1px solid var(--slate-100); margin: 2.5rem 0; }
.prose a { color: var(--gold-700); font-weight: 600; transition: color var(--transition); }
.prose a:hover { color: var(--gold-800); text-decoration: underline; }
.prose .fact-box {
  background: linear-gradient(135deg, var(--slate-50), #fff);
  border: 1px solid var(--slate-100); border-radius: var(--radius-md);
  padding: 18px 20px; margin: 1.75rem 0; box-shadow: var(--shadow-sm);
}
.prose .fact-box p { margin: 0; font-size: 14px; }
.prose .callout {
  background: linear-gradient(90deg, var(--gold-50), #fffdf8);
  border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; margin: 1.75rem 0;
}
.prose .callout p { margin: 0; font-size: 14px; color: var(--gold-800); }
.prose .warning-box {
  background: #fff8f8; border-left: 4px solid #ef4444;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; margin: 1.75rem 0;
}
.prose .warning-box p { margin: 0; font-size: 14px; color: #7f1d1d; }
.prose .tip-box {
  background: #f0fdf4; border-left: 4px solid #22c55e;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; margin: 1.75rem 0;
}
.prose .tip-box p { margin: 0; font-size: 14px; color: #14532d; }

.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: #fff; border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card.gold { background: linear-gradient(135deg, var(--gold-800), var(--gold-700)); border: none; box-shadow: var(--shadow-gold); }
.sidebar-card.gold h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.sidebar-card.gold p { color: rgba(255,255,255,.82); font-size: 13px; margin-bottom: 18px; line-height: 1.65; }
.sidebar-card h4 {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--slate-400); margin-bottom: 14px;
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; transition: all var(--transition); text-decoration: none; }
.btn-white { background: #fff; color: var(--gold-700) !important; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.btn-white:hover { background: var(--gold-50); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff !important; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-outline-white { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; color: rgba(255,255,255,.9) !important; border: 1.5px solid rgba(255,255,255,.35); transition: all var(--transition); text-decoration: none; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a { font-size: 13.5px; color: var(--slate-600); padding: 4px 0; transition: color var(--transition); }
.sidebar-links a:hover { color: var(--gold-700); }
.related-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--slate-100); align-items: flex-start; }
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post .emoji { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.related-post a { font-size: 13px; color: var(--slate-700); font-weight: 600; line-height: 1.45; transition: color var(--transition); }
.related-post a:hover { color: var(--gold-700); }

.subtitle { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.7; max-width: 640px; margin-top: 10px; font-weight: 300; }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ────────────────────────────────────────────────────────────
   MISC COMPONENTS
──────────────────────────────────────────────────────────── */
.pill {
  display: inline-block; background: var(--gold-50); border: 1px solid var(--gold-200);
  color: var(--gold-700); font-size: 12px; font-weight: 700; padding: 4px 14px;
  border-radius: 999px; letter-spacing: .02em;
}
.text-gold { color: var(--gold-700); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.font-bold { font-weight: 700; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.rounded-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--gold-600); color: var(--gold-700);
  font-size: 14px; font-weight: 700; padding: 12px 26px;
  border-radius: var(--radius-md); transition: all var(--transition);
}
.rounded-btn:hover { background: var(--gold-50); border-color: var(--gold-700); transform: translateY(-1px); }

/* Smile Gallery */
.gallery-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; position: relative; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding: 20px 16px 14px;
}
.gallery-overlay p { font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.gallery-overlay span { font-size: 12px; color: rgba(255,255,255,.7); }

/* Callout boxes (standalone, outside prose) */
.callout { background: linear-gradient(90deg, var(--gold-50), #fffdf8); border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 14px 18px; margin: 1.5rem 0; }
.callout p { margin: 0; font-size: 14px; color: var(--gold-800); }
.warning-box { background: #fff8f8; border-left: 4px solid #ef4444; border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 14px 18px; margin: 1.5rem 0; }
.warning-box p { margin: 0; font-size: 14px; color: #7f1d1d; }
.tip-box { background: #f0fdf4; border-left: 4px solid #22c55e; border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 14px 18px; margin: 1.5rem 0; }
.tip-box p { margin: 0; font-size: 14px; color: #14532d; }
.fact-box { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-md); padding: 16px 20px; margin: 1.5rem 0; box-shadow: var(--shadow-sm); }
.fact-box p { margin: 0; font-size: 14px; color: var(--slate-600); }

/* Responsive */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .hero-body { padding: 64px 20px 88px; }
  .section { padding: 56px 20px; }
}

/* Sticky bar nav offset */
.sticky-bar.visible ~ * .site-nav { top: 48px; }
body.sticky-active .site-nav { top: 48px; }

/* ─ end hero ─ */

/* Article prose (legacy class support) */
.article-prose h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--slate-900); margin: 2.5rem 0 .8rem; letter-spacing: -.01em; }
.article-prose h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-900); margin: 1.75rem 0 .6rem; }
.article-prose p { font-size: 15px; color: var(--slate-600); line-height: 1.85; margin-bottom: 1.1rem; }
.article-prose ul, .article-prose ol { padding-left: 22px; margin-bottom: 1.1rem; }
.article-prose li { font-size: 15px; color: var(--slate-600); line-height: 1.8; margin-bottom: 4px; }
.article-prose strong { color: var(--slate-900); font-weight: 700; }
.article-prose hr { border: none; border-top: 1px solid var(--slate-100); margin: 2.5rem 0; }
.article-prose a { color: var(--gold-700); font-weight: 600; }
.article-prose a:hover { text-decoration: underline; }

/* Art sidebar legacy */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; }
.art-sidebar-card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.art-sidebar-card.gold { background: linear-gradient(135deg, var(--gold-800), var(--gold-700)); border: none; }
.art-sidebar-card.gold h3 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.art-sidebar-card.gold p { color: rgba(255,255,255,.82); font-size: 13px; margin-bottom: 16px; }
.art-sidebar-book-online { display: block; text-align: center; background: #fff; color: var(--gold-700) !important; font-weight: 700; font-size: 14px; padding: 11px; border-radius: var(--radius-sm); margin-bottom: 8px; }
.art-sidebar-phone { display: block; text-align: center; border: 1.5px solid rgba(255,255,255,.35); color: #fff !important; font-size: 14px; padding: 11px; border-radius: var(--radius-sm); }
.art-sidebar-card h4 { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-400); margin-bottom: 14px; }
.art-sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.art-sidebar-links a { font-size: 13px; color: var(--slate-600); transition: color var(--transition); }
.art-sidebar-links a:hover { color: var(--gold-700); }
.art-related { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--slate-100); }
.art-related:last-child { border-bottom: none; padding-bottom: 0; }
.art-related .e { font-size: 1.375rem; flex-shrink: 0; }
.art-related a { font-size: 13px; color: var(--slate-700); font-weight: 600; line-height: 1.45; }
.art-related a:hover { color: var(--gold-700); }

/* ── SVG Icon Utilities ─────────────────────────────────────── */
.feature-icon svg,
.map-icon svg,
.treatment-card-icon svg {
  display: block;
}
.treatment-card-icon {
  display: flex; align-items: center; justify-content: center;
}
.treatment-card-icon svg {
  width: 36px; height: 36px;
  color: var(--gold-700);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.treatment-card:hover .treatment-card-icon svg {
  transform: scale(1.12);
}
.feature-icon svg {
  width: 24px; height: 24px; color: var(--gold-700);
}
.footer-contact-icon svg {
  width: 16px; height: 16px; flex-shrink: 0;
}
.nav-phone svg,
.sticky-call svg,
.sticky-book-btn svg,
.mob-phone-bar svg {
  flex-shrink: 0;
}
/* Inline SVG buttons */
.cta-phone svg,
.cta-book svg,
.btn-hero-primary svg,
.btn-hero-outline svg,
.sidebar-book-online svg,
.sidebar-book-phone svg {
  width: 16px; height: 16px; flex-shrink: 0;
}
/* Blog card emojis keep as-is but size consistently */
.blog-card-emoji { font-size: 2.25rem; }
/* Fees accordion emoji span */
.fees-accordion-btn .emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold-50); border-radius: 8px;
  color: var(--gold-700);
}
.fees-accordion-btn.open .emoji {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ============================================================
   UTILITY CLASSES  -  replaces common inline styles
   ============================================================ */

/* Layout */
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.max-w-content  { max-width: 1280px; margin: 0 auto; }
.max-w-prose    { max-width: 800px; margin: 0 auto; }
.w-full         { width: 100%; }
.mt-sm          { margin-top: 12px; }
.mt-md          { margin-top: 24px; }
.mt-lg          { margin-top: 40px; }
.mb-sm          { margin-bottom: 12px; }
.mb-md          { margin-bottom: 24px; }
.mb-lg          { margin-bottom: 40px; }

/* Flex helpers */
.flex-center    { display: flex; align-items: center; }
.flex-center-gap{ display: flex; align-items: center; gap: 8px; }
.flex-col       { display: flex; flex-direction: column; gap: 12px; }

/* Typography */
.text-gold      { color: var(--gold-700); }
.text-gold-sm   { font-size: 13px; color: var(--gold-700); font-weight: 600; }
.text-muted     { color: var(--slate-500); font-size: 14px; line-height: 1.75; }
.text-body      { color: var(--slate-600); font-size: 14px; line-height: 1.8; }
.text-body-sm   { color: var(--slate-600); font-size: 13px; line-height: 1.75; }
.text-white-sub { color: rgba(255,255,255,.65); font-size: 12px; }
.text-white-muted{ color: rgba(255,255,255,.6); font-size: 12px; }
.font-700       { font-weight: 700; }
.heading-sm     { font-weight: 700; color: var(--slate-900); margin-bottom: 16px; }

/* Backgrounds */
.bg-white       { background: #fff; }
.bg-slate       { background: var(--slate-50); }
.bg-gold-light  { background: var(--gold-50); }

/* Borders */
.border-b       { border-bottom: 1px solid var(--slate-200); padding-bottom: 14px; }
.border-top-strip { padding: 16px 24px; background: var(--slate-50); border-top: 1px solid var(--slate-200); }

/* CTA paragraph below CTA banner */
.cta-sub        { color: var(--gold-100); font-size: 14px; margin-bottom: 32px; }

/* Blog author block inside hero */
.hero-author    { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.hero-author img{ width: 36px; height: 36px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid rgba(255,255,255,.3); }
.hero-author-name { font-size: 14px; font-weight: 600; color: #fff; }
.hero-author-date { font-size: 12px; color: rgba(255,255,255,.6); }
.hero-badge-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-readtime  { font-size: 12px; color: rgba(255,255,255,.6); }

/* Sidebar see-fees link */
.link-gold      { font-size: 13px; color: var(--gold-700); font-weight: 600; display: block; margin-top: 14px; }
.link-gold:hover{ text-decoration: underline; }

/* Review cards */
.review-avatar-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

/* Plan cards inline  -  new-patients page */
.plan-row-card  {
  background: #fff; border: 1px solid var(--gold-200); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
}
.plan-row-header{
  padding: 20px 24px; border-bottom: 1px solid var(--gold-200);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; background: var(--gold-50);
}
.plan-row-header.featured { background: var(--gold-700); border-bottom: none; }
.plan-row-body  { padding: 16px 24px; }
.plan-row-name  { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.plan-row-name.white { color: #fff; }
.plan-row-sub   { font-size: 12px; color: var(--slate-500); }
.plan-row-sub.white { color: rgba(255,255,255,.75); }
.plan-price-big { font-size: 1.875rem; font-weight: 700; color: var(--gold-700); white-space: nowrap; }
.plan-price-big.white { color: #fff; }
.plan-price-big span { font-size: 13px; font-weight: 400; color: var(--slate-500); }
.plan-price-big.white span { color: rgba(255,255,255,.7); }
.plan-check-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.plan-check-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--slate-700); line-height: 1.5;
}
.plan-check-list .ck { color: var(--gold-600); font-weight: 700; flex-shrink: 0; }
.plan-join-link {
  display: inline-flex; align-items: center;
  background: var(--gold-800); color: #fff !important;
  font-weight: 600; font-size: 13px; padding: 9px 20px;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  align-self: center; transition: background var(--transition);
  box-shadow: var(--shadow-gold);
}
.plan-join-link:hover { background: var(--gold-900); }

/* Most popular badge on plan card */
.plan-popular-tag {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  padding: 2px 10px; border-radius: 999px; text-transform: uppercase;
}

/* Age price badges */
.age-price-row  { display: flex; align-items: center; gap: 8px; }
.age-price      { font-size: 1.25rem; font-weight: 700; color: var(--gold-700); }
.age-price span { font-size: 12px; font-weight: 400; color: var(--slate-500); }
.age-tag-sm     { background: var(--gold-100); color: var(--gold-800); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; }

/* Map info */
.map-label      { font-size: 11.5px; font-weight: 700; color: var(--slate-900); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.map-value      { font-size: 14px; color: var(--slate-500); line-height: 1.5; }

/* Google rating strip */
.rating-strip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-50); border: 1px solid var(--gold-200);
  border-radius: 999px; padding: 8px 20px;
  font-size: 14px; font-weight: 700; color: var(--gold-800);
}
.rating-stars   { font-size: 1.125rem; }

/* Section divider utility */
.divider { border: none; border-top: 1px solid var(--slate-100); margin: 40px 0; }

/* Inline notice box */
.notice-box {
  background: var(--gold-50); border: 1px solid var(--gold-200);
  border-radius: 12px; padding: 16px 20px;
  font-size: 14px; color: var(--gold-800); line-height: 1.7;
}

/* £99 Popup offer list */
.offer-includes-li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #3d342c; line-height: 1.45; }
.offer-check { color: #5b4631; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Blog hero author image */
.hero-author img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2px solid rgba(255,255,255,.3);
  display: block; flex-shrink: 0;
}
.hero-author picture { flex-shrink: 0; }

/* Blog index featured article card */
.blog-featured-section { background: var(--gold-50); border-bottom: 1px solid var(--gold-200); }
.blog-featured-card {
  display: grid; grid-template-columns: 1fr;
  background: #fff; border: 1px solid var(--gold-200); border-radius: 20px;
  overflow: hidden; text-decoration: none; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
@media (min-width: 768px) { .blog-featured-card { grid-template-columns: auto 1fr; } }
.blog-featured-icon {
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: var(--gold-100); padding: 40px; min-width: 140px;
}
.blog-featured-body { padding: 32px; }
.blog-featured-body h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--slate-900);
  margin: 10px 0 12px; line-height: 1.3;
}
.blog-featured-body p {
  color: var(--slate-600); line-height: 1.7; margin-bottom: 20px; font-size: 14px;
}
.blog-featured-body .read-link {
  color: var(--gold-700); font-weight: 600; font-size: 14px;
}
.blog-author-center {
  max-width: 896px; margin: 0 auto; text-align: center;
}
.blog-author-bio {
  color: var(--slate-500); font-size: 14px; line-height: 1.7; margin-bottom: 24px;
}

/* Blog sidebar button display fix */
.btn.btn-white.btn-block { display: block; text-align: center; margin-bottom: 8px; }

/* Back to blog link */
.back-link { font-size: 14px; color: var(--slate-600); transition: color var(--transition); }
.back-link:hover { color: var(--gold-700); }

@media (max-width: 479px) {
  
}

/* ── Cookie Consent Banner ─────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--slate-900); color: rgba(255,255,255,.9);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0; transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding: 16px 32px;
}
#cookie-banner-text {
  font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.8); flex: 1; min-width: 280px;
}
#cookie-banner-text strong { color: #fff; }
#cookie-learn-more {
  color: var(--gold-400); font-weight: 600; margin-left: 8px; white-space: nowrap;
  text-decoration: underline;
}
#cookie-learn-more:hover { color: var(--gold-300); }
#cookie-banner-btns { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
#cookie-accept {
  background: var(--gold-800); color: #fff; font-family: var(--font-body);
  font-weight: 700; font-size: 13.5px; padding: 10px 22px;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(124,88,41,.3);
}
#cookie-accept:hover { background: var(--gold-900); box-shadow: 0 4px 14px rgba(124,88,41,.45); }
#cookie-accept:focus-visible {
  outline: 2px solid var(--gold-400); outline-offset: 2px;
}

/* ── Focus indicators (keyboard navigation) ──────── */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Remove default outline when using mouse */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* Skip to content link (screen readers / keyboard users) */
.skip-link {
  position: absolute; top: -100px; left: 24px; z-index: 9999;
  background: var(--gold-700); color: #fff; font-weight: 700;
  font-size: 14px; padding: 10px 20px; border-radius: 0 0 8px 8px;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Share buttons */
.share-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--slate-100);
  margin-top: 32px;
}
.share-label { font-size: 13px; font-weight: 700; color: var(--slate-600); text-transform: uppercase; letter-spacing: .06em; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; text-decoration: none; transition: all var(--transition);
  border: 1.5px solid transparent; cursor: pointer;
  font-family: var(--font-body);
}
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.share-btn.twitter  { background:#f0f9ff; color:#0284c7; border-color:#bae6fd; }
.share-btn.twitter:hover  { background:#0284c7; color:#fff; border-color:#0284c7; }
.share-btn.facebook { background:#eff6ff; color:#1d4ed8; border-color:#bfdbfe; }
.share-btn.facebook:hover { background:#1d4ed8; color:#fff; border-color:#1d4ed8; }
.share-btn.linkedin { background:#f0fdf4; color:#0f766e; border-color:#99f6e4; }
.share-btn.linkedin:hover { background:#0f766e; color:#fff; border-color:#0f766e; }
.share-btn.copy    { background:var(--slate-50); color:var(--slate-600); border-color:var(--slate-200); }
.share-btn.copy:hover { background:var(--slate-100); }
.share-btn.copy.copied { background:#f0fdf4; color:#15803d; border-color:#86efac; }

/* Category pills on blog pages */
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-50); border: 1px solid var(--gold-200);
  color: var(--gold-700); font-size: 11.5px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  text-decoration: none; letter-spacing: .04em; text-transform: uppercase;
  transition: all var(--transition);
}
.cat-pill:hover { background: var(--gold-700); color: #fff; border-color: var(--gold-700); }
.cat-pill.active { background: var(--gold-700); color: #fff; border-color: var(--gold-700); }

/* ── Hours row colours (footer + contact page) ──────────── */
.footer-hours-row.weekday-row .time { color: var(--gold-400) !important; }
.footer-hours-row.sat-row .day { color: var(--gold-300) !important; }
.footer-hours-row.sat-row .time { color: var(--gold-300) !important; }
.footer-hours-row.closed-row .day,
.footer-hours-row.closed-row .time { color: var(--gold-300) !important; opacity: 1; }

/* ── WhatsApp Floating Button ───────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none; transition: all .25s cubic-bezier(.34,1.56,.64,1);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  background: #20ba5a; transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.wa-float-tip {
  position: absolute; right: 68px; bottom: 50%; transform: translateY(50%);
  background: var(--slate-900); color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.wa-float-tip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--slate-900);
}
.wa-float:hover .wa-float-tip { opacity: 1; transform: translateY(50%) translateX(-4px); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.7),  0 2px 8px rgba(0,0,0,.15); }
}
/* Push up on mobile if sticky bar is present */
@media (max-width: 767px) {
  .wa-float { bottom: 80px; }
}

/* ── Back to Top Button ─────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 24px; right: 92px; z-index: 9989;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,21,18,.45);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.back-to-top.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(94,65,32,.75);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 18px; height: 18px; color: #fff; flex-shrink: 0;
}
@media (max-width: 767px) {
  .back-to-top { bottom: 88px; right: 82px; width: 40px; height: 40px; }
  .back-to-top svg { width: 16px; height: 16px; }
}

/* ── Blog card title image (replaces emoji) ──────────── */
.blog-card-emoji.blog-card-title-img {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
  display: flex; align-items: center; justify-content: center;
  height: 116px; padding: 20px 22px; text-align: center;
  font-size: 15px; font-weight: 700; font-family: var(--font-display);
  color: #fff; line-height: 1.35; letter-spacing: -.01em;
  border-bottom: none;
}
.blog-card-emoji.blog-card-title-img span {
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card:hover .blog-card-emoji.blog-card-title-img {
  background: linear-gradient(135deg, var(--gold-900), var(--gold-800));
}

/* ── Sticky bar label as home link ─────────────────────── */
a.sticky-bar-label {
  font-size: 12px; color: rgba(255,255,255,.6); flex: 1;
  display: none; font-weight: 500; text-decoration: none;
  transition: color var(--transition);
}
a.sticky-bar-label:hover { color: #fff; text-decoration: none; }
@media (min-width: 640px) { a.sticky-bar-label { display: block; } }

/* ── Paediatric Why Accord grid — equal height cards ─── */
.paed-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 640px) {
  .paed-why-grid { grid-template-columns: 1fr; }
}
.paed-why-card {
  background: #fff;
  border: 1px solid var(--gold-200);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.paed-why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  display: flex; align-items: center; justify-content: center;
}
.paed-why-icon svg { color: var(--gold-700); }
.paed-why-card h3 {
  font-size: 15px; font-weight: 700;
  color: var(--slate-900); margin: 0;
}
.paed-why-card p {
  font-size: 14px; color: var(--slate-500);
  line-height: 1.7; margin: 0; flex: 1;
}

/* ── Top bar day colour segments ─────────────────────── */
.top-bar-sat { color: var(--gold-300); font-weight: 600; }
.top-bar-sun { color: var(--gold-300); font-weight: 600; }

/* ── Sticky bar hours ───────────────────────────────── */
.sticky-hours {
  font-size: 11.5px; color: rgba(255,255,255,.55);
  display: none; align-items: center;
  font-weight: 500; letter-spacing: .01em;
}
@media (min-width: 900px) { .sticky-hours { display: flex; } }
.sticky-sat { color: var(--gold-400); font-weight: 600; }
.sticky-sun { color: var(--gold-400); font-weight: 600; }

/* ── Plan column cards ───────────────────────────────── */
.plan-col-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
}
.plan-col-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.plan-col-featured {
  border: 2px solid var(--gold-600);
  box-shadow: 0 4px 20px rgba(122,96,70,.2);
}
.plan-col-header {
  padding: 24px 22px 20px;
  background: var(--gold-50);
  border-bottom: 1px solid var(--slate-200);
  text-align: center;
}
.plan-col-header.featured {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
}
.plan-col-name {
  font-size: 16px; font-weight: 800;
  color: var(--slate-900); margin-bottom: 4px;
  font-family: var(--font-display);
}
.plan-col-name.white { color: #fff; }
.plan-col-sub {
  font-size: 12.5px; color: var(--slate-500);
  margin-bottom: 14px; font-weight: 500;
}
.plan-col-sub.white { color: rgba(255,255,255,.8); }
.plan-col-price {
  font-size: 2rem; font-weight: 800;
  color: var(--gold-800); line-height: 1;
}
.plan-col-price.white { color: #fff; }
.plan-col-price span {
  font-size: 13px; font-weight: 500;
  color: var(--slate-500);
}
.plan-col-body {
  padding: 22px; flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 18px;
}
.plan-col-btn {
  display: block; width: 100%;
  text-align: center; margin-top: auto;
}
@media (max-width: 768px) {
  .plan-col-card { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ── 3-column plan grid ─────────────────────────────── */
.plan-3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .plan-3-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── New patients: steps & bullets ──────────────────── */
.np-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.np-steps li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--slate-600); line-height: 1.7;
  counter-increment: np-counter;
}
.np-steps { counter-reset: np-counter; }
.np-steps li::before {
  content: counter(np-counter);
  min-width: 24px; height: 24px;
  background: var(--gold-800); color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.np-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.np-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--slate-600); line-height: 1.7;
}
.np-bullets li::before {
  content: '';
  min-width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.text-gold { color: var(--gold-700); font-weight: 600; }

/* ── Visually hidden — accessible to screen readers & SEO, invisible on screen ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
