:root {
  --blue-900: #1d2f5e;
  --blue-800: #284088;
  --blue-700: #3a64d6;
  --blue-600: #5079de;
  --blue-200: #c9dbf8;
  --blue-100: #e6edfb;
  --blue-50: #f5f8fd;
  --orange-600: #e8722e;
  --orange-500: #f0974f;
  --orange-100: #fbe6d4;
  --orange-50: #fdf4ec;
  --ink: #1b2438;
  --muted: #667085;
  --line: #e8eaf1;
  --bg-soft: #f8f9fc;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(20, 33, 75, 0.06);
  --shadow: 0 18px 44px rgba(20, 33, 75, 0.09);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: #f0f2f6;
  padding: 16px 10px 10px;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.icon-inline {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

/* Header */
.site-header {
  box-shadow: 0 4px 24px rgba(20, 33, 75, 0.10);
  position: sticky;
  top: 6px;
  z-index: 100;
  border-radius: 24px;
  margin-bottom: 10px;
  margin-left: 2px;
  margin-right: 2px;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: whitesmoke;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: -1;
  border-radius: 18px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  gap: 24px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img { height: 30px; width: auto; display: block; border-radius: 0; }
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 24px 20px;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.main-nav.is-open { display: flex; }
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.main-nav a:hover { color: var(--blue-700); }
.header-ctas {
  display: none;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.main-nav-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.main-nav-ctas .btn { flex: 1; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-primary {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 114, 46, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); background: #db661f; }
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
}
.btn-outline:hover { border-color: var(--blue-700); background: var(--blue-50); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* Section heading block */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--white);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(20, 33, 75, 0.10), 0 0 0 1px rgba(20, 33, 75, 0.05);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-600);
  flex-shrink: 0;
}
.kicker-light {
  color: var(--orange-500);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.12);
}
.kicker-light::before { background: var(--orange-500); }
.section-title {
  font-size: 2.1rem;
  margin: 0 0 14px;
  color: var(--blue-900);
  font-weight: 700;
}
.section-head.center .section-title { margin-left: auto; margin-right: auto; }
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0;
  font-size: 1.02rem;
}
.section-head.center .section-sub { margin: 0 auto; }

/* Hero */
.hero {
  background:
    linear-gradient(105deg, rgba(20, 30, 70, 0.90) 0%, rgba(20, 30, 70, 0.65) 18%, rgba(20, 30, 70, 0.25) 100%),
    url('assets/hero.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: block;
  position: relative;
}
.hero-text {
  max-width: 620px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-500);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}
.hero h1 {
  font-size: 2.9rem;
  margin: 0 0 18px;
  line-height: 1.18;
  font-weight: 700;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; }
.hero-image {
  border-radius: var(--radius-lg);
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-image-wrap .hero-image-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  flex-wrap: wrap;
}
.hero-image-wrap .hero-image-caption svg { width: 14px; height: 14px; stroke: var(--orange-500); vertical-align: middle; }

.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(240, 151, 79, 0.55), transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(58, 100, 214, 0.6), transparent 50%),
    linear-gradient(150deg, #25407f 0%, #3a64d6 55%, #5a8ae8 100%);
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 45%);
}
.hero-image .photo-placeholder { border-radius: calc(var(--radius-lg) - 8px); aspect-ratio: 4/3; }
.why-image .photo-placeholder { aspect-ratio: 560/600; box-shadow: var(--shadow); }
.video-placeholder .photo-placeholder { aspect-ratio: 16/9; box-shadow: var(--shadow); }
.map-placeholder .photo-placeholder { aspect-ratio: 4/3; box-shadow: var(--shadow); }

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  aspect-ratio: 4/3;
}
.why-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  display: block;
}
.map-placeholder iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Sections */
.section { padding: 100px 0; background: var(--white); }
.section-tint { background: var(--bg-soft); }

/* Bubble layout — each section is a rounded card on the grey page */
.hero,
.section,
.book-section,
.site-footer {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 2px 16px rgba(20, 33, 75, 0.06);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card img { border-radius: 0; aspect-ratio: 4/2.6; object-fit: cover; }
.card-icon {
  aspect-ratio: 4/2.6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
}
.card-icon svg { width: 42px; height: 42px; stroke: var(--blue-700); }
.card:nth-child(2n) .card-icon { background: var(--orange-100); }
.card:nth-child(2n) .card-icon svg { stroke: var(--orange-600); }
.card h3 { margin: 20px 22px 8px; font-size: 1.05rem; color: var(--blue-900); font-weight: 600; }
.card p { margin: 0 22px 0; color: var(--muted); font-size: 0.92rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 22px 22px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.86rem;
}
.card-link svg { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Mission & Vision */
.mission-card {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 64px 56px;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.mission-item .eyebrow { margin-bottom: 16px; }
.mission-item p {
  font-size: 1.6rem;
  line-height: 1.35;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}
.mission-item + .mission-item {
  padding-left: 56px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Brand statement section (replaces Our Values) ── */
.brand-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 70px;
  align-items: start;
}
.brand-photo-stat { grid-column: 1; grid-row: 1; }
.brand-headline   { grid-column: 2; grid-row: 1; }
.brand-pillars    { grid-column: 2; grid-row: 2; }
.brand-about-btn  { grid-column: 1; grid-row: 2; align-self: start; }

/* Photo — circular */
.brand-photo {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.brand-photo picture { display: block; width: 100%; height: 100%; }
.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
  display: block;
}

/* Stat */
.brand-stat       { display: flex; align-items: baseline; gap: 10px; }
.brand-stat-num   { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--blue-900); line-height: 1; }
.brand-stat-label { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* Headline — clamp-sized, whole-word wrapping, no hyphens */
.brand-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--blue-900);
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.brand-accent { color: var(--orange-600); }

/* Pillars — 3 top row, 2 centred on bottom row */
.brand-pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.brand-pillar  { display: flex; flex-direction: column; gap: 12px; grid-column: span 2; }
.brand-pillar:nth-child(4) { grid-column: 2 / span 2; }
.brand-pillar:nth-child(5) { grid-column: 4 / span 2; }
/* ICON SLOT — swap this div for your <img> or inline SVG line icon */
.pillar-icon-slot { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--blue-100); flex-shrink: 0; }
.pillar-title     { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--blue-900); margin: 0; }
.pillar-desc      { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* About Us button — inherits .btn .btn-outline */
.brand-about-btn     { display: inline-flex; transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.brand-about-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.brand-about-btn:hover { background: var(--orange-600); border-color: var(--orange-600); color: var(--white); }

/* Health funds */
.health-funds { padding: 70px 0 90px; }
.funds-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.fund-logo {
  flex: 0 1 150px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fund-logo:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* Offer price (used in hero) */
.offer-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.offer-price {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--orange-500);
}
.offer-price-note { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* Why — premium split layout */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 52px;
}

/* Photo: light-grey mat + soft shadow + rounded outer frame */
.why-photo {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
}
.why-photo picture { display: block; }

/* Right column */
.why-intro {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* CTA centred below the two columns */
.why-cta-wrap { text-align: center; }

.why-list { list-style: none; padding: 0; margin: 0 0 0; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.why-list li:first-child { padding-top: 0; }
.why-list li:last-child { border-bottom: none; }
.why-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}
.why-list strong { color: var(--ink); display: block; margin-bottom: 2px; }

/* First visit */
.first-visit-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.video-placeholder { position: relative; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--orange-600);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { padding-top: 0; }
.step:last-child { padding-bottom: 0; border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
}
.step h4 { margin: 2px 0 6px; color: var(--blue-900); font-size: 1rem; font-weight: 600; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Hours */
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0 30px;
  font-size: 0.95rem;
}
.hours-table tr:nth-child(odd) td { background: var(--bg-soft); }
.hours-table td {
  padding: 12px 16px;
}
.hours-table td:first-child { font-weight: 600; color: var(--blue-900); border-radius: 8px 0 0 8px; }
.hours-table td:last-child { text-align: right; color: var(--muted); border-radius: 0 8px 8px 0; }
.address-block {
  margin-bottom: 30px;
  padding: 18px 20px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-100);
}
.address-block h4 { margin: 0 0 6px; color: var(--blue-900); font-size: 0.95rem; font-weight: 600; }
.address-block p { margin: 0; color: var(--muted); }
.hours-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Book section */
.book-section {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.book-inner h2 { font-size: 2.1rem; margin: 0 0 12px; font-weight: 700; }
.book-inner p { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 1.08rem; }
.book-inner .hero-ctas { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo-img {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 14px;
  border-radius: 0;
  filter: brightness(0) invert(1);
}
.footer-inner p { margin: 6px 0; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; align-self: flex-start; }
.footer-nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--orange-500); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  opacity: 0.55;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 26px;
  margin-bottom: 14px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 600;
  color: var(--blue-900);
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--muted); margin: 0 0 20px; }

/* Blog */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); }
.breadcrumbs .current { color: var(--blue-900); font-weight: 600; }

.article-hero {
  background: var(--bg-soft);
  padding: 56px 0 50px;
}
.article-hero .kicker { margin-bottom: 12px; }
.article-hero h1 {
  font-size: 2.1rem;
  color: var(--blue-900);
  margin: 0 0 14px;
  font-weight: 700;
}
.article-hero .article-dek {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0;
}

.article-body { padding: 56px 0 90px; max-width: 720px; margin: 0 auto; }
.article-body h2 {
  font-size: 1.4rem;
  color: var(--blue-900);
  margin: 38px 0 14px;
  font-weight: 600;
}
.article-body p { color: var(--ink); font-size: 1rem; margin: 0 0 18px; }
.article-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink); }
.article-body li { margin-bottom: 8px; }

.article-cta {
  margin-top: 44px;
  padding: 32px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h3 { margin: 0 0 8px; color: var(--blue-900); font-size: 1.15rem; }
.article-cta p { color: var(--muted); margin: 0 0 20px; }
.article-cta .hero-ctas { justify-content: center; }

.related-services {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.related-services h3 { font-size: 1rem; color: var(--blue-900); margin: 0 0 14px; }
.related-services ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.related-services a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.related-services a:hover { background: var(--blue-50); border-color: var(--blue-700); }

.blog-index-hero {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.blog-index-hero h1 { font-size: 2.2rem; margin: 0 0 12px; font-weight: 700; }
.blog-index-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }

/* Hero review badge (Dentix-inspired) */
.hero-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-review-badge .stars {
  color: #f8c53a;
  letter-spacing: 1px;
  font-size: 0.72rem;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* Stats strip */
.stats-strip { padding: 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 44px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--blue-50); }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Services split layout ── */
.services-split-section { background: var(--white); }

.services-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT — sticky panel */
.services-split-left {
  position: sticky;
  top: 102px; /* clears sticky header (~76px + 10px offset) + breathing room */
}

.svc-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.svc-cta { display: inline-flex; } /* inherits .btn .btn-primary */

/* RIGHT — card stack */
.services-split-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.svc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
/* ICON SLOT — 52×52 placeholder; replace div contents with your 3D icon <img> */
.svc-icon-slot {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
}
.svc-content { flex: 1; }
.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-900);
  margin: 0 0 5px;
}
.svc-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.svc-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-200);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.svc-card:hover .svc-arrow {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: var(--white);
}
.svc-arrow svg { width: 14px; height: 14px; stroke: currentColor; }

/* Testimonials */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  color: #f8c53a;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-author strong {
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 600;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Responsive */
/* Suburbs section */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.suburb-tag {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 960px) {
  .first-visit-inner, .hours-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .why-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero { padding: 72px 0 56px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-layout { grid-template-columns: 1fr; row-gap: 36px; }
  .brand-photo-stat { grid-column: 1; grid-row: 1; }
  .brand-headline   { grid-column: 1; grid-row: 2; font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .brand-pillars    { grid-column: 1; grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .brand-pillar { grid-column: span 1; }
  .brand-pillar:nth-child(4),
  .brand-pillar:nth-child(5) { grid-column: span 1; }
  .brand-about-btn  { grid-column: 1; grid-row: 4; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 72px 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  /* Services split: collapse to single column at 960px */
  .services-split { grid-template-columns: 1fr; gap: 36px; }
  .services-split-left { position: static; }
  .svc-heading { font-size: 1.85rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { padding: 6px; }
  .site-header { top: 6px; border-radius: 14px; margin-bottom: 6px; }
  .site-header::before { border-radius: 14px; }
  .hero, .section, .book-section, .site-footer { border-radius: 14px; margin-bottom: 6px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .brand-pillars { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats { gap: 20px; padding-top: 20px; margin-top: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .svc-card { padding: 20px; gap: 16px; }
  .svc-icon-slot { width: 44px; height: 44px; }
}
