/* ═══════════════════════════════════════════════════════════════
   SERVICES — SHARED STYLESHEET
   ───────────────────────────────────────────────────────────────
   Design tokens + components for every /services/* page.
   Mirrors the editorial system in /index.html (same teal/ink/paper
   palette, same Georgia + Helvetica typography pairing) but with
   simpler chrome — no scroll-pinned hero, no parallax decor, no
   carousel — so each service page reads as a focused, single-topic
   piece of editorial.
═══════════════════════════════════════════════════════════════ */

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

:root {
  --teal:        #3a7d6e;
  --teal-light:  #d4ebe6;
  --teal-dark:   #2a5c51;
  --teal-wash:   #e8f4f0;
  --white:       #ffffff;
  --off-white:   #f7f6f4;
  --ink:         #1c1c1c;
  --ink-soft:    #2b2b2b;
  --muted:       #7a7a72;
  --rule:        #e4e2dd;
  --paper:       #f1ebe0;
  --paper-deep:  #e9e2d3;

  --serif: 'Georgia', 'Times New Roman', serif;
  --sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-h: 96px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--serif);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

/* ═══════════════════════════════════════════════════════════════
   NAV — solid black bar matching the home page chrome
═══════════════════════════════════════════════════════════════ */
.svc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  gap: 24px;
}

.svc-nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}

.svc-nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.svc-nav-logo span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.svc-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.svc-nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.svc-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-nav-links a:hover { color: var(--teal-light); }
.svc-nav-links a:hover::after { transform: scaleX(1); }

.svc-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--teal-light);
  border-radius: 999px;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.svc-nav-cta::after { display: none !important; }

.svc-nav-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* Tighten nav padding/sizing on smaller laptops to fit the link list. */
@media (max-width: 1180px) {
  .svc-nav { padding: 16px 28px; gap: 16px; }
  .svc-nav-links { gap: 18px; }
  .svc-nav-links a { font-size: 0.72rem; letter-spacing: 0.14em; }
}

/* Mobile nav — hide the link list, keep logo + CTA */
@media (max-width: 980px) {
  .svc-nav { padding: 14px 20px; }
  .svc-nav-links { display: none; }
  .svc-nav-logo span { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — single-screen, two-column, dark editorial
═══════════════════════════════════════════════════════════════ */
.svc-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--nav-h) + 80px) 48px 110px;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(58, 125, 110, 0.35), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  pointer-events: none;
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.svc-breadcrumb {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.svc-breadcrumb a:hover { color: var(--teal-light); }

.svc-breadcrumb .sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.svc-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.svc-hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.svc-hero-sub {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 36px;
}

.svc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.svc-hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.03);
}

.svc-hero-meta-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal-light);
  stroke-width: 1.6;
  fill: none;
}

.svc-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-solid,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}

.btn-solid {
  background: var(--teal);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
}

.svc-hero-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-hero-icon-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(58, 125, 110, 0.4), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-hero-icon-frame svg {
  width: 50%;
  height: 50%;
  stroke: var(--teal-light);
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .svc-hero { padding: calc(var(--nav-h) + 50px) 22px 70px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-hero-icon-frame { max-width: 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SCAFFOLDING
═══════════════════════════════════════════════════════════════ */
.svc-section {
  position: relative;
  padding: 100px 48px;
}

.svc-section.is-paper { background: var(--paper); }
.svc-section.is-deep  { background: var(--paper-deep); }
.svc-section.is-ink   { background: var(--ink); color: var(--white); }
.svc-section.is-cream { background: var(--off-white); }

.svc-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.svc-section-inner.is-narrow {
  max-width: 820px;
}

.svc-section-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.svc-section.is-ink .svc-section-label { color: var(--teal-light); }

.svc-section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 760px;
}

.svc-section.is-ink .svc-section-h2 { color: var(--white); }

.svc-section-h2 em {
  font-style: italic;
  color: var(--teal);
}

.svc-section.is-ink .svc-section-h2 em { color: var(--teal-light); }

.svc-section-lede {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 0;
}

.svc-section.is-ink .svc-section-lede { color: rgba(255, 255, 255, 0.78); }

.svc-prose {
  max-width: 720px;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.svc-prose p + p { margin-top: 18px; }

@media (max-width: 720px) {
  .svc-section { padding: 64px 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   "SIGNS YOU NEED THIS" — bullet checklist
═══════════════════════════════════════════════════════════════ */
.svc-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 36px;
}

.svc-sign {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.svc-sign-bullet {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-wash);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.svc-sign-bullet svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .svc-signs-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   "OUR APPROACH" — diff cards (3-4 differentiators)
═══════════════════════════════════════════════════════════════ */
.svc-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.svc-diff {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.svc-diff:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.svc-diff-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.svc-diff-icon {
  width: 36px;
  height: 36px;
  stroke: var(--teal);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 22px;
}

.svc-diff h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}

.svc-diff p {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════════════════
   "PROCESS" — numbered patient journey
═══════════════════════════════════════════════════════════════ */
.svc-process-list {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}

.svc-section.is-ink .svc-step { border-top-color: rgba(255, 255, 255, 0.12); }

.svc-step:last-child { border-bottom: 1px solid var(--rule); }
.svc-section.is-ink .svc-step:last-child { border-bottom-color: rgba(255, 255, 255, 0.12); }

.svc-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--teal);
}

.svc-section.is-ink .svc-step-num { color: var(--teal-light); }

.svc-step-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}

.svc-section.is-ink .svc-step-body h3 { color: var(--white); }

.svc-step-body p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}

.svc-section.is-ink .svc-step-body p { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 720px) {
  .svc-step { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .svc-step-num { font-size: 2.4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — accordion
═══════════════════════════════════════════════════════════════ */
.svc-faq-list {
  margin-top: 48px;
}

.svc-faq {
  border-top: 1px solid var(--rule);
  cursor: pointer;
}

.svc-faq:last-child { border-bottom: 1px solid var(--rule); }

.svc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--ink);
  list-style: none;
}

.svc-faq-question::-webkit-details-marker { display: none; }

.svc-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-faq[open] .svc-faq-icon { transform: rotate(45deg); }

.svc-faq-answer {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 0 32px;
  max-width: 720px;
}

.svc-faq-answer p + p { margin-top: 14px; }

/* ═══════════════════════════════════════════════════════════════
   PRICING / INVESTMENT NOTE
═══════════════════════════════════════════════════════════════ */
.svc-invest {
  margin-top: 36px;
  padding: 32px 36px;
  background: var(--teal-wash);
  border-left: 3px solid var(--teal);
  border-radius: 2px;
}

.svc-invest-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.svc-invest h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}

.svc-invest p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.svc-invest a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA BAND
═══════════════════════════════════════════════════════════════ */
.svc-cta-band {
  padding: 110px 48px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(58, 125, 110, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58, 125, 110, 0.18), transparent 50%);
  pointer-events: none;
}

.svc-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.svc-cta-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 22px;
}

.svc-cta-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 22px;
}

.svc-cta-h2 em {
  font-style: italic;
  color: var(--teal-light);
}

.svc-cta-sub {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 38px;
}

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

@media (max-width: 720px) {
  .svc-cta-band { padding: 70px 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   "RELATED SERVICES" — three-up grid
═══════════════════════════════════════════════════════════════ */
.svc-related-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.svc-related {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 30px 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s ease, transform 0.3s ease;
  color: var(--ink);
}

.svc-related:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.svc-related-icon {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}

.svc-related h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
}

.svc-related p {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}

.svc-related-arrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — minimalist, matches main site
═══════════════════════════════════════════════════════════════ */
.svc-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 48px 40px;
}

.svc-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
}

.svc-footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.svc-footer-col h5 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  font-weight: 500;
}

.svc-footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-footer-col a {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.svc-footer-col a:hover { color: var(--teal-light); }

.svc-footer-bottom {
  max-width: 1180px;
  margin: 30px auto 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .svc-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-footer { padding: 50px 22px 30px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES HUB GRID (services/index.html only)
═══════════════════════════════════════════════════════════════ */
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.svc-hub-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 38px 32px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.45, 0.5, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  position: relative;
  will-change: transform;
}

.svc-hub-card:hover {
  border-color: var(--teal);
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 12px 30px rgba(58, 125, 110, 0.10),
    0 26px 56px rgba(58, 125, 110, 0.06);
  z-index: 2;
}

.svc-hub-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.svc-hub-icon {
  width: 38px;
  height: 38px;
  stroke: var(--teal);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 22px;
}

.svc-hub-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.svc-hub-card p {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex-grow: 1;
}

.svc-hub-card-arrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL — soft fade-up on scroll
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CASE GALLERY — clinical photos (e.g. veneers before/during/after)
   Editorial 3-up grid with subtle frame, optional caption.
═══════════════════════════════════════════════════════════════ */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.svc-gallery-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-gallery-item:hover img {
  transform: scale(1.03);
}

.svc-gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-gallery-item:hover .svc-gallery-caption {
  opacity: 1;
}

.svc-gallery-note {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 880px) {
  .svc-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

@media (max-width: 540px) {
  .svc-gallery { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BEFORE / AFTER PAIR — two photos shown side-by-side at equal
   height. Subject is centered via object-position.
═══════════════════════════════════════════════════════════════ */
.svc-ba {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.svc-ba-item {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
}

.svc-ba-label {
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.svc-ba-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--muted);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

@media (max-width: 540px) {
  .svc-ba { grid-template-columns: 1fr; gap: 12px; }
}
