.home-hero {
  border-bottom: 1px solid var(--stone-dark);
  background:
    radial-gradient(circle at 72% 38%, rgba(196, 108, 45, 0.16), transparent 28%),
    linear-gradient(90deg, transparent 49.9%, rgba(82, 82, 74, 0.07) 50%, transparent 50.1%),
    radial-gradient(circle at 1px 1px, rgba(23, 25, 23, 0.09) 1px, transparent 0);
  background-size: auto, auto, 24px 24px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  align-items: end;
  min-height: 650px;
  padding-top: 110px;
  padding-bottom: 88px;
}

.home-hero-copy h1,
.home-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.home-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(64px, 7.4vw, 112px);
  line-height: 0.91;
}

.home-hero-copy h1 em {
  color: var(--saffron);
  font-weight: 400;
}

.home-lede {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}

.about-section {
  padding: 128px 0;
  border-bottom: 1px solid var(--stone-dark);
  background: var(--paper-bright);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: 10vw;
}

.about-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.about-copy {
  max-width: 720px;
}

.about-copy p {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.about-copy .about-statement {
  padding: 30px 0;
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.15;
}

.sonic-map-section {
  padding: 128px 0;
}

.map-section-heading {
  align-items: end;
}

.map-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.map-section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
}

.home-cta {
  padding: 88px 0;
  color: var(--paper-bright);
  background: var(--ink);
}

.home-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.home-cta .eyebrow {
  color: #b6bda8;
}

.home-cta h2 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
}

.home-cta .button-dark {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

@media (max-width: 900px) {
  .home-hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 64px;
    min-height: auto;
    padding-top: 90px;
  }

  .about-heading {
    position: static;
  }

}

@media (max-width: 640px) {
  .home-hero-grid {
    padding-top: 70px;
    padding-bottom: 64px;
  }

  .home-hero-copy h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .about-section,
  .sonic-map-section {
    padding: 82px 0;
  }

  .about-grid {
    gap: 56px;
  }

  .map-section-heading {
    align-items: start;
  }

  .sonic-map-canvas {
    min-height: 620px;
  }

  .sonic-map-toolbar {
    top: auto;
    right: 12px;
    bottom: 12px;
  }

  .sonic-map-overlay {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .home-cta-inner {
    align-items: start;
    flex-direction: column;
  }
}
