/* ============================================================
   Hamilton Care Dental Centre — Homepage Styles
   Brand palette: gold #a48756, cream #f6f2ea, deep brown #6b5431
   ============================================================ */

:root {
  --gold: #a48756;
  --gold-dark: #7b6137;
  --gold-soft: #c7b28a;
  --brand-brown: #8b6f47;     /* matches live --bg-color */
  --brand-brown-dark: #6b5431;
  --cream: #f6f2ea;
  --cream-light: #efe6d6;
  --ink: #2a2a2a;
  --ink-soft: #4a4a4a;
  --white: #ffffff;
  --line: #e6dfd1;
  --shadow-sm: 0 4px 12px rgba(0,0,0,.06);
  --shadow-md: 0 12px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 45px rgba(0,0,0,.10);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font-serif: 'PT Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Montserrat', 'Lato', system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title { text-align: center; margin-bottom: .35em; }
.section-sub  { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--gold-dark); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--gold); color: var(--white); }
.btn-cream { background: var(--cream-light); color: var(--ink); }
.btn-cream:hover { background: var(--gold); color: var(--white); }

/* ---------- Top Info Bar (matches live --bg-color brown) ---------- */
.topbar {
  background: var(--brand-brown);
  color: var(--white);
  font-size: .85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: .65rem 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gold-soft); }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.topbar-spacer { flex: 1; }
.topbar-social { display: inline-flex; gap: .6rem; }
.topbar-social a { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); }
.topbar-social svg { width: 14px; height: 14px; fill: var(--white); }

/* ---------- Header / Navbar ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo img { height: 56px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav a {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .35rem 0;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }
.nav-services {
  position: relative;
}
.nav-services > a::after {
  content: '▾';
  font-size: .65rem;
  margin-left: .2rem;
  display: inline-block;
}
.nav-services-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .6rem;
  display: grid;
  gap: .1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.nav-services:hover .nav-services-menu,
.nav-services:focus-within .nav-services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-services-menu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 6px;
  font-size: .9rem;
}
.nav-services-menu a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
/* ---------- Hero (split: text left, image right) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}
.hero::before {
  /* soft gold accent in the upper-right corner */
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164,135,86,.18) 0%, rgba(164,135,86,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  /* subtle pattern dots in the lower-left */
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(123,97,55,.10) 0%, rgba(123,97,55,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { color: var(--ink); }
.hero-eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 6px rgba(164,135,86,.10);
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}
.hero p.lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.2rem;
  font-size: .92rem;
  font-family: var(--font-head);
  font-weight: 500;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink);
}
.hero-badges svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  padding: 2px;
  box-sizing: border-box;
}
/* Hero image (right column) */
.hero-image {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}
.hero-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(42,42,42,.18),
    0 6px 14px rgba(123,97,55,.12);
  background: var(--white);
  aspect-ratio: 4 / 5;
}
.hero-image-frame::before {
  /* gold border accent */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(164,135,86,.45) 0%, rgba(164,135,86,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-image::before {
  /* soft offset card behind the photo */
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  background: var(--gold);
  opacity: .12;
  border-radius: 28px;
  z-index: -1;
}
.hero-badge-card {
  position: absolute;
  right: -22px;
  bottom: -22px;
  background: var(--gold);
  color: var(--white);
  border: 6px solid var(--white);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  box-shadow: 0 14px 30px rgba(123,97,55,.25);
}
.hero-badge-card strong {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: .15rem;
}
.hero-badge-card span {
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

@media (max-width: 992px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { justify-self: center; max-width: 380px; }
  .hero-image::before { top: 16px; left: -16px; }
  .hero-badge-card { width: 110px; height: 110px; right: -10px; bottom: -10px; }
  .hero-badge-card strong { font-size: 1.6rem; }
  .hero-badges { grid-template-columns: 1fr; gap: .55rem; }
}
@media (max-width: 480px) {
  .hero-image { max-width: 320px; }
  .hero-image-frame { border-radius: 22px; }
}

/* ---------- Quick-action strip (call/book) ---------- */
.action-strip {
  background: var(--white);
  margin-top: -45px;
  position: relative;
  z-index: 5;
}
.action-strip-inner {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.action-strip-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.action-strip-text h3 { margin: 0; font-size: 1.1rem; }
.action-strip-text p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.action-strip-cta { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- Appointment form ---------- */
.appointment {
  padding: 5rem 0;
  background: var(--white);
}
.appointment-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: 1px solid var(--line);
}
.appt-form {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-full { grid-column: 1 / -1; }
.appt-form label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
}
.appt-form input,
.appt-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.appt-form input:focus,
.appt-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,135,86,.18);
}
.appt-form textarea { resize: vertical; min-height: 110px; }
.appt-form .form-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-size: .85rem;
  margin: 0;
}
.appt-form .form-submit { grid-column: 1 / -1; text-align: center; }
.appt-form .form-submit button { min-width: 220px; }

/* ---------- Promo / May campaign ---------- */
.promo {
  padding: 5rem 0;
  background: var(--cream-light);
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.promo-img {
  background: linear-gradient(145deg, var(--cream-light), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.promo-img img { border-radius: var(--radius-md); }
.promo-body { padding: 2.5rem 2.2rem; }
.promo-body h2 { font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
.promo-body ul { padding-left: 1.1rem; margin: 1rem 0 1.6rem; }
.promo-body li { margin-bottom: .35rem; }
.promo-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- About / Welcome ---------- */
.about {
  padding: 5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-media .exp-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-media .exp-badge strong { font-size: 2.4rem; line-height: 1; }
.about-media .exp-badge span { font-size: .85rem; margin-top: .3rem; font-family: var(--font-head); letter-spacing: .05em; text-transform: uppercase; }
.about-body .eyebrow { color: var(--gold); }
.about-body p { color: var(--ink-soft); }

/* ---------- Why choose us ---------- */
.why {
  padding: 5rem 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 30px; height: 30px; fill: var(--gold); }
.why-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.why-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- Services ---------- */
.services {
  padding: 5rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.service-body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; flex: 1; }
.service-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.service-link:hover { color: var(--gold); }
.services-footer { text-align: center; margin-top: 2.5rem; }

/* ---------- Doctors ---------- */
.doctors {
  padding: 5rem 0;
  background: var(--cream);
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doctor-card-link { display: block; color: inherit; text-decoration: none; }
.doctor-card-link:hover { color: inherit; }
.doctor-card-link:hover h3 { color: var(--gold-dark); }
.doctor-card:hover .doctor-photo img { transform: scale(1.03); }
.doctor-photo img { transition: transform .35s ease; }
.doctor-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-light);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Per-photo framing tweaks so the About-Us team rows line up visually.
   object-position shifts the visible crop window inside the source image;
   transform scales the photo inside the square card. The doctor-card:hover
   scale(1.03) is overridden here so the base zoom is preserved on hover. */
.doctor-card[data-slug="darcy"]  .doctor-photo img { object-position: center 35%; }
.doctor-card[data-slug="sally"]  .doctor-photo img { object-position: center 65%; }
.doctor-card[data-slug="paeez"]  .doctor-photo img { object-position: center 25%; }
.doctor-card[data-slug="sana"]   .doctor-photo img { object-position: center 25%; transform: scale(1.2); transform-origin: center 35%; }
.doctor-card[data-slug="erazel"] .doctor-photo img { object-position: center 25%; transform: scale(1.2); transform-origin: center 35%; }
.doctor-card[data-slug="sana"]:hover   .doctor-photo img,
.doctor-card[data-slug="erazel"]:hover .doctor-photo img { transform: scale(1.23); }

.doctor-info { padding: 1.4rem; }
.doctor-info h3 { margin-bottom: .15rem; }
.doctor-info .role { font-family: var(--font-head); color: var(--gold); font-weight: 600; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- New Patients ---------- */
.new-patients {
  padding: 5rem 0;
  background: var(--white);
}
.np-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.np-body p { color: var(--ink-soft); }
.np-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.np-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- Nitrous ---------- */
.nitrous {
  padding: 5rem 0;
  background: var(--cream-light);
}
.nitrous-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.nitrous-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.nitrous-body p { color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.reviews {
  padding: 5rem 0;
  background: var(--white);
}
.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  flex-wrap: wrap;
}
.review-stat { padding: 0 1rem; }
.review-stat strong { display: block; font-family: var(--font-serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.review-stat span { display: block; font-family: var(--font-head); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-top: .4rem; }
.review-stars { color: var(--gold); font-size: 1.4rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--line);
  position: relative;
}
.review-card .stars { color: var(--gold); margin-bottom: .8rem; }
.review-card blockquote { margin: 0 0 1.2rem; color: var(--ink); font-style: italic; }
.review-author {
  display: flex; align-items: center; gap: .8rem;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
}
.review-author strong { display: block; font-size: .95rem; }
.review-author span { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Visit Us ---------- */
.visit {
  padding: 5rem 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.visit-info {
  display: grid;
  gap: 1.2rem;
}
.visit-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.visit-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.visit-item h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.visit-item p { margin: 0; color: var(--ink-soft); }
.visit-item a { color: var(--ink); font-weight: 600; }
.visit-item a:hover { color: var(--gold); }
.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Service Area / Neighbourhoods (local SEO grid) ---------- */
.service-area { padding: 4.5rem 0; background: var(--cream); }
.service-area .eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: .55rem;
}
.service-area h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.15;
  color: var(--ink); margin: 0 0 .85rem; max-width: 760px;
}
.service-area .lead { font-size: 1.04rem; color: var(--ink); max-width: 760px; margin: 0 0 2rem; line-height: 1.65; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem 1.2rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 1.1rem 1.2rem 1.2rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,97,55,.10); }
.area-card h3 { font-family: var(--font-head); font-size: 1.06rem; margin: 0 0 .5rem; color: var(--ink); }
.area-card p { font-size: .93rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.area-note { margin-top: 1.8rem; font-size: .98rem; color: var(--ink); }
.area-note a { color: var(--gold-dark); font-weight: 600; }
.area-note a:hover { color: var(--gold); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 5rem 0;
  position: relative;
  background:
    linear-gradient(rgba(139, 111, 71, 0.62) 0%, rgba(123, 97, 55, 0.78) 100%),
    url('/assets/images/may-campaign.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--white);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 1.6rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; }
.cta-banner .badges { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; font-family: var(--font-head); font-size: .9rem; color: rgba(255,255,255,.85); }
.cta-banner .badges span { display: inline-flex; align-items: center; gap: .4rem; }
.cta-banner .badges svg { width: 18px; height: 18px; fill: var(--gold); }

/* ---------- FAQ ---------- */
.faq {
  padding: 5rem 0;
  background: var(--white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-soft);
}

/* ---------- Footer (matches live --bg-color brown) ---------- */
.footer {
  background: var(--brand-brown);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer ul a { color: rgba(255,255,255,.78); font-size: .92rem; }
.footer ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .8rem; font-size: .92rem; color: rgba(255,255,255,.85); }
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.92); }
.footer-contact-item a:hover { color: var(--gold); }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.7); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: .55rem .75rem;
  gap: .5rem;
  z-index: 80;
  box-shadow: 0 -6px 18px rgba(0,0,0,.08);
}
.mobile-cta .btn { flex: 1; padding: .8rem; font-size: .9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .topbar-spacer, .topbar .desktop-only { display: none; }
  .topbar-inner { justify-content: center; gap: .8rem; font-size: .8rem; }

  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a { padding: .8rem .25rem; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-services-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 1rem; display: none; }
  .nav-services.is-open .nav-services-menu { display: grid; }
  .nav-burger { display: inline-flex; }
  .header-inner > .btn { display: none; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 5rem 0 5rem; }

  .about-grid,
  .np-grid,
  .nitrous-grid,
  .visit-grid,
  .promo-card { grid-template-columns: 1fr; }
  .about-media .exp-badge { width: 120px; height: 120px; right: 10px; bottom: 10px; }
  .about-media .exp-badge strong { font-size: 1.8rem; }

  .why-grid,
  .services-grid,
  .doctors-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

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

  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .topbar { display: none; }
  .topbar-mobile { display: flex; background: var(--ink); color: var(--white); justify-content: center; gap: .8rem; padding: .55rem 12px; font-size: .8rem; }
  .topbar-mobile a { color: var(--white); }
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 0; }
  .action-strip-inner { padding: 1.1rem; }
  .action-strip-text { flex-direction: column; align-items: flex-start; }
  .appt-form { grid-template-columns: 1fr; }
  .why-grid,
  .services-grid,
  .doctors-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .promo-body { padding: 1.8rem 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   INNER PAGE STYLES (added for full site build)
   ============================================================ */

/* Inner page hero — same gradient as home, smaller height */
.inner-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.inner-hero-bg { position: absolute; inset: 0; z-index: 0; }
.inner-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.inner-hero-bg::after {
  /* Default directional gradient (brand brown, fades to transparent toward the right) */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(75, 56, 30, 0.86)  0%,
      rgba(123, 97, 55, 0.68) 38%,
      rgba(139, 111, 71, 0.30) 65%,
      rgba(139, 111, 71, 0)    95%),
    linear-gradient(180deg,
      rgba(0,0,0,.04) 0%,
      rgba(0,0,0,.14) 100%);
}
.inner-hero[data-page="contact-us"].inner-hero-bg img { object-position: 60% center; }

/* === About Us / Our Story: centered hero with vertical "vignette" overlay
   so the team in the middle of the photo stays visible. Matches live site layout. */
.inner-hero[data-page="about-us"],
.inner-hero[data-page="our-story"] {
  min-height: 56vh;
  text-align: center;
}
.inner-hero[data-page="about-us"] .inner-hero-bg img,
.inner-hero[data-page="our-story"] .inner-hero-bg img {
  /* Anchor near the top of the team photo so heads aren't cropped */
  object-position: 50% 14%;
}
.inner-hero[data-page="about-us"] .inner-hero-bg::after,
.inner-hero[data-page="our-story"] .inner-hero-bg::after {
  /* Text sits on the LEFT, so the gradient is darker on the left and fades right.
     A very light top + bottom warm wash keeps the photo readable. Faces in the
     middle and right stay clearly visible. */
  background:
    linear-gradient(90deg,
      rgba(40, 30, 14, 0.78) 0%,
      rgba(75, 56, 30, 0.58) 28%,
      rgba(123, 97, 55, 0.20) 55%,
      rgba(139, 111, 71, 0)   82%,
      rgba(139, 111, 71, 0)   100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.02) 45%,
      rgba(0, 0, 0, 0.18) 100%);
}
.inner-hero[data-page="about-us"] h1,
.inner-hero[data-page="our-story"] h1,
.inner-hero[data-page="about-us"] .lead,
.inner-hero[data-page="our-story"] .lead {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.inner-hero[data-page="about-us"] .inner-hero-content,
.inner-hero[data-page="our-story"] .inner-hero-content {
  /* Keep content on the left so the dark gradient corner covers the text area only */
  max-width: 560px;
  text-align: left;
  padding: 3rem 0 3rem;
}
.inner-hero[data-page="about-us"] .lead,
.inner-hero[data-page="our-story"] .lead {
  max-width: 480px;
}
@media (max-width: 768px) {
  .inner-hero[data-page="about-us"],
  .inner-hero[data-page="our-story"] { min-height: 60vh; }
  .inner-hero[data-page="about-us"] .inner-hero-bg::after,
  .inner-hero[data-page="our-story"] .inner-hero-bg::after {
    /* On mobile the text wraps to multiple lines, so use a vertical fade that
       darkens the top 45% (where the heading + lead live) and clears the
       bottom so heads stay visible. */
    background:
      linear-gradient(180deg,
        rgba(40, 30, 14, 0.78) 0%,
        rgba(75, 56, 30, 0.55) 38%,
        rgba(123, 97, 55, 0.18) 60%,
        rgba(139, 111, 71, 0)   85%);
  }
  .inner-hero[data-page="about-us"] .inner-hero-bg img,
  .inner-hero[data-page="our-story"] .inner-hero-bg img {
    /* On phones, show the upper part of the photo with the heads */
    object-position: 50% 10%;
  }
  .inner-hero[data-page="about-us"] .inner-hero-content,
  .inner-hero[data-page="our-story"] .inner-hero-content {
    max-width: 100%;
    padding: 2.5rem 0 3rem;
  }
}
.inner-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 820px;
  padding: 5rem 0 3.5rem;
}
.inner-hero-content h1 {
  color: var(--white);
  margin: 0 0 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.inner-hero-content .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.95);
  max-width: 640px;
  margin-bottom: 1.6rem;
}

/* Breadcrumbs inside hero */
.crumbs {
  font-family: var(--font-head);
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}
.crumbs a { color: rgba(255,255,255,.95); }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span[aria-hidden] { opacity: .6; }

/* ---------- Service detail layout ---------- */
.service-intro { padding: 4rem 0; background: var(--white); }
.service-deep { padding: 2rem 0 2rem; background: var(--white); border-top: 1px solid var(--line); }
.service-deep:nth-of-type(even) { background: var(--cream); }
.service-deep .prose { max-width: 820px; margin: 0 auto; }
.service-deep h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.7rem); line-height: 1.2; color: var(--ink); margin: 0 0 .9rem; }
.service-deep p { font-size: 1rem; line-height: 1.7; color: var(--ink); margin: 0 0 1rem; }
.service-deep a { color: var(--gold-dark); font-weight: 500; }
.service-deep a:hover { color: var(--gold); }
.service-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-main h2 { margin-top: 0; }
.service-main h3 { margin-top: 1.8rem; }
.service-main p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .5rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.process-list { padding-left: 1.2rem; }
.process-list li { margin-bottom: .6rem; color: var(--ink-soft); }
.process-list li strong { color: var(--ink); }
.service-cta {
  margin-top: 2rem;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

/* Sidebar */
.service-side, .article-side {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
.side-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
}
.side-card h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 .8rem;
}
.fact-list, .related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
  font-size: .92rem;
}
.fact-list li { color: var(--ink); }
.related-list a { color: var(--ink); display: block; padding: .25rem 0; }
.related-list a:hover { color: var(--gold); }

/* ---------- Team page ---------- */
.team-hero {
  background: var(--cream);
  padding: 4rem 0;
}
.team-hero-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}
.team-hero-photo img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.team-hero-body h1 { margin-top: .4rem; }
.team-hero-body .eyebrow { color: var(--gold); }
.team-hero-body p { color: var(--ink-soft); }
.team-hero-body .hero-actions { margin-top: 1.5rem; }

.team-related {
  padding: 3rem 0 4rem;
  background: var(--white);
}
.team-related .related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
.team-related .related-list a {
  background: var(--cream);
  padding: .9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.team-related .related-list a:hover { background: var(--gold); color: var(--white); }

/* ---------- About / prose ---------- */
.about-body { padding: 4rem 0; background: var(--white); }
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 { margin-top: 2rem; }
.prose p { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.25rem; color: var(--ink-soft); }
.prose ul li, .prose ol li { margin-bottom: .35rem; }

/* ---------- Services landing grid (3 cols) ---------- */
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.service-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.service-card-link:hover .service-link { color: var(--gold); }

/* ---------- Blog landing ---------- */
.blog-landing { padding: 4rem 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem; }
.blog-card-body time { font-family: var(--font-head); font-size: .8rem; color: var(--gold); letter-spacing: .05em; text-transform: uppercase; }
.blog-card-body h3 { margin: .4rem 0 .5rem; font-size: 1.2rem; line-height: 1.3; }
.blog-card-body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: .8rem; }

/* ---------- Blog article ---------- */
.article { padding: 4rem 0; background: var(--white); }
.article-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  align-items: start;
}
.article-main h2 { margin-top: 1.8rem; font-size: 1.5rem; }
.article-main p { color: var(--ink-soft); }
.article-cta {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  margin-top: 2rem;
  border-left: 4px solid var(--gold);
}
.article-cta h3 { margin: 0 0 .5rem; }
.article-cta p { color: var(--ink-soft); margin-bottom: 1rem; }
.article-cta .btn { margin-right: .5rem; }

/* ---------- Contact page ---------- */
.contact-page { padding: 4rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: grid; gap: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .service-content,
  .article-content,
  .contact-grid,
  .team-hero-grid { grid-template-columns: 1fr; }
  .service-side, .article-side { position: static; }
  .services-grid-3,
  .blog-grid,
  .team-related .related-list { grid-template-columns: repeat(2, 1fr); }
  .team-hero-photo { max-width: 320px; margin: 0 auto; }
  .inner-hero { min-height: 42vh; }
  .inner-hero-content { padding: 4rem 0 3rem; }
}
@media (max-width: 640px) {
  .services-grid-3,
  .blog-grid,
  .team-related .related-list { grid-template-columns: 1fr; }
}

/* ===== Services landing — image-on-top cards (warm brand) ===== */
.services-landing-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.services-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.services-landing-grid .service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.services-landing-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(42,42,42,.12), 0 4px 10px rgba(123,97,55,.10);
  border-color: var(--gold-soft);
}
.services-landing-grid .service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.services-landing-grid .service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.services-landing-grid .service-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--cream);
  transition: transform .35s ease;
  display: block;
}
.services-landing-grid .service-card:hover .service-card-image img {
  transform: scale(1.05);
}
.services-landing-grid .service-body {
  padding: 1.3rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-landing-grid .service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 .4rem;
  color: var(--ink);
}
.services-landing-grid .service-body p {
  font-size: .93rem;
  color: var(--ink-soft);
  margin: 0 0 .9rem;
  flex: 1;
  line-height: 1.55;
}
.services-landing-grid .service-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--gold-dark);
  align-self: flex-start;
}
.services-landing-grid .service-card:hover .service-link {
  color: var(--gold);
}
@media (max-width: 992px) {
  .services-landing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 560px) {
  .services-landing-grid { grid-template-columns: 1fr; }
}

/* ===== Compact contextual "Related" strip (3-4 hand-picked links per page) ===== */
.related-strip {
  padding: 3rem 0 3.5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.related-strip h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 1.4rem;
  color: var(--ink);
  text-align: center;
}
.related-strip-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.related-strip-grid li { margin: 0; }
.related-strip-grid a {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  height: 100%;
}
.related-strip-grid a:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
  border-left-color: var(--gold-dark);
}
.related-strip-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
}
.related-strip-desc {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 992px) { .related-strip-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .related-strip-grid { grid-template-columns: 1fr; } }

/* ===== Legacy "Explore More" 3-col blob (kept for any rare usage; no longer rendered) ===== */
.explore-more {
  padding: 4rem 0;
  background: var(--cream);
}
.explore-more h2 {
  text-align: center;
  margin-bottom: .4rem;
  font-family: var(--font-serif);
}
.explore-more .section-sub { text-align: center; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.explore-col {
  background: var(--white);
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.explore-col h3 {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1rem;
}
.explore-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.explore-col a {
  color: var(--ink);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.explore-col a::before { content: '›'; color: var(--gold); font-weight: 700; }
.explore-col a:hover { color: var(--gold); }
@media (max-width: 992px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ page (no hero, strong AEO) ===== */
.faq-page-noh { padding: 3rem 0 4rem; background: var(--white); }
.faq-page-noh .crumbs { color: var(--ink-soft); margin-bottom: 1rem; }
.faq-page-noh .crumbs a { color: var(--gold-dark); }
.faq-page-noh .eyebrow { color: var(--gold); font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; display: inline-block; margin-bottom: .5rem; }
.faq-page-noh h1 { font-family: var(--font-serif); margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 2.6rem); }
.faq-intro { font-size: 1.05rem; color: var(--ink-soft); margin: 0 0 2rem; }
.faq-answer-card {
  background: var(--cream); border-radius: var(--radius-md); border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem; margin: 0 0 2.5rem;
}
.faq-answer-card p { margin: .35rem 0; color: var(--ink); }
.faq-toc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1rem 1.2rem; margin: 0 0 2.5rem;
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center;
  font-size: .9rem;
}
.faq-toc strong { color: var(--ink); margin-right: .4rem; }
.faq-toc a { color: var(--gold-dark); font-family: var(--font-head); font-weight: 500; padding: .25rem .55rem; border-radius: 6px; background: var(--cream); }
.faq-toc a:hover { background: var(--gold); color: var(--white); }
.faq-page-noh h2 { font-family: var(--font-serif); margin: 2.5rem 0 1rem; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: .5rem; }

/* ===== Blog landing (no hero) ===== */
.blog-landing { padding: 3rem 0 4rem; background: var(--white); }
.blog-landing .crumbs { color: var(--ink-soft); margin-bottom: 1rem; }
.blog-landing .crumbs a { color: var(--gold-dark); }
.blog-landing > .container > .eyebrow { color: var(--gold); font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; display: inline-block; margin-bottom: .5rem; }
.blog-landing h1 { font-family: var(--font-serif); margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 2.6rem); }
.blog-landing-intro { font-size: 1.05rem; color: var(--ink-soft); margin: 0 0 2rem; max-width: 740px; }

/* ===== Photo-only hero (About Us / Our Story) + intro section below ===== */
.page-photo-hero {
  position: relative;
  width: 100%;
  height: 560px;            /* taller so the bottom of the team photo shows */
  overflow: hidden;
  background: var(--cream);
}
.page-photo-hero-bg {
  position: absolute; inset: 0;
}
.page-photo-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;  /* anchor more to the center so the bottom of the photo is visible */
  display: block;
}
.page-photo-hero::after {
  /* Same brand brown (#8b6f47) used in the topbar + footer, kept very light
     so the photo stays clear. A soft wash through the whole image, blending
     down to the white page-intro section below. */
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(139, 111, 71, 0.22) 0%,
      rgba(139, 111, 71, 0.10) 28%,
      rgba(139, 111, 71, 0.08) 58%,
      rgba(246, 242, 234, 0.55) 85%,
      rgba(255, 255, 255, 0.96) 100%);
}
.page-photo-hero .container { z-index: 3; }   /* keep the breadcrumb above the gradient */
.page-photo-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
}
.page-photo-crumbs {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--gold-soft);
  padding: .45rem .95rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  backdrop-filter: blur(4px);
}
.page-photo-crumbs a { color: var(--gold-dark); }
.page-photo-crumbs a:hover { color: var(--gold); }
.page-photo-crumbs span[aria-hidden] { color: var(--gold); opacity: .8; }

.page-intro {
  padding: 3rem 0 2.5rem;
  background: var(--white);
  text-align: center;
}
.page-intro .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.page-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.page-intro .lead {
  max-width: 680px;
  margin: 0 auto 1.6rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.page-intro .hero-actions {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .page-photo-hero { height: 460px; }
}
@media (max-width: 768px) {
  .page-photo-hero { height: 400px; }
  .page-photo-hero-bg img { object-position: 50% 38%; }
  .page-intro { padding: 2.5rem 0 2rem; }
}
@media (max-width: 480px) {
  .page-photo-hero { height: 340px; }
  .page-photo-crumbs { font-size: .75rem; padding: .35rem .75rem; }
}

/* ===== Service page: extended body section (full-width below hero) ===== */
.service-detail-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.service-detail-section .container { max-width: 900px; }
.service-detail-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin: 0 0 1rem;
  color: var(--ink);
}
.service-detail-section h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 1.8rem 0 .6rem;
  color: var(--ink);
}
.service-detail-section p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; }
.service-detail-section .check-list { color: var(--ink); }

/* ===== About Us page: owner / meet-team / core-values ===== */
.welcome-section { padding: 4rem 0 2rem; background: var(--white); }
.welcome-section .prose { max-width: 820px; margin: 0 auto; text-align: center; }
.welcome-section .eyebrow { color: var(--gold); }
.welcome-section h2 { margin-top: .5rem; }

.owner-section { padding: 3rem 0 4rem; background: var(--white); }
.owner-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.owner-photo img { width: 100%; height: auto; border-radius: 24px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); }
.owner-body .eyebrow { color: var(--gold); }
.owner-body h2 { margin: .3rem 0 1rem; }
.owner-body p { color: var(--ink-soft); }

.meet-the-team { padding: 3.5rem 0 4rem; background: var(--cream); }

.core-values { padding: 4rem 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; }
.value-card { background: var(--cream); border-radius: var(--radius-md); padding: 1.6rem 1.4rem; text-align: center; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--cream-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.value-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.value-card h3 { font-size: 1.1rem; margin: 0 0 .4rem; }
.value-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 992px) {
  .owner-grid { grid-template-columns: 1fr; gap: 2rem; }
  .owner-photo { max-width: 380px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== Our Story page ===== */
.our-story-section { padding: 4rem 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.story-image img { width: 100%; height: auto; border-radius: 24px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.story-body .eyebrow { color: var(--gold); }
.story-body h2 { margin: .3rem 0 1rem; }
.story-body p { color: var(--ink-soft); }

.exceptional { padding: 3rem 0 4rem; background: var(--cream); }
.exceptional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.exceptional-card { background: var(--white); border-radius: var(--radius-md); padding: 2rem; border: 1px solid var(--line); }
.exceptional-card h4 { font-family: var(--font-serif); font-size: 1.4rem; margin: 0 0 .6rem; color: var(--ink); }
.exceptional-card p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.exceptional-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--cream-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.exceptional-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.exceptional-image { margin-top: 1rem; border-radius: 14px; overflow: hidden; }
.exceptional-image img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 16/10; }
.exceptional-card:last-child .exceptional-image img { aspect-ratio: 16/11; object-position: center top; }
.appt-form-compact textarea {
  width: 100%; padding: .55rem .7rem; font-size: .92rem;
  border-radius: 8px; border: 1px solid var(--line);
  font-family: var(--font-sans); resize: vertical;
  background: var(--white); color: var(--ink);
}
.appt-form-compact textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,135,86,.18);
}

.committed-section { padding: 4rem 0; background: var(--white); }
.committed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.committed-card { background: var(--cream); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--line); }
.committed-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border: 1px solid var(--gold-soft); }
.committed-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.committed-card h4 { font-family: var(--font-serif); font-size: 1.2rem; margin: 0 0 .5rem; color: var(--ink); }
.committed-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 992px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .exceptional-grid { grid-template-columns: 1fr; }
  .committed-grid { grid-template-columns: 1fr; }
}

/* ===== Contact Us page (no hero) ===== */
.contact-form-section { padding: 4rem 0; background: var(--white); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.contact-info-col h1 { font-family: var(--font-serif); margin: .3rem 0 .8rem; }
.contact-info-col .eyebrow { color: var(--gold); }
.contact-info-col .contact-intro { color: var(--ink-soft); margin-bottom: 1.6rem; }
.contact-info-col h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin: 1.6rem 0 .6rem; }
.follow-tag { color: var(--ink-soft); font-size: .9rem; margin-bottom: .5rem; }
.contact-social { display: flex; gap: .6rem; }
.contact-social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); }
.contact-social a:hover { background: var(--gold); }
.contact-social a:hover svg { fill: var(--white); }
.contact-social svg { width: 16px; height: 16px; fill: var(--gold-dark); }
.contact-block p { display: flex; align-items: center; gap: .55rem; margin: .35rem 0; color: var(--ink); }
.contact-block svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.contact-hours dl { display: grid; grid-template-columns: 100px 1fr; gap: .35rem .8rem; margin: 0; }
.contact-hours dt { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.contact-hours dd { margin: 0; color: var(--ink-soft); }
.contact-form-col { background: var(--cream); border-radius: var(--radius-md); padding: 2rem 2rem 1.6rem; border: 1px solid var(--line); }
.contact-form-col .eyebrow { color: var(--gold); }
.contact-form-col h2 { margin: .3rem 0 .5rem; }
.form-helper { color: var(--ink-soft); margin-bottom: 1.3rem; font-size: .92rem; }
.contact-appt-form { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1rem; }
.contact-appt-form .field-full { grid-column: 1 / -1; }
.contact-appt-form .form-submit { grid-column: 1 / -1; text-align: right; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; min-height: 380px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 992px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-appt-form { grid-template-columns: 1fr; }
}

/* ===== Payment Plans page ===== */
.payment-plan-panel { padding: 4rem 0 3rem; background: var(--cream); }
.payment-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.payment-body .eyebrow { color: var(--gold); }
.payment-body h1 { font-family: var(--font-serif); margin: .4rem 0 1rem; }
.payment-body p { color: var(--ink-soft); }
.payment-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.4rem 0; }
.payment-perks { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem; }
.payment-perks li { position: relative; padding-left: 1.6rem; color: var(--ink); }
.payment-perks li::before { content: ''; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; }
.payment-image { background: var(--white); border-radius: 24px; padding: 1.6rem; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.payment-eyebrow-stack { display: inline-block; font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); background: var(--cream-light); padding: .3rem .8rem; border-radius: 999px; }
.payment-stack-title { font-family: var(--font-serif); font-size: 1.6rem; margin: 1rem 0 1.2rem; line-height: 1.1; color: var(--ink); }
.payment-stack-title span { color: var(--gold); }
.payment-image img { width: 100%; height: auto; border-radius: 14px; }
.payment-secondary { padding: 3rem 0 4rem; background: var(--white); }
.payment-secondary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.payment-secondary article { background: var(--cream); border-radius: var(--radius-md); padding: 1.6rem 1.5rem; border: 1px solid var(--line); }
.payment-secondary h3 { font-family: var(--font-serif); margin: 0 0 .5rem; font-size: 1.15rem; }
.payment-secondary p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
@media (max-width: 992px) {
  .payment-grid { grid-template-columns: 1fr; gap: 2rem; }
  .payment-secondary-grid { grid-template-columns: 1fr; }
}

/* ===== New Patients intro (split layout matching payment-plans) ===== */
.new-patients-intro { padding: 3.5rem 0 3rem; background: var(--cream); }
.new-patients-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.new-patients-body .crumbs { color: var(--ink-soft); margin-bottom: .8rem; font-size: .9rem; }
.new-patients-body .crumbs a { color: var(--gold-dark); font-weight: 500; }
.new-patients-body .eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: .55rem;
}
.new-patients-body h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.1;
  margin: .2rem 0 1rem; color: var(--ink);
}
.new-patients-body .lead { font-size: 1.05rem; color: var(--ink); margin: 0 0 1.4rem; line-height: 1.65; }
.new-patients-body .hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .4rem; }
.new-patients-image {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 24px;
  padding: 1.1rem; border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(42,42,42,.10), 0 6px 14px rgba(123,97,55,.08);
}
.new-patients-image img { width: 100%; height: auto; max-width: 100%; border-radius: 14px; display: block; image-rendering: -webkit-optimize-contrast; }
@media (max-width: 992px) {
  .new-patients-grid { grid-template-columns: 1fr; gap: 2rem; }
  .new-patients-image { max-width: 520px; margin: 0 auto; }
}

/* ===== Service pages: text-left / image-right hero (warm brand brown gradient) ===== */
.service-hero {
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      var(--cream) 0%,
      var(--cream-light) 35%,
      rgba(199, 178, 138, 0.55) 70%,
      rgba(164, 135, 86, 0.42) 100%);
  border-bottom: 1px solid rgba(123, 97, 55, .12);
}
.service-hero::before {
  /* Top-right golden bloom */
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(164,135,86,.32) 0%, rgba(164,135,86,0) 70%);
  pointer-events: none; z-index: 0;
}
.service-hero::after {
  /* Bottom-left softer bloom */
  content: ''; position: absolute; bottom: -180px; left: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,55,.18) 0%, rgba(123,97,55,0) 70%);
  pointer-events: none; z-index: 0;
}
.service-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.service-hero-text .hero-eyebrow {
  display: inline-block; padding: .35rem .9rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--gold-soft);
  font-family: var(--font-head); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 1rem;
}
.service-hero-text h1 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.1;
  margin: 0 0 1rem;
  text-shadow: 0 1px 2px rgba(255,255,255,.4);
}
.service-hero-text .lead { font-size: 1.05rem; color: var(--ink); max-width: 540px; margin: 0 0 .9rem; font-weight: 500; }
.service-hero-text .lead-extra { font-size: .98rem; color: var(--ink); max-width: 540px; margin: 0 0 1.6rem; line-height: 1.65; opacity: 0.95; }
.service-hero-text .crumbs { color: var(--ink-soft); margin-bottom: .8rem; }
.service-hero-text .crumbs a { color: var(--gold-dark); font-weight: 500; }

/* Sub-services list (visible service breakdown in the hero, left of image) */
.service-sublist { max-width: 580px; margin: 0 0 1.6rem; }
.service-sublist .sub-services-label {
  display: inline-block; font-family: var(--font-head);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dark); margin-bottom: .55rem;
}
.sub-services-list {
  display: flex; flex-wrap: wrap; gap: .45rem .55rem;
  list-style: none; padding: 0; margin: 0;
}
.sub-services-list li {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: .82rem; font-weight: 500;
  padding: .38rem .8rem; border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(123,97,55,.06);
}

.service-hero-image { display: flex; align-items: center; justify-content: center; }
.service-hero-image img {
  width: 100%; max-width: 100%; height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 50px rgba(42,42,42,.16), 0 6px 14px rgba(123,97,55,.10);
  image-rendering: -webkit-optimize-contrast;
}

/* Service-hero image slider with manual controls + 7-second auto-advance.
   Slide-1 is position:relative so it dictates the box height. All slides
   crossfade via opacity controlled by an .is-active class added by JS. */
.service-hero-slider {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(42,42,42,.16), 0 6px 14px rgba(123,97,55,.10);
  background: var(--cream);
}
.service-hero-slider .slide-1 {
  position: relative;
  width: 100%; height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity .55s ease;
}
.service-hero-slider .slide-2,
.service-hero-slider .slide-3,
.service-hero-slider .slide-4 {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: var(--cream);
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity .55s ease;
}
.service-hero-slider .slide.is-active { opacity: 1; }

/* Prev / Next arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(42, 42, 42, .55);
  color: var(--white);
  font-size: 22px; line-height: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, transform .15s ease, opacity .2s ease;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.slider-btn:hover { background: var(--gold-dark); border-color: var(--white); }
.slider-btn:active { transform: translateY(-50%) scale(.94); }
.slider-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

/* Pagination dots */
.slider-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  padding: 6px 10px;
  background: rgba(42, 42, 42, .45);
  border-radius: 999px;
  z-index: 3;
}
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .15s ease;
}
.slider-dot:hover { background: var(--white); }
.slider-dot.is-active { background: var(--gold); transform: scale(1.18); }
.slider-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* If the slider hasn't been hydrated by JS yet, show slide-1 by default
   so the page is never blank during the brief script load window. */
.service-hero-slider:not(.is-hydrated) .slide-1 { opacity: 1; }

/* Reduced-motion users still get manual controls; we just skip auto-advance
   and ease the crossfade much faster so it feels closer to a step change. */
@media (prefers-reduced-motion: reduce) {
  .service-hero-slider .slide,
  .service-hero-slider .slide-1 { transition: opacity .12s ease; }
}

@media (max-width: 600px) {
  .slider-btn { width: 36px; height: 36px; font-size: 18px; }
  .slider-prev { left: 8px; } .slider-next { right: 8px; }
}
@media (max-width: 992px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-hero-image { max-width: 460px; margin: 0 auto; }
}

/* ===== Why Choose (split, matches live site) ===== */
.why-split {
  background: var(--cream);
  padding: 4.5rem 0;
}
.why-grid-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .8rem;
}
.why-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1.8rem;
}
.why-brand {
  color: var(--gold);
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.why-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-check svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.why-cta { margin-top: .4rem; }

.why-image {
  position: relative;
  width: 100%;
  justify-self: end;
}
.why-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 24px 50px rgba(42,42,42,.16),
    0 6px 14px rgba(123,97,55,.10);
  object-fit: cover;
  aspect-ratio: 4 / 4.5;
  display: block;
}
@media (max-width: 992px) {
  .why-split { padding: 3rem 0; }
  .why-grid-split { grid-template-columns: 1fr; gap: 2rem; }
  .why-image { max-width: 480px; margin: 0 auto; justify-self: center; }
}
@media (max-width: 560px) {
  .why-list { grid-template-columns: 1fr; gap: .8rem; }
}

/* Compact appointment form on the homepage */
.appointment-compact { padding: 2.5rem 0; }
.appointment-compact .appointment-card {
  padding: 1.8rem 1.8rem 1.6rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.8rem;
  align-items: center;
}
.appointment-compact .appt-header {
  text-align: left;
  margin: 0;
}
.appointment-compact .appt-header .eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: .35rem;
}
.appointment-compact .appt-header h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin: 0 0 .35rem;
  line-height: 1.15;
}
.appointment-compact .appt-header p {
  color: var(--ink-soft);
  font-size: .9rem;
  margin: 0;
}
.appt-form-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem .8rem;
  margin: 0;
}
.appt-form-compact label {
  font-size: .75rem;
  margin-bottom: .25rem;
}
.appt-form-compact input {
  padding: .55rem .7rem;
  font-size: .92rem;
  border-radius: 8px;
}
.appt-form-compact .form-submit {
  grid-column: 1 / -1;
  text-align: right;
  margin: 0;
}
.appt-form-compact .form-submit .btn {
  padding: .65rem 1.4rem;
  font-size: .9rem;
}

@media (max-width: 992px) {
  .appointment-compact .appointment-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .appt-form-compact { grid-template-columns: 1fr 1fr; }
  .appt-form-compact .form-submit { text-align: center; }
}
@media (max-width: 480px) {
  .appt-form-compact { grid-template-columns: 1fr; }
}

/* Team subgroup headings on About Us */
.team-group-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 3rem 0 1.4rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--gold-soft);
  position: relative;
}
.team-group-title::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .8rem;
}
.team-group-title:first-of-type { margin-top: 0; }

/* Inline SVG icons used in copy (replaces former emoji chars) */
.icon-star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  display: inline-block;
  vertical-align: -3px;
  margin: 0 1px;
}
.review-stars .icon-star,
.stars .icon-star,
.review-card .stars .icon-star { width: 18px; height: 18px; }
.footer-rating .icon-star { width: 14px; height: 14px; }
.icon-inline {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 4px;
}

/* ============================================================
   ENHANCED FOOTER + FAQ PAGE
   ============================================================ */

/* SEO content block at top of footer */
.footer-seo-block {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 0 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 980px;
}
.footer-seo-h {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 .8rem;
}
.footer-seo-block p {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  margin: 0 0 .8rem;
}

/* Footer rating + hours */
.footer-rating { color: rgba(255,255,255,.85); font-size: .9rem; margin: .8rem 0; }
.footer-rating strong { color: var(--gold); letter-spacing: .12em; }
.footer-hours { width: 100%; border-collapse: collapse; font-size: .85rem; color: rgba(255,255,255,.78); margin: 1rem 0; }
.footer-hours th, .footer-hours td { padding: .35rem .35rem; text-align: left; font-weight: 400; }
.footer-hours th { color: rgba(255,255,255,.6); width: 50px; }
.footer-hours td { color: rgba(255,255,255,.92); }
.footer-cta-line { margin-top: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* Visually hidden keyword line — present for indexers, not visible */
.footer-keywords {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* FAQ page sections */
.faq-page { padding: 4rem 0; background: var(--white); }
.faq-page h2 {
  font-family: var(--font-serif);
  margin: 2.5rem 0 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: .5rem;
}
.faq-page h2:first-of-type { margin-top: 0; }
.faq-still-have {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.faq-still-have h2 { margin: 0 0 .6rem; border: 0; padding: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Print */
@media print {
  .header, .mobile-cta, .topbar, .topbar-mobile, .cta-banner, .footer { display: none; }
}
