/* ============================================================
   CHOICE FAMILY PRIMARY CARE & URGENT CARE
   Design System — Earthy Blue / Spokane Pacific NW
   ============================================================ */

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

/* ── Variables ───────────────────────────────────────────── */
:root {
  --blue:         #264B73;   /* earthy muted steel blue — primary */
  --blue-dark:    #183550;   /* deep navy */
  --blue-mid:     #2D5A8A;   /* mid blue */
  --blue-light:   #EBF2FA;   /* pale blue tint */
  --copper:       #B07840;   /* warm amber — from Spokane sunset */
  --copper-light: #C8955A;
  --copper-pale:  #F5EBD8;
  --cream:        #F4EFE6;   /* warm parchment */
  --cream-dark:   #EAE3D8;
  --dark:         #18253A;   /* near-black, blue undertone */
  --dark-mid:     #243045;
  --sage:         #4A7259;   /* Pacific NW forest green */
  --sage-light:   #EEF4EF;
  --stone:        #7B6E62;   /* warm neutral */
  --stone-light:  #F0EBE5;
  --text:         #374151;
  --text-light:   #6B7280;
  --heading:      #1C2B3A;
  --white:        #FFFFFF;
  --border:       #E5DDD3;

  --radius-sm:    5px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow:       0 2px 16px rgba(24, 37, 58, 0.07);
  --shadow-md:    0 6px 32px rgba(24, 37, 58, 0.10);
  --shadow-lg:    0 16px 48px rgba(24, 37, 58, 0.15);

  --max-width:    1160px;
  --nav-height:   76px;
  --transition:   0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--heading);
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p  { line-height: 1.72; font-weight: 400; }
strong, b { font-weight: 700; }
em { font-style: italic; }

.text-copper   { color: var(--copper); }
.text-blue     { color: var(--blue); }
.text-sage     { color: var(--sage); }
.text-white    { color: var(--white); }
.text-light    { color: var(--text-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(176, 120, 64, 0.35);
}
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 120, 64, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(38, 75, 115, 0.3);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(24, 37, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  padding: 5px 10px;
  border-radius: 5px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav__logo:hover { background: rgba(255,255,255,1); }
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav__logo-primary, .nav__logo-sub { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__link:hover { color: var(--white); }
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__mobile-toggle { display: none; }
.nav__mobile-menu { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero--loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 30, 50, 0.82) 0%,
    rgba(24, 48, 78, 0.72) 50%,
    rgba(18, 30, 50, 0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176, 120, 64, 0.25);
  border: 1px solid rgba(176, 120, 64, 0.5);
  color: var(--copper-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.hero__subheadline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero__promise {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero__promise-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
}
.hero__promise-dot {
  color: var(--copper);
  margin: 0 12px;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.7;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 5px;
}
.trust-item__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.15;
  display: block;
  letter-spacing: -0.02em;
}
.trust-item__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
}

/* ── Problem Section ─────────────────────────────────────── */
.problem {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.problem__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/spokane-night.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.problem__content {
  position: relative;
  z-index: 2;
}
.problem h2 { color: var(--white); }
.problem__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.problem__sequence {
  max-width: 680px;
  margin: 4rem auto 0;
}
.problem__beat {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.problem__beat:last-child { border-bottom: none; }
.problem__beat-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 1rem;
}
.problem__beat-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.problem__beat-note {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-style: italic;
}

/* ── Relatable Moment ────────────────────────────────────── */
.moment {
  background: var(--cream);
}
.moment__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.moment__narrative {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.9;
  color: var(--heading);
  margin-bottom: 2rem;
}
.moment__narrative strong {
  color: var(--blue);
  font-weight: 700;
}
.moment__conclusion {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.moment__conclusion strong { color: var(--copper); }

/* ── Guide / About ───────────────────────────────────────── */
.guide {
  background: var(--white);
}
.guide__text { padding-right: 40px; }
.guide__headline { margin-bottom: 1.5rem; }
.guide__empathy {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.guide__bullets {
  margin-bottom: 2rem;
}
.guide__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.guide__bullet-dot {
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.guide__bullet-dot svg { width: 10px; height: 10px; }
.guide__bullet p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading);
}
.guide__positioning {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 4px solid var(--copper);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.guide__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
}
.provider-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.provider-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-card__initials {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.provider-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}
.provider-card__cred {
  font-size: 0.78rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Plan Steps ──────────────────────────────────────────── */
.plan {
  background: var(--cream);
}
.plan__steps { margin-top: 3rem; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(38, 75, 115, 0.3);
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--border);
  align-self: center;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
  background: var(--white);
}
.pricing__card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(176, 120, 64, 0.15);
  border-radius: 50%;
}
.pricing__card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(38, 75, 115, 0.3);
  border-radius: 50%;
}
.pricing__card-inner { position: relative; z-index: 2; }
.pricing__price-block {
  margin: 1.5rem 0;
}
.pricing__price {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing__price sup {
  font-size: 1.8rem;
  vertical-align: super;
  font-weight: 700;
}
.pricing__price-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.pricing__family {
  background: rgba(176, 120, 64, 0.2);
  border: 1px solid rgba(176, 120, 64, 0.4);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 1.5rem 0;
  text-align: left;
}
.pricing__family-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 10px;
  display: block;
}
.pricing__family-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 5px 0;
}
.pricing__family-cap {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
  padding-top: 8px;
  text-align: center;
  font-style: italic;
}
.pricing__features {
  margin: 1.5rem 0;
  text-align: left;
}
.pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.pricing__feature:last-child { border-bottom: none; }
.pricing__check {
  width: 18px;
  height: 18px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
  flex-shrink: 0;
}
.pricing__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Transformation ──────────────────────────────────────── */
.transformation {
  background: linear-gradient(135deg, #2A3F2E 0%, #1E3024 100%);
  position: relative;
  overflow: hidden;
}
.transformation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/spokane-autumn.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.transformation__inner { position: relative; z-index: 2; }
.transformation h2 { color: var(--white); }
.transformation__lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.transform-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
}
.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.transform-item:last-child { border-bottom: none; }
.transform-item__check {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(110,231,183,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.transform-item__check::after {
  content: '';
  width: 7px;
  height: 7px;
  background: rgba(110,231,183,0.8);
  border-radius: 50%;
}
.transform-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.transformation__identity {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.transformation__identity strong {
  color: var(--white);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ── Avoid / Failure ─────────────────────────────────────── */
.avoid {
  background: var(--dark-mid);
  padding: 64px 0;
}
.avoid__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.avoid__text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.avoid__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.avoid__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.avoid__x {
  width: 18px;
  height: 1.5px;
  background: rgba(239, 68, 68, 0.5);
  flex-shrink: 0;
  margin-top: 11px;
  border-radius: 1px;
}
.avoid__closing {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  font-style: italic;
}
.avoid__cta { flex-shrink: 0; }

/* ── Comparison Table ────────────────────────────────────── */
.comparison {
  background: var(--cream);
}
.comparison__table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison__table th {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
}
.comparison__table th:first-child {
  background: var(--cream-dark);
  color: var(--text-light);
  width: 32%;
}
.comparison__table th:nth-child(2) {
  background: var(--stone-light);
  color: var(--stone);
  width: 34%;
}
.comparison__table th:nth-child(3) {
  background: var(--blue);
  color: var(--white);
  width: 34%;
}
.comparison__table td {
  padding: 15px 24px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.comparison__table tr:nth-child(even) td { background: rgba(244, 239, 230, 0.5); }
.comparison__table tr:hover td { background: rgba(38, 75, 115, 0.04); }
.comparison__table td:first-child {
  font-weight: 600;
  color: var(--heading);
}
.comparison__table td:nth-child(2) {
  color: var(--text-light);
}
.comparison__table td:nth-child(3) {
  color: var(--blue);
  font-weight: 600;
}
.comparison__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.check-yes { color: var(--sage); }
.check-no  { color: #ef4444; }

/* ── Why Choice (Anti-Corporate) ────────────────────────── */
.why-choice {
  background: var(--white);
}
.why-choice__list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}
.why-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.why-row:hover { background: var(--cream); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
.why-row__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}
.why-row__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  padding-top: 4px;
}
.why-row__body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Full Provider Section ───────────────────────────────── */
.team {
  background: var(--cream);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.team__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.team__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team__photo {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__photo-initials {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.04em;
}
.team__info { padding: 20px; }
.team__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}
.team__cred {
  font-size: 0.8rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.team__bio {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--white);
}
.faq__intro {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-style: italic;
}
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item.open {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  background: var(--white);
  transition: background var(--transition);
}
.faq__item.open .faq__question {
  background: var(--blue-light);
  color: var(--blue);
}
.faq__toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq__item.open .faq__toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
}
.faq__item.open .faq__answer { display: block; }
.faq__answer strong { color: var(--heading); }
.faq__answer ul {
  margin: 8px 0 8px 16px;
  list-style: disc;
}
.faq__answer li { margin-bottom: 5px; }

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/pavilion-autumn.jpg');
  background-size: cover;
  background-position: center;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 30, 50, 0.87), rgba(24, 48, 78, 0.82));
}
.final-cta__inner {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}
.final-cta__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.final-cta__reassurance {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ── Location Badge ──────────────────────────────────────── */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-pale);
  border: 1px solid rgba(176, 120, 64, 0.25);
  color: var(--copper);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ── Section Intro ───────────────────────────────────────── */
.section-intro {
  max-width: 580px;
  margin: 0 auto 1rem;
  text-align: center;
}
.section-intro + * { margin-top: 1.5rem; }
.section-intro p {
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ── Inline Alert/Banner ─────────────────────────────────── */
.alert-bar {
  background: var(--copper);
  color: var(--white);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.alert-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--white);
}

/* ── SEO Page Hero ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Content Blocks ──────────────────────────────────────── */
.content-block { margin-bottom: 3rem; }
.content-block h2, .content-block h3 { margin-bottom: 1rem; }
.content-block p { margin-bottom: 1rem; color: var(--text); line-height: 1.75; }
.content-block ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: disc;
}
.content-block li { margin-bottom: 8px; color: var(--text); }

.split-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Sidebar Sticky CTA ──────────────────────────────────── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 96px;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.sidebar-cta p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.65; }
.sidebar-cta .btn { width: 100%; margin-bottom: 10px; }
.sidebar-cta__address {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── Symptom Tags ────────────────────────────────────────── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5rem 0;
}
.tag {
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h4 { margin-bottom: 6px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ── Two Paths ───────────────────────────────────────────── */
.two-paths {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.two-paths__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.two-paths__path {
  padding: 40px 36px;
}
.two-paths__path--member {
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue-dark) 100%);
}
.two-paths__path--insurance {
  background: var(--white);
}
.two-paths__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.two-paths__tag--member {
  background: var(--copper);
  color: var(--white);
}
.two-paths__tag--insurance {
  background: var(--blue-light);
  color: var(--blue);
}
.two-paths__path--member h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.two-paths__path--insurance h3 {
  color: var(--heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.two-paths__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.two-paths__price span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.two-paths__price-cap {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.two-paths__list {
  margin-bottom: 2rem;
}
.two-paths__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.two-paths__list li:last-child { border-bottom: none; }
.two-paths__list-check {
  width: 16px;
  height: 16px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
  flex-shrink: 0;
}
.two-paths__desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.two-paths__insurers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2rem;
}
.two-paths__ins-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.two-paths__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  background: var(--cream);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .two-paths__grid {
    grid-template-columns: 1fr;
  }
  .two-paths__divider {
    writing-mode: horizontal-tb;
    padding: 16px;
    width: auto;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Employer Industry Grid ──────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.industry-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all var(--transition);
}
.industry-card:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.industry-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.industry-card__text { }
.industry-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-bottom: 2px;
}
.industry-card__sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  display: block;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__link:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: var(--white); }
.footer__insurance {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.footer__ins-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__disclaimer {
  max-width: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team__grid    { grid-template-columns: repeat(2, 1fr); }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split-content { grid-template-columns: 1fr; }
  .sidebar-cta   { position: static; }
  .why-choice__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .why-row { grid-template-columns: 60px 1fr; }
  .why-row__body { grid-column: 2; }
  .why-row:hover { margin: 0; padding-left: 0; padding-right: 0; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__ctas   { gap: 8px; }
  .nav__ctas .btn { padding: 9px 14px; font-size: 0.78rem; }
  .nav__ctas .btn-secondary { display: none; }
  .why-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .why-row__num { font-size: 2rem; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__ctas    { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; text-align: center; }

  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .grid-2        { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .problem__cards { grid-template-columns: 1fr; }
  .transform-items { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .industry-grid { grid-template-columns: 1fr; }
  .why-choice__grid { grid-template-columns: 1fr; }
  .team__grid    { grid-template-columns: repeat(2, 1fr); }

  .avoid__inner  { flex-direction: column; }
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .pricing__card { padding: 32px 24px; }

  .guide__text { padding-right: 0; }
  .guide__visual { grid-template-columns: repeat(2, 1fr); }
}

/* ── Booking Modal ──────────────────────────────────────── */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.booking-modal.open { display: flex; }
.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.booking-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 14px;
  width: min(880px, 96vw);
  height: min(760px, 92vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.45);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}
.booking-modal__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking-modal__title .eyebrow { margin: 0; }
.booking-modal__title h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--dark);
}
.booking-modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.booking-modal__close:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue-light);
}
.booking-modal__body {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.booking-modal__body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .booking-modal__panel { width: 100vw; height: 100dvh; border-radius: 0; }
  .booking-modal__header { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .trust-item:last-child { border-bottom: none; }
  .team__grid { grid-template-columns: 1fr; }
  .guide__visual { grid-template-columns: repeat(2, 1fr); }
  .hero__pills { gap: 8px; }
  .hero__pill { font-size: 0.78rem; padding: 6px 12px; }
}
