/* ── 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 — Tangerine */
  --deep:    #7D3500;
  --primary: #FF6B35;
  --mid:     #FF9A76;
  --wash:    #FFC2AC;
  --cream:   #FFF3EE;
  --paper:   #FFF8F6;

  /* Typography */
  --font-headline: 'Sora', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-quote:    'Lora', serif;
  --weight-headline: 800;

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

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

  /* 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: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
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(--deep); color: white; }
.section--primary { background: var(--primary); color: white; }

/* ── 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: rgba(255,255,255,0.7);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .anim.in {
    opacity: 1;
    transform: none;
  }
  .anim-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .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 ────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-xl:  3.5rem;
    --space-2xl: 5rem;
  }
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { 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%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.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: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}
.nav__phone:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav__cta:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone  { display: none; }
}



/* ── M02-E: HERO — COMPACT ROUNDED PHOTO ─────────────────── */
.hero {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  align-items: center;
}
.hero__text {
  padding: 64px 56px 64px 72px;
}
.hero__location {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: block;
}
.hero__headline {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero__headline em {
  font-style: normal;
  color: var(--ink);
}
.hero__subline {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 42ch;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__cta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.hero__cta:hover { opacity: 0.88; }
.hero__phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.15s;
}
.hero__phone:hover { color: var(--ink); }
.hero__photo {
  padding: 40px 56px 40px 24px;
}
.hero__photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--wash);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__photo-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 20px;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__text {
    padding: 48px 24px 32px;
    order: 2;
  }
  .hero__photo {
    padding: 32px 24px 0;
    order: 1;
  }
}



/* ── M03-B: STATEMENT — CENTERED WITH STATS ──────────────── */
.statement {
  background: var(--paper);
  padding: 80px 64px;
  text-align: center;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}
.statement__text {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 780px;
  margin: 0 auto 64px;
}
.statement__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--ink-faint);
  padding-top: 48px;
}
.statement__stat {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.statement__stat:not(:last-child) {
  border-right: 1px solid var(--ink-faint);
}
.statement__stat-num {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 44px;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.statement__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
}

@media (max-width: 768px) {
  .statement { padding: 48px 24px; }
  .statement__stats {
    flex-wrap: wrap;
    gap: 32px;
    border-top: none;
    padding-top: 0;
  }
  .statement__stat {
    padding: 0 24px;
    border-right: none !important;
    width: 45%;
  }
  .statement__text { margin-bottom: 40px; }
}



/* ── M04-G: SERVICE PATHWAYS — PORTRAIT CARDS ────────────── */
.services {
  background: var(--paper);
  padding: 64px 72px 0;
  border-top: 1px solid var(--ink-faint);
}
.services__header {
  margin-bottom: 48px;
}
.services__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.services__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);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.services__card-photo {
  aspect-ratio: 5 / 6;
  width: 100%;
  background: var(--wash);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__card-photo span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 16px;
}
.services__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services__card-title {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
  line-height: 1.15;
}
.services__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
  display: block;
  flex: 1;
  max-width: none;
}
.services__card-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-top: 18px;
  border-top: 1px solid var(--ink-faint);
  padding-top: 16px;
  transition: color 0.15s;
}
.services__card:hover .services__card-link { color: var(--primary); }
.services__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--ink-faint);
  margin-top: 40px;
}
.services__footer-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  max-width: none;
}
.services__all {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 32px;
  transition: color 0.15s;
}
.services__all:hover { color: var(--primary); }

@media (max-width: 768px) {
  .services { padding: 48px 24px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__card-photo { aspect-ratio: 4 / 3; }
  .services__footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services__all { margin-left: 0; }
}



/* ── M05-J: PULL-QUOTE — CENTERED ────────────────────────── */
.reviews {
  background: var(--paper);
  padding: 80px 120px;
  text-align: center;
  border-top: 1px solid var(--ink-faint);
}
.reviews__stars {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 20px;
}
.reviews__pull {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-faint);
  transition: opacity 0.25s ease;
}
.reviews__full {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 28px;
  transition: opacity 0.25s ease;
}
.reviews__attribution {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  transition: opacity 0.25s ease;
}
.reviews__monogram {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.reviews__name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  max-width: none;
}
.reviews__source {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin: 0;
  max-width: none;
}
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-faint);
  max-width: 180px;
  margin: 0 auto 36px;
}
.reviews__nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-light);
  padding: 0;
  line-height: 1;
  transition: color 0.15s;
}
.reviews__nav-btn:hover { color: var(--ink); }
.reviews__counter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.reviews__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews__book {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: 13px 28px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.reviews__book:hover { opacity: 0.88; }
.reviews__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink-faint);
  padding: 13px 28px;
  transition: border-color 0.15s;
}
.reviews__call:hover { border-color: var(--ink-light); }

@media (max-width: 768px) {
  .reviews { padding: 64px 24px; }
}



/* ── M09-B: FAQ — CENTERED ACCORDION ─────────────────────── */
.faq {
  background: var(--paper);
  padding: 64px;
  border-top: 1px solid var(--ink-faint);
}
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  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);
  margin-bottom: 12px;
}
.faq__intro {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.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: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.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;
  max-width: none;
}
.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.faq__cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: 13px 28px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.faq__cta-btn:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .faq { padding: 48px 24px; }
}



/* ── M13-A: LOCATION & HOURS — TWO-COLUMN ────────────────── */
.location {
  background: var(--paper);
  padding: 64px;
  border-top: 1px solid var(--ink-faint);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.location__block-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.location__name {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.location__address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.6;
  max-width: none;
}
.location__directions {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap 0.2s;
}
.location__directions:hover { gap: 10px; }
.location__hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 8px;
  font-family: var(--font-body);
  font-size: 14px;
}
.location__hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.location__hours-day { color: var(--ink); max-width: none; }
.location__hours-time { color: var(--ink-light); }
.location__phone {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
  max-width: none;
}
.location__phone:hover { color: var(--primary); }
.location__map {
  aspect-ratio: 4 / 3;
  background: var(--wash);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location__map-placeholder {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .location {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
}



/* ── M07-B: FOOTER CTA — CENTERED ────────────────────────── */
.cta-band {
  background: var(--paper);
  padding: 100px 64px;
  text-align: center;
  border-top: 1px solid var(--ink-faint);
}
.cta-band__headline {
  font-family: var(--font-headline);
  font-weight: var(--weight-headline);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--headline-color);
  margin-bottom: 36px;
}
.cta-band__headline em {
  font-style: normal;
  color: var(--primary);
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band__primary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  padding: 16px 40px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cta-band__primary:hover { opacity: 0.88; }
.cta-band__secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink-faint);
  padding: 15px 32px;
  transition: border-color 0.15s;
}
.cta-band__secondary:hover { border-color: var(--ink-light); }

@media (max-width: 768px) {
  .cta-band { padding: 64px 24px; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__primary,
  .cta-band__secondary { width: 100%; justify-content: 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__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;
  }
}
