/* =============================================
   Picasso Dental — Brand DNA Design System
   Stained-glass palette (Green / Blue / Yellow / Amber)
   on Bone neutral, with Be Vietnam Pro typography.
   Senior-readable: 17px body / 1.65 line-height
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* --- Tokens --- */
:root {
  /* Typography — Be Vietnam Pro across all hierarchy (brand spec).
     --font-serif kept as alias for legacy display use; resolves to same family. */
  --font-sans:  'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Brand stained-glass palette */
  --green:        #6AAE3D;  /* Picasso Green — primary */
  --green-deep:   #4D8429;
  --blue:         #5BAFD6;  /* Picasso Blue — clinical/trust */
  --blue-deep:    #3A8AB0;
  --yellow:       #E8D44D;  /* Picasso Yellow — accent */
  --amber:        #D4952B;  /* Picasso Amber — premium */
  --amber-deep:   #A6701A;

  /* Neutrals (brand DNA spec) */
  --bg:           #FAFAF7;  /* Bone */
  --bg-card:      #FFFFFF;  /* White */
  --bg-muted:     #F5F5F5;  /* Mist */
  --fg:           #1A1A1A;  /* Ink */
  --fg-muted:     #3D3D3D;  /* Slate — raised for WCAG AA at small sizes */
  --border:       #E5E5E5;
  --primary:      #1A1A1A;  /* Ink as primary surface (CTA dark) */
  --primary-fg:   #FAFAF7;

  /* Semantic aliases — re-mapped to brand palette so existing class usage flows
     into brand colors without rewriting every consumer. */
  --accent:       #6AAE3D;  /* was orange; now Picasso Green — CTAs, prices, badges */
  --accent-fg:    #FFFFFF;
  --mint:         #E8F2DD;  /* light Green tint background */
  --mint-fg:      #2D5A1A;  /* deep Green for text on mint */
  --peach:        #FBEDC4;  /* light Yellow/Amber tint background */
  --peach-fg:     #5A3F0A;  /* deep Amber for text on peach */
  --star:         #E8D44D;  /* Picasso Yellow */

  --footer-bg:    #1A1A1A;
  --footer-fg:    #FAFAF7;

  --radius-pill:  9999px;
  --radius-card:  16px;
  --shadow-sm:    0 1px 3px rgba(26,26,26,0.06);
  --shadow-md:    0 4px 16px rgba(26,26,26,0.10);
  --shadow-lg:    0 8px 32px rgba(26,26,26,0.14);
  --section-py:   6rem;
  --container:    1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--fg);
  font-feature-settings: "ss01", "ss02";
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--fg-muted); }
a  { color: var(--fg); }
strong { color: var(--fg); }
em { font-style: italic; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220,217,211,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  background: rgba(237,235,231,0.6);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.5rem;
}

.main-nav ul li a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
}
.main-nav ul li a:hover { background: rgba(26,26,26,0.08); }

/* Submenu (Locations dropdown) */
.main-nav ul li.has-submenu { position: relative; }
.main-nav ul li.has-submenu > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.submenu-caret { font-size: 0.7rem; opacity: 0.7; transition: transform 0.15s; }
.has-submenu:hover .submenu-caret,
.has-submenu:focus-within .submenu-caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 0.75rem;
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.25rem;
  padding: 1.25rem 1.5rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s, visibility 0s linear 0.25s;
  z-index: 110;
}
/* Invisible bridge so the cursor can cross the gap from parent link to submenu
   without triggering a :hover-out. */
.submenu::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s, transform 0.15s, visibility 0s;
}
.submenu-4col { min-width: 760px; grid-template-columns: repeat(4, 1fr); }
.submenu-5col { min-width: 960px; grid-template-columns: repeat(5, 1fr); }

.submenu-group { display: flex; flex-direction: column; gap: 0.15rem; }
.submenu-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  margin: 0 0 0.5rem 0.6rem;
}
.main-nav ul .submenu a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.main-nav ul .submenu a span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.main-nav ul .submenu a:hover { background: var(--bg-muted); }

.submenu-footer {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.main-nav ul .submenu-all {
  display: block;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-deep);
  border-radius: 10px;
}
.main-nav ul .submenu-all:hover { background: var(--mint); }

@media (max-width: 900px) {
  .submenu { display: none; }
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.lang-switcher a {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}
.lang-switcher a:hover { background: var(--bg-muted); color: var(--fg); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-whatsapp-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav-whatsapp-link:hover { color: var(--fg); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--green);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid var(--fg);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--fg); color: var(--primary-fg); }

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  color: var(--primary-fg);
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(250,250,247,0.7);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-secondary-light:hover { background: rgba(250,250,247,0.15); }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-wrap { background: var(--bg-muted); }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  padding: 0.75rem 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.5rem; }

/* =============================================
   MAIN CONTENT
   ============================================= */
main {
  /* Override: brand pages use .container themselves */
}

/* Tier pages (SEO programmatic) get a normal container */
.page-tier1, .page-tier2, .page-tier3 {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* =============================================
   SECTION PATTERNS
   ============================================= */
.section {
  padding: var(--section-py) 0;
}
.section-sm { padding: 3rem 0; }

.section-bg-muted { background: var(--bg-muted); }
.section-bg-mint  { background: var(--mint); }
.section-bg-peach { background: var(--peach); }
.section-bg-dark  { background: var(--footer-bg); color: var(--footer-fg); }

.section-header { margin-bottom: 3rem; }
.section-header h2 { color: var(--fg); }
.section-header p  { font-size: 1.0625rem; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* =============================================
   HERO — Homepage
   ============================================= */
.hero-home {
  padding: 5rem 0 4rem;
  background: var(--bg);
  text-align: center;
}
.hero-home h1 {
  color: var(--fg);
  max-width: 820px;
  margin: 0 auto 1.25rem;
}
.hero-home .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.stars { color: var(--star); letter-spacing: 0.1em; }

/* --- Clinic photo strip --- */
.clinic-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.clinic-strip-item {
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.875rem;
}
.clinic-strip-item img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   HERO — Inner pages
   ============================================= */
.hero-inner-page {
  padding: 4rem 0 3rem;
  background: var(--bg);
}
.hero-inner-page h1 { max-width: 700px; }
.hero-inner-page p { max-width: 560px; font-size: 1.0625rem; }
.hero-inner-page .hero-cta { justify-content: flex-start; }

/* Split hero (image right) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-split-image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  background: var(--bg-muted);
  overflow: hidden;
}
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Service cards */
.service-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
}
.service-card h3 { color: var(--fg); margin-bottom: 0.4rem; }
.service-card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.9rem; margin-bottom: 0; }

/* Location cards */
.location-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
}
.location-card .location-city {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}
.location-card h3 { color: var(--fg); font-size: 1.1rem; }
.location-card p { font-size: 0.875rem; margin-bottom: 0; }

/* Team / founder cards */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.person-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.person-card .role {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.person-card h3 { color: var(--fg); margin-bottom: 0.75rem; font-size: 1.2rem; }
.person-card p { font-size: 0.9375rem; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* =============================================
   VALUE PROPS
   ============================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.value-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.value-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 { font-size: 1.05rem; color: var(--fg); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.9rem; margin-bottom: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.testimonial-card .stars { display: block; margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial-card blockquote {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 1rem;
}
.testimonial-card cite {
  font-size: 0.875rem;
  font-style: normal;
  color: var(--fg-muted);
  font-weight: 600;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 1.5rem 0;
}
.reviews-aggregate .rating {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
}
.reviews-aggregate .stars { font-size: 1rem; }
.reviews-aggregate .count { font-size: 0.875rem; color: var(--fg-muted); }

/* =============================================
   INSURANCE STRIP (mint section)
   ============================================= */
.insurance-strip {
  background: var(--mint);
  padding: 3rem 0;
}
.insurance-strip h2 { color: var(--mint-fg); }
.insurance-strip p { color: var(--mint-fg); opacity: 0.8; }
.insurer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.insurer-tag {
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(13,61,43,0.15);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mint-fg);
}

/* =============================================
   BRAND STORY SECTION (peach/salmon)
   ============================================= */
.brand-story {
  background: var(--peach);
  padding: var(--section-py) 0;
}
.brand-story h2 { color: var(--peach-fg); }
.brand-story p { color: var(--peach-fg); opacity: 0.85; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { list-style: none; max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--fg-muted); }
details[open] .faq-item summary::after { content: "−"; }
.faq-item p { padding: 0 0 1.25rem; font-size: 0.9375rem; }

/* =============================================
   BOOKING FORM
   ============================================= */
.booking-form {
  max-width: 600px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--fg);
}
.form-row textarea { resize: vertical; min-height: 100px; }

/* =============================================
   CTA BLOCK
   ============================================= */
.cta-block {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 5rem 1.5rem;
  text-align: center;
  margin: 0;
}
.cta-block h2 {
  color: var(--primary-fg);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}
.cta-block p {
  color: rgba(250,250,247,0.75);
  max-width: 480px;
  margin: 0 auto 2rem;
}
.cta-block .btn-primary {
  background: var(--primary-fg);
  color: var(--primary);
  border-color: var(--primary-fg);
}
.cta-block .btn-primary:hover { opacity: 0.9; }
.cta-block .btn-secondary-light { margin-left: 0.75rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 1rem;
}
.footer-logo-img {
  display: block;
  height: 80px;
  width: auto;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250,250,247,0.82);
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.65);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(250,250,247,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--footer-fg); }
.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(250,250,247,0.12);
  font-size: 0.8125rem;
  color: rgba(250,250,247,0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =============================================
   TREATMENT LINK LIST
   ============================================= */
.treatment-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.treatment-links li a {
  display: block;
  padding: 0.75rem 1.1rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}
.treatment-links li a:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* =============================================
   CLINIC GALLERY
   ============================================= */
.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.clinic-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  display: block;
}

/* =============================================
   MAP PLACEHOLDER
   ============================================= */
.map-placeholder {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--fg-muted);
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

/* =============================================
   BRAND PAGES (static: about, team, contact, branches)
   ============================================= */
.brand-page { }

/* Generic divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* =============================================
   INLINE TABLE STYLES
   ============================================= */
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { padding: 0.65rem 1rem; border: 1px solid var(--border); text-align: left; font-size: 0.9375rem; }
th { background: var(--bg-muted); font-weight: 600; color: var(--fg); }

/* =============================================
   HOMEPAGE HERO
   ============================================= */
.hp-hero {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}
.hp-hero-content {
  max-width: 860px;
}
.hp-hero h1 { margin-bottom: 1.25rem; }
.hp-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.hp-hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.hp-badge { display: flex; align-items: center; gap: 0.3rem; }
.hp-badge-sep { width: 1px; height: 0.9rem; background: var(--border); }

/* =============================================
   PROOF BAR
   ============================================= */
.hp-proof-bar {
  background: var(--primary);
  padding: 2.25rem 0;
}
.hp-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.hp-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(250,250,247,0.12);
}
.hp-proof-item:last-child { border-right: none; }
.hp-proof-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-fg);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.hp-proof-label {
  font-size: 0.8125rem;
  color: rgba(250,250,247,0.82);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   PATIENT TYPE CARDS
   ============================================= */
.hp-patient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.hp-patient-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.hp-patient-tourist {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
}
.hp-patient-tourist h3, .hp-patient-tourist p { color: var(--primary-fg); }
.hp-patient-tourist p { opacity: 0.85; }
.hp-patient-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.hp-patient-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--fg); }
.hp-patient-card > p { font-size: 0.9375rem; margin-bottom: 1.25rem; }
.hp-patient-list {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}
.hp-patient-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hp-patient-tourist .hp-patient-list li {
  color: rgba(250,250,247,0.75);
  border-bottom-color: rgba(250,250,247,0.12);
}
.hp-patient-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; }
.hp-patient-tourist .hp-patient-list li::before { color: rgba(250,250,247,0.5); }
.hp-patient-cta { margin-top: auto; align-self: flex-start; }
.hp-patient-tourist .btn-secondary {
  border-color: rgba(250,250,247,0.5);
  color: var(--primary-fg);
}
.hp-patient-tourist .btn-secondary:hover { background: rgba(250,250,247,0.15); }

/* =============================================
   EXPERTISE GRID
   ============================================= */
.hp-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hp-expertise-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--fg);
}
.hp-expertise-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp-exp-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.hp-expertise-card h3 { font-size: 1.05rem; color: var(--fg); margin-bottom: 0.5rem; }
.hp-expertise-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.hp-exp-price { font-size: 0.8125rem; font-weight: 700; color: var(--accent); margin-bottom: 0 !important; }

/* =============================================
   TECHNOLOGY GRID
   ============================================= */
.hp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hp-tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.hp-tech-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.hp-tech-card h3 { font-size: 1.05rem; color: var(--fg); margin-bottom: 0.5rem; }
.hp-tech-card p { font-size: 0.9rem; margin-bottom: 0; }

/* =============================================
   BRAND PILLS ROW
   ============================================= */
.hp-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
  justify-content: center;
}
.hp-brand-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem;
}
.hp-brand-country { font-size: 1.5rem; }
.hp-brand-pill strong { display: block; font-size: 0.9375rem; color: var(--fg); font-weight: 700; line-height: 1.2; }
.hp-brand-pill span { display: block; font-size: 0.75rem; color: var(--fg-muted); }
.hp-invisalign-badge {
  background: var(--primary);
  border-radius: var(--radius-card);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}
.hp-invis-logo { display: flex; align-items: flex-start; gap: 1.5rem; }
.hp-invis-star {
  font-size: 3rem;
  color: var(--star);
  flex-shrink: 0;
  line-height: 1;
}
.hp-invis-logo strong { display: block; font-size: 1.15rem; color: var(--primary-fg); font-family: var(--font-serif); margin-bottom: 0.5rem; }
.hp-invis-logo p { color: rgba(250,250,247,0.75); font-size: 0.9375rem; margin: 0; }

/* =============================================
   FOUNDERS STRIP
   ============================================= */
.hp-founders-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.hp-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
}
.hp-founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hp-founder-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.hp-founder h3 { font-size: 1.15rem; color: var(--fg); margin-bottom: 0.5rem; }
.hp-founder p { font-size: 0.9375rem; margin: 0; }

/* =============================================
   SPECIALISTS GRID
   ============================================= */
.hp-specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-specialist {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem 0.75rem;
}
.hp-spec-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 auto 0.5rem;
}
.hp-spec-role { font-size: 0.8125rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.hp-specialist strong { font-size: 1rem; color: var(--fg); display: block; margin-bottom: 0.5rem; }
.hp-spec-summary { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.45; margin: 0; }

/* =============================================
   AWARDS GRID
   ============================================= */
.hp-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hp-award-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.hp-award-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.hp-award-card h3 { font-size: 1rem; color: var(--fg); margin-bottom: 0.5rem; }
.hp-award-card p { font-size: 0.9rem; margin: 0; }

/* =============================================
   LOCATIONS GRID (homepage)
   ============================================= */
.hp-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hp-loc-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
  position: relative;
}
.hp-loc-city {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.hp-loc-card h3 { color: var(--fg); font-size: 1rem; margin-bottom: 0.3rem; }
.hp-loc-card p { font-size: 0.875rem; margin-bottom: 0.75rem; }
.hp-loc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  color: var(--fg-muted);
}
.hp-loc-tag-hospital { background: rgba(106,174,61,0.4); color: var(--mint-fg); }

/* =============================================
   REVIEWS META
   ============================================= */
.hp-reviews-meta { display: flex; justify-content: center; margin-bottom: 1rem; }
.hp-reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
}
.hp-score-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

/* =============================================
   BRAND STORY GRID (homepage)
   ============================================= */
.hp-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hp-story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hp-milestone {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(90,63,10,0.15);
}
.hp-milestone:last-child { border-bottom: none; }
.hp-milestone-year {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--peach-fg);
  min-width: 70px;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.hp-milestone p { font-size: 0.9rem; color: var(--peach-fg); opacity: 0.8; margin: 0; }

/* =============================================
   INTERNATIONAL PATIENTS — WHY GRID
   ============================================= */
.ip-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ip-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.ip-why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ip-why-card h3 { font-size: 1.05rem; color: var(--fg); margin-bottom: 0.5rem; }
.ip-why-card p { font-size: 0.9rem; margin: 0; }

/* =============================================
   INTERNATIONAL PATIENTS — JOURNEY STEPS
   ============================================= */
.ip-journey {
  max-width: 820px;
  margin: 3rem auto 0;
}
.ip-journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  margin-bottom: 0;
}
.ip-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ip-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.ip-step-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 0.5rem 0;
  min-height: 2rem;
}
.ip-step-body {
  padding-bottom: 2.5rem;
}
.ip-step-body h3 { font-size: 1.1rem; color: var(--fg); margin-bottom: 0.6rem; }
.ip-step-body p { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.ip-step-detail {
  background: var(--bg-muted);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}
.ip-step-durations {
  background: var(--bg-muted);
  border-radius: var(--radius-card);
  padding: 1rem;
  margin-top: 0.75rem;
}
.ip-duration-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.ip-duration-row:last-child { border-bottom: none; }
.ip-duration-row strong { color: var(--fg); flex-shrink: 0; }
.ip-duration-row span { color: var(--fg-muted); text-align: right; }

/* =============================================
   INTERNATIONAL PATIENTS — POPULAR TREATMENTS
   ============================================= */
.ip-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ip-popular-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  color: var(--fg);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.ip-popular-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ip-pop-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.ip-popular-card h3 { color: var(--fg); margin-bottom: 0.5rem; font-size: 1.1rem; }
.ip-popular-card p { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.ip-pop-saving {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-deep);
  background: rgba(106,174,61,0.08);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-top: 0.5rem;
}

/* =============================================
   INTERNATIONAL PATIENTS — DIFFERENTIATORS
   ============================================= */
.ip-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.ip-diff-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.ip-diff-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(106,174,61,0.1);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ip-diff-card h3 { font-size: 1rem; color: var(--fg); margin-bottom: 0.4rem; }
.ip-diff-card p { font-size: 0.9rem; margin: 0; }

/* =============================================
   EYEBROW LABEL
   ============================================= */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

/* =============================================
   HERO TRUST ROW
   ============================================= */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.trust-sep {
  width: 1px;
  height: 1rem;
  background: var(--border);
}

/* =============================================
   PRICE COMPARISON TABLE
   ============================================= */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  margin: 2rem 0 1rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.9rem;
}
.price-table th {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: left;
  border: none;
}
.price-table th.highlight-col { background: var(--accent); }
.price-table th.save-col { background: var(--green-deep); }
.price-table td {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  border-left: none;
  border-right: none;
  vertical-align: top;
  color: var(--fg);
}
.price-table td small {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}
.price-table td.highlight-col {
  background: rgba(106,174,61,0.07);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.0625rem;
}
.price-table td.save-col {
  font-weight: 700;
  color: var(--green-deep);
  font-size: 0.9375rem;
}
.price-table tr:nth-child(even) td { background: var(--bg-muted); }
.price-table tr:nth-child(even) td.highlight-col { background: rgba(106,174,61,0.12); }
.price-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.price-vn { white-space: nowrap; }

/* =============================================
   WHY GRID
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.why-card h3 { color: var(--fg); font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9375rem; margin-bottom: 0; }
.why-card strong { color: var(--fg); }

/* =============================================
   TREATMENTS GRID (feature cards)
   ============================================= */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.treatment-feature-card {
  display: block;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--fg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.treatment-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tfc-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.treatment-feature-card h3 { color: var(--fg); margin-bottom: 0.25rem; font-size: 1.15rem; }
.tfc-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9375rem;
  margin-bottom: 0.6rem;
}
.treatment-feature-card p { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.tfc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-card h3 { color: var(--fg); font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9375rem; margin-bottom: 0; }

/* =============================================
   IMPLANT BRANDS GRID
   ============================================= */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.brand-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.brand-card h3 { color: var(--fg); margin-bottom: 0.15rem; }
.brand-origin {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.brand-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.brand-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0 !important;
}

/* =============================================
   DOCTOR CARDS
   ============================================= */
.doctor-card .role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.doctor-card h3 { color: var(--fg); font-size: 1.05rem; margin-bottom: 0.4rem; }
.doctor-card p { font-size: 0.9rem; margin-bottom: 0; }

/* =============================================
   LOCATIONS FEATURE GRID
   ============================================= */
.locations-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.location-feature-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
}
.lfc-city {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.location-feature-card h3 { color: var(--fg); font-size: 1.05rem; margin-bottom: 0.3rem; }
.location-feature-card p { font-size: 0.875rem; margin-bottom: 0.3rem; }
.lfc-note {
  font-size: 0.8125rem !important;
  color: var(--fg-muted) !important;
  font-style: italic;
}

/* =============================================
   FAQ TWO-COLUMN
   ============================================= */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--fg-muted);
  flex-shrink: 0;
  margin-top: -0.1rem;
}
details[open] > .faq-item summary::after,
.faq-item[open] summary::after { content: "−"; }
details[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 1.25rem; font-size: 0.9375rem; line-height: 1.7; }

/* =============================================
   BRAND STORY SECTION
   ============================================= */
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.bs-stat {
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(90,63,10,0.15);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-align: center;
}
.bs-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--peach-fg);
  margin-bottom: 0.3rem;
}
.bs-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--peach-fg);
  opacity: 0.75;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 6rem 1.5rem;
  text-align: center;
}
.final-cta h2 {
  color: var(--primary-fg);
  max-width: 700px;
  margin: 0 auto 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.final-cta p {
  color: rgba(250,250,247,0.72);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* =============================================
   INLINE MID-PAGE CTA
   ============================================= */
.inline-cta-block {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.inline-cta-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 1.25rem;
}
.inline-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   INSURANCE STRIP — responsive
   ============================================= */
.insurance-strip .container > div {
  /* two-col layout handled inline */
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hp-expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-awards-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .clinic-strip { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .faq-two-col { grid-template-columns: 1fr; gap: 0; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .insurance-strip .container > div { grid-template-columns: 1fr !important; gap: 2rem; }
  .hp-patient-grid { grid-template-columns: 1fr; }
  .hp-proof-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-specialists-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ip-diff-grid { grid-template-columns: 1fr; }
  .ip-duration-row { flex-direction: column; gap: 0.25rem; }
  .ip-duration-row span { text-align: left; }
}

@media (max-width: 640px) {
  :root { --section-py: 3rem; }

  .main-nav { padding: 0 1rem; }
  .main-nav ul { display: none; }
  .lang-switcher { gap: 0; }

  .hero-home { padding: 3rem 0 2.5rem; }
  .hp-hero { padding: 3rem 0 2.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .hero-cta .btn-secondary-light { width: 100%; text-align: center; }

  .hero-inner-page h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .clinic-strip { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; }
  .cta-block .btn-secondary-light { margin-left: 0; margin-top: 0.5rem; }

  .hp-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-expertise-grid { grid-template-columns: 1fr; }
  .hp-tech-grid { grid-template-columns: 1fr; }
  .hp-awards-grid { grid-template-columns: 1fr; }
  .hp-locations-grid { grid-template-columns: 1fr; }
  .hp-specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-brands-row { flex-direction: column; align-items: stretch; }
  .ip-why-grid { grid-template-columns: 1fr; }
  .ip-popular-grid { grid-template-columns: 1fr; }
  .ip-journey-step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .hp-hero-badges { flex-direction: column; align-items: flex-start; }
  .hp-badge-sep { display: none; }
}

/* ═══════════════════════════════════════════════
   PRESS MENTIONS STRIP
   ═══════════════════════════════════════════════ */
.hp-press-strip {
  padding: 2.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-press-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.hp-press-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hp-press-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fg-muted);
  opacity: 0.55;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hp-press-logo:hover { opacity: 1; }

/* ═══════════════════════════════════════════════
   AWARDS STRIP — recognition signal
   ═══════════════════════════════════════════════ */
.hp-awards-strip {
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-awards-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.hp-awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hp-award {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}
.hp-award img {
  height: 110px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.92;
  transition: filter 0.2s, opacity 0.2s;
}
.hp-award:hover img { filter: grayscale(0%); opacity: 1; }
.hp-award figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.hp-award figcaption span {
  display: block;
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
@media (max-width: 768px) {
  .hp-awards-row { gap: 1.5rem 2rem; }
  .hp-award img { height: 88px; }
}
@media (max-width: 480px) {
  .hp-awards-row { gap: 1.25rem 1.5rem; }
  .hp-award { max-width: 140px; }
  .hp-award img { height: 72px; }
  .hp-award figcaption { font-size: 0.75rem; }
  .hp-award figcaption span { font-size: 0.6875rem; }
}

/* Footer awards row — compact, no captions */
.footer-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.footer-awards img {
  height: 56px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(40%);
  transition: opacity 0.2s, filter 0.2s;
}
.footer-awards img:hover { opacity: 1; filter: grayscale(0%); }
@media (max-width: 480px) {
  .footer-awards { gap: 1rem 1.5rem; }
  .footer-awards img { height: 44px; }
}

/* ═══════════════════════════════════════════════
   FIRST VISIT JOURNEY (homepage) — premium timeline
   ═══════════════════════════════════════════════ */
.hp-visit-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
  align-items: start;
}
.hp-visit-track {
  display: none; /* connector drawn via node pseudo-elements */
}
.hp-visit-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
/* horizontal line connecting nodes */
.hp-visit-step-v2:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: var(--border);
}
.hp-visit-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 6px var(--bg-muted);
}
.hp-visit-body {
  flex: 1;
}
.hp-visit-duration {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.hp-visit-step-v2 h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  color: var(--fg);
}
.hp-visit-step-v2 p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   HOMEPAGE PRICE COMPARISON (condensed)
   ═══════════════════════════════════════════════ */
.hp-compare-table {
  max-width: 880px;
  margin: 2.5rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.hp-compare-table table {
  width: 100%;
  margin: 0;
  border: none;
  border-collapse: collapse;
}
.hp-compare-table th,
.hp-compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}
.hp-compare-table thead th {
  background: var(--bg-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hp-compare-vn {
  background: rgba(106, 174, 61, 0.08);
  color: var(--accent);
  font-weight: 700;
}
.hp-compare-save {
  background: rgba(106, 174, 61, 0.08);
  font-weight: 700;
  text-align: center;
}
.save-pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.hp-compare-table tr:last-child td { border-bottom: none; }
.hp-compare-cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════
   BEFORE/AFTER GALLERY (placeholder)
   ═══════════════════════════════════════════════ */
.hp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hp-gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
}
.hp-gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--bg-muted);
  aspect-ratio: 16 / 9;
}
.hp-gallery-half {
  background: linear-gradient(135deg, #E5E5E5 0%, #C9C9C5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--fg-muted);
  position: relative;
}
.hp-gallery-half::after {
  content: attr(data-label);
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(250, 250, 247, 0.92);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
}
.hp-gallery-info {
  padding: 1.25rem 1.5rem;
}
.hp-gallery-treatment {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hp-gallery-info h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.hp-gallery-info p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════
   VIDEO TESTIMONIALS
   ═══════════════════════════════════════════════ */
.hp-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hp-video-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.1);
}
.hp-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hp-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
.hp-video-thumb > .hp-video-play,
.hp-video-thumb > .hp-video-duration { z-index: 2; }
.hp-video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(250, 250, 247, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.hp-video-card:hover .hp-video-play { transform: scale(1.1); }
.hp-video-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--primary);
}
.hp-video-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(26, 26, 26, 0.85);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}
.hp-video-info { padding: 1.25rem 1.5rem; }
.hp-video-info h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.hp-video-info cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════
   BLOG TEASER STRIP
   ═══════════════════════════════════════════════ */
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hp-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
}
.hp-blog-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--peach) 0%, var(--mint) 100%);
  position: relative;
}
.hp-blog-cover-implants { background: linear-gradient(135deg, #C8E2EF 0%, #5BAFD6 100%); }
.hp-blog-cover-invisalign { background: linear-gradient(135deg, #FBEDC4 0%, #E8D44D 100%); }
.hp-blog-cover-tourism { background: linear-gradient(135deg, #6AAE3D 0%, #D4952B 100%); }
.hp-blog-info {
  padding: 1.5rem;
}
.hp-blog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.hp-blog-info h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.hp-blog-info p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

/* responsive overrides for new homepage sections */
@media (max-width: 900px) {
  .hp-visit-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .hp-visit-step-v2:not(:last-child)::after { display: none; }
  .hp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-video-grid { grid-template-columns: 1fr; }
  .hp-blog-grid { grid-template-columns: 1fr; }
  .hp-press-row { gap: 1.25rem 2rem; }
}
@media (max-width: 640px) {
  .hp-visit-timeline { grid-template-columns: 1fr; gap: 2rem 0; }
  .hp-gallery-grid { grid-template-columns: 1fr; }
  .hp-press-logo { font-size: 1rem; }
  .hp-compare-table th,
  .hp-compare-table td { padding: 0.75rem 0.6rem; font-size: 0.8125rem; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* Channels strip */
.ct-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ct-channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.ct-channel-card:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ct-channel-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}
.ct-channel-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
}
.ct-channel-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0;
}
.ct-channel-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.ct-channel-primary .ct-channel-label { color: rgba(250,250,247,0.6); }
.ct-channel-primary .ct-channel-value { color: var(--primary-fg); }
.ct-channel-primary .ct-channel-note { color: rgba(250,250,247,0.7); }
.ct-channel-primary:hover { background: #000000; }

/* Form layout */
.ct-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}
.ct-form-layout .booking-form {
  max-width: none;
}
.ct-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ct-form-grid-2 .form-row { margin-bottom: 1.25rem; }
.ct-req { color: var(--accent); }
.iti {
  width: 100%;
}
.iti__tel-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem 0 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s;
}
.iti__tel-input:focus {
  outline: none;
  border-color: var(--accent);
}
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 0.9375rem;
}
.iti__dropdown-content {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.iti__search-input {
  font-family: inherit;
  font-size: 0.9375rem;
}
.iti__country.iti__highlight {
  background: var(--bg-muted);
}
.ct-form-optional {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.ct-form-helper {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0.4rem 0 0;
}
.ct-form-upload input[type="file"] {
  width: 100%;
  padding: 0.6rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
}
.ct-form-consent { margin-top: 0.5rem; }
.ct-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 400;
  cursor: pointer;
}
.ct-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--fg);
}
.ct-form-footnote {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.ct-form-extra {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.ct-form-extra > summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  list-style: none;
  user-select: none;
}
.ct-form-extra > summary::-webkit-details-marker { display: none; }
.ct-form-extra > summary::before {
  content: "+ ";
  font-weight: 700;
}
.ct-form-extra[open] > summary::before { content: "- "; }
.ct-form-extra-inner {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Form submission states */
.form-msg {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.form-msg-error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}
.form-success-state {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
}
.form-success-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin: 0 0 1rem;
  line-height: 1;
}
.form-success-state h3 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
}
.form-success-state p {
  color: var(--fg-muted);
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

/* Form aside (process + promise) */
.ct-form-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}
.ct-aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
}
.ct-aside-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.ct-process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.ct-process-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ct-process-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--fg);
  color: var(--primary-fg);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-process-list strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.ct-process-list p {
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}
.ct-aside-promise {
  background: var(--primary);
  border-color: var(--primary);
}

/* Branches grid */
.ct-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ct-branch-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ct-branch-card:hover {
  border-color: var(--fg);
  box-shadow: var(--shadow-md);
}
.ct-branch-hospital {
  border-left: 3px solid var(--mint-fg);
}
.ct-branch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ct-branch-city {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ct-branch-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  color: var(--fg);
}
.ct-branch-tag-hospital {
  background: var(--mint);
  color: var(--mint-fg);
}
.ct-branch-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.ct-branch-address {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.ct-branch-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ct-branch-meta dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 0.1rem;
}
.ct-branch-meta dd {
  font-size: 0.8125rem;
  color: var(--fg);
  margin: 0;
}
.ct-branch-meta dd a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.ct-branch-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ct-branch-btn {
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
}
.ct-branch-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}
.ct-branch-link:hover { color: var(--accent); }

/* International banner */
.ct-intl-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.ct-intl-banner h2 { margin-bottom: 1.25rem; }
.ct-intl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}
.ct-intl-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.ct-intl-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.ct-intl-list strong { color: var(--fg); }

/* Languages */
.ct-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ct-lang-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.ct-lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--bg-muted);
  border-radius: 50%;
  color: var(--fg);
}
.ct-lang-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--fg);
}
.ct-lang-card p {
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}
.ct-lang-hours {
  font-size: 0.75rem !important;
  color: var(--fg-muted);
  margin-top: 0.5rem !important;
}

/* Trust strip */
.ct-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ct-trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.ct-trust-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.ct-trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.ct-trust-item p {
  font-size: 0.875rem;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   YOUTUBE MODAL (global)
   ============================================= */
.yt-modal[hidden] { display: none; }
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: yt-modal-fade 0.18s ease-out;
}
.yt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: zoom-out;
}
.yt-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 6rem);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.yt-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.yt-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}
.yt-modal-close:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}
.yt-modal-close:focus-visible {
  outline: 3px solid var(--amber, #d4952b);
  outline-offset: 3px;
}
html.yt-modal-open,
html.yt-modal-open body {
  overflow: hidden;
}
@keyframes yt-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 720px) {
  .yt-modal {
    padding: 0;
    align-items: flex-end;
  }
  .yt-modal-dialog {
    max-height: 100vh;
    max-height: 100dvh;
  }
  .yt-modal-frame {
    border-radius: 0;
    max-height: 100vh;
    max-height: 100dvh;
  }
  .yt-modal-close {
    top: env(safe-area-inset-top, 0.75rem);
    right: 0.75rem;
    background: rgba(0,0,0,0.55);
  }
}

/* =============================================
   WHATSAPP FLOATING ACTION BUTTON
   ============================================= */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-fab:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 3px 8px rgba(0,0,0,0.14);
}
.wa-fab:focus-visible {
  outline: 3px solid rgba(37,211,102,0.4);
  outline-offset: 2px;
}
.wa-fab-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.wa-fab-label { line-height: 1; }
@media (max-width: 640px) {
  .wa-fab {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem;
    border-radius: 50%;
  }
  .wa-fab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

/* Contact page responsive */
@media (max-width: 900px) {
  .ct-channels-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-form-aside { position: static; }
  .ct-branches-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-intl-banner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .ct-lang-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ct-channels-grid { grid-template-columns: 1fr; }
  .ct-form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .ct-branches-grid { grid-template-columns: 1fr; }
  .ct-intl-banner { padding: 1.75rem; }
  .ct-branch-actions { flex-direction: column; align-items: stretch; }
  .ct-branch-actions .ct-branch-link { text-align: center; }
}
@media (max-width: 480px) {
  :root { --section-py: 2.5rem; }
  .ct-lang-grid { grid-template-columns: 1fr; }
}

/* =============================================
   HOMEPAGE STAINED-GLASS OVERLAY
   Brand DNA expression: Green / Blue / Yellow / Amber
   on the four neutral surfaces. Lifts the homepage
   from "white site with one button" to a clinic
   that visibly takes craft seriously.
   ============================================= */

/* 1. HERO — warm bone with stained-glass aurora.
   Two soft radial washes (green NW, amber NE) plus
   a four-color seam at the bottom edge that echoes
   the logo. */
.hp-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 12% 10%, rgba(106,174,61,0.10) 0%, rgba(106,174,61,0) 60%),
    radial-gradient(55% 45% at 92% 5%, rgba(212,149,43,0.10) 0%, rgba(212,149,43,0) 60%),
    radial-gradient(45% 40% at 80% 90%, rgba(91,175,214,0.07) 0%, rgba(91,175,214,0) 60%),
    var(--bg);
  overflow: hidden;
}
.hp-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green) 25%,
    var(--blue) 25%,
    var(--blue) 50%,
    var(--yellow) 50%,
    var(--yellow) 75%,
    var(--amber) 75%,
    var(--amber) 100%
  );
}

/* Eyebrow chip — green pill on the hero so the brand color appears above the fold */
.hp-hero .eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(106,174,61,0.12);
  color: var(--green-deep);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
}

/* Hero headline italic — amber, the "premium signature moment" color */
.hp-hero h1 em {
  color: var(--amber);
  font-style: italic;
  font-weight: 700;
}

/* Hero badges — give each item a subtle dot in a brand color */
.hp-hero-badges .hp-badge {
  font-weight: 600;
  color: var(--fg);
}
.hp-hero-badges .hp-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: var(--blue);
}
.hp-hero-badges .hp-badge:nth-of-type(1)::before { background: var(--yellow); }
.hp-hero-badges .hp-badge:nth-of-type(3)::before { background: var(--amber); }
.hp-hero-badges .hp-badge:nth-of-type(5)::before { background: var(--green); }
.hp-hero-badges .hp-badge:nth-of-type(7)::before { background: var(--blue); }
/* The first .hp-badge (with stars) overrides the dot since stars carry the color already */
.hp-hero-badges .hp-badge:nth-of-type(1)::before { display: none; }
.hp-hero-badges .stars { color: var(--yellow); }

/* Hero two-column layout — text + video */
.hp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}
.hp-hero-grid .hp-hero-content { max-width: none; }

/* Video facade (click-to-play) */
.hp-hero-media { position: relative; }
.hp-hero-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-muted);
  box-shadow:
    0 12px 32px rgba(42,38,34,0.18),
    0 2px 6px rgba(42,38,34,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-hero-video:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px rgba(42,38,34,0.22),
    0 4px 10px rgba(42,38,34,0.10);
}
.hp-hero-video:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}
.hp-hero-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}
.hp-hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1;
}
.hp-hero-video:hover .hp-hero-video-play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}
.hp-hero-video-play svg {
  width: 2.6rem;
  height: 1.85rem;
  display: block;
}
.hp-hero-video-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  text-align: left;
  line-height: 1.35;
}
.hp-hero-video-caption strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}
.hp-hero-video-caption span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}

/* Photo hero (replaces YouTube thumb on homepage) */
.hp-hero-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(42,38,34,0.18),
    0 3px 8px rgba(42,38,34,0.10);
}
.hp-hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hp-hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hp-hero-photo-play {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hp-hero-photo-play:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.hp-hero-photo-play-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-hero-photo-play-icon svg {
  width: 1.1rem;
  height: 0.8rem;
  display: block;
}
.hp-hero-photo-play-label strong {
  color: #fff;
  font-weight: 600;
}
.hp-hero-video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  display: block;
  box-shadow:
    0 12px 32px rgba(42,38,34,0.18),
    0 2px 6px rgba(42,38,34,0.08);
}

@media (max-width: 900px) {
  .hp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hp-hero-video-play { width: 4.5rem; height: 4.5rem; }
  .hp-hero-video-play svg { width: 2.1rem; height: 1.5rem; }
}

/* 2. SECTION RHYTHM — alternate muted sections so the page has cadence.
   Even-indexed muted sections get a soft Picasso Blue tint; odd stay mist.
   Implemented via the existing .section-bg-muted class being used repeatedly. */
.section-bg-muted:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    rgba(91,175,214,0.06) 0%,
    rgba(91,175,214,0.10) 100%
  );
}

/* 3. COLOR ANCHORS — recurring roles for the four brand colors */

/* PROOF BAR — keep ink background but warm the numbers with amber */
.hp-proof-bar { position: relative; }
.hp-proof-bar::before,
.hp-proof-bar::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--yellow), var(--amber));
}
.hp-proof-bar::before { top: 0; }
.hp-proof-bar::after  { bottom: 0; }
.hp-proof-num {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* AWARDS STRIP — soft warm tint instead of bone */
.hp-awards-strip {
  background: linear-gradient(180deg, rgba(232,212,77,0.06) 0%, rgba(212,149,43,0.08) 100%);
  border-top: 1px solid rgba(212,149,43,0.15);
  border-bottom: 1px solid rgba(212,149,43,0.15);
}

/* PATIENT CARDS — colored top borders for local + expat */
.hp-patient-card { border-top: 4px solid var(--border); }
.hp-patient-local  { border-top-color: var(--green); }
.hp-patient-expat  { border-top-color: var(--blue); }

/* Tourist card — Picasso Amber signature treatment.
   Brand DNA §3.3: Amber = "Premium and warmth; high-tier programs, signature moments". */
.hp-patient-tourist {
  background: linear-gradient(165deg, var(--amber) 0%, var(--amber-deep) 100%);
  border: 1px solid var(--amber-deep);
  border-top: 4px solid var(--amber-deep);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px -12px rgba(166, 112, 26, 0.45);
}
/* Subtle stained-glass corner accent referencing the brand mark */
.hp-patient-tourist::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hp-patient-tourist .hp-patient-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255,255,255,0.18);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.hp-patient-tourist h3 {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.hp-patient-tourist > p {
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}
.hp-patient-tourist .hp-patient-list {
  position: relative;
  z-index: 1;
}
.hp-patient-tourist .hp-patient-list li {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.18);
}
.hp-patient-tourist .hp-patient-list li::before {
  color: #FFFFFF;
}
.hp-patient-tourist .btn-primary {
  background: #FFFFFF;
  color: var(--amber-deep);
  border-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.hp-patient-tourist .btn-primary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

/* VISIT STEPS — nodes inherit primary (Ink) for consistent premium look */

/* EXPERTISE CARDS — left accent rail in green, hover lifts to blue */
.hp-expertise-card {
  border-left: 3px solid var(--green);
}
.hp-expertise-card:hover { border-left-color: var(--blue); }
.hp-exp-price { color: var(--green-deep); font-weight: 600; }

/* TECH CARDS — top hairline accent in blue (clinical/trust per brand DNA) */
.hp-tech-card {
  border-top: 3px solid var(--blue);
}

/* BRAND PILLS — alternate the four colors for the trusted-implant strip */
.hp-brand-pill { border-top: 3px solid var(--green); }
.hp-brand-pill:nth-of-type(2) { border-top-color: var(--blue); }
.hp-brand-pill:nth-of-type(3) { border-top-color: var(--amber); }
.hp-brand-pill:nth-of-type(4) { border-top-color: var(--green-deep); }

/* INVISALIGN PLATINUM ELITE — amber treatment, this is the "premium signature moment" */
.hp-invisalign-badge {
  background: linear-gradient(135deg, rgba(212,149,43,0.08) 0%, rgba(232,212,77,0.10) 100%);
  border: 1px solid rgba(212,149,43,0.25);
}
.hp-invis-star { color: var(--amber); }
.hp-invis-logo strong { color: var(--fg); }
.hp-invis-logo p { color: var(--fg-muted); }

/* COMPARE TABLE — Picasso column gets a soft green wash; saving column gets amber */
.hp-compare-vn {
  background: rgba(106,174,61,0.08);
  color: var(--green-deep) !important;
  font-weight: 700;
}
.hp-compare-save {
  color: var(--amber-deep) !important;
  font-weight: 700;
}

/* FOUNDERS AVATARS — each in a different stained-glass color */
.hp-founder:nth-of-type(1) .hp-founder-avatar {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #FFFFFF;
}
.hp-founder:nth-of-type(2) .hp-founder-avatar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #FFFFFF;
}
.hp-founder:nth-of-type(3) .hp-founder-avatar {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #FFFFFF;
}
.hp-founder-role { color: var(--green-deep); }

/* SPECIALIST CHIPS — initials cycle through the four brand colors */
.hp-specialist:nth-of-type(1) .hp-spec-initials { background: rgba(106,174,61,0.12); color: var(--green-deep); }
.hp-specialist:nth-of-type(2) .hp-spec-initials { background: rgba(91,175,214,0.14); color: var(--blue-deep); }
.hp-specialist:nth-of-type(3) .hp-spec-initials { background: rgba(212,149,43,0.14); color: var(--amber-deep); }
.hp-specialist:nth-of-type(4) .hp-spec-initials { background: rgba(232,212,77,0.22); color: #6E5A0F; }
.hp-specialist:nth-of-type(5) .hp-spec-initials { background: rgba(106,174,61,0.12); color: var(--green-deep); }
.hp-specialist:nth-of-type(6) .hp-spec-initials { background: rgba(91,175,214,0.14); color: var(--blue-deep); }

/* LOCATION CARDS — city eyebrow in blue, flagship tag in green, hospital tag in amber */
.hp-loc-city { color: var(--blue-deep); }
.hp-loc-tag { background: rgba(106,174,61,0.14); color: var(--green-deep); }
.hp-loc-tag-hospital { background: rgba(212,149,43,0.16) !important; color: var(--amber-deep) !important; }

/* AWARD CARDS (recognition section) — left rail in amber */
.hp-award-card { border-left: 3px solid var(--amber); }

/* MILESTONE YEARS — amber for premium/heritage feel */
.hp-milestone-year { color: var(--amber-deep); }

/* REVIEW SCORE NUMBER — amber */
.hp-score-num { color: var(--amber); }

/* 4. STAINED-GLASS DIVIDER before final CTA */
.final-cta {
  position: relative;
  background:
    radial-gradient(50% 60% at 20% 20%, rgba(106,174,61,0.18) 0%, rgba(106,174,61,0) 60%),
    radial-gradient(45% 55% at 85% 85%, rgba(212,149,43,0.18) 0%, rgba(212,149,43,0) 60%),
    radial-gradient(40% 40% at 75% 15%, rgba(91,175,214,0.10) 0%, rgba(91,175,214,0) 60%),
    var(--primary);
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green) 25%,
    var(--blue) 25%,
    var(--blue) 50%,
    var(--yellow) 50%,
    var(--yellow) 75%,
    var(--amber) 75%,
    var(--amber) 100%
  );
}

/* SECTION HEADER H2 — italic accents take the amber signature */
.section-header h2 em { color: var(--amber); font-style: italic; }
.brand-story h2 em   { color: var(--amber-deep); font-style: italic; }
.final-cta h2        { background: linear-gradient(135deg, #FFFFFF 0%, rgba(232,212,77,0.85) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* =============================================
   TEAM PAGE — DEPARTMENT HEADS WITH PHOTOS
   ============================================= */

/* Department head photos (used on .hp-founder cards on /team/ only) */
.hp-founder-photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

/* =============================================
   TEAM PAGE — SENIOR CLINICAL TEAM CARDS
   ============================================= */
.hp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hp-team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hp-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hp-team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hp-team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg-muted);
  background: linear-gradient(135deg, rgba(232,212,77,0.18) 0%, rgba(212,149,43,0.14) 100%);
}
.hp-team-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hp-team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.hp-team-card h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.hp-team-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.hp-team-leads {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .hp-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hp-team-grid { grid-template-columns: 1fr; }
  .hp-founders-strip { grid-template-columns: 1fr; }
}

/* =============================================
   HOMEPAGE SPECIALISTS STRIP — photo avatars
   Replaces the initials circles with portraits.
   ============================================= */
.hp-spec-photo {
  width: 100%;
  max-width: 352px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 1rem;
  display: block;
}

/* =============================================
   CLINIC LANDING PAGE (layout: clinic)
   ============================================= */

/* Hero — two-column with media */
.cl-hero { padding: 4rem 0 3.5rem; }
.cl-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cl-hero-content { max-width: 600px; }
.cl-hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}
.cl-hero h1 { margin-bottom: 1.25rem; }
.cl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.cl-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--fg);
}
.cl-trust-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.cl-trust-item:nth-of-type(2)::before { background: var(--blue); }
.cl-trust-item:nth-of-type(3)::before { background: var(--amber); }
.cl-trust-item:nth-of-type(4)::before { background: var(--yellow); }
.cl-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

/* At-a-glance grid */
.cl-glance { padding: 2.5rem 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.cl-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cl-glance-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cl-glance-card:not(.cl-glance-static):hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cl-glance-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.cl-glance-value { font-size: 0.9375rem; font-weight: 600; line-height: 1.4; }
.cl-glance-action {
  font-size: 0.8125rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-top: auto;
}
.cl-glance-static .cl-glance-action { color: var(--fg-muted); }

/* Why-this-branch pillars */
.cl-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cl-pillar {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.cl-pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.cl-pillar:nth-of-type(2) .cl-pillar-icon { background: rgba(91,175,214,0.15); color: var(--blue-deep); }
.cl-pillar:nth-of-type(3) .cl-pillar-icon { background: var(--peach); color: var(--peach-fg); }
.cl-pillar h3 { margin-bottom: 0.5rem; }
.cl-pillar p { font-size: 0.9375rem; margin-bottom: 0; }

/* Treatments grid */
.cl-treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}
.cl-treatment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.cl-treatment:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
  transform: translateX(2px);
}
.cl-treatment-arrow { font-size: 1.1rem; opacity: 0.6; }
.cl-treatment:hover .cl-treatment-arrow { opacity: 1; }

/* Getting here — split layout */
.cl-getting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cl-getting-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.cl-getting-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--fg-muted);
}
.cl-getting-list li:last-child { border-bottom: 0; }
.cl-getting-list strong { color: var(--fg); }

/* Other branches grid */
.cl-branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.cl-branch-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cl-branch-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cl-branch-city {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
}
.cl-branch-name { font-size: 1.0625rem; font-weight: 600; }
.cl-branch-meta { font-size: 0.875rem; color: var(--fg-muted); }

/* Prose block (markdown body inside template) */
.cl-prose { max-width: 760px; margin: 0 auto; }
.cl-prose h2 { margin-top: 2rem; }

/* Sticky mobile bar — hidden on desktop */
.cl-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(26,26,26,0.08);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}
.cl-sticky-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid transparent;
}
.cl-sticky-call { background: var(--bg-muted); color: var(--fg); border-color: var(--border); }
.cl-sticky-wa   { background: #25D366; color: #FFFFFF; }
.cl-sticky-book { background: var(--green); color: #FFFFFF; border-color: var(--green); }

/* --- Responsive --- */
@media (max-width: 960px) {
  .cl-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cl-hero-media { order: -1; }
  .cl-glance-grid { grid-template-columns: repeat(2, 1fr); }
  .cl-pillars { grid-template-columns: 1fr; }
  .cl-getting { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .cl-hero { padding: 2.5rem 0 2rem; }
  .cl-glance-grid { grid-template-columns: 1fr; }
  .cl-sticky-bar { display: flex; }
  body { padding-bottom: 76px; }
  .cl-treatment { padding: 0.85rem 1rem; }
}

/* =============================================
   HAMBURGER BUTTON + MOBILE DRAWER NAV
   ============================================= */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--bg-muted); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
}

/* Drawer */
.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  z-index: 200;
  background: var(--bg-card);
  box-shadow: -4px 0 24px rgba(26,26,26,0.14);
  display: flex;
  flex-direction: column;
  animation: drawer-slide 0.22s ease-out;
  overflow-y: auto;
}
.nav-drawer[hidden] { display: none; }
@keyframes drawer-slide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(26,26,26,0.5);
}
.nav-drawer-backdrop[hidden] { display: none; }

.nav-drawer-inner { display: flex; flex-direction: column; height: 100%; }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--fg);
  transition: background 0.15s;
}
.nav-drawer-close:hover { background: var(--border); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  flex: 1;
  overflow-y: auto;
}
.nav-drawer-links a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.12s;
}
.nav-drawer-links a:hover { background: var(--bg-muted); }
.nav-drawer-links hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 1.5rem;
}
.nav-drawer-cta {
  margin: 1rem 1.5rem;
  padding: 0.85rem 1.5rem !important;
  background: var(--green) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 600 !important;
}

/* =============================================
   MOBILE STICKY BOTTOM CTA BAR
   ============================================= */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    border-top: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  }
  .mobile-cta-book {
    flex: 1;
    background: var(--green);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0.75rem;
    text-decoration: none;
    line-height: 1.2;
  }
  .mobile-cta-wa {
    background: #25D366;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 1.25rem;
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,0.25);
    white-space: nowrap;
    line-height: 1.2;
  }
  body {
    padding-bottom: 56px;
  }
}

/* =============================================================
   STUDIO ATELIER  ·  Homepage Edition
   Editorial / painter-studio language. Asymmetric layouts,
   stained-glass colour blocks as composition, generous whitespace.
   Prefix: .sa-*
   ============================================================= */

.sa-hero,
.sa-section,
.sa-closing {
  font-family: var(--font-sans);
  color: var(--fg);
}

/* Editorial atoms */
.sa-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.sa-eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--fg);
}

.sa-link-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.25rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.sa-link-arrow span { font-weight: 400; transition: transform 0.2s ease; }
.sa-link-arrow:hover { gap: 1rem; }
.sa-link-arrow:hover span { transform: translateX(0.2rem); }

/* =========================================================
   HERO  ·  "Dentistry, made beautiful."
   ========================================================= */
.sa-hero {
  position: relative;
  background: var(--bg);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.sa-hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.sa-hero-text { padding-right: 1rem; }
.sa-display {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0 0 2rem;
}
.sa-display em {
  font-style: italic;
  font-weight: 800;
  color: var(--green-deep);
  font-feature-settings: "ss01";
}
.sa-hero-lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--fg);
  max-width: 28rem;
  margin: 0 0 2.5rem;
}
.sa-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sa-hero-foot {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}

/* Hero photo with stained-glass block behind */
.sa-hero-art {
  position: relative;
  aspect-ratio: 4 / 4.4;
  max-height: 620px;
}
.sa-hero-frame {
  position: relative;
  width: 92%;
  height: 100%;
  margin-left: auto;
  z-index: 2;
  overflow: hidden;
}
.sa-hero-frame img {
  object-position: center 30%;
}
.sa-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sa-hero-block {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 55%;
  height: 75%;
  z-index: 1;
}
.sa-color-green  { background: var(--green); }
.sa-color-blue   { background: var(--blue); }
.sa-color-yellow { background: var(--yellow); }
.sa-color-amber  { background: var(--amber); }
.sa-color-bone   { background: var(--bg); }
.sa-color-ink    { background: var(--fg); color: var(--bg); }

.sa-hero-play {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
}
.sa-hero-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--fg);
}
.sa-hero-play:hover { background: #fff; }

@media (max-width: 900px) {
  .sa-hero { padding: 2.5rem 0 3rem; }
  .sa-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sa-hero-art { aspect-ratio: 4 / 5; max-height: 480px; }
  .sa-display { font-size: clamp(2rem, 9vw, 3.25rem); }
}

/* =========================================================
   SECTION CHROME
   ========================================================= */
.sa-section {
  padding: 6.5rem 0;
  border-top: 1px solid rgba(26,26,26,0.12);
  background: var(--bg);
}
.sa-section.sa-section-mist { background: var(--bg-muted); }
.sa-section.sa-section-ink {
  background: var(--fg);
  color: var(--bg);
  border-top-color: var(--fg);
}
.sa-section .container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.sa-section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26,26,26,0.18);
}
.sa-section.sa-section-ink .sa-section-head { border-bottom-color: rgba(250,250,247,0.25); }
.sa-section-num {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 0;
  font-feature-settings: "lnum";
}
.sa-section.sa-section-ink .sa-section-num { color: var(--bg); }
.sa-section-num .sa-num-slash {
  color: var(--green-deep);
  font-weight: 200;
  margin: 0 0.2em;
}
.sa-section.sa-section-ink .sa-num-slash { color: var(--green); }
.sa-section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: inherit;
}
.sa-section-title em {
  font-style: italic;
  color: var(--green-deep);
}
.sa-section.sa-section-ink .sa-section-title em { color: var(--yellow); }
.sa-section-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 36rem;
}
.sa-section.sa-section-ink .sa-section-sub { color: rgba(250,250,247,0.75); }

@media (max-width: 900px) {
  .sa-section { padding: 4rem 0; }
  .sa-section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }
  .sa-section-num { font-size: 3.5rem; }
}

/* =========================================================
   01  ·  THE WORK  (mosaic gallery)
   ========================================================= */
.sa-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 12rem;
  gap: 1.25rem;
}
.sa-mosaic-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-muted);
}
.sa-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sa-mosaic-item:hover img { transform: scale(1.03); }
.sa-mosaic-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0) 100%);
  color: var(--bg);
}
.sa-case-treatment {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
  color: var(--yellow);
}
.sa-case-detail {
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  color: var(--bg);
}

.sa-mosaic-a { grid-column: span 7; grid-row: span 3; }
.sa-mosaic-b { grid-column: span 5; grid-row: span 2; }
.sa-mosaic-c { grid-column: span 5; grid-row: span 1; }
.sa-mosaic-d { grid-column: span 4; grid-row: span 2; }
.sa-mosaic-e { grid-column: span 4; grid-row: span 2; }
.sa-mosaic-f { grid-column: span 4; grid-row: span 2; }

.sa-mosaic-link {
  text-align: right;
  margin: 2.5rem 0 0;
}

@media (max-width: 900px) {
  .sa-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 10rem; }
  .sa-mosaic-a { grid-column: span 6; grid-row: span 2; }
  .sa-mosaic-b,
  .sa-mosaic-c,
  .sa-mosaic-d,
  .sa-mosaic-e,
  .sa-mosaic-f { grid-column: span 3; grid-row: span 2; }
}

/* =========================================================
   02  ·  THE MAKERS  (founders + specialists)
   ========================================================= */
.sa-makers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
.sa-maker { margin: 0; }
.sa-maker-portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--bg-muted);
}
.sa-maker-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.08);
}
.sa-maker-tag {
  position: absolute;
  top: 1.25rem;
  left: -0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.sa-maker-tag.sa-color-green  { color: #fff; }
.sa-maker-tag.sa-color-amber  { color: #fff; }
.sa-maker-tag.sa-color-blue   { color: #fff; }
.sa-maker-tag.sa-color-yellow { color: var(--fg); }
.sa-maker-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 0.5rem;
}
.sa-maker-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--fg);
}
.sa-maker-bio {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 1.25rem;
}
.sa-maker-quote {
  position: relative;
  border-left: 3px solid var(--green);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 0;
}
.sa-maker-quote p {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--fg);
  margin: 0;
}
.sa-maker-quote.sa-q-amber  { border-color: var(--amber); }
.sa-maker-quote.sa-q-blue   { border-color: var(--blue); }
.sa-maker-quote.sa-q-yellow { border-color: var(--yellow); }

.sa-specialists {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26,26,26,0.18);
}
.sa-specialists-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 1.5rem;
}
.sa-specialists-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2.5rem;
}
.sa-specialists-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(26,26,26,0.2);
}
.sa-specialists-list .sa-spec-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
}
.sa-specialists-list .sa-spec-meta {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--fg-muted);
  text-align: right;
}

.sa-makers-link {
  margin: 3rem 0 0;
  text-align: right;
}

@media (max-width: 900px) {
  .sa-makers { grid-template-columns: 1fr; gap: 3rem; }
  .sa-specialists-list { grid-template-columns: 1fr; }
}

/* =========================================================
   03  ·  THE DEPARTMENTS  (typographic index)
   ========================================================= */
.sa-departments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.5rem;
}
.sa-department-title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 1rem;
  margin: 0 0 1.25rem;
  border-bottom: 2px solid var(--fg);
}
.sa-department-title .sa-dept-num {
  font-weight: 300;
  color: var(--green-deep);
  margin-right: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.sa-department-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sa-department-list li { margin: 0; }
.sa-department-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  text-decoration: none;
  color: var(--fg);
  transition: padding-left 0.2s ease, background 0.2s ease;
}
.sa-department-list a:hover {
  padding-left: 0.4rem;
  background: rgba(106,174,61,0.05);
}
.sa-department-list a .sa-dept-name {
  font-size: 1rem;
  font-weight: 600;
}
.sa-department-list a .sa-dept-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--fg-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .sa-departments { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   04  ·  THE HOUSES  (six branches as editorial features)
   ========================================================= */
.sa-houses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.sa-house {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.sa-house a {
  display: block;
  text-decoration: none;
  color: var(--fg);
}
.sa-house-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-muted);
}
.sa-house-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sa-house:hover .sa-house-photo img { transform: scale(1.04); }
.sa-house-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.75rem;
  background: rgba(250,250,247,0.94);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.sa-house-tag.sa-tag-amber {
  background: var(--amber);
  color: #fff;
}
.sa-house-tag.sa-tag-blue {
  background: var(--blue);
  color: #fff;
}
.sa-house-city {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 0.35rem;
}
.sa-house-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.45rem;
  color: var(--fg);
}
.sa-house-addr {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
  font-style: italic;
}

@media (max-width: 1000px) {
  .sa-houses { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .sa-houses { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   05  ·  THE ECONOMICS  (single pull-quote panel)
   ========================================================= */
.sa-economics {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sa-econ-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--fg);
}
.sa-econ-quote em {
  font-style: italic;
  color: var(--green-deep);
}
.sa-econ-attrib {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0 0 2rem;
  font-style: italic;
}
.sa-econ-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.2);
}
.sa-econ-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  align-items: baseline;
}
.sa-econ-row.sa-econ-head {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.75rem 0;
}
.sa-econ-treatment {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
}
.sa-econ-home,
.sa-econ-here {
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}
.sa-econ-home { text-decoration: line-through; color: var(--fg-muted); }
.sa-econ-save {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  text-align: right;
}

@media (max-width: 900px) {
  .sa-economics { grid-template-columns: 1fr; gap: 2rem; }
  .sa-econ-row { grid-template-columns: 1.4fr 1fr 1fr; gap: 0.5rem; font-size: 0.875rem; }
  .sa-econ-save { grid-column: 1 / -1; text-align: left; padding-top: 0.25rem; }
}

/* =========================================================
   06  ·  THE READERS  (featured testimonial + video grid)
   ========================================================= */
.sa-readers {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start;
}
.sa-readers--3up {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}
.sa-readers--3up .sa-readers-feature {
  border-top: 1px solid rgba(26,26,26,0.2);
  padding: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
}
.sa-readers--3up .sa-readers-mark { font-size: 4rem; margin-bottom: 0.5rem; }
.sa-readers--3up .sa-readers-quote { font-size: clamp(0.95rem, 1.2vw, 1.0625rem); line-height: 1.55; margin-bottom: 1.5rem; flex-grow: 1; }
.sa-readers--3up .sa-readers-name { font-size: 0.9375rem; }
.sa-readers--3up .sa-readers-meta { font-size: 0.75rem; }
@media (max-width: 900px) {
  .sa-readers--3up { grid-template-columns: 1fr; gap: 2rem; }
}
.sa-readers-feature {
  position: relative;
  padding: 2rem 0 0;
}
.sa-readers-mark {
  font-family: var(--font-sans);
  font-size: 6rem;
  line-height: 0.8;
  font-weight: 300;
  color: var(--green);
  margin: 0 0 1rem;
  font-style: italic;
}
.sa-readers-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--fg);
  margin: 0 0 2rem;
  font-style: italic;
}
.sa-readers-attrib {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0 0 0.25rem;
}
.sa-readers-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 0.25rem;
}
.sa-readers-meta {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--fg-muted);
  margin: 0;
}

.sa-readers-videos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sa-readers-video {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.25rem;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--fg);
  padding: 0.5rem 0;
}
.sa-readers-video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-muted);
}
.sa-readers-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sa-readers-video:hover .sa-readers-video-thumb img { transform: scale(1.05); }
.sa-readers-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sa-readers-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.sa-readers-video h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.sa-readers-video cite {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

.sa-readers-score {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,26,26,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.sa-readers-score-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.sa-readers-score .stars { color: var(--yellow); letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .sa-readers { grid-template-columns: 1fr; gap: 2.5rem; }
  .sa-readers-video { grid-template-columns: 7rem 1fr; }
}

/* =========================================================
   PROOF ROWS  (vertical claim + evidence stack)
   Used to make differentiators feel like editorial points.
   ========================================================= */
.sa-proof {
  max-width: 1000px;
  margin: 0 auto;
}
.sa-proof-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.sa-proof-row:first-child { border-top: 1px solid var(--border); }
.sa-proof-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.sa-proof-claim {
  font-family: var(--font-serif, var(--font-sans));
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--fg);
}
.sa-proof-claim em { font-style: italic; color: var(--green-deep); }
.sa-proof-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.sa-proof-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  background: var(--bg-muted);
  color: var(--fg);
  border-radius: 999px;
}
.sa-proof-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 720px) {
  .sa-proof-row { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .sa-proof-num { font-size: 1.5rem; }
}

/* =========================================================
   CANDIDACY  (two-column yes/no checklist)
   ========================================================= */
.sa-candidacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
}
.sa-candidacy-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sa-candidacy-col--yes h3 { color: var(--green-deep); }
.sa-candidacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sa-candidacy-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg);
}
.sa-candidacy-list li:last-child { border-bottom: 0; }
.sa-candidacy-list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  margin-top: 0.15rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.75rem;
}
.sa-candidacy-col--yes .sa-candidacy-list li::before {
  background-color: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.sa-candidacy-col--no .sa-candidacy-list li::before {
  background-color: var(--bg-muted);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.sa-candidacy-foot {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  font-style: italic;
}
@media (max-width: 720px) {
  .sa-candidacy { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   NOTES PAIR  (two side-by-side editorial notes)
   Used for warnings, caveats, or related guidance.
   ========================================================= */
.sa-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.sa-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.sa-note-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.sa-note-body h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0.4rem 0 0.5rem;
  color: var(--fg);
}
.sa-note-body p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .sa-notes { grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
}

/* =========================================================
   JOURNEY OPTIONS  (side-by-side trip plans)
   Used on service pages to compare two travel paths.
   ========================================================= */
.sa-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.sa-journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sa-journey-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}
.sa-journey-title {
  font-family: var(--font-serif, var(--font-sans));
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--fg);
}
.sa-journey-title em { font-style: italic; color: var(--green-deep); }
.sa-journey-summary {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.sa-journey-phase {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.sa-journey-phase:last-of-type { border-bottom: 0; }
.sa-journey-phase-when {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 0.25rem;
  line-height: 1.4;
}
.sa-journey-phase-what h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--fg);
}
.sa-journey-phase-what p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}
.sa-journey-bestfor {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--fg);
}
.sa-journey-bestfor strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
@media (max-width: 900px) {
  .sa-journey { grid-template-columns: 1fr; gap: 1.5rem; }
  .sa-journey-card { padding: 2rem 1.5rem 1.5rem; }
  .sa-journey-phase { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* =========================================================
   INLINE EDITORIAL FIGURES (full-width and 2-up)
   Used on service pages to break up text walls.
   ========================================================= */
.sa-figure {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 1.5rem;
}
.sa-figure-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-muted);
}
.sa-figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sa-figure-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}
.sa-figure-2up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sa-figure-2up .sa-figure-frame { aspect-ratio: 4 / 3; }
@media (max-width: 720px) {
  .sa-figure-2up { grid-template-columns: 1fr; gap: 1rem; }
}

/* =========================================================
   07  ·  THE JOURNAL  (one feature + two small)
   ========================================================= */
.sa-journal {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
.sa-journal-feature,
.sa-journal-small { text-decoration: none; color: inherit; }
.sa-journal-feature { display: block; }
.sa-journal-feature-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg-muted);
}
.sa-journal-feature-photo img,
.sa-journal-small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sa-journal-feature:hover .sa-journal-feature-photo img,
.sa-journal-small:hover .sa-journal-small-photo img { transform: scale(1.04); }
.sa-journal-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 0.65rem;
}
.sa-journal-feature h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.85rem;
  color: var(--fg);
}
.sa-journal-feature p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin: 0;
}

.sa-journal-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sa-journal-small {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  align-items: start;
}
.sa-journal-small-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-muted);
}
.sa-journal-small h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.25rem 0 0.4rem;
}
.sa-journal-small p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .sa-journal { grid-template-columns: 1fr; }
  .sa-journal-small { grid-template-columns: 7rem 1fr; }
}

/* =========================================================
   08  ·  THE QUESTIONS  (FAQ)
   ========================================================= */
.sa-questions {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
}
.sa-question {
  border-bottom: 1px solid rgba(26,26,26,0.2);
}
.sa-question summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
}
.sa-question summary::-webkit-details-marker { display: none; }
.sa-question summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-deep);
  transition: transform 0.2s ease;
}
.sa-question[open] summary::after { content: ""; height: 2px; width: 1rem; background: var(--green-deep); }
.sa-question p {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 52rem;
  margin: 0;
}
.sa-question p a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   CLOSING  ·  "The smile is the souvenir."
   ========================================================= */
.sa-closing {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 0 6rem;
  border-top: 1px solid var(--fg);
}
.sa-closing .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
}
.sa-closing-mark {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.sa-closing-mark::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--yellow);
}
.sa-closing-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--bg);
}
.sa-closing-title em {
  font-style: italic;
  color: var(--yellow);
}
.sa-closing-lede {
  font-size: 1rem;
  color: rgba(250,250,247,0.75);
  margin: 0;
  max-width: 28rem;
}
.sa-closing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.sa-closing-cta .sa-link-arrow {
  color: var(--bg);
  border-bottom-color: var(--bg);
  font-size: 1.0625rem;
}
.sa-closing-cta .sa-link-arrow:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.sa-closing-foot {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  margin: 0;
}

@media (max-width: 900px) {
  .sa-closing { padding: 5rem 0 4.5rem; }
  .sa-closing .container { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   FORM  ·  Commission a smile (homepage conversion section)
   Ink-black stage, centred title, form-left / proof-right
   ========================================================= */
.sa-form-section {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 0 8rem;
  border-top: 1px solid var(--fg);
  position: relative;
  overflow: hidden;
}
.sa-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 33%, var(--yellow) 66%, var(--amber) 100%);
}
.sa-form-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.sa-form-header {
  max-width: 56rem;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.sa-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1.75rem;
}
.sa-form-eyebrow::before,
.sa-form-eyebrow::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--yellow);
}
.sa-form-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
  color: var(--bg);
}
.sa-form-title em {
  font-style: italic;
  color: var(--yellow);
}
.sa-form-lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(250,250,247,0.75);
  margin: 0 auto;
  max-width: 38rem;
}

.sa-form-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.sa-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 0;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  position: relative;
}
.sa-form::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 4rem;
  height: 4rem;
  background: var(--yellow);
  z-index: -1;
}

/* The proof column (right) */
.sa-form-proof {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding: 0.5rem 0 0 1rem;
}
.sa-proof-promises {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sa-proof-promises li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(250,250,247,0.92);
}
.sa-proof-promises li::before {
  content: "\2014";
  color: var(--yellow);
  font-weight: 700;
}
.sa-proof-quote {
  margin: 0;
  padding: 1.5rem 0 0 0;
  border-top: 1px solid rgba(250,250,247,0.18);
  position: relative;
}
.sa-proof-quote p {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--bg);
  margin: 0 0 1rem;
}
.sa-proof-quote cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.02em;
  display: block;
}
.sa-proof-stats {
  list-style: none;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(250,250,247,0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sa-proof-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sa-stat-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.sa-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
}
.sa-form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.sa-form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.sa-form-input,
.sa-form-textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(26,26,26,0.35);
  padding: 0.55rem 0 0.7rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  font-weight: 500;
  border-radius: 0;
}
.sa-form-input::placeholder,
.sa-form-textarea::placeholder {
  color: rgba(26,26,26,0.35);
  font-weight: 400;
}
.sa-form-input:focus,
.sa-form-textarea:focus {
  border-bottom-color: var(--green-deep);
  border-bottom-width: 2px;
}
.sa-form-textarea {
  resize: vertical;
  min-height: 5.5rem;
  border-bottom: 1px solid rgba(26,26,26,0.35);
}
.sa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.sa-form-row-phone {
  grid-template-columns: minmax(7rem, 1fr) 2fr;
}
.sa-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 1.35rem 2rem;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--yellow);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, letter-spacing 0.25s ease;
}
.sa-form-submit::after {
  content: "\2192";
  font-size: 1.05rem;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.sa-form-submit:hover {
  background: var(--yellow);
  color: var(--fg);
  letter-spacing: 0.28em;
}
.sa-form-submit:hover::after { transform: translateX(0.3rem); }
.sa-form-submit:disabled { opacity: 0.55; cursor: wait; }
.sa-form-footnote {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
  text-align: center;
}
.sa-form-error {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #9a2424;
  padding: 0.85rem 1rem;
  background: rgba(181,55,55,0.07);
  border-left: 3px solid #b53737;
  margin: 0;
}
.sa-form-success {
  padding: 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sa-form-success[hidden] { display: none; }
.sa-form-success-mark {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--green-deep);
  margin: 0;
}
.sa-form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--fg);
}
.sa-form-success p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.sa-form-success p a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .sa-form-section { padding: 4rem 0 5rem; }
  .sa-form-header { margin-bottom: 3rem; }
  .sa-form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sa-form { padding: 1.75rem; }
  .sa-form::before { width: 2.5rem; height: 2.5rem; }
  .sa-form-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .sa-form-row-phone { grid-template-columns: 1fr 1fr; }
  .sa-form-proof { padding: 0; }
  .sa-proof-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .sa-stat-num { font-size: 1.5rem; }
}

/* Sub-section accent: large numbered slash typeset */
.sa-num-deco {
  font-family: var(--font-sans);
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.85;
  font-weight: 200;
  letter-spacing: -0.05em;
  color: rgba(26,26,26,0.07);
  position: absolute;
  top: -2rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
}

/* =========================================================
   SERVICE  ·  Hero price ribbon
   Compact, brand green, sits between lede and CTAs
   ========================================================= */
.sa-hero-price {
  display: block;
  max-width: 30rem;
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--mint);
  border-left: 3px solid var(--green);
  color: var(--mint-fg);
  font-size: 1.0625rem;
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}
.sa-hero-price strong {
  color: var(--green-deep);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.sa-hero-price-foot {
  display: inline-block;
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* =========================================================
   SERVICE  ·  Cost-vs-home spotlight section
   Editorial two-column: big number on left, comparison list on right
   ========================================================= */
.sa-price-spotlight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.sa-price-spotlight-figure { padding-top: 0.5rem; }
.sa-price-big {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--green-deep);
  margin: 0.5rem 0 1.5rem;
  font-feature-settings: "ss01";
  font-variant-numeric: tabular-nums;
}
.sa-price-big-usd {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.22em;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  vertical-align: 0.9em;
}
.sa-price-caption {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  max-width: 26rem;
}
.sa-price-compare {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.sa-price-compare li {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.05fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.0625rem;
}
.sa-pc-where { font-weight: 600; color: var(--fg); }
.sa-pc-price { color: var(--fg); font-variant-numeric: tabular-nums; }
.sa-pc-save {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
}
.sa-price-foot {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.sa-price-foot .sa-link-arrow {
  display: inline-flex;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .sa-price-spotlight { grid-template-columns: 1fr; gap: 2.5rem; }
  .sa-price-compare li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.875rem 0;
  }
  .sa-pc-save { font-size: 0.875rem; }
}

/* =========================================================
   REVIEWS PAGE  ·  rv- namespace
   ========================================================= */

/* Score bar */
.rv-score-bar {
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.rv-score-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rv-score-num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.rv-stars {
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.rv-score-divider {
  width: 1px;
  height: 2rem;
  background: rgba(245,243,240,0.2);
}
.rv-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.rv-score-meta strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg);
}
.rv-score-meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,243,240,0.55);
}

/* Video grid */
.rv-video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.rv-video-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.rv-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--fg-muted);
}
.rv-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.rv-video-card:hover .rv-video-thumb img { transform: scale(1.04); }
.rv-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-video-play::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  clip-path: polygon(35% 20%, 35% 80%, 80% 50%);
  /* play triangle via background shape on a pseudo */
}
.rv-video-play::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
}
.rv-video-play::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.8rem;
  border-color: transparent transparent transparent var(--fg);
  margin-left: 0.15rem;
}
.rv-video-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--fg);
  color: var(--bg);
  padding: 0.2rem 0.5rem;
}
.rv-video-info {
  padding: 0.6rem 0 0;
}
.rv-video-info h3 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}
.rv-video-info cite {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* Review cards */
.rv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.rv-card {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rv-card-stars {
  font-size: 0.85rem;
  color: #C8A84B;
  letter-spacing: 0.05em;
  margin: 0;
}
.rv-card-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #1A1A1A;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.rv-card-byline {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid #E5E5E5;
}
.rv-card-byline strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A1A1A;
}
.rv-card-byline span {
  font-size: 0.7rem;
  color: #3D3D3D;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 1100px) {
  .rv-video-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .rv-score-bar { gap: 1.5rem; padding: 1.25rem; }
  .rv-score-divider { display: none; }
  .rv-video-grid { grid-template-columns: repeat(3, 1fr); }
  .rv-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .rv-video-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-cards { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT PAGE  ·  ab- namespace
   ========================================================= */

/* Stats bar */
.ab-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.ab-stat {
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ab-stat:last-child { border-right: none; }
.ab-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
}
.ab-stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
}
.ab-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

/* Timeline */
.ab-timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  padding-left: 0;
  max-width: 680px;
}
.ab-tl-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ab-tl-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-deep);
}
.ab-tl-item:last-child { border-bottom: none; }
.ab-tl-year {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  padding-top: 0.1rem;
}
.ab-tl-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ab-tl-body strong {
  font-size: 0.9rem;
  font-weight: 700;
}
.ab-tl-body span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .ab-stats { grid-template-columns: repeat(3, 1fr); }
  .ab-stat:nth-child(3) { border-right: none; }
  .ab-stat:nth-child(n+4) { border-top: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .ab-stats { grid-template-columns: repeat(2, 1fr); }
  .ab-stat:nth-child(2) { border-right: none; }
  .ab-stat:nth-child(3) { border-right: 1px solid var(--border); }
  .ab-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .ab-tl-item { grid-template-columns: 4rem 1fr; gap: 1rem; padding-left: 1.5rem; }
}

/* =========================================================
   INFECTION CONTROL PAGE  ·  ic- namespace
   ========================================================= */

/* Pillars: photo-left / list-right */
.ic-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.ic-photos-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ic-photo {
  margin: 0;
  overflow: hidden;
}
.ic-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.ic-photo-tall img { aspect-ratio: 4/3; }
.ic-photo img { aspect-ratio: 3/2; }
.ic-photo figcaption {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.ic-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ic-pillar-list li {
  border-left: 3px solid var(--green-deep);
  padding-left: 1rem;
}
.ic-pillar-list li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ic-pillar-list li span {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Between-patients steps */
.ic-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.ic-step {
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ic-step:last-child { border-right: none; }
.ic-step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.1rem;
}
.ic-step strong {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.ic-step span {
  font-size: 0.73rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.ic-step em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* Photo strip */
.ic-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ic-strip figure { margin: 0; overflow: hidden; }
.ic-strip-large img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.ic-strip-small {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ic-strip-small figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* FAQ 2-column grid */
.ic-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
}
.ic-faq-item {
  border-top: 1px solid var(--border);
  padding: 1.1rem 1.25rem 1.1rem 0;
}
.ic-faq-item:nth-child(even) {
  padding: 1.1rem 0 1.1rem 1.25rem;
  border-left: 1px solid var(--border);
}
.ic-faq-q {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}
.ic-faq-a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ic-pillars-grid { grid-template-columns: 1fr; }
  .ic-photos-col { flex-direction: row; }
  .ic-photo-tall img, .ic-photo img { aspect-ratio: 4/3; }
  .ic-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .ic-step:nth-child(3) { border-right: none; }
  .ic-step:nth-child(n+4) { border-top: 1px solid var(--border); }
  .ic-strip { grid-template-columns: 1fr; }
  .ic-strip-large img { aspect-ratio: 3/2; }
  .ic-strip-small { flex-direction: row; }
  .ic-faq-grid { grid-template-columns: 1fr; }
  .ic-faq-item { padding: 1rem 0; }
  .ic-faq-item:nth-child(even) { padding: 1rem 0; border-left: none; }
}

@media (max-width: 600px) {
  .ic-steps { grid-template-columns: repeat(2, 1fr); }
  .ic-step:nth-child(2) { border-right: none; }
  .ic-step:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .ic-step:nth-child(n+3) { border-top: 1px solid var(--border); }
  .ic-photos-col { flex-direction: column; }
  .ic-strip-small { flex-direction: column; }
}

/* =============================================
   Contact v2 — two-column hero layout
   ============================================= */

.ct2-hero {
  padding: 4rem 0 5rem;
}
/* The two-column grid is on .ct2-hero-grid (the div inside .container),
   not the section itself — so the mobile media query can correctly override it. */
.ct2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: start;
}
.ct2-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct2-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

/* Trust badges row */
.ct2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin: 1rem 0 1.75rem;
}
.ct2-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* WhatsApp primary button */
.ct2-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.ct2-wa-btn:hover { background: #1da851; color: #fff; }

/* "or" divider */
.ct2-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ct2-or::before,
.ct2-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Review cards */
.ct2-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.ct2-review-stars {
  color: var(--star);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.ct2-review-quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.ct2-review-attr {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* What happens next — dark panel */
.ct2-process {
  background: var(--fg);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--bg);
}
.ct2-process-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  margin-bottom: 1rem;
}
.ct2-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ct2-process-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.ct2-process-num {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  margin-top: 0.1rem;
}
.ct2-process-item strong { color: #fff; display: block; }
.ct2-process-item span { color: rgba(250,250,247,0.65); font-size: 0.8125rem; }

/* Mobile-only process panel (below form, no reviews) */
.ct2-process-mobile {
  display: none;
  margin-top: 1.5rem;
}

/* Footer note */
.ct2-footer-note {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
}
.ct2-footer-note a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile breakpoint */
@media (max-width: 900px) {
  .ct2-hero { padding: 2.5rem 0 3rem; }
  .ct2-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ct2-hero-right { display: none; }
  .ct2-process-mobile { display: block; }
}
@media (min-width: 900px) {
  .ct2-process-mobile { display: none; }
}

/* =========================================================
   AUSTRALIANS (+ country subpages)  ·  au- namespace
   ========================================================= */

.au-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.au-why-item {
  padding: 2rem 2rem 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.au-why-item:nth-child(even) { border-right: none; }
.au-why-item:nth-last-child(-n+2) { border-bottom: none; }
.au-why-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 0.75rem;
}
.au-why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.au-why-item p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 700px) {
  .au-why { grid-template-columns: 1fr; }
  .au-why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .au-why-item:last-child { border-bottom: none; }
}

/* =========================================================
   INTERNATIONAL PATIENTS PAGE  ·  ip2- namespace
   (new design — distinct from legacy ip- classes above)
   ========================================================= */

/* Stats bar */
.ip-stats-bar {
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.ip-stats-bar .ip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.ip-stats-bar .ip-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bg);
}
.ip-stats-bar .ip-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,243,240,0.55);
}
.ip-stat-div {
  width: 1px;
  height: 2rem;
  background: rgba(245,243,240,0.2);
}

/* Country selector grid */
.ip-countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.ip-country {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ip-country:hover {
  border-color: var(--fg);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}
.ip-country-flag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 0.15rem 0.4rem;
  display: inline-block;
  line-height: 1.6;
  align-self: flex-start;
}
.ip-country strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 0.15rem;
}
.ip-country span {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* How it works journey grid */
.ip-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.ip-journey-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
}
.ip-journey-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--border);
  line-height: 1;
}
.ip-journey-step strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.ip-journey-step span {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* Duration table */
.ip-durations {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
}
.ip-durations-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
  background: var(--bg-muted);
}
.ip-dur-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.ip-dur-row:last-child { border-bottom: none; }
.ip-dur-row span {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.ip-dur-row strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .ip-countries { grid-template-columns: repeat(3, 1fr); }
  .ip-journey { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ip-stats-bar { gap: 1.25rem; padding: 1.25rem; }
  .ip-stat-div { display: none; }
  .ip-countries { grid-template-columns: repeat(2, 1fr); }
  .ip-journey { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ip-dur-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .ip-dur-row strong { text-align: left; }
}
@media (max-width: 600px) {
  .ip-countries { grid-template-columns: repeat(2, 1fr); }
  .ip-journey { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TEAM PAGE — .tm-* components
   ═══════════════════════════════════════════════ */

/* Stat bar — dark strip between hero and section 01 */
.tm-stat-bar {
  background: var(--fg);
  color: var(--bg);
}
.tm-stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.tm-stat-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.tm-stat-cell:last-child { border-right: none; }
.tm-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.tm-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.6);
  margin-top: 0.35rem;
}

/* Department heads — alternating two-column layout */
.tm-doctors {
  margin-top: 3rem;
}
.tm-doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.tm-doctor:last-child { margin-bottom: 0; }
.tm-doctor:nth-child(even) { direction: rtl; }
.tm-doctor > * { direction: ltr; }

.tm-doctor-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}
.tm-doctor-body {
  padding: 0.5rem 0;
}
.tm-doctor-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 0.5rem;
}
.tm-doctor-name {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.1;
  color: var(--fg);
}
.tm-doctor-tags {
  margin-bottom: 1.25rem;
}
.tm-doctor-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.tm-doctor-tag-green { background: var(--green); color: #fff; }
.tm-doctor-tag-blue  { background: var(--blue);  color: #fff; }
.tm-doctor-tag-amber { background: var(--amber); color: #fff; }

.tm-doctor-stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tm-doctor-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}
.tm-doctor-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.tm-doctor-credentials {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.tm-doctor-credentials li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.tm-doctor-credentials li:first-child { border-top: none; }
.tm-doctor-credentials li:last-child  { border-bottom: none; }

.tm-doctor-quote {
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  margin: 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}
.tm-doctor-quote-blue  { border-left-color: var(--blue); }
.tm-doctor-quote-amber { border-left-color: var(--amber); }

/* Senior clinical team — editorial 3-column cards */
.tm-senior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.tm-senior-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.tm-senior-card-head {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
}
.tm-senior-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 0;
  margin-bottom: 1rem;
}
.tm-senior-card-head-text {
  padding: 0 1.5rem;
}
.tm-senior-card-name {
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0;
  color: var(--fg);
}
.tm-senior-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0.2rem 0 0;
}
.tm-senior-card-body {
  padding: 1.25rem 1.5rem;
}
.tm-senior-fact {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.tm-senior-fact:last-child { margin-bottom: 0; }
.tm-senior-fact strong {
  color: var(--fg);
  flex-shrink: 0;
  min-width: 1.1rem;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .tm-doctor {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tm-doctor:nth-child(even) { direction: ltr; }
  .tm-doctor-img { aspect-ratio: 4 / 3; }
  .tm-doctor-name { font-size: 1.625rem; }
}
@media (max-width: 700px) {
  .tm-stat-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .tm-stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .tm-stat-cell:nth-child(even) { }
  .tm-stat-cell:last-child { border-bottom: none; }
}
@media (max-width: 900px) {
  .tm-senior-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tm-senior-grid { grid-template-columns: 1fr; }
}

/* Before + After cases */
.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2.5rem;
}
.ba-case {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ba-figure {
  position: relative;
  margin: 0;
}
.ba-figure img {
  width: 100%;
  display: block;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.ba-label-before {
  background: rgba(26,26,26,0.75);
  color: #fff;
}
.ba-label-after {
  background: var(--green);
  color: #fff;
}
.ba-case-detail {
  padding-top: 0.5rem;
}
.ba-case-treatment {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  margin: 0 0 1rem;
}
.ba-case-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ba-case-facts li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.ba-case-facts strong {
  color: var(--fg);
  display: inline-block;
  min-width: 5rem;
}
@media (max-width: 900px) {
  .ba-case { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ba-pair { grid-template-columns: 1fr; }
}
.ba-figure[data-photo-src] {
  cursor: zoom-in;
}

/* Photo lightbox modal */
html.ph-modal-open { overflow: hidden; }
.ph-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-modal[hidden] { display: none; }
.ph-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.ph-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.ph-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.ph-modal-close:hover { opacity: 1; }
.ph-modal-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  object-fit: contain;
}
.ph-modal-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  text-align: center;
  margin: 0;
}
