/* ==========================================================================
   DAAMRI Deals — Homepage
   ========================================================================== */

/* Hero — editorial cover */
.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--stone);
}

.hero .kicker {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: .98;
  max-width: 860px;
  font-weight: 500;
}

.hero .sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-top: 24px;
}

.hero .actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero .corridors {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero .chip {
  font-family: var(--ui);
  font-size: 11.5px;
  letter-spacing: .04em;
  border: 1px solid var(--ink);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--ease);
}

.hero .chip:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: var(--img-filter);
  border: 1px solid var(--stone);
}

.hero-figure figcaption {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* Stats strip */
.stats {
  padding: 56px 0;
  border-bottom: 1px solid var(--stone);
}

.stats .grid-3 {
  gap: 20px;
}

/* Editorial split — advisory desk */
.editorial-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--sp-16);
  align-items: center;
}

.editorial-split .prose p {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: var(--sp-4);
}

.editorial-split blockquote {
  font-family: var(--body);
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
  border-left: 2px solid var(--oxblood);
  padding-left: 20px;
  margin: var(--sp-6) 0;
  max-width: 480px;
}

.editorial-split figure {
  position: relative;
}

.editorial-split figure img {
  width: 100%;
  height: 460px;
  filter: var(--img-filter);
  border: 1px solid var(--stone);
}

.editorial-split figcaption {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* (corridor map styles removed — section replaced by property cards) */

/* Insights section */
.insights-list {
  max-width: 760px;
}

/* FAQ */
.faq-wrap {
  max-width: 720px;
}

/* Responsive */
@media (max-width: 1000px) {
  .editorial-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .editorial-split figure img {
    height: 340px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero-figure img {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 56px;
  }

  .hero .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-figure img {
    height: 280px;
  }
}
