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

/* Hero — full-bleed image with overlay text */
.hero {
  position: relative;
  padding: 0;
  border-bottom: none;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero .kicker {
  margin-bottom: 20px;
  color: var(--paper-2);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  line-height: 1.02;
  max-width: 700px;
  font-weight: 500;
  color: var(--white);
}

.hero .sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 19px;
  color: var(--stone);
  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 .wrap {
  position: relative;
  z-index: 1;
  padding: 64px 0 56px;
}

.hero-content {
  max-width: 640px;
}

.hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, .72) 0%, rgba(10, 10, 10, .18) 55%, rgba(10, 10, 10, 0) 100%);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
}

.hero--overlay .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero--overlay .btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}

/* 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 {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 420px;
  }

  .hero .wrap {
    padding: 40px 0 40px;
  }

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