/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Palette — PCCD Gold */
  --accent:  #d9a159;
  --deep:    #201400;
  --primary: #151d28;
  --mid:     #b9823c;
  --wash:    #faf6ef;
  --cream:   #f3ebe0;
  --paper:   #ffffff;

  /* Typography */
  --font-headline: 'Figtree', system-ui, sans-serif;
  --font-body:     'Figtree', system-ui, sans-serif;
  --font-quote:    'Figtree', system-ui, sans-serif;
  --weight-headline: 800;

  /* Package 1 — headline color rule */
  --headline-color: var(--ink);
  --accent-color:   var(--primary);

  /* Ink */
  --ink:       #1C1917;
  --ink-light: #78716C;
  --ink-faint: #D6D3D1;

  /* Font sizes — editable via chat */
  --size-hero:      44px;
  --size-h1:        clamp(2.4rem, 5vw, 4rem);
  --size-h2:        clamp(1.8rem, 3.5vw, 2.8rem);
  --size-statement: 26px;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Layout */
  --max-w:    1200px;
  --radius:   10px;
  --radius-lg: 18px;
}

/* ── BASE TYPOGRAPHY ─────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  color: var(--headline-color);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 65ch; }

/* Package 1 — accent em in headlines */
em.accent {
  font-style: normal;
  color: var(--primary);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--wash   { background: var(--wash); }
.section--cream  { background: var(--cream); }
.section--paper  { background: var(--paper); }
.section--deep   { background: var(--paper); }
.section--primary { background: var(--paper); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: white;
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--white {
  background: white;
  color: var(--primary);
}
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

/* ── PHOTO PLACEHOLDERS ──────────────────────────────────── */
.photo-ph {
  background: var(--cream);
  border: 2px dashed var(--wash);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.photo-ph__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: var(--ink-light);
}
.photo-ph__inner svg { opacity: 0.5; }
.photo-ph__inner span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 200px;
}

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}
.section--deep .section-eyebrow,
.section--primary .section-eyebrow {
  color: var(--primary);
}

/* ── MISSING DATA FLAG ───────────────────────────────────── */
/* Applied to any field requiring real practice data not yet provided */
.needs-data {
  color: #E3000F !important;
  font-style: italic !important;
  font-weight: 600 !important;
  border-bottom: 2px dashed #E3000F;
  padding-bottom: 1px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .anim.in {
    opacity: 1;
    transform: none;
  }
  .anim-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .anim-up.in { opacity: 1; transform: none; }

  .anim-delay-1 { transition-delay: 0.08s; }
  .anim-delay-2 { transition-delay: 0.16s; }
  .anim-delay-3 { transition-delay: 0.24s; }
  .anim-delay-4 { transition-delay: 0.32s; }
  .anim-delay-5 { transition-delay: 0.40s; }
  .anim-delay-6 { transition-delay: 0.48s; }
}

/* ── RESPONSIVE UTILITIES ────────────────────────────────── */
.hide-mobile  { display: none !important; }
.hide-desktop { display: none !important; }

@media (max-width: 480px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 3.5rem;
  }
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 1.8rem); }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  3rem;
    --space-2xl: 4.5rem;
  }
  .hide-mobile  { display: none !important; }
  .show-mobile  { display: block !important; }
  .hide-desktop { display: block !important; }

  /* Two-col grids collapse to single column */
  [class*="__grid"],
  [class*="__inner"] {
    grid-template-columns: 1fr !important;
  }

  /* Stat rows collapse */
  [class*="stat-row"],
  [class*="__stats"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Wide padding collapses */
  [class*="__inner"],
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
  .show-mobile  { display: none !important; }
}


/* ── M01: STICKY NAV ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  background: var(--paper);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--ink-faint);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 64px;
}
.nav__logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo { height: 40px; width: auto; display: block; }
.nav__wordmark {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.15s;
  padding-bottom: 3px;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.nav-active {
  color: var(--ink);
  border-bottom: 1.5px solid var(--primary);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}
.nav__phone:hover { color: var(--primary); }
.nav__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  background: var(--accent);
  color: #111110;
  padding: 10px 22px;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--primary); color: var(--paper); }

/* ── Hamburger (mobile only) ─────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ───────────────────────────────────────── */
.nav__drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-faint);
  z-index: 99;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-light);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-faint);
  transition: color 0.15s;
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover { color: var(--ink); }
.nav__drawer-phone {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-faint);
}
.nav__drawer-cta {
  display: block;
  background: var(--accent);
  color: #111110 !important;
  font-weight: 600 !important;
  text-align: center;
  padding: 14px 24px !important;
  margin-top: 12px;
  border-bottom: none !important;
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 20px; }
  .nav__links  { display: none; }
  .nav__phone  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
}



/* ── M02-B: HERO, TWO-COLUMN SPLIT ──────────────────────── */
.hero-split {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.hero-split__location {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 20px;
}
.hero-split__headline {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--headline-color);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 22px;
}
.hero-split__headline em { font-style: normal; color: var(--primary); }
.hero-split__subline {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-split__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--accent);
  padding: 14px 26px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.hero-split__cta:hover { background: var(--primary); color: var(--paper); }
.hero-split__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-faint);
}
.hero-split__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-split__stat-num {
  font-family: var(--font-quote);
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-split__stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-light);
}
.hero-split__photo {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-split__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-split__photo-ph {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__text { padding: 56px 24px; order: 2; }
  .hero-split__photo { aspect-ratio: 4 / 3; order: 1; }
}



/* ── STAT CALLOUT STRIP, mixed-typography stats (v1.5 NEW-A) ── */
.stat-strip {
  background: var(--wash, #F0EFED);
  padding: 64px 80px;
  display: flex;
  justify-content: center;
}
.stat-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  flex-wrap: wrap;
}
.stat-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.stat-strip__number {
  font-family: var(--font-quote, "DM Serif Display"), Georgia, serif;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--ink, #111110);
}
.stat-strip__label {
  font-family: var(--font-body, Inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid-warm, #6B6560);
}

/* Mobile: stack vertically with tighter spacing */
@media (max-width: 1023px) {
  .stat-strip { padding: 48px 32px; }
  .stat-strip__inner { gap: 48px; }
  .stat-strip__number { font-size: 64px; }
}
@media (max-width: 767px) {
  .stat-strip { padding: 40px 24px; }
  .stat-strip__inner {
    flex-direction: column;
    gap: 32px;
  }
  .stat-strip__number { font-size: 56px; }
}



/* ── OFFER CARD, image-driven promo (v1.5 NEW-A.4) ─────── */
.offer-card {
  background: var(--paper, #F7F7F5);
  padding: 80px;
  display: flex;
  justify-content: center;
}
.offer-card__inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.offer-card__image {
  flex: 0 0 656px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--photo-warm, #E8E0D5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card__image img { width: 100%; height: 100%; object-fit: cover; }
.offer-card__image-ph {
  font-family: var(--font-body, Inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light, #7A6E5C);
  text-align: center;
  line-height: 1.6;
}
.offer-card__text {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer-card__eyebrow {
  font-family: var(--font-body, Inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light, #7A6E5C);
}
.offer-card__title {
  font-family: var(--font-headline, Inter);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--ink, #111110);
  margin: 0;
}
.offer-card__body {
  font-family: var(--font-body, Inter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mid, #4A5080);
  margin: 0;
}
.offer-card__valid {
  font-family: var(--font-body, Inter);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #111110);
  margin: 0;
}
.offer-card__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.offer-card__cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent, #0B5394);
  color: #FFFFFF;
  font-family: var(--font-body, Inter);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 200ms ease-out;
}
.offer-card__cta:hover { opacity: 0.92; }
.offer-card__phone {
  font-family: var(--font-body, Inter);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent, #0B5394);
  text-decoration: none;
}
.offer-card__phone:hover { text-decoration: underline; }

/* Mobile: stack image above text */
@media (max-width: 1023px) {
  .offer-card { padding: 64px 32px; }
  .offer-card__inner {
    flex-direction: column;
    gap: 32px;
  }
  .offer-card__image,
  .offer-card__text {
    flex: 1 1 auto;
    width: 100%;
  }
  .offer-card__image {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 767px) {
  .offer-card { padding: 48px 24px; }
  .offer-card__title { font-size: 28px; }
  .offer-card__cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}



/* ── BENEFIT LIST GRID, 3-col bullet grid (v1.5 NEW-A) ─── */
.benefit-grid {
  background: var(--paper, #F7F7F5);
  padding: 80px;
  display: flex;
  justify-content: center;
}
.benefit-grid__inner {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.benefit-grid__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.benefit-grid__eyebrow {
  font-family: var(--font-body, Inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light, #7A6E5C);
}
.benefit-grid__headline {
  font-family: var(--font-headline, Inter);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--ink, #111110);
  margin: 0;
}
.benefit-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.benefit-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.benefit-grid__bullet {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, #0B5394);
  margin-top: 9px;
}
.benefit-grid__text {
  font-family: var(--font-body, Inter);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink, #111110);
}

@media (max-width: 1023px) {
  .benefit-grid { padding: 64px 32px; }
  .benefit-grid__list {
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .benefit-grid { padding: 48px 24px; }
  .benefit-grid__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefit-grid__headline { font-size: 26px; }
}





/* ── FINANCING CALLOUT, service-detail variant of M17 (v1.5 NEW-A) ── */
.financing-callout {
  background: var(--paper, #F7F7F5);
  padding: 64px 80px;
  display: flex;
  justify-content: center;
}
.financing-callout__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  max-width: 1024px;
  width: 100%;
}
.financing-callout__text {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.financing-callout__eyebrow {
  font-family: var(--font-body, Inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light, #7A6E5C);
}
.financing-callout__headline {
  font-family: var(--font-headline, Inter);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--ink, #111110);
  margin: 0;
}
.financing-callout__body {
  font-family: var(--font-body, Inter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mid, #4A5080);
  margin: 0;
}
.financing-callout__cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent, #0B5394);
  color: #FFFFFF;
  font-family: var(--font-body, Inter);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  align-self: flex-start;
  transition: opacity 200ms ease-out;
}
.financing-callout__cta:hover { opacity: 0.92; }
.financing-callout__partner {
  flex: 0 0 400px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.financing-callout__partner-eyebrow {
  font-family: var(--font-body, Inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light, #7A6E5C);
}
.financing-callout__partner-name {
  font-family: var(--font-headline, Inter);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink, #111110);
}
.financing-callout__partner-tagline {
  font-family: var(--font-body, Inter);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid, #4A5080);
  margin: 0;
}
.financing-callout__partner-link {
  font-family: var(--font-body, Inter);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #0B5394);
  text-decoration: none;
  margin-top: 4px;
}
.financing-callout__partner-link:hover { text-decoration: underline; }

@media (max-width: 1023px) {
  .financing-callout { padding: 48px 32px; }
  .financing-callout__inner { flex-direction: column; gap: 32px; }
  .financing-callout__text,
  .financing-callout__partner { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 767px) {
  .financing-callout { padding: 40px 24px; }
  .financing-callout__headline { font-size: 24px; }
}



/* ── M09-C: FAQ, GROUPED ACCORDION ──────────────────────── */
.faq {
  background: var(--paper);
  padding: 80px 72px;
  border-top: 1px solid var(--ink-faint);
}
.faq__header {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.faq__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.faq__headline {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--headline-color);
}
.faq__headline em {
  font-style: normal;
  color: var(--primary);
}
.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.faq__groups {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 96px;
}
.faq__group-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  background: none;
  border: none;
  text-align: left;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.faq__group-btn:hover { color: var(--ink); background: var(--wash); }
.faq__group-btn.active {
  color: var(--ink);
  font-weight: 700;
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}
.faq__panels {}
.faq__panel { display: none; }
.faq__panel.active { display: block; }
.faq__item {
  border-top: 1px solid var(--ink-faint);
}
.faq__item:last-child { border-bottom: 1px solid var(--ink-faint); }
.faq__btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  gap: 24px;
}
.faq__q {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq__icon {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
  user-select: none;
}
.faq__icon.open { transform: rotate(45deg); }
.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__body.open { max-height: 400px; }
.faq__a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.75;
  padding-bottom: 24px;
}
.faq__footer {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.faq__footer-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
}
.faq__footer-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.faq__footer-cta:hover { opacity: 0.88; }

@media (max-width: 900px) {
  .faq { padding: 56px 24px; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }
  .faq__groups { flex-direction: row; flex-wrap: wrap; position: static; }
  .faq__footer { flex-direction: column; align-items: flex-start; }
}



/* ── M07: FOOTER CTA ────────────────────────────────────── */
.cta-band {
  background: var(--paper);
  padding: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-top: 1px solid var(--ink-faint);
}
.cta-band__headline {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.04em;
  max-width: 560px;
}
.cta-band__headline em {
  font-style: normal;
  color: var(--primary);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cta-band__primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  background: var(--accent);
  padding: 14px 28px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.cta-band__primary:hover { opacity: 0.8; }
.cta-band__secondary {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: none;
  text-align: center;
  transition: color 0.15s;
}
.cta-band__secondary:hover { color: var(--ink); }

@media (max-width: 768px) {
  .cta-band {
    padding: 64px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .cta-band__actions { width: 100%; }
  .cta-band__primary { text-align: center; }
}



/* ── M08: FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--ink-faint);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.footer__logo-link { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer__logo { height: 32px; width: auto; display: block; }
.footer__wordmark {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  transition: color 0.15s;
  text-decoration: none;
}
.footer__social a:hover { color: var(--ink-light); }
.footer__location {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  max-width: none;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ── Paid LP additions: booking block + sticky mobile bar ── */
.book { background: var(--cream); padding: 88px 64px; }
.book__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.book__eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.book__headline { font-family: var(--font-headline); font-size: clamp(28px,3.2vw,42px); line-height: 1.1; color: var(--ink); margin: 0 0 18px; }
.book__body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; max-width: 46ch; }
.book__phone { font-family: var(--font-body); font-size: 16px; color: var(--ink); margin: 0 0 8px; }
.book__phone a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.book__note { font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); margin: 0; }
.book__form { background: var(--paper); border: 1px solid var(--ink-faint); border-radius: 14px; padding: 28px; }
.book__field { margin-bottom: 16px; display: flex; flex-direction: column; }
.book__field label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.book__field input, .book__field select { font-family: var(--font-body); font-size: 16px; padding: 13px 14px; border: 1px solid var(--ink-faint); border-radius: 8px; background: var(--paper); color: var(--ink); width: 100%; }
.book__field input:focus, .book__field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,161,89,.22); }
.book__err { display: none; font-family: var(--font-body); font-size: 12.5px; color: #b0473f; margin-top: 6px; }
.book__field.is-error input { border-color: #b0473f; }
.book__field.is-error .book__err { display: block; }
.book__submit { width: 100%; font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #fff; background: var(--accent); border: 0; border-radius: 999px; padding: 16px 20px; cursor: pointer; }
.book__submit:hover { filter: brightness(.95); }
.book__submit[disabled] { opacity: .6; cursor: progress; }
.book__micro { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-faint); text-align: center; margin: 12px 0 0; }
.book__success { display: none; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #2e7d5b; text-align: center; margin: 14px 0 0; }
.book.is-sent .book__success { display: block; }
/* mobile: text and CTA above the fold, photo below (78.5% of traffic is mobile) */
@media (max-width: 860px) {
  .hero-split { display: flex; flex-direction: column; min-height: 0; }
  .hero-split__text { order: 1; padding: 30px 20px 26px; }
  .hero-split__photo { order: 2; min-height: 280px; }
  .hero-split__headline { font-size: clamp(30px,8vw,40px); }
}
/* paid LP: no nav links, so the hamburger is dead weight and overflows */
.nav__hamburger, .nav__right .nav__hamburger { display: none !important; }
.promo-bar, .promo-bar * { white-space: normal !important; overflow-wrap: anywhere; }
.mbar { display: none; }
@media (max-width: 860px) {
  .book { padding: 56px 20px 96px; }
  .book__inner { grid-template-columns: 1fr; gap: 28px; }
  .mbar { display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--ink-faint); }
  .mbar a { font-family: var(--font-body); font-size: 15px; font-weight: 700; text-align: center; padding: 14px 10px; border-radius: 999px; text-decoration: none; }
  .mbar__call { color: var(--ink); border: 1.5px solid var(--ink); }
  .mbar__book { color: #fff; background: var(--accent); }
  body { padding-bottom: 76px; }
}
