/* =========================================================
   Dental Care Clinic — Dr. Shabnam Rani
   Design tokens, base, components, layout
   ========================================================= */

:root {
  --color-primary: #0F6E5E;
  --color-primary-dark: #0B4A3E;
  --color-accent: #F2A93B;
  --color-accent-hover: #D9931F;
  --color-bg: #FBFBF9;
  --color-cream: #F6F1E8;
  --color-surface: #FFFFFF;
  --color-text: #0A0F0D;          /* near-black for body copy */
  --color-text-soft: #232B29;      /* softer black for long paragraphs */
  --color-text-muted: #4A5854;     /* darker muted, still accessible */
  --color-border: #E4E9E7;
  --color-focus: #0F6E5E;

  --shadow-sm: 0 1px 2px rgba(15, 110, 94, 0.06), 0 1px 3px rgba(15, 110, 94, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 110, 94, 0.08), 0 2px 4px rgba(15, 110, 94, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 110, 94, 0.12), 0 4px 8px rgba(15, 110, 94, 0.06);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
html { overflow-x: clip; }

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-primary-dark); }

/* Focus states — visible for accessibility */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
}

h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 500;
}

h3 {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 600;
}

p { margin: 0 0 1em; }

.muted { color: var(--color-text-muted); }

/* Layout container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(48px, 7vw, 88px) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-header p { color: var(--color-text-muted); margin: 0; }

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}

/* =========================================================
   Announcement bar
   ========================================================= */
.announcement-bar {
  background: var(--color-primary-dark);
  color: #E8F2EF;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announcement-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ED5A9;
  box-shadow: 0 0 0 3px rgba(110, 213, 169, 0.25);
  display: inline-block;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}
.logo:hover { color: var(--color-text); }
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-links a:hover { background: rgba(15, 110, 94, 0.06); color: var(--color-primary); }
.nav-links a.active {
  color: var(--color-primary);
  background: rgba(15, 110, 94, 0.08);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition-base);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast),
              box-shadow var(--transition-fast);
  min-height: 44px;
  line-height: 1;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 10px 14px;
  font-weight: 500;
}
.btn-ghost:hover {
  background: rgba(15, 110, 94, 0.06);
  color: var(--color-primary);
}

.btn-sm { padding: 8px 16px; font-size: 14px; min-height: 40px; }
.btn-lg { padding: 14px 26px; font-size: 16px; min-height: 52px; }

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition-fast);
}
.nav-call-btn:hover { background: var(--color-primary-dark); color: #fff; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(242, 169, 59, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 90% at 10% 80%, rgba(15, 110, 94, 0.07), transparent 60%),
    var(--color-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content h1 { margin-bottom: 20px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 6px 14px;
  background: rgba(15, 110, 94, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg { width: 18px; height: 18px; color: var(--color-primary); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #E8F2EF 0%, #FBFBF9 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual-inner svg { width: 100%; height: 100%; }

.hero-badge {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.hero-badge-stars {
  color: var(--color-accent);
  font-size: 16px;
  letter-spacing: 1px;
}
.hero-badge-1 { top: 24px; left: -16px; }
.hero-badge-2 { bottom: 24px; right: -16px; }

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  background: var(--color-primary-dark);
  padding: 28px 0;
  color: #E8F2EF;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-item .trust-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  display: block;
}
.trust-item .trust-num .star {
  color: var(--color-accent);
  margin-right: 4px;
  font-size: 30px;
  vertical-align: 4px;
}
.trust-item .trust-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  display: block;
}

/* =========================================================
   Services grid
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 110, 94, 0.25);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(15, 110, 94, 0.09);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--color-text-muted); margin: 0; font-size: 15px; }
.service-placeholder {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 10px;
  display: block;
}

/* =========================================================
   Why choose us
   ========================================================= */
.why-section { background: linear-gradient(180deg, var(--color-bg) 0%, #F3EFE7 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 12px;
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.why-icon svg { width: 34px; height: 34px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--color-text-muted); margin: 0; }

/* =========================================================
   Review section
   ========================================================= */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 16px;
}
.review-text {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  flex-grow: 1;
}
.review-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-meta::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
}

.reviews-footer {
  margin-top: 32px;
  text-align: center;
}

/* =========================================================
   Service area / map
   ========================================================= */
.area-section .area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.area-neighborhoods {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.area-neighborhoods li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-text);
}
.area-neighborhoods li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}
.area-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #E8F2EF;
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover { border-color: rgba(15, 110, 94, 0.25); }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: rgba(15, 110, 94, 0.3); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text);
  min-height: 44px;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
}
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 6vw, 72px) 0;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 24px;
}
.cta-band .btn-primary { background: var(--color-accent); color: var(--color-text); }
.cta-band .btn-primary:hover { background: var(--color-accent-hover); }
.cta-band .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.footer-col a:hover { color: #fff; }

.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255, 255, 255, 0.7); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin: 16px 0 0;
  max-width: 320px;
}

.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}
.footer-address a { color: rgba(255, 255, 255, 0.9); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--transition-fast);
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.16); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   Sticky mobile bar
   ========================================================= */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 90;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.sticky-mobile-bar .btn {
  flex: 1;
  min-height: 48px;
  font-size: 15px;
}

/* =========================================================
   Page hero (non-home pages)
   ========================================================= */
.page-hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(242, 169, 59, 0.06), transparent 60%),
    var(--color-bg);
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--color-text-muted); }
.page-hero .breadcrumb a:hover { color: var(--color-primary); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 17px;
}

/* =========================================================
   About page
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #E8F2EF 0%, #FBFBF9 100%);
  box-shadow: var(--shadow-lg);
}
.about-visual svg { width: 100%; height: 100%; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--color-text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-item {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.value-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--color-primary); }
.value-item p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* =========================================================
   Services page — expanded cards
   ========================================================= */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-detail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-detail-card h3 { margin-bottom: 12px; }
.service-detail-card p { color: var(--color-text-muted); font-size: 15px; }
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-detail-list li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

/* =========================================================
   Reviews page — full list
   ========================================================= */
.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.reviews-summary-num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}
.reviews-summary-meta { text-align: left; }
.reviews-summary-stars {
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews-summary-meta p {
  margin: 4px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.reviews-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.reviews-cta {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.reviews-cta h2 { color: #fff; margin-bottom: 12px; }
.reviews-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
.reviews-cta .btn-primary { background: var(--color-accent); color: var(--color-text); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(15, 110, 94, 0.09);
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list .contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 2px;
  display: block;
}
.contact-value {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.5;
}
.contact-value a { color: var(--color-text-muted); }
.contact-value a:hover { color: var(--color-primary); }

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

/* Form */
.enquiry-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.enquiry-form h2 { margin-bottom: 8px; }
.enquiry-form > p { color: var(--color-text-muted); margin-bottom: 24px; }
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-field label .required { color: #B25B00; margin-left: 2px; }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--color-text);
  min-height: 44px;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 110, 94, 0.15);
}
.form-field .field-error {
  color: #B25B00;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #B25B00;
}
.form-field.has-error .field-error { display: block; }

.form-submit .btn {
  width: 100%;
}

.form-message {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 14px;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(15, 110, 94, 0.08);
  color: var(--color-primary-dark);
  border: 1px solid rgba(15, 110, 94, 0.2);
}
.form-message.error {
  display: block;
  background: #FDECE0;
  color: #7A3A00;
  border: 1px solid #F2A93B;
}

.form-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
  text-align: center;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-primary .spinner { border-color: rgba(26, 43, 39, 0.2); border-top-color: var(--color-text); }
@keyframes spin { to { transform: rotate(360deg); } }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 14px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--color-text); font-weight: 500; }
.hours-list li span:last-child { color: var(--color-text-muted); }

.contact-map-full {
  margin-top: 48px;
  aspect-ratio: 16 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #E8F2EF;
}
.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   Section eyebrow + ornament
   ========================================================= */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 6px 14px;
  background: rgba(15, 110, 94, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-header .section-eyebrow { margin-bottom: 14px; }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 20px;
  color: var(--color-primary);
  opacity: 0.7;
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 34px;
  background: currentColor;
}
.ornament svg { width: 12px; height: 12px; }

/* =========================================================
   Hero credentials badge row
   ========================================================= */
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
}
.hero-badge-pill svg { width: 14px; height: 14px; color: var(--color-primary); }

/* =========================================================
   Painless Promise section
   ========================================================= */
.promise-section {
  background:
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(15, 110, 94, 0.05), transparent 60%),
    var(--color-surface);
  position: relative;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.promise-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-card:hover::before { opacity: 1; }
.promise-card h3 { font-size: 19px; margin-bottom: 8px; }
.promise-card p { color: var(--color-text-soft); font-size: 15px; margin: 0; }
.promise-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(15, 110, 94, 0.14), rgba(15, 110, 94, 0.04));
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.promise-icon svg { width: 24px; height: 24px; }

/* =========================================================
   Steps section — "How your first visit works"
   ========================================================= */
.steps-section { background: var(--color-cream); position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 12px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(15, 110, 94, 0.35) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.step-card {
  position: relative;
  padding: 24px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  z-index: 1;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 0 0 6px var(--color-cream);
}
.step-card h3 { font-size: 17px; margin-bottom: 6px; }
.step-card p { color: var(--color-text-soft); font-size: 14px; margin: 0; }

/* =========================================================
   Meet the Doctor preview
   ========================================================= */
.doctor-preview {
  background:
    linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.doctor-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 90% 10%, rgba(242, 169, 59, 0.18), transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 90%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.doctor-preview-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  background: linear-gradient(160deg, #E8F2EF 0%, #FBFBF9 100%);
}
.doctor-preview-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doctor-preview-body {
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  z-index: 1;
}
.doctor-preview-body .section-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.doctor-preview-body h2 { color: #fff; margin-bottom: 12px; }
.doctor-preview-body p { color: rgba(255, 255, 255, 0.9); }
.doctor-preview-body .signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 24px;
}
.doctor-preview-body .btn { margin-top: 24px; }
.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.doctor-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* =========================================================
   Featured pull quote (premium review)
   ========================================================= */
.pull-quote-section {
  background:
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(242, 169, 59, 0.16), transparent 60%),
    var(--color-primary-dark);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.pull-quote-mark {
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: var(--font-heading);
  font-size: 180px;
  line-height: 1;
  color: rgba(242, 169, 59, 0.14);
  pointer-events: none;
  user-select: none;
}
.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pull-quote-stars {
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.pull-quote-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.pull-quote-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   Enhanced service card — refined visual
   ========================================================= */
.service-card { position: relative; overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.service-card:hover::after { width: 100%; }

/* =========================================================
   Review card — decorative quote mark
   ========================================================= */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -18px; right: 16px;
  font-family: var(--font-heading);
  font-size: 90px;
  line-height: 1;
  color: rgba(15, 110, 94, 0.08);
  pointer-events: none;
  user-select: none;
}

/* =========================================================
   Hero refinement — richer title
   ========================================================= */
.hero-content h1 { letter-spacing: -0.02em; }
.hero-content h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}
.hero-content h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 6px;
  background: var(--color-accent);
  opacity: 0.28;
  border-radius: 2px;
  z-index: -1;
}

/* =========================================================
   Reveal animations (respect reduced motion)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .service-card:hover,
  .review-card:hover,
  .service-detail-card:hover { transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .area-section .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .doctor-preview { grid-template-columns: 1fr; }
  .doctor-preview-visual { aspect-ratio: 16 / 9; min-height: 240px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 80px 20px 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 260ms ease;
    z-index: 95;
  }
  .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 74, 62, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 92;
  }
  .nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .nav-call-btn { display: none; }

  .hero-badge { display: none; }

  .sticky-mobile-bar { display: flex; }
  .site-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

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

  .reviews-summary { flex-direction: column; gap: 12px; text-align: center; }
  .reviews-summary-meta { text-align: center; }

  .area-neighborhoods { grid-template-columns: 1fr; }

  .services-grid,
  .services-detail-grid { grid-template-columns: 1fr; }

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

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

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding-top: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }
}

/* Print — hide interactive scaffolding */
@media print {
  .site-header, .sticky-mobile-bar, .announcement-bar, .cta-band { display: none; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #666; }
}
