/* =============================================
   GIGGLES & GRACE PEDIATRIC DENTISTRY
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold-primary:    #C79860;
  --gold-dark:       #7A5C2A;
  --gold-light:      #F5EDD8;
  --teal-secondary:  #05313D;
  --tan-bg:          #C8AD85;
  --tan-dark:        #05313D;
  --tan-light:       #EDE3D0;
  --cream:           #f5efe0;
  --text-dark:       #333333;
  --text-mid:        #555555;
  --text-light:      #888888;
  --white:           #FFFFFF;
  --bg-light:        #f5efe0;
  --border:          #E8DCC8;
  --shadow-sm:       0 2px 8px rgba(199,152,96,0.10);
  --shadow-md:       0 6px 24px rgba(199,152,96,0.15);
  --shadow-lg:       0 12px 40px rgba(199,152,96,0.18);
  --radius-sm:       14px;
  --radius-md:       24px;
  --radius-lg:       36px;
  --radius-full:     9999px;
  --font-main:       'Nunito', 'Segoe UI', sans-serif;
  --font-script:     'Dancing Script', 'Brush Script MT', cursive;
  --transition:      0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 10px;
  max-width: 560px;
}

/* =============================================
   LOGO IMAGE
   ============================================= */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 70px;
}

/* =============================================
   HERO PHOTO
   ============================================= */
.hero-photo {
  width: 100%;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  max-height: 240px;
  margin-bottom: 20px;
}

/* =============================================
   SERVICE IMAGE
   ============================================= */
.service-icon-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon-img img {
  transform: scale(1.05);
}

/* =============================================
   INSTAGRAM SECTION (Behold.so widget)
   ============================================= */
.insta-section {
  padding: 90px 0;
  background: var(--tan-bg);
}

.insta-header {
  text-align: center;
  margin-bottom: 40px;
}

.insta-script-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 8px;
}

.insta-subtitle {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  margin: 0;
}

.insta-widget {
  margin: 0 auto;
  max-width: 1200px;
}

.insta-widget behold-widget {
  display: block;
  width: 100%;
}

.insta-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #4267B2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-insta-follow:hover {
  background: #365899;
  transform: translateY(-2px);
}

.btn-insta-follow svg {
  flex-shrink: 0;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--gold-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}

.announcement-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  margin-left: 8px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text {
  line-height: 1.15;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-dark);
  display: block;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links > li {
  position: relative;
}

/* Invisible hover bridge so the dropdown's 8px gap doesn't break :hover */
.nav-links > li:has(> .dropdown)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold-primary);
  background: var(--gold-light);
}

.nav-links .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-links li:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
}

.dropdown li a:hover {
  color: var(--gold-primary);
  background: var(--gold-light);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.nav-phone span { color: var(--gold-primary); margin-right: 4px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196,151,90,0.40);
}

.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(139,107,61,0.45);
}

.btn-tan {
  background: var(--tan-bg);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,173,133,0.40);
}

.btn-tan:hover {
  background: var(--tan-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-light);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
/* =============================================
   HERO CAROUSEL (test)
   ============================================= */
.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(460px, 70vh, 640px);
  overflow: hidden;
  background: #2a2a2a;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.carousel-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.carousel-slide.active .carousel-image {
  transform: scale(1);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}

.carousel-content {
  position: relative;
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 40px 24px;
  max-width: 820px;
}

.carousel-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(245, 237, 216, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  backdrop-filter: blur(2px);
}

.carousel-title {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
}

.carousel-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  margin: 0 auto 26px;
  max-width: 620px;
  line-height: 1.5;
}

.carousel-btn {
  background: var(--gold-primary);
  color: var(--white);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.carousel-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* --- Arrows --- */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-arrow span { transform: translateY(-2px); }

/* --- Dots --- */
.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), width var(--transition);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.carousel-dot.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  width: 28px;
  border-radius: var(--radius-full);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide,
  .carousel-image { transition: none; }
  .carousel-image { transform: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background-color: #FAFAFA;
  padding: 70px 0 80px;
  overflow: hidden;
  min-height: 520px;
}

/* Background photo sits in a centered, max-width container so it doesn't scale beyond a sensible size on wide monitors. */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  background-image: url('../images/dr-eliana-toddler-learning-dentistry-preventive-care.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.72);
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gold-primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-style: italic;
}

.hero-body {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.hero-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-features li {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-cta-line {
  font-size: 1rem;
  color: var(--text-dark);
  margin-top: 20px;
  line-height: 1.6;
}

.hero-cta-line a {
  color: var(--teal-secondary);
  font-weight: 600;
  text-decoration: none;
}

.hero-cta-line a:hover {
  text-decoration: underline;
}

/* =============================================
   VALUE PROPS (Whole-Body Wellness — mirrors why-us layout)
   ============================================= */
.value-props {
  padding: 100px 0;
  background: var(--white);
}

.vp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vp-visual {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--tan-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.vp-visual-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
}

.vp-visual h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.vp-visual p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.vp-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.vp-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vp-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.vp-feature-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 90px 0 100px;
  background: var(--cream);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.services::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.services-header {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.service-icon.gold   { background: var(--gold-light); }
.service-icon.tan    { background: var(--tan-light); }
.service-icon.cream  { background: var(--cream); border: 1px solid var(--border); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
}

.service-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.services-all {
  text-align: center;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--tan-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.why-visual-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
}

.why-visual h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-visual p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.why-feature-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-sub {
  margin: 10px auto 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}

.testimonial-stars {
  color: #F6B93B;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-note {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* =============================================
   OUR APPROACH (3-column tooth-icon section)
   ============================================= */
.approach-section {
  padding: 90px 0 100px;
  background: var(--white);
  position: relative;
}

.approach-header {
  text-align: center;
  margin-bottom: 48px;
}

.approach-header .section-sub {
  margin: 10px auto 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approach-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.approach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold-primary);
}

.approach-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.approach-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.approach-title {
  font-family: var(--font-script);
  color: var(--gold-primary);
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 22px;
}

.approach-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.approach-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.approach-list li::marker {
  color: var(--gold-primary);
}

.approach-list strong {
  font-weight: 800;
  color: var(--text-dark);
}

.approach-footer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.approach-footer strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* =============================================
   KID-FRIENDLY APPROACH (image + content)
   ============================================= */
.kid-friendly-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.kid-friendly-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.kid-friendly-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.kid-friendly-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kid-friendly-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.kid-friendly-image img {
  width: 100%;
  height: auto;
  display: block;
}

.kid-friendly-content .section-title {
  margin-top: 4px;
  margin-bottom: 18px;
}

.kid-friendly-lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.kid-friendly-lead strong {
  color: var(--text-dark);
  font-weight: 800;
}

.kid-friendly-list-intro {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.kid-friendly-list {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.kid-friendly-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 4px;
}

.kid-friendly-list strong {
  color: var(--text-dark);
  font-weight: 800;
}

.kf-bullet {
  display: inline-block;
  margin-right: 6px;
}

.kid-friendly-footer {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.kid-friendly-footer strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* =============================================
   SMILE CLUB
   ============================================= */
.smile-club {
  padding: 90px 0;
  background: var(--white);
}

.smile-club-inner {
  background: linear-gradient(135deg, var(--tan-bg) 0%, var(--gold-dark) 100%);
  border-radius: 40px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.smile-club-text h2 {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.smile-club-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  line-height: 1.65;
}

.smile-club-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.smile-club-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.smile-club-perks li::before {
  content: '✓';
  color: var(--gold-light);
}

.smile-club-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.smile-club-cta .btn {
  background: var(--white);
  color: var(--gold-dark);
  font-size: 0.95rem;
  padding: 14px 28px;
}

.smile-club-cta .btn:hover {
  background: var(--gold-light);
}

.smile-club-cta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   CONTACT / LOCATION
   ============================================= */
.contact-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header .section-sub {
  margin: 10px auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item-text a {
  color: var(--gold-primary);
  font-weight: 700;
}

.contact-item-text a:hover {
  text-decoration: underline;
}

.contact-map {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.contact-map iframe {
  width: 100%;
  flex: 1;
  border: none;
  min-height: 320px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.service-areas {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.service-areas-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-areas h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}

.areas-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.area-tag {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #2E2F2F;
  color: rgba(255,255,255,0.70);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.45);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: var(--white);
}

.social-link:hover {
  background: var(--gold-primary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--white); }

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.mobile-nav.open { display: block; }

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}

.mobile-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold-primary); }

.mobile-sub-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 9px 16px;
  transition: color var(--transition);
}

.mobile-sub-link:hover { color: var(--gold-primary); }

.mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

/* --- Page hero (smaller than homepage hero) --- */
.page-hero {
  padding: 80px 0 70px;
  background: var(--cream);
  position: relative;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-script);
  color: var(--gold-primary);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 14px 0 16px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero-sub strong {
  color: var(--text-dark);
  font-weight: 800;
}

/* --- About overview (combined intro + mission, mirrors why-us 2-column layout) --- */
.about-overview {
  padding: 90px 0 100px;
  background: var(--white);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-overview-mission {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.about-overview-mission-header {
  text-align: center;
  margin-bottom: 36px;
}

.about-overview-mission-title {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.25;
  margin-top: 12px;
}

.about-overview-mission-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin: 10px auto 0;
  max-width: 600px;
  line-height: 1.65;
}

.about-intro-visual {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--tan-light) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
}

.about-intro-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}

.about-intro-visual h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-intro-visual p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-intro-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 16px;
}

.about-intro-body strong {
  color: var(--text-dark);
  font-weight: 800;
}

.about-intro-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.about-intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-intro-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-intro-feature-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-intro-feature-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-intro-feature-text p strong {
  color: var(--text-dark);
  font-weight: 800;
}

/* --- Doctor sections (alternating 2-column) --- */
.doctor-section {
  padding: 100px 0;
}

.doctor-pham {
  background: var(--white);
}

.doctor-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.doctor-visual {
  text-align: center;
}

.doctor-portrait {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 6px);
}

.doctor-photo {
  margin: 24px auto 0;
  max-width: 320px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 8px 14px;
  box-shadow: var(--shadow-sm);
}

.doctor-photo img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-md) - 8px);
  display: block;
}

.doctor-photo figcaption {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: center;
  padding: 10px 8px 0;
  line-height: 1.45;
  font-style: italic;
}

.doctor-content .section-title {
  margin: 6px 0 14px;
}

.doctor-tagline {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 22px;
  line-height: 1.4;
}

.doctor-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.doctor-content p strong {
  color: var(--text-dark);
  font-weight: 800;
}

.doctor-quote {
  margin: 26px 0 0;
  padding: 22px 26px;
  background: var(--cream);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.doctor-quote p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

.doctor-quote cite {
  font-style: normal;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* --- Mission values (used inside .about-overview) --- */
.mission-values {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: left;
  margin-top: 8px;
}

.mission-value {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.mission-value:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.mission-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mission-value-text h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mission-value-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* --- About CTA banner --- */
.about-cta {
  padding: 80px 0;
  background: var(--cream);
}

.about-cta-inner {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.about-cta-inner h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.about-cta-inner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-actions .btn {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}

.about-cta-actions .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn-outline-on-gold {
  background: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.btn-outline-on-gold:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* =============================================
   SERVICE PAGES (preventative, etc.)
   ============================================= */

/* --- Reverse 2-col modifier --- */
.about-intro-inner-reverse {
  direction: rtl;
}

.about-intro-inner-reverse > * {
  direction: ltr;
}

/* --- Service intro (white) --- */
.service-intro {
  padding: 90px 0 100px;
  background: var(--white);
}

.service-intro-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

/* --- Service block (alternating bg) --- */
.service-block {
  padding: 90px 0 100px;
  position: relative;
}

.service-block:nth-of-type(even) {
  background: var(--cream);
}

.service-block:nth-of-type(odd) {
  background: var(--white);
}

.service-block:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.service-block:nth-of-type(even)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Hide the bottom wave when the next section is also cream (.about-cta) */
.service-block:has(+ .about-cta)::after {
  display: none;
}

.service-block .container {
  position: relative;
  z-index: 1;
}

.service-block-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.service-block-header .section-sub {
  margin: 10px auto 0;
}

/* --- Service emoji visual --- */
.service-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

/* --- Service cards grid (3-up by default; -4 modifier for 4-up) --- */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-detail {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card-detail:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold-primary);
}

.service-card-featured {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}

.service-card-detail h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-detail p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.service-card-detail p strong {
  color: var(--text-dark);
  font-weight: 800;
}

.service-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* --- Numbered step card (used in treatment process) --- */
.service-step {
  text-align: left;
  padding-top: 44px;
}

.service-step-number {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-script);
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--white);
}

.service-step h3 {
  text-align: left;
}

.service-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-step-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.service-step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-primary);
  font-weight: 800;
}

/* --- Candidate list refinement (uses .kid-friendly-list base) --- */
.service-candidates-list {
  margin-top: 4px;
}

.service-candidates-list li {
  padding-left: 0;
}

/* --- Benefit list refinement (uses .kid-friendly-list base) --- */
.service-benefit-list {
  margin: 6px 0 18px;
}

.service-benefit-list li {
  padding-left: 0;
  margin-bottom: 6px;
}

/* --- Inline 4-step grid (used inside a 2-col content column for Crowns) --- */
.service-steps-grid-inline {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 14px;
}

.service-steps-grid-inline .service-step {
  padding: 36px 20px 22px;
}

.service-steps-grid-inline .service-step h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.service-steps-grid-inline .service-step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-steps-grid-inline .service-step-number {
  width: 38px;
  height: 38px;
  font-size: 1.05rem;
  top: -18px;
  left: 18px;
}

/* --- Pulp indicators (centered service-quote variant) --- */
.service-quote.pulp-indicators-quote {
  max-width: 640px;
  margin: 22px auto 36px;
  text-align: center;
}

.service-quote.pulp-indicators-quote p,
.service-quote.pulp-indicators-quote cite {
  text-align: center;
}

/* --- Card meta footer line --- */
.card-meta {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark) !important;
}

/* --- Gallery thumbnail grid (used on gallery.html) --- */
.gallery-section {
  padding: 70px 0 90px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-item {
  margin: 0;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.gallery-zoom {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-zoom img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-zoom img {
  transform: scale(1.05);
}

.gallery-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-zoom-hint,
.gallery-zoom:focus-visible .gallery-zoom-hint {
  opacity: 1;
}

.gallery-item figcaption {
  padding: 16px 20px 18px;
}

.gallery-item figcaption h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Description lives in the markup for the lightbox, hidden on the thumbnail card */
.gallery-item figcaption p {
  display: none;
}

/* --- Lightbox (used on gallery.html) --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 21, 0.92);
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(1060px, 94vw);
  padding: 0 8px;
}

.lightbox-figure {
  margin: 0;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  margin-top: 18px;
  color: var(--white);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lightbox-caption h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.lightbox-caption p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.lightbox-count {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 8px;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

/* --- Contact form (used on contact.html) --- */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-required {
  color: var(--gold-primary);
  font-weight: 800;
  margin-left: 2px;
}

.form-optional {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: lowercase;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(199, 152, 96, 0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  margin-top: 8px;
  text-align: center;
}

/* --- Insurance providers grid (used on financial.html) --- */
.insurance-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 960px;
  margin: 0 auto 32px;
}

.insurance-grid li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.insurance-grid li:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.insurance-grid li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- Smile Club CTA row (financial page) --- */
.smile-club-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* --- Care card (centered icon/title, left-aligned bullet list) --- */
.care-card .service-step-list {
  display: inline-block;
  text-align: left;
  margin-top: 4px;
}

.care-card h3 {
  margin-bottom: 8px;
}

/* --- Service note (small caption under a section) --- */
.service-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
}

.service-note strong {
  font-style: normal;
  color: var(--text-dark);
  font-weight: 800;
}

/* --- Service video (responsive 16:9 iframe) --- */
.service-video {
  padding: 70px 0 100px;
  background: var(--white);
}

.service-video .service-block-header {
  margin-bottom: 32px;
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Service callout quote --- */
.service-quote {
  margin: 22px 0;
  padding: 18px 24px;
  background: var(--gold-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.service-quote p {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 6px;
}

.service-quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-phone { display: none; }

  .hamburger { display: flex; }

  .hero::before { background-position: 70% center; }

  .hero-carousel { height: clamp(420px, 65vh, 560px); }
  .carousel-arrow { width: 44px; height: 44px; font-size: 1.7rem; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }

  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }

  .vp-inner { grid-template-columns: 1fr; }
  .vp-visual { display: none; }

  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; max-width: 620px; margin: 0 auto; }
  .about-intro-inner-reverse { direction: ltr; }
  .doctor-inner { grid-template-columns: 1fr; gap: 40px; max-width: 620px; margin: 0 auto; }
  .service-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .service-cards-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .service-cards-grid-2 { grid-template-columns: 1fr; max-width: 480px; }
  .service-steps-grid-inline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 1.25rem; }
  .lightbox-inner { gap: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 18px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 56px; max-width: 520px; margin: 0 auto; }
  .kid-friendly-inner { grid-template-columns: 1fr; gap: 40px; max-width: 620px; margin: 0 auto; }

  .smile-club-inner { grid-template-columns: 1fr; text-align: center; }
  .smile-club-perks { align-items: flex-start; display: inline-flex; text-align: left; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-zoom img { height: 260px; }
  .lightbox-close { top: -54px; right: 0; }
  .lightbox-img { max-height: 62vh; }

  .hero { padding: 48px 0 40px; min-height: auto; }
  .hero-carousel { height: 440px; }
  .carousel-content { padding: 24px 16px; }
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: 14px; }
  .smile-club-inner { padding: 36px 24px; }

  .approach-section { padding: 80px 0; }
  .approach-title { font-size: 1.4rem; }

  .page-hero { padding: 60px 0 50px; }
  .about-cta-inner { padding: 44px 28px; }
  .service-cards-grid-4 { grid-template-columns: 1fr; max-width: 420px; }
}
