/* ============================================================
   Caring Wings Home Services — caringwings.ca
   Design system: Forest green + warm gold + cream
   Type: Cormorant Garamond (display serif) · DM Sans (body)
   ============================================================ */

:root {
  /* Palette — "Forest & gold" */
  --cream:     #f6f1e9;
  --paper:     #ede6d8;
  --sand:      #e4dbc8;
  --accent:    #b8922a;
  --accent-dk: #9a7a1f;
  --accent-lt: #d4a94a;
  --ink:       #1b3a2d;
  --ink-mid:   #2a5940;
  --ink-lt:    #4a8c65;
  --soft:      #5a5e56;
  --line:      rgba(27, 58, 45, 0.12);

  --cream-90:  rgba(246, 241, 233, 0.9);
  --cream-60:  rgba(246, 241, 233, 0.6);
  --cream-55:  rgba(246, 241, 233, 0.55);
  --cream-50:  rgba(246, 241, 233, 0.5);
  --cream-35:  rgba(246, 241, 233, 0.35);
  --cream-14:  rgba(246, 241, 233, 0.14);
  --cream-10:  rgba(246, 241, 233, 0.1);
  --cream-08:  rgba(246, 241, 233, 0.08);
  --cream-06:  rgba(246, 241, 233, 0.06);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
button { font: inherit; }
img, svg { display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
}
.container--narrow { max-width: 880px; }

/* ── Eyebrow — gold leading line + tracked uppercase ─────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--accent-lt); }

/* ── Display headings ────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.display em {
  font-style: italic;
  color: var(--ink-lt);
}
.display--light { color: var(--cream); }
.display--light em { color: var(--cream-55); }

/* ── Buttons — squared, refined, no pill ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: var(--ink-mid);
  border-color: var(--ink-mid);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--accent);
  color: var(--cream);
  border: 1px solid var(--accent);
}
.btn--gold:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--ink-lt);
  border-radius: 0;
  padding: 4px 0;
}
.btn--ghost:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: none;
  border-bottom: 1px solid rgba(246, 241, 233, 0.4);
  border-radius: 0;
  padding: 4px 0;
}
.btn--ghost-light:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 16px 32px; font-size: 13.5px; }

/* ── Site header / nav ───────────────────────────────────── */
.site-header {
  background: rgba(246, 241, 233, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 9.2px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  transition: color .2s;
  padding: 12px 0 4px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 12px 0 20px;
}
.mobile-nav a {
  display: block;
  padding: 13px 56px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
}
.mobile-nav a.is-active { color: var(--ink); }
.nav-open .mobile-nav { display: block; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* ── HOME · Hero (split) ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--cream);
}
.hero__content {
  padding: 90px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title {
  font-size: clamp(40px, 5.3vw, 68px);
  margin: 28px 0 26px;
}
.hero__lede {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  max-width: 460px;
  margin: 0 0 38px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 6px;
}

.hero__panel {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(246, 241, 233, 0.03);
  border: 1px solid rgba(246, 241, 233, 0.06);
}
.hero__circle--1 { width: 500px; height: 500px; top: -80px; right: -150px; }
.hero__circle--2 { width: 300px; height: 300px; bottom: -60px; left: -80px; }
.hero__art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.16;
  width: 340px;
  height: 340px;
}
.hero__cards {
  position: relative;
  z-index: 2;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 32px;
}
.floating-card {
  background: var(--cream-06);
  border: 1px solid var(--cream-14);
  border-radius: 3px;
  padding: 20px 22px;
  transition: all .3s;
}
.floating-card:hover {
  background: var(--cream-10);
  transform: translateX(-4px);
}
.floating-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.floating-card__icon svg { width: 16px; height: 16px; }
.floating-card__title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.floating-card__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--cream-55);
  font-weight: 300;
}

/* ── HOME · Services grid ────────────────────────────────── */
.section--white { background: #fff; padding: 110px 0; }
.section--paper { background: var(--paper); padding: 110px 0; }
.section--cream { background: var(--cream); }

.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.services__head h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  margin-top: 16px;
  max-width: 540px;
}
.services__head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  max-width: 460px;
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.service-tile {
  background: #fff;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
.service-tile:hover { background: var(--cream); }
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width .35s ease;
}
.service-tile:hover::after { width: calc(100% - 72px); }
.service-tile__num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 22px;
}
.service-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 18px;
  transition: background .25s;
}
.service-tile:hover .service-tile__icon { background: var(--paper); }
.service-tile__icon svg { width: 20px; height: 20px; }
.service-tile h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.service-tile p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
  margin: 0;
}

/* ── HOME · CLBC band ────────────────────────────────────── */
.clbc {
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.clbc__intro {
  padding: 110px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.clbc__intro h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  margin: 18px 0;
}
.clbc__intro h2 em { color: var(--cream-50); }
.clbc__intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-60);
  font-weight: 300;
  max-width: 420px;
  margin: 0 0 36px;
}
.clbc__points {
  background: rgba(0, 0, 0, 0.18);
  padding: 110px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.clbc-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(246, 241, 233, 0.05);
  border: 1px solid var(--cream-10);
  border-radius: 3px;
  transition: background .25s;
}
.clbc-point:hover { background: rgba(246, 241, 233, 0.09); }
.clbc-point::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.clbc-point__title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.clbc-point__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-50);
  font-weight: 300;
}

/* ── HOME · Populations ──────────────────────────────────── */
.populations__head { max-width: 560px; }
.populations__head h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  margin: 16px 0 10px;
}
.populations__head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  margin: 6px 0 0;
}
.pop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.pop-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
  background: #fff;
}
.pop-card:hover { border-color: var(--ink-lt); }
.pop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pop-card:hover::before { transform: scaleX(1); }
.pop-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pop-card__icon svg { width: 26px; height: 26px; }
.pop-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.pop-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
  margin: 0 0 18px;
}
.tag-chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 2px;
}

/* ── HOME · Values ───────────────────────────────────────── */
.values h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  margin: 16px 0 56px;
  max-width: 640px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--cream);
  border-radius: 2px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: all .25s;
}
.value-card:hover {
  border-color: var(--ink-lt);
  transform: translateY(-4px);
}
.value-card__num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
  margin: 0;
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--paper);
  color: var(--ink);
  padding: 110px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin: 18px auto;
  max-width: 720px;
}
.cta-band > .container > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__details {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.contact-detail { text-align: center; }
.contact-detail__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-detail__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream-55);
  padding: 36px 0;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream-90);
}
.site-footer p { font-size: 12.5px; margin: 0; }
.site-footer .footer-loc {
  font-size: 11px;
  color: var(--cream-35);
}

/* ── SERVICES page ───────────────────────────────────────── */
.page-hero { padding: 80px 0 56px; background: var(--cream); }
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 16px;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0;
}
.page-hero__lede {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  margin: 0;
  padding-bottom: 6px;
}

.service-rows {
  padding: 40px 0 110px;
  background: var(--cream);
}
.service-rows__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-row {
  background: #fff;
  border-radius: 3px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line);
}
.service-row--flip .service-row__body { order: 2; }
.service-row--flip .photo { order: 1; }
.service-row__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.service-row__num {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}
.service-row__meta-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.service-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-row__icon svg { width: 20px; height: 20px; }
.service-row__tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.service-row h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  margin: 0 0 12px;
}
.service-row__promise {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-lt);
  line-height: 1.4;
  margin: 0 0 16px;
}
.service-row__body-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--soft);
  font-weight: 300;
  margin: 0 0 24px;
}
.service-row__includes-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.service-row li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}
.service-row li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

/* ── Photo placeholders (striped, mono caption) ──────────── */
.photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
}
.photo--sand   { background: repeating-linear-gradient(135deg, var(--sand) 0 18px, var(--paper) 18px 36px); }
.photo--green  { background: repeating-linear-gradient(135deg, var(--ink-mid) 0 18px, var(--ink) 18px 36px); }
.photo--accent { background: repeating-linear-gradient(135deg, var(--accent) 0 18px, var(--cream) 18px 36px); }
.photo--cream  { background: repeating-linear-gradient(135deg, var(--paper) 0 18px, var(--cream) 18px 36px); }
.photo__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.55);
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.photo--green .photo__caption { color: var(--cream); background: rgba(27, 58, 45, 0.55); }

/* ── How it works ────────────────────────────────────────── */
.how {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 0;
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.how__grid h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  margin-top: 18px;
}
.how-steps { display: flex; flex-direction: column; gap: 4px; }
.how-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(246, 241, 233, 0.12);
}
.how-step:last-child { border-bottom: none; }
.how-step__num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent-lt);
  padding-top: 4px;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 0 0 8px;
}
.how-step p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--cream-60);
  font-weight: 300;
  margin: 0;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__head h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  margin-top: 16px;
}
.faq-list {
  background: var(--cream);
  border-radius: 3px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-q span:first-child {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-q__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-q__toggle svg { width: 14px; height: 14px; }
.faq-q__toggle .icon-minus { display: none; }
.faq-item.is-open .faq-q__toggle {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.faq-item.is-open .faq-q__toggle .icon-plus { display: none; }
.faq-item.is-open .faq-q__toggle .icon-minus { display: block; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.is-open .faq-a { max-height: 480px; }
.faq-a__inner {
  padding: 0 32px 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--soft);
  font-weight: 300;
  max-width: 720px;
}

/* ── CONTACT page ────────────────────────────────────────── */
.contact-body { padding: 40px 0 110px; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: #fff;
  border-radius: 3px;
  padding: 40px;
  border: 1px solid var(--line);
}
.form-card > h2 {
  font-size: 28px;
  margin: 0 0 6px;
}
.form-card__sub {
  font-size: 14px;
  color: var(--soft);
  font-weight: 300;
  margin: 0 0 32px;
}
.form-fields { display: flex; flex-direction: column; gap: 22px; }
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field__label .req { color: var(--accent); margin-left: 6px; }
.field--hinted .field__label { margin-bottom: 4px; }
.field__hint {
  font-size: 12.5px;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 8px;
}
.input,
textarea.input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}
textarea.input {
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
  min-height: 120px;
}
.input:focus { border-color: var(--ink); }
.input.has-error { border-color: var(--accent); }
.field__error {
  display: none;
  font-size: 12.5px;
  color: var(--accent-dk);
  margin-top: 6px;
  align-items: center;
  gap: 6px;
}
.field.show-error .field__error { display: flex; }
.field__error::before {
  content: '!';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* Segmented control (radio group) */
.seg-control {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px;
  flex-wrap: wrap;
  gap: 2px;
}
.seg-control input { position: absolute; opacity: 0; pointer-events: none; }
.seg-control label {
  padding: 8px 14px;
  background: transparent;
  color: var(--soft);
  border-radius: 1px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.seg-control input:checked + label {
  background: var(--ink);
  color: var(--cream);
}
.seg-control input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Service chips (checkbox group) */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-group input { position: absolute; opacity: 0; pointer-events: none; }
.chip-group label {
  padding: 9px 16px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .2s;
}
.chip-group input:checked + label {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.chip-group input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
}
.consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-footer__note {
  font-size: 13px;
  color: var(--soft);
  font-weight: 300;
}
.form-footer__note strong { color: var(--ink); font-weight: 500; }

/* Form success state */
.form-success {
  display: none;
  background: #fff;
  border-radius: 3px;
  padding: 56px;
  border: 1px solid var(--line);
  text-align: center;
}
.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h2 { font-size: 36px; }
.form-success p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--soft);
  font-weight: 300;
  max-width: 460px;
  margin: 14px auto 28px;
}
.contact-grid.is-success .form-card { display: none; }
.contact-grid.is-success .form-success { display: block; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card--ink {
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  border-radius: 3px;
}
.sidebar-card--ink h2 {
  font-size: 26px;
  margin: 14px 0 24px;
}
.sidebar-rows { display: flex; flex-direction: column; gap: 18px; }
.sidebar-row { display: flex; align-items: flex-start; gap: 14px; }
.sidebar-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--cream-08);
  color: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-row__icon svg { width: 18px; height: 18px; }
.sidebar-row__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
}
.sidebar-row__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin: 4px 0 2px;
}
.sidebar-row__value a { text-decoration: none; }
.sidebar-row__value a:hover { color: var(--accent-lt); }
.sidebar-row__sub {
  font-size: 12.5px;
  color: var(--cream-55);
  font-weight: 300;
}
.referral-card {
  background: #fff;
  border-radius: 3px;
  padding: 28px;
  border: 1px solid var(--line);
}
.referral-card__eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.referral-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
.referral-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
  margin: 0 0 14px;
}
.mono-chip {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
}

/* Service area */
.service-area { background: #fff; padding: 90px 0; }
.service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.service-area h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 16px 0 18px;
}
.service-area__lede {
  font-size: 15px;
  line-height: 1.75;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 24px;
}
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chips span {
  padding: 7px 14px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12.5px;
  font-weight: 500;
}
.map {
  position: relative;
  height: 340px;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border: 1px solid var(--line);
}
.map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 65%, rgba(74, 140, 101, 0.33) 0%, transparent 35%);
}
.map__grid { position: absolute; inset: 0; opacity: 0.15; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin__label {
  background: #fff;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(27, 58, 45, 0.12);
  border: 1px solid var(--line);
}
.map-pin__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-lt);
  border: 2px solid var(--cream);
  box-shadow: 0 2px 6px rgba(27, 58, 45, 0.2);
}
.map-pin--primary .map-pin__label {
  background: var(--ink);
  color: var(--cream);
  border: none;
}
.map-pin--primary .map-pin__dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
}
.map__note {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--soft);
  opacity: 0.7;
}

/* ── Fallback pages (About / Who We Support) ─────────────── */
.fallback {
  padding: 110px 0 80px;
  text-align: center;
}
.fallback h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin: 16px auto 18px;
  max-width: 760px;
}
.fallback p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  margin: 0 auto 32px;
  max-width: 580px;
}
.fallback__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__content { padding: 72px 32px 56px; }
  .hero__panel { min-height: 520px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clbc { grid-template-columns: 1fr; }
  .clbc__intro, .clbc__points { padding: 72px 32px; }
  .pop-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero__grid { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row--flip .service-row__body { order: 1; }
  .service-row--flip .photo { order: 2; }
  .how__grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .service-area__grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav a { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero__content { padding: 56px 20px 48px; }
  .clbc__intro, .clbc__points { padding: 56px 20px; }
  .mobile-nav a { padding-left: 20px; padding-right: 20px; }

  .section--white, .section--paper, .cta-band, .how { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-row { padding: 24px; }
  .service-row ul { grid-template-columns: 1fr; }
  .field-pair { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .form-success { padding: 40px 24px; }
  .faq-q { padding: 18px 20px; }
  .faq-q span:first-child { font-size: 18px; }
  .faq-a__inner { padding: 0 20px 20px; }
  .how-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .hero__stats { gap: 28px; }
  .cta-band__details { gap: 32px; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
