.hero {
  background:
    radial-gradient(circle at top left, rgba(226, 191, 177, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(122, 153, 176, 0.35), transparent 50%),
    var(--parchment);
  border-bottom: 1px solid rgba(184, 150, 104, 0.7);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 1.5rem 72px;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--ink-black);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-meta {
  font-size: 13px;
  color: var(--stone-gray);
  margin-top: 0.75rem;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--compass-red);
  box-shadow: var(--shadow-pin);
  top: 12%;
  right: 10%;
}

.hero-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-path svg path {
  stroke: var(--aged-sepia);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  fill: none;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes drawPath {
    from { stroke-dashoffset: 600; }
    to   { stroke-dashoffset: 0; }
  }
  .hero-path svg path {
    animation: drawPath 1.2s ease-out forwards;
  }
}
