/* ============================================================
   Atlas Senior Services — Orange County Senior Living Placement
   Brand: deep green / terracotta / warm gold / beige / cream
   Type:  Cormorant Garamond (serif) + Lato (sans)
   ============================================================ */

:root {
  --green: #132F2D;
  --green-700: #1a3f3c;
  --green-600: #25524e;
  --green-footer: #0d2120;
  --terracotta: #D06A4E;
  --terracotta-dark: #b85a40;
  --gold: #C8A15A;
  --beige: #F3EDE4;
  --cream: #FAF8F4;
  --ink: #2a2520;
  --ink-soft: #5a5048;
  --line: #e6dfd3;
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Lato', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--terracotta);
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-secondary { background: var(--green); color: var(--cream); }
.btn-secondary:hover { background: var(--green-700); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 248, 244, 0.4);
}
.btn-ghost-light:hover { background: rgba(250, 248, 244, 0.1); }

/* ---------- Form ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 150ms;
}
.field input:focus,
.field select:focus { border-color: var(--green); }

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-form.compact { gap: 12px; }
.lead-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.form-card-dark .field label,
.lead-form.on-dark .field label { color: var(--gold); }
.lead-form.on-dark .form-note { color: rgba(250, 248, 244, 0.7); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  padding: 24px 0;
  position: relative;
  z-index: 5;
  background: var(--green);
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-lockup { display: flex; align-items: center; gap: 13px; }
.logo-lockup .mark { height: 46px; width: auto; display: block; }
.logo-lockup .word { height: 33px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--gold); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-left: 1px solid rgba(250, 248, 244, 0.18);
  padding-left: 24px;
}
.nav-toggle { display: none; }

/* ============================================================
   HERO (V2 — full-bleed image + overlay form)
   ============================================================ */
.hero {
  position: relative;
  padding: 0;
  background: var(--green);
}
.hero-stage { position: relative; min-height: 720px; overflow: hidden; }
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url(assets/hero.jpg);
  background-image: image-set(url(assets/hero.webp) type("image/webp"), url(assets/hero.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(19, 47, 45, 0.88) 0%,
    rgba(19, 47, 45, 0.72) 35%,
    rgba(19, 47, 45, 0.25) 65%,
    rgba(19, 47, 45, 0.05) 100%);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(200, 161, 90, 0.18), transparent 55%);
}
.hero-inner {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 40px;
}
.hero-copy { color: var(--cream); }
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy h1 {
  font-size: 74px;
  line-height: 1.12;
  margin: 24px 0 36px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.hero-copy .lede {
  font-size: 20px;
  color: rgba(250, 248, 244, 0.85);
  max-width: 560px;
  line-height: 1.55;
}
.hero-features {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.hero-feature { display: flex; gap: 10px; align-items: flex-start; flex: 0 0 auto; }
.hero-feature svg { margin-top: 3px; flex-shrink: 0; }
.hero-feature .ft { color: var(--cream); font-weight: 600; font-size: 14px; white-space: nowrap; }
.hero-feature .fs { color: rgba(250, 248, 244, 0.65); font-size: 13px; white-space: nowrap; }

.form-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.form-card .form-head { margin-bottom: 20px; }
.form-card .form-head .title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green);
  font-weight: 500;
  line-height: 1.1;
}
.form-card .form-head p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--beige);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item { text-align: center; }
.trust-item .num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   EXPLAINER (WHO WE ARE / WHAT WE DO / WHO WE HELP)
   ============================================================ */
.explainer { background: var(--cream); }
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.explainer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.explainer-card .ec-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.explainer-card:nth-child(2) .ec-icon { color: var(--terracotta); }
.explainer-card:nth-child(3) .ec-icon { color: var(--gold); }
.explainer-card h3 { font-size: 25px; font-weight: 500; }
.explainer-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 { font-size: 56px; margin: 16px 0 20px; }
.section-head p { font-size: 18px; color: var(--ink-soft); max-width: 560px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.process-step {
  background: var(--cream);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-step .n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.process-step:first-child .n { color: var(--terracotta); }
.process-step h3 { font-size: 22px; font-weight: 500; }
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: var(--green); color: var(--cream); }
.founder .container {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 4 / 5;
  min-height: 520px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(250, 248, 244, 0.06), rgba(250, 248, 244, 0.02));
  border: 1px solid rgba(250, 248, 244, 0.12);
  overflow: hidden;
}
.founder-portrait picture { display: block; width: 100%; height: 100%; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.founder .eyebrow { color: var(--gold); }
.founder h2 {
  font-size: 52px;
  margin: 16px 0 28px;
  color: var(--cream);
}
.founder-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  color: rgba(250, 248, 244, 0.85);
  line-height: 1.7;
}
.founder-sig { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.founder-sig .bar { width: 1px; height: 48px; background: var(--gold); }
.founder-sig .name { font-family: var(--serif); font-size: 22px; color: var(--cream); }
.founder-sig .role { font-size: 13px; color: var(--gold); letter-spacing: 0.08em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--beige); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}
.services-head h2 { font-size: 52px; margin-top: 16px; }
.services-head p { font-size: 17px; color: var(--ink-soft); max-width: 520px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card .rule { width: 36px; height: 1px; background: var(--terracotta); margin-bottom: 6px; }
.service-card h3 { font-size: 24px; font-weight: 500; }
.service-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison { background: var(--cream); }
.comparison .table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.comparison .thead {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr;
  background: var(--green);
  color: var(--cream);
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.comparison .thead .with { color: var(--gold); }
.comparison .trow {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr;
  gap: 24px;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.comparison .trow .label {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
}
.comparison .trow .alone {
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.comparison .trow .alone .dash { color: #c4847a; flex-shrink: 0; margin-top: 2px; }
.comparison .trow .with {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  font-weight: 500;
}
.comparison .trow .with svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   URGENCY
   ============================================================ */
.urgency { background: var(--terracotta); color: #fff; padding: 80px 0; }
.urgency .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.urgency .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin-bottom: 20px;
}
.urgency h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.urgency .lede { font-size: 18px; color: rgba(255, 255, 255, 0.9); max-width: 580px; line-height: 1.6; }
.urgency-card {
  background: rgba(19, 47, 45, 0.95);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.urgency-card .k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.urgency-card .phone {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--cream);
  line-height: 1.1;
  text-decoration: none;
}
.urgency-card .sub { font-size: 14px; color: rgba(250, 248, 244, 0.7); margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--beige); }
.testimonials .head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.testimonials .head h2 { font-size: 52px; margin-top: 16px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--line);
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold);
  height: 24px;
}
.testimonial .quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
}
.testimonial .quote strong { font-weight: 600; color: var(--green); }
.testimonial .attrib { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial .attrib .n { font-weight: 600; color: var(--green); font-size: 15px; }
.testimonial .attrib .d { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq .container { max-width: 920px; }
.faq .head { text-align: center; margin-bottom: 56px; }
.faq .head h2 { font-size: 52px; margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--green);
}
.faq-icon {
  font-size: 28px;
  color: var(--terracotta);
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 200ms;
  flex-shrink: 0;
  margin-left: 24px;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 8px 28px;
  max-width: 760px;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
.faq-a p + p { margin-top: 14px; }

/* ============================================================
   COMMUNITIES (partner logo strip)
   ============================================================ */
.communities { background: var(--beige); padding: 64px 0; }
.communities .container { text-align: center; }
.communities .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.communities-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 64px;
}
.communities-logos img {
  max-height: 44px;
  max-width: 180px;
  width: auto;
  height: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 200ms ease, opacity 200ms ease;
}
.communities-logos img:hover { filter: none; opacity: 1; }

@media (max-width: 880px) {
  .communities-logos { gap: 28px 40px; }
  .communities-logos img { max-height: 34px; max-width: 140px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--green); color: var(--cream); padding: 120px 0; }
.final-cta .container { text-align: center; max-width: 820px; }
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { font-size: 64px; color: var(--cream); margin: 20px 0 24px; }
.final-cta .lede {
  font-size: 18px;
  color: rgba(250, 248, 244, 0.78);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-cta .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SUBPAGES (location & service SEO pages)
   ============================================================ */
.subhero { background: var(--green); color: var(--cream); padding: 80px 0 64px; }
.subhero .breadcrumb { font-size: 13px; color: rgba(250,248,244,0.7); margin-bottom: 18px; }
.subhero .breadcrumb a { color: rgba(250,248,244,0.7); text-decoration: none; }
.subhero .breadcrumb a:hover { color: var(--gold); }
.subhero .eyebrow { color: var(--gold); }
.subhero h1 { color: var(--cream); font-size: clamp(36px, 5.5vw, 58px); line-height: 1.08; margin: 14px 0 18px; }
.subhero .lede { color: rgba(250,248,244,0.85); font-size: 20px; max-width: 660px; line-height: 1.55; }
.subhero .ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.subpage section { padding: 64px 0; }
.subpage .prose { max-width: 760px; }
.subpage .prose h2 { font-size: 30px; margin: 0 0 16px; }
.subpage .prose h2:not(:first-child) { margin-top: 40px; }
.subpage .prose p { font-size: 17px; color: var(--ink); line-height: 1.75; margin-bottom: 16px; }
.subpage .prose p:last-child { margin-bottom: 0; }
.subpage .prose ul { margin: 0 0 16px; padding-left: 22px; }
.subpage .prose li { font-size: 17px; color: var(--ink); line-height: 1.7; margin-bottom: 8px; }

.link-section { background: var(--beige); }
.link-section .container { max-width: 960px; }
.link-section h2 { font-size: 24px; margin-bottom: 18px; }
.link-section .sub { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px; }
.link-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.link-grid:last-child { margin-bottom: 0; }
.link-grid a {
  display: inline-block; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--green); text-decoration: none; font-size: 14px; font-weight: 600;
}
.link-grid a:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

.subcta { background: var(--green); color: var(--cream); }
.subcta .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.subcta .eyebrow { color: var(--gold); }
.subcta h2 { color: var(--cream); font-size: 38px; margin: 12px 0 16px; }
.subcta .lede { color: rgba(250,248,244,0.85); font-size: 17px; line-height: 1.6; }
@media (max-width: 880px) {
  .subcta .container { grid-template-columns: 1fr; gap: 32px; }
  .subcta h2 { font-size: 30px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-footer); color: rgba(250, 248, 244, 0.7); padding: 56px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}
.footer-logo { height: 84px; width: auto; display: block; }
.footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.7; max-width: 360px; }
.footer-brand .tag {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  font-style: italic;
}
.footer-col .h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col .links { display: flex; flex-direction: column; gap: 10px; }
.footer-col .links a { color: rgba(250, 248, 244, 0.7); text-decoration: none; font-size: 14px; }
.footer-col .links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 248, 244, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: inherit; text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-copy h1 { font-size: 60px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(odd):last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-phone) { display: none; }

  .hero-stage, .hero-inner { min-height: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(19,47,45,0.85) 0%, rgba(19,47,45,0.75) 60%, rgba(19,47,45,0.9) 100%);
  }
  .hero-copy h1 { font-size: 48px; }

  .trust .container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .founder .container { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { min-height: 360px; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .explainer-grid { grid-template-columns: 1fr; gap: 20px; }
  .explainer-card { padding: 32px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .urgency .container { grid-template-columns: 1fr; gap: 40px; }

  .section-head h2, .services-head h2, .founder h2,
  .testimonials .head h2, .faq .head h2 { font-size: 40px; }
  .final-cta h2 { font-size: 44px; }
  .urgency h2 { font-size: 36px; }

  /* Comparison collapses to stacked cards */
  .comparison .thead { display: none; }
  .comparison .trow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }
  .comparison .trow .label { font-size: 24px; margin-bottom: 4px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .trust .container { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .logo-lockup .mark { height: 38px; }
  .logo-lockup .word { height: 27px; }
  .hero-copy h1 { font-size: 40px; }
  .lead-form .row-2 { grid-template-columns: 1fr; }
}
