/* ═══════════════════════════════════════════════════════
   Mary Monro Registered Osteopath — Design System
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Nunito+Sans:wght@400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --sage:           #4A7C59;
  --sage-light:     #6B9E78;
  --sage-pale:      #EAF2EC;
  --sage-dark:      #336347;
  --cream:          #FAF7F2;
  --cream-mid:      #F3EDE3;
  --cream-dark:     #EDE5D8;
  --terracotta:     #C27D5A;
  --terra-light:    #D49377;
  --terra-dark:     #A86748;
  --charcoal:       #2D2D2D;
  --charcoal-mid:   #4A4A4A;
  --charcoal-soft:  #6B6B6B;
  --white:          #FFFFFF;
  --border:         rgba(74,124,89,0.14);
  --border-strong:  rgba(74,124,89,0.25);
  --shadow-sm:      0 2px 12px rgba(45,45,45,0.07);
  --shadow-md:      0 8px 32px rgba(45,45,45,0.10);
  --shadow-lg:      0 20px 60px rgba(45,45,45,0.13);
  --shadow-xl:      0 32px 80px rgba(45,45,45,0.18);
  --r-sm:           10px;
  --r-md:           16px;
  --r-lg:           24px;
  --r-xl:           32px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', Georgia, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 500; }
h5 { font-size: 0.95rem; font-weight: 500; }

p { margin-bottom: 1.1rem; color: var(--charcoal-mid); }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.loose { padding: 120px 0; }

/* ── Utility ── */
.ui  { font-family: 'Nunito Sans', sans-serif; }
.serif { font-family: 'Fraunces', serif; }
.italic { font-style: italic; }
.text-sage   { color: var(--sage); }
.text-terra  { color: var(--terracotta); }
.text-cream  { color: var(--cream); }
.text-soft   { color: var(--charcoal-soft); }
.bg-cream    { background: var(--cream); }
.bg-cream-mid{ background: var(--cream-mid); }
.bg-white    { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.bg-sage     { background: var(--sage); }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── Section Label ── */
.label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  flex-shrink: 0;
}
.label.centered { justify-content: center; }
.label.centered::before { display: none; }
.label.light { color: rgba(250,247,242,0.6); }
.label.light::before { background: rgba(250,247,242,0.35); }

/* Section header */
.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  font-size: 1.08rem;
  max-width: 580px;
  line-height: 1.8;
  color: var(--charcoal-soft);
}
.section-head.centered p { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.22);
  color: var(--cream);
  border-color: rgba(255,255,255,0.5);
}
.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-terra:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,125,90,0.35);
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::after { transform: scaleX(1); }

/* ── Prose ── */
.prose h3 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.prose h4 { margin: 1.5rem 0 0.5rem; font-size: 1.05rem; font-weight: 700; font-family: 'Nunito Sans', sans-serif; }
.prose p { margin-bottom: 1.2rem; }
.prose ul { margin: 0.75rem 0 1.2rem 1.5rem; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5rem;
  color: var(--charcoal-mid);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 7px; height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
}
.prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 16px 24px;
  margin: 1.5rem 0;
  background: var(--cream-mid);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-mid);
}

/* ── Divider ── */
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  border-radius: 2px;
  margin: 20px 0;
}
.divider.centered { margin: 20px auto; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all .35s ease;
  padding: 0 24px;
}
#nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  transition: color .35s;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .sub {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1px;
}
#nav.scrolled .nav-logo { color: var(--charcoal); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.845rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s;
  display: block;
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
#nav.scrolled .nav-links > li > a { color: var(--charcoal-mid); }
#nav.scrolled .nav-links > li > a:hover { color: var(--sage); background: var(--sage-pale); }

/* Dropdown */
.has-dropdown > a::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 14px 8px 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 300;
}
/* Invisible bridge fills the gap so hover doesn't break */
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  padding: 9px 14px;
  border-radius: 8px;
  transition: all .15s;
}
.dropdown a:hover {
  background: var(--sage-pale);
  color: var(--sage);
}

/* Nav CTA */
.nav-cta {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 22px;
  background: var(--white);
  color: var(--sage) !important;
  border-radius: 50px;
  transition: all .25s !important;
  text-decoration: none;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--sage) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74,124,89,0.25);
}
#nav.scrolled .nav-cta {
  background: var(--sage);
  color: var(--white) !important;
}
#nav.scrolled .nav-cta:hover { background: var(--sage-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
#nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ── Mobile menu ── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  flex-direction: column;
  padding: 100px 32px 48px;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu .mob-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 40px;
}
#mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
#mobile-menu a:hover { color: var(--sage); }
#mobile-menu .mob-sub a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  padding: 8px 0 8px 16px;
  border-bottom: none;
}
.mob-close {
  position: fixed;
  top: 22px; right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--charcoal-mid);
  z-index: 195;
}

/* ══════════════════════════════════
   PAGE HERO — REDESIGNED
══════════════════════════════════ */
.page-hero {
  background:
    radial-gradient(ellipse at 88% 8%,  rgba(168,212,181,0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 5%  95%, rgba(20,42,28,0.65)    0%, transparent 55%),
    linear-gradient(148deg, #182d21 0%, #22392b 20%, #2d4a38 50%, #3d6b4f 85%, #4a7c59 100%);
  padding: 158px 0 108px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

/* Large glowing circle — top-right decoration */
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.22) 0%, rgba(74,124,89,0.07) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Organic wave bottom — cream fill */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 96px;
  background: var(--cream);
  clip-path: ellipse(62% 100% at 50% 100%);
  z-index: 1;
}

/* Container must sit above the wave pseudo-element */
.page-hero > .container {
  position: relative;
  z-index: 3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 28px;
  border-left: 3px solid var(--terracotta);
}

.page-hero-breadcrumb {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a {
  color: rgba(250,247,242,0.45);
  transition: color .2s;
}
.page-hero-breadcrumb a:hover { color: rgba(250,247,242,0.8); }
.page-hero-breadcrumb span { opacity: 0.4; }

.page-hero h1 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.page-hero h1 em {
  font-style: italic;
  color: #b8dfc4;
  font-weight: 300;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.68);
  line-height: 1.85;
  max-width: 560px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .page-hero {
    /* Bottom padding must push content above the 96px wave */
    padding: 118px 0 148px;
  }
  .page-hero-content {
    padding-left: 20px;
    border-left-width: 2px;
  }
  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .page-hero-sub { font-size: 0.97rem; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .page-hero::before { width: 280px; height: 280px; top: -60px; right: -60px; }
}

/* ══════════════════════════════════
   HOME HERO
══════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2D4A38 0%, #3D6B4F 40%, #4A7C59 70%, #5E9470 100%);
}
.home-hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
}
.home-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) contrast(1.05);
  mix-blend-mode: luminosity;
  opacity: 0.4;
}
.home-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #3D6B4F 0%, transparent 50%),
    linear-gradient(to top, #2D4A38 0%, transparent 30%);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 152px 0 104px;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.65);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(250,247,242,0.45);
}
.home-hero h1 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.15;
}
.home-hero h1 em { font-style: italic; color: #A8D4B5; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(250,247,242,0.78);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-sub strong { color: rgba(250,247,242,0.95); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chip {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.82);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 50px;
  padding: 5px 13px;
  backdrop-filter: blur(4px);
}
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: float 2.2s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════════
   VIDEO
══════════════════════════════════ */
.video-section { background: var(--charcoal); padding: 80px 0; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.video-text .label { color: var(--sage-light); }
.video-text .label::before { background: var(--terracotta); }
.video-text h2 { color: var(--cream); font-weight: 300; margin-bottom: 16px; }
.video-text p { color: rgba(250,247,242,0.62); font-size: 1.05rem; line-height: 1.85; }
.video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  background: #111;
  cursor: pointer;
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,74,56,0.5), rgba(0,0,0,0.35));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity .3s;
}
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform .2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { color: var(--sage); margin-left: 4px; }
.video-play-overlay p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ══════════════════════════════════
   SPECIALISM GRID (home)
══════════════════════════════════ */
.specialisms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.spec-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.spec-card:hover {
  border-color: rgba(74,124,89,0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon {
  width: 52px; height: 52px;
  background: var(--cream-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.spec-card h3 { font-size: 1.18rem; color: var(--charcoal); margin-bottom: 10px; }
.spec-card p { font-size: 0.93rem; line-height: 1.65; color: var(--charcoal-soft); margin-bottom: 18px; }
.spec-link {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.spec-link svg { transition: transform .2s; }
.spec-card:hover .spec-link svg { transform: translateX(4px); }

/* ══════════════════════════════════
   ABOUT STRIP (home)
══════════════════════════════════ */
.about-strip { background: var(--cream-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  background: var(--sage-dark);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-years-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.about-years-badge .num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}
.about-years-badge .lbl {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 4px;
}
.about-gosc {
  position: absolute;
  top: 22px; right: -14px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about-gosc img { height: 48px; width: auto; border-radius: 6px; }

.about-lead {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.span-2 { grid-column: span 2; }

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
}
.cred-item svg { color: var(--sage); flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section { background: var(--sage); overflow: hidden; position: relative; }
.reviews-section::before {
  content: '"';
  position: absolute;
  top: -80px; left: 30px;
  font-family: 'Fraunces', serif;
  font-size: 32rem;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews-grid .review-wide { grid-column: span 2; }
.review-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
  transition: background .25s;
}
.review-card:hover { background: rgba(255,255,255,0.16); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: #F4C842; font-size: 0.95rem; }
.review-card blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(250,247,242,0.93);
  line-height: 1.72;
  margin-bottom: 18px;
  padding: 0; border: none;
}
.review-wide blockquote { font-size: 1.18rem; }
.review-author {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   EXPECT STEPS
══════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.step {
  background: var(--white);
  padding: 36px 30px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.65; }

/* ══════════════════════════════════
   CONTACT / BOOKING
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
}
.hours-list li .day { font-weight: 700; color: var(--charcoal); }
.hours-list li .time { color: var(--charcoal-soft); }
.address-box {
  display: flex;
  gap: 12px;
  background: var(--cream-mid);
  border-radius: var(--r-md);
  padding: 18px 22px;
  border: 1px solid var(--border);
  margin: 20px 0;
}
.address-box svg { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.address-box p { margin: 0; font-size: 0.93rem; line-height: 1.65; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.form-hint {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.83rem;
  color: var(--charcoal-soft);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #DDD5C9;
  border-radius: var(--r-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ══════════════════════════════════
   LOCATION MAP
══════════════════════════════════ */
.map-section {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.map-info {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 { color: var(--cream); margin-bottom: 14px; }
.map-info p { color: rgba(250,247,242,0.6); font-size: 1.03rem; line-height: 1.8; }
.map-info address {
  font-style: normal;
  color: rgba(250,247,242,0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 18px;
}
.map-info address strong { color: var(--cream); }
.map-frame { overflow: hidden; }
.map-frame iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #182318;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.45);
  max-width: 280px;
}
.footer-gosc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.footer-gosc-row img { height: 32px; width: auto; border-radius: 4px; }
.footer-gosc-row span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.73rem;
  color: rgba(250,247,242,0.45);
  line-height: 1.4;
}
.footer-col h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.38);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(250,247,242,0.55);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(250,247,242,0.28);
  margin: 0;
}
.footer-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-chip {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(250,247,242,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 4px 11px;
}

/* ══════════════════════════════════
   CALLOUT BOX
══════════════════════════════════ */
.callout {
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout.terra {
  background: #FBF0E9;
  border-left-color: var(--terracotta);
}
.callout p { color: var(--charcoal-mid); margin: 0; font-size: 0.97rem; }
.callout p + p { margin-top: 8px; }

/* ══════════════════════════════════
   TESTIMONIAL FULL PAGE
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all .25s;
}
.testimonial-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.testimonial-card blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
  padding: 0; border: none;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--sage);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-date {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.76rem;
  color: var(--charcoal-soft);
}

/* ══════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════ */
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-strong);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-question:hover { color: var(--sage); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--cream-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sage); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}
.faq-answer-inner p { margin-bottom: 0.8rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   SIDEBAR LAYOUT (condition pages)
══════════════════════════════════ */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.sidebar-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.sidebar-related a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  transition: color .2s;
}
.sidebar-related a:hover { color: var(--sage); }
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a svg { color: var(--terracotta); flex-shrink: 0; }

/* ══════════════════════════════════
   INLINE STAT CHIPS
══════════════════════════════════ */
.stat-row { display: flex; flex-wrap: wrap; gap: 20px; margin: 32px 0; }
.stat-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 24px;
  text-align: center;
  flex: 1;
  min-width: 110px;
}
.stat-chip .val {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}
.stat-chip .lbl {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  margin-top: 5px;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .grid-3col .span-2 { grid-column: span 2; }
  .specialisms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .map-frame { height: 320px; }
  .map-info { padding: 56px 40px; }
  .video-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 767px) {
  section { padding: 72px 0; }
  .specialisms-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-wide { grid-column: span 1; }
  .steps-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .home-hero-photo { display: none; }
  .home-hero-content { max-width: 100%; }
  .creds-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; }
  .page-hero { padding: 120px 0 56px; }
  .grid-2col, .grid-3col { grid-template-columns: 1fr !important; }
  .grid-2col .span-2, .grid-3col .span-2 { grid-column: span 1 !important; }
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.fade-up {
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.will-animate {
  opacity: 0;
  transform: translateY(28px);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ══════════════════════════════════
   MISSING UTILITY CLASSES
   (used by specialism pages)
══════════════════════════════════ */

/* Two-col variant for specialisms grid */
.specialisms-grid.two-col { grid-template-columns: repeat(2, 1fr); }

/* Full-width button */
.btn.btn-full, .btn-full { width: 100%; justify-content: center; display: flex; }

/* Clinic info block in sidebar */
.clinic-info { margin: 20px 0; }
.clinic-info p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}
.clinic-info p strong { color: var(--charcoal); }
.clinic-info a { color: var(--sage); }

/* CTA banner within a specialism page */
.cta-banner { text-align: center; border-radius: var(--r-lg); }
.bg-sage .section-head h2,
.bg-sage .section-head p,
.cta-banner.bg-sage h2,
.cta-banner.bg-sage p { color: var(--cream); }

/* Sidebar related list items (ul+li variant) */
.sidebar-related li {
  list-style: none;
  padding: 0;
}
.sidebar-related li span {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-mid);
}
.sidebar-related li:last-child span { border-bottom: none; }
.sidebar-related li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  transition: color .2s;
}
.sidebar-related li a:hover { color: var(--sage); }
.sidebar-related li:last-child a { border-bottom: none; }
.sidebar-related li a svg { color: var(--terracotta); flex-shrink: 0; }
.sidebar-related ul { padding: 0; margin: 0; }

/* stat-chip strong/span variant */
.stat-chip strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.stat-chip span {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-soft);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .specialisms-grid.two-col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   AGENT-BUILT PAGE STRUCTURE FIXES
   (cranial, babies, pregnancy, performers)
   Inner <section> elements inside .main-col
   get full section padding and bg colors that
   only fill the grid column — strip them.
══════════════════════════════════ */
.main-col > section {
  background: transparent !important;
  padding: 0 0 48px;
}
.main-col > section:first-of-type { padding-top: 0; }
.main-col > .divider { margin: 8px 0 40px; }

/* CTA banner inside main-col keeps its green background */
.main-col > section.cta-banner {
  background: var(--sage) !important;
  border-radius: var(--r-xl);
  padding: 56px 48px !important;
  margin-top: 8px;
}
.main-col > section.cta-banner h2,
.main-col > section.cta-banner p { color: var(--cream); }

/* Give the page content area top/bottom breathing room */
main > .container { padding-top: 80px; padding-bottom: 80px; }

/* ══════════════════════════════════
   FAQ ICON — show + / × via pseudo
══════════════════════════════════ */
.faq-icon::before { content: '+'; line-height: 1; }
.faq-item.open .faq-icon::before { content: '×'; }

/* ══════════════════════════════════
   TESTIMONIALS — stars direct text
   (no span children on this page)
══════════════════════════════════ */
.stars { color: #F4C842; font-size: 1rem; letter-spacing: 2px; }
.stars span { color: #F4C842; }

/* ══════════════════════════════════
   STEP HEADINGS — support both h3 + h4
══════════════════════════════════ */
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
}

/* ══════════════════════════════════
   FIRST-VISIT PREPARATION GRID
   (auto-fit replaced with class)
══════════════════════════════════ */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

/* ══════════════════════════════════
   CONTENT-MAIN — alias for main-col
   (used in first-visit.html)
══════════════════════════════════ */
.content-main { min-width: 0; }

/* ══════════════════════════════════
   CTA BANNER SECTION (inline style pages)
   ensure text is always readable
══════════════════════════════════ */
section.bg-sage h2,
section.bg-sage h3 { color: var(--cream); font-weight: 300; }
section.bg-sage p   { color: rgba(250,247,242,0.82); }
section.bg-charcoal h2,
section.bg-charcoal h3 { color: var(--cream); font-weight: 300; }
section.bg-charcoal p  { color: rgba(250,247,242,0.72); }

/* ══════════════════════════════════
   IMPROVED MOBILE POLISH
══════════════════════════════════ */
@media (max-width: 767px) {
  /* Page hero text sizing */
  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .page-hero-sub { font-size: 1rem; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }

  /* Section padding tighter on mobile */
  section { padding: 64px 0; }
  section.tight { padding: 48px 0; }

  /* Steps single col already done; reduce padding */
  .steps-row { gap: 2px; }
  .step { padding: 28px 24px; }

  /* CTA banner padding */
  .main-col > section.cta-banner { padding: 40px 28px !important; }

  /* Agent page main container */
  main > .container { padding-top: 56px; padding-bottom: 56px; }

  /* Content sidebar vertical gap */
  .content-sidebar { gap: 40px; }

  /* Stat row: 2 per row on mobile */
  .stat-row { gap: 10px; flex-wrap: wrap; flex-direction: row; }
  .stat-chip { min-width: 0; flex: 1 1 calc(50% - 5px); }

  /* Testimonials grid single col already done; card padding */
  .testimonial-card { padding: 24px; }

  /* FAQ question padding */
  .faq-question { padding: 16px 0; font-size: 0.95rem; }

  /* Auto-fit grid becomes 1 col */
  .auto-grid { grid-template-columns: 1fr; }

  /* Hero actions stacked */
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Trust chips wrap better */
  .trust-bar { gap: 6px; }
  .trust-chip { font-size: 0.68rem; padding: 4px 10px; }
}

/* ══════════════════════════════════
   TABLET (768–1024px) POLISH
══════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .page-hero { padding: 130px 0 64px; }
  main > .container { padding-top: 72px; padding-bottom: 72px; }
  .main-col > section.cta-banner { padding: 48px 40px !important; }
  .steps-row { gap: 2px; }
  .about-grid { gap: 56px; }
}
