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

/* Hero — full-bleed photo with dark tint, left-aligned content */
.hero--overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  border-bottom: 1px solid var(--stone);
  overflow: hidden;
  padding: 0;
  background: var(--forest);
}

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

.hero--overlay .hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 20, 18, .82) 0%, rgba(20, 20, 18, .58) 55%, rgba(20, 20, 18, .32) 100%);
}

.hero--overlay .hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero--overlay .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero--overlay .hero-content {
  padding: 96px 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero--overlay .kicker {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--paper);
  opacity: .9;
}

.hero--overlay h1 {
  color: var(--white);
  max-width: 560px;
  font-size: clamp(32px, 3.9vw, 48px);
  line-height: 1.1;
  font-weight: 500;
}

.hero--overlay .sub {
  font-family: var(--body);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  max-width: 460px;
  margin-top: 20px;
}

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

@media (max-width: 800px) {
  .hero--overlay {
    min-height: 560px;
  }

  .hero--overlay .hero-content {
    padding: 64px 0;
  }

  .hero--overlay h1 {
    font-size: clamp(30px, 7vw, 40px);
  }
}

@media (max-width: 640px) {
  .hero--overlay .actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 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;
}

/* Process timeline (7 steps, numbered circles + connecting line) */
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-4);
  position: relative;
  counter-reset: step;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--stone);
}

.timeline .step {
  position: relative;
  padding-top: 60px;
  text-align: center;
}

.timeline .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--oxblood);
  color: var(--oxblood);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.timeline .step:hover::before {
  background: var(--oxblood);
  color: var(--white);
}

.timeline .step h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.timeline .step p {
  font-size: 12.5px;
  color: var(--muted);
}

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

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

@media (max-width: 1100px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8) var(--sp-6);
  }

  .timeline::before {
    display: none;
  }

  .timeline .step h3 {
    font-size: 16px;
  }

  .timeline .step p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline .step {
    padding-top: 0;
    padding-left: 56px;
    text-align: left;
  }

  .timeline .step::before {
    top: -2px;
    left: 0;
    transform: none;
  }
}
