:root {
  --cream: #F4EDE0;
  --cream-light: #FBF8F2;
  --ink: #1F1A14;
  --ink-soft: #4B4239;
  --ink-mute: #8A7F71;
  --border: #DCD1BB;
  --terra: #B85C32;
  --terra-dark: #8E4422;
  --terra-soft: #E8C9B3;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 237, 224, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--cream-light);
}

.nav-actions,
.hero-ctas,
.next-step-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-phone {
  font-size: 14px;
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-radius: 7px;
  font-weight: 500;
}

.nav-cta {
  padding: 9px 16px;
  font-size: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 15px;
}

.btn-primary {
  padding: 13px 22px;
}

.btn-secondary {
  padding: 13px 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 500;
}

.breadcrumb,
.hero,
.author,
.section,
.next-step,
.nearby {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.breadcrumb {
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-mute);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--border);
}

.hero {
  padding-top: 48px;
  padding-bottom: 32px;
}

.eyebrow,
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: 14px;
}

.hero h1,
.section h2,
.next-step h2,
.nearby h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
}

.hero h1 em,
.section h2 em {
  font-style: italic;
  color: var(--terra);
}

.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 0 28px;
}

.author {
  color: var(--ink-soft);
  font-size: 13px;
  padding-top: 14px;
  padding-bottom: 28px;
}

.author strong {
  color: var(--ink);
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section h2,
.next-step h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}

.section p,
.next-step p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.intro h2 {
  max-width: 820px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.card,
.issue,
.resource-list li,
.callout {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.card {
  padding: 20px;
}

.card strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 4px;
}

.card span,
.issue p,
.resource-list span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.issue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.issue {
  border-left: 3px solid var(--terra);
  padding: 16px 17px;
}

.issue b {
  display: block;
  margin-bottom: 4px;
}

.neighborhoods,
.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.neighborhood,
.nearby-link {
  padding: 8px 14px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}

.callout {
  border-left: 4px solid var(--terra);
  padding: 20px 24px;
  margin-top: 24px;
}

.callout p {
  margin: 0;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.resource-list li {
  padding: 16px 18px;
}

.resource-list a {
  display: inline-block;
  font-weight: 600;
  color: var(--terra-dark);
  border-bottom: 1px solid var(--terra-soft);
  margin-bottom: 6px;
}

.resource-list span {
  display: block;
}

.next-step {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  padding-top: 48px;
  padding-bottom: 48px;
}

.next-step > * {
  max-width: 980px;
}

.next-step .section-eyebrow {
  color: var(--terra-soft);
}

.next-step h2,
.next-step p {
  color: var(--cream);
}

.next-step p {
  color: rgba(244, 237, 224, 0.76);
}

.next-step .btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.next-step .btn-secondary {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.faq details {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 10px 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  margin: 10px 0 0;
}

.nearby {
  padding-top: 48px;
  padding-bottom: 48px;
}

.nearby h2 {
  font-size: 22px;
}

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 24px 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(244, 237, 224, 0.7);
}

.footer-inner a {
  color: rgba(244, 237, 224, 0.85);
}

@media (max-width: 900px) {
  .stat-grid,
  .issue-list,
  .next-step {
    grid-template-columns: 1fr;
  }

  .nav-phone {
    display: none;
  }

  .next-step-actions {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .breadcrumb,
  .hero,
  .author,
  .section,
  .nearby {
    padding-left: 18px;
    padding-right: 18px;
  }

  .next-step {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 38px;
  }
}
