/* ============================================
   C.S. PHYSIOTHERAPY & WELLNESS CENTRE
   Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --brand:        #1C3461;
  --brand-dark:   #112244;
  --brand-light:  #2b4a8a;
  --brand-pale:   #eef2f9;

  --gold:         #C9943A;
  --gold-dark:    #a87a2e;
  --gold-pale:    #fef8f0;

  /* Neutrals */
  --cream:        #f8f7f5;
  --cream-dark:   #edeae4;
  --topbar-bg:    #0f1c35;
  --footer-bg:    #0f1c35;
  --text:         #1a1a1a;
  --text-mid:     #3d3d3d;
  --text-light:   #6b7280;
  --white:        #ffffff;
  --border:       #e2e0db;

  /* Type */
  --font-head:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width:    1180px;
  --section-pad:  5rem 1.5rem;
  --radius:       12px;
  --radius-sm:    6px;
  --radius-lg:    20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

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

/* ============================================
   ALERT BANNER
   ============================================ */
.alert-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}
.alert-banner--dismissed {
  max-height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* Types */
.alert-banner--info {
  background: var(--gold);
  color: #fff;
}
.alert-banner--success {
  background: #1a6e3c;
  color: #fff;
}
.alert-banner--urgent {
  background: #c8102e;
  color: #fff;
}

.alert-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.alert-banner-icon { font-size: 1rem; flex-shrink: 0; }
.alert-banner-msg  { margin: 0; flex: 1; }
.alert-banner-msg strong { font-weight: 700; }
.alert-banner-link {
  white-space: nowrap;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
  margin-left: 0.5rem;
  opacity: 0.92;
}
.alert-banner-link:hover { opacity: 1; }
.alert-banner-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.75;
  padding: 0.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.alert-banner-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .alert-banner { padding: 0.65rem 1rem; font-size: 0.8rem; }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--topbar-bg);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  white-space: nowrap;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.topbar a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--gold); }

.topbar-center {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: var(--brand-pale);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* Hide mobile-only nav bar on desktop */
.mobile-nav-bar { display: none; }

/* ---- Services Dropdown ---- */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
}
.nav-dropdown-link {
  flex: 1;
}
.nav-chevron-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.4rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-chevron-btn:hover { background: var(--brand-pale); color: var(--brand); }
.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  display: block;
}
.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 840px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 200;
  overflow: hidden;
}
/* small arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  rotate: 45deg;
}
/* invisible hover bridge — fills the gap between the trigger and the
   panel so the cursor stays within the hover region while moving down */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav-has-dropdown:hover .nav-dropdown {
  display: block;
}
.nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.25rem 1.25rem 1rem;
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}
.nav-dropdown-col:first-child { padding-left: 0; }
.nav-dropdown-col:last-child { padding-right: 0; border-right: none; }
.nav-dropdown-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-col a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-col a:hover {
  color: var(--brand);
  background: var(--brand-pale);
}
.nav-dropdown-footer {
  border-top: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  background: #f9f9fb;
}
.nav-dropdown-footer a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
}
.nav-dropdown-footer a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 38%;
  background-image: url('/assets/hero-reception.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  /* fade the left edge into the white background so text sits on white */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 42%);
  mask-image: linear-gradient(to right, transparent 0%, #000 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero-content > * {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,148,58,0.2);
  border: 1px solid rgba(201,148,58,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.82rem;
}

.hero-stars { color: var(--gold); letter-spacing: 1px; }

/* hero sits on white now — ghost button needs a dark outline */
.hero .btn-ghost {
  color: var(--text);
  border-color: var(--border);
}
.hero .btn-ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--brand);
  padding: 1.5rem;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg { color: var(--gold); }

.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}
.section-header.centered .section-lead {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,148,58,0.35);
}

.btn-navy {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-navy:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(28,52,97,0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

/* ============================================
   SERVICES OVERVIEW (Homepage)
   ============================================ */
.services-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg { color: var(--brand); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 0.6rem; }

/* ============================================
   ABOUT TEASER (Homepage)
   ============================================ */
.about-teaser {
  padding: var(--section-pad);
  background: var(--white);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser-image {
  position: relative;
}

.about-teaser-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
}

.about-teaser-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-teaser-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-teaser-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.3;
  display: block;
  margin-top: 0.25rem;
}

.about-teaser-content .section-lead {
  margin-bottom: 1.25rem;
}

.mission-values {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.mission-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.mission-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ============================================
   INSURANCE / ACCEPTED COVERAGE
   ============================================ */
.coverage-section {
  padding: 3.5rem 1.5rem;
  background: var(--brand-pale);
  border-top: 1px solid #dde4f0;
  border-bottom: 1px solid #dde4f0;
}

.coverage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.coverage-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  flex-shrink: 0;
}

.coverage-divider {
  width: 1px;
  height: 28px;
  background: #c4cfe6;
  flex-shrink: 0;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.coverage-tag {
  background: var(--white);
  border: 1px solid #c4cfe6;
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.google-badge strong { color: var(--text); }

/* ============================================
   HOURS + LOCATION (Homepage)
   ============================================ */
.info-section {
  padding: var(--section-pad);
  background: var(--white);
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

.hours-table tr.today td {
  color: var(--brand);
  font-weight: 600;
}

.hours-table tr.today td:first-child::before {
  content: '▸ ';
  color: var(--gold);
}

.location-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.location-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.location-icon svg { color: var(--brand); }

.location-item-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.location-item-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.location-item-text a {
  color: var(--brand);
  font-weight: 500;
  transition: color 0.2s;
}
.location-item-text a:hover { color: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,148,58,0.12) 0%, transparent 70%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo-mark {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Logo has white background — use brightness + opacity blend on dark bg */
  opacity: 0.85;
  mix-blend-mode: screen;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-nav h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact p,
.footer-hours p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row span:last-child { font-weight: 500; color: rgba(255,255,255,0.75); }
.footer-hours-row.closed span:last-child { color: rgba(255,255,255,0.35); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,148,58,0.1) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-section {
  padding: var(--section-pad);
}

.team-owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--cream-dark);
  display: block;
}

.team-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--brand-pale) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo-placeholder span {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.3;
}

.team-card-body {
  padding: 1.5rem;
}

.team-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.2rem;
}

.team-card-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.team-card-bio {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.team-card-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand);
  transition: color 0.2s;
}
.team-card-email:hover { color: var(--gold); }
.team-card-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 1rem;
}
.team-card-links .team-card-email { margin-top: 0; }
.team-card-book { color: var(--gold); font-weight: 600; }
.team-card-book:hover { color: var(--brand); }

/* Owner card variant — larger */
.team-card.owner .team-card-photo,
.team-card.owner .team-card-photo-placeholder {
  aspect-ratio: 4/5;
}

/* Mission section */
.mission-section {
  padding: var(--section-pad);
  background: var(--brand-pale);
}

.mission-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.9vw, 1.7rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.5;
  font-style: italic;
  max-width: 760px;
  margin: 1.75rem auto 2rem;
  text-align: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pillar-icon svg { color: var(--brand); }

.pillar h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
  padding: var(--section-pad);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.condition-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #c4cfe6;
}

.condition-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.condition-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.3rem;
}

.condition-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.techniques-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.technique-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: border-color 0.2s, color 0.2s;
}

.technique-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.technique-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.coverage-block {
  padding: var(--section-pad);
  background: var(--brand);
}

.coverage-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.coverage-block h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.coverage-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.coverage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coverage-card svg { color: var(--gold); flex-shrink: 0; }

.coverage-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: var(--section-pad);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--brand); }

.contact-info-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.3rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.contact-form-wrap p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(28,52,97,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

/* ============================================
   SCROLL ANIMATIONS
   Only applied when JS has run (js-ready class on body)
   ============================================ */
.js-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-ready .fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================
   MOBILE QUICK-ACTION BAR (shown on phones only)
   ============================================ */
.mobile-action-bar { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-block-inner { grid-template-columns: 1fr; gap: 2rem; }
  .coverage-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  /* Topbar — phone only, hide email + social on small screens */
  .topbar-center { display: none; }
  .topbar-right { display: none; }
  .topbar-left a:not([href^="tel"]) { display: none; }

  /* ── Mobile nav panel — full-screen overlay ── */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    overflow-y: auto;
    box-shadow: none;
    z-index: 200;
  }
  .nav-links.open { display: flex; }

  /* Logo + close bar pinned at top of panel */
  .mobile-nav-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 1.25rem;
    height: 70px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    flex-shrink: 0;
  }
  /* Force the close button visible and correctly sized inside the bar */
  .mobile-nav-bar .nav-toggle {
    display: flex;
    flex-shrink: 0;
    position: static;
    padding: 0.6rem;
  }
  /* Scroll area starts below the bar */
  .nav-links > li:not(.mobile-nav-bar) {
    padding: 0 1rem;
  }

  /* Every top-level link */
  .nav-links > li:not(.mobile-nav-bar) {
    border-bottom: 1px solid var(--border);
  }
  .nav-links > li:last-child { border-bottom: none; }

  .nav-links a {
    display: flex;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    background: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: none;
    color: var(--brand);
  }

  /* Book Now CTA — full width pill at bottom */
  .nav-links > li:last-child { border-bottom: none; margin-top: 1rem; }
  .nav-links .nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  /* ── Mobile Services accordion ── */
  .nav-has-dropdown { width: 100%; }
  .nav-has-dropdown .nav-dropdown-toggle {
    width: 100%;
    align-items: stretch;
  }
  /* Text link takes the ~80% tap zone */
  .nav-has-dropdown .nav-dropdown-link {
    flex: 1;
    padding: 1rem 0.5rem;
  }
  /* Chevron button takes the ~20% tap zone */
  .nav-has-dropdown .nav-chevron-btn {
    padding: 1rem 0.75rem;
    border-left: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: #f7f9fc;
    margin: 0;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown::after { display: none; }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-has-dropdown.open .nav-chevron { transform: rotate(180deg); }
  .nav-has-dropdown.open .nav-chevron-btn { color: var(--brand); }

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    padding: 0.5rem 0.75rem 0.75rem;
    gap: 0;
  }
  .nav-dropdown-col {
    padding: 0.75rem 0 0.25rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown-col:last-child { border-bottom: none; padding-bottom: 0; }

  .nav-dropdown-heading {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.35rem;
  }
  .nav-dropdown-col a {
    padding: 0.45rem 0.5rem;
    font-size: 0.875rem;
  }
  .nav-dropdown-footer {
    background: none;
    padding: 0.6rem 0.75rem 0.85rem;
    border-top: 1px solid var(--border);
  }

  .nav-toggle { display: flex; }

  .hero { min-height: 460px; }
  .hero-content { padding: 3.5rem 1.25rem; }
  /* on narrow screens the image spans full width and fades from the top
     so the text stays readable */
  .hero-bg {
    left: 0;
    opacity: 0.18;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 60%);
  }

  /* Trust bar → horizontal swipe row on mobile */
  .trust-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex: 0 0 auto; scroll-snap-align: start; }
  .trust-divider { display: none; }

  .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Services → horizontal swipe carousel on mobile */
  .services-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 2rem -1.25rem 0;
    padding: 0.25rem 1.25rem;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .testimonials-grid { grid-template-columns: 1fr; }

  .info-grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .team-owners { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .pillars { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .coverage-cards { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .coverage-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .coverage-divider { display: none; }
  /* "We Accept" tags → horizontal swipe row on mobile, left-aligned with the label */
  .coverage-tags {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    /* right padding lets the last pill clear the edge; trailing space hints at scroll */
    padding: 2px 1.5rem 6px 0;
  }
  .coverage-tags::-webkit-scrollbar { display: none; }
  .coverage-tag { flex: 0 0 auto; scroll-snap-align: start; }

  /* Floating quick-action bar — call + book, phones only */
  .mobile-action-bar {
    display: flex;
    gap: 0.6rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }
  .mab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
  }
  .mab-call {
    background: var(--white);
    color: var(--brand);
    border: 1.5px solid var(--brand);
  }
  .mab-book {
    background: var(--gold);
    color: var(--white);
    border: 1.5px solid var(--gold);
  }
  /* keep the bar from covering the bottom of the page (only pages that have it) */
  body:has(.mobile-action-bar) { padding-bottom: 4.75rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .coverage-cards { grid-template-columns: 1fr; }
  /* keep the trust bar as a horizontal swipe row (set up at ≤768) */
  .trust-bar-inner { gap: 1.5rem; }
  .techniques-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SERVICE SUB-PAGES
   ============================================ */
.service-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,148,58,0.1) 0%, transparent 70%);
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.service-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.service-body { padding: 4rem 1.5rem; }
.service-body-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: start;
}

/* Prose */
.service-prose h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.75rem;
}
.service-prose h2:first-child { margin-top: 0; }
.service-prose h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin: 1.75rem 0 0.5rem;
}
.service-prose p {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.service-prose ul {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.service-prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.service-prose ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.service-prose a { color: var(--brand); font-weight: 500; }
.service-prose a:hover { color: var(--gold); }

.info-box {
  background: var(--brand-pale);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.info-box p { font-size: 0.9rem; color: var(--brand); line-height: 1.65; margin: 0; }
.info-box strong { color: var(--brand-dark); }

/* FAQ */
.faq-list { margin: 0.5rem 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.faq-answer { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.sidebar-card .btn:last-of-type { margin-bottom: 0; }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.sidebar-contact-item svg { color: var(--brand); flex-shrink: 0; }
.sidebar-contact-item a { color: var(--brand); font-weight: 500; }
.sidebar-contact-item a:hover { color: var(--gold); }
.sidebar-nav-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.sidebar-nav-links a:hover,
.sidebar-nav-links a.active { background: var(--brand-pale); color: var(--brand); }
.sidebar-nav-links a.active { font-weight: 600; }
.sidebar-nav-links a svg { opacity: 0.4; }

.coverage-pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.coverage-pill {
  background: var(--white);
  border: 1px solid #c4cfe6;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brand);
}

@media (max-width: 900px) {
  .service-body-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-sidebar { position: static; }
}

/* ============================================
   BLOG — Listing Page
   ============================================ */
.blog-hero {
  background: linear-gradient(135deg, var(--brand) 0%, #1a3a5c 100%);
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,148,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.blog-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
}

/* Category filter pills */
.blog-filters {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* Article grid */
.blog-grid-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, #dce4ec 0%, #e8edf5 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fa3b8;
}
.blog-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
/* Category colours */
.cat-condition    { background: #e8f0fb; color: #2a5cad; }
.cat-recovery     { background: #e8f7ee; color: #1e7a42; }
.cat-prevention   { background: #fef3e2; color: #b25c00; }
.cat-insurance    { background: #f3e8fb; color: #6b2aad; }
.cat-clinic       { background: #e8f5fb; color: #0a7090; }

.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  flex: 1;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-card-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-card-meta-dot { color: var(--border); }

/* ============================================
   BLOG — Article Page
   ============================================ */
.article-hero {
  background: var(--brand);
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,148,58,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.article-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 740px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.article-hero-meta .blog-card-category { margin: 0; }
.article-hero-byline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.article-hero-byline strong { color: rgba(255,255,255,0.9); }

/* Article body — prose + sidebar */
.article-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.article-prose {
  min-width: 0;
}
.article-prose h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.25rem 0 0.75rem;
  line-height: 1.25;
}
.article-prose h2:first-child { margin-top: 0; }
.article-prose h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.article-prose p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.article-prose ul,
.article-prose ol {
  margin: 0.5rem 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.article-prose li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.article-prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-prose strong { color: var(--text); }
.article-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  background: #fdfaf3;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.article-prose .info-box {
  margin: 1.75rem 0;
}

/* Author block */
.article-author-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}
.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-pale);
}
.article-author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-author-info { flex: 1; }
.article-author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.article-author-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.article-author-bio {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Related articles */
.related-articles {
  background: #f9f9fb;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}
.related-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.related-articles h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .article-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG — Image Placeholders
   ============================================ */

/* Featured image — full bleed between hero and article body */
.article-featured-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #d0dae8 0%, #e4eaf3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.article-featured-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.article-featured-img .img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 4rem 2rem;
  color: #7a92ab;
  text-align: center;
}
.article-featured-img .img-placeholder-inner svg { opacity: 0.45; }
.article-featured-img .img-placeholder-inner p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7a92ab;
  margin: 0;
}
.article-featured-img .img-placeholder-inner code {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.6);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #4a6a85;
}

/* Inline image placeholder within article prose */
.article-prose .inline-img {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-prose .inline-img img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
}
.article-prose .inline-img .img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #d8e2ed 0%, #e8eef6 100%);
  color: #7a92ab;
  text-align: center;
}
.article-prose .inline-img .img-placeholder-inner svg { opacity: 0.4; }
.article-prose .inline-img .img-placeholder-inner p {
  font-size: 0.78rem;
  color: #7a92ab;
  margin: 0;
  line-height: 1.5;
}
.article-prose .inline-img .img-placeholder-inner code {
  font-size: 0.72rem;
  background: rgba(255,255,255,0.55);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  color: #4a6a85;
}
.inline-img figcaption {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  background: #f7f9fb;
  border-top: 1px solid var(--border);
  font-style: italic;
  text-align: center;
}
