/* ── Hero height override for index ── */
.hero-index {
  height: 85vh;
}

/* ── Intro section — copy + photos in one cream block ── */
.intro-section {
  background: var(--cream);
  padding: var(--pad-v) var(--pad-x) var(--pad-v-sm);
}

.intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  margin-bottom: 72px;
}
.intro .section-eyebrow {
  padding-top: 12px;
}
.intro-text h2 {
  font-family: "Crimson Text", serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 32px;
}
.intro-text h2 em {
  font-style: italic;
}
.intro-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
  max-width: 580px;
}
.intro-text p + p {
  margin-top: 20px;
}

.intro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.intro-photo-cell {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.intro-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-footer {
  margin-top: 24px;
}
.intro-footer-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.intro-footer-link:hover {
  color: var(--forest);
}

/* ── Hero index-only elements ── */
.hero-meta {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.72);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

/* ── Property tease ── */
.property-tease {
  background: var(--cream-warm);
  padding: var(--pad-v) var(--pad-x);
}
.property-tease h2 {
  font-family: "Crimson Text", serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin: 20px 0 60px;
  max-width: 680px;
}
.property-tease h2 em {
  font-style: italic;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* ── Carousel ── */
.prop-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.prop-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.prop-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}
.prop-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(transparent, rgba(var(--forest-rgb), 0.72));
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}
.prop-carousel-next {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: rgba(var(--forest-rgb), 0.5);
  color: var(--white);
  border: none;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transition: background 0.2s;
  z-index: 2;
}
.prop-carousel-next:hover {
  background: rgba(var(--forest-rgb), 0.65);
}
.prop-carousel-dots {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.prop-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.prop-dot.active {
  background: var(--white);
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 40px 0 40px;
  background: rgba(var(--forest-rgb), 0.08);
  border-top: 1px solid rgba(var(--forest-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.08);
}
.stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream-warm);
}
.stat h4 {
  font-family: "Crimson Text", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Story panel ── */
.story-panel {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.story-img {
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}
.story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-v-sm) var(--pad-x-wide);
}
.story-text h2 {
  font-family: "Crimson Text", serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 20px 0 28px;
}
.story-text h2 em {
  font-style: italic;
}
.story-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(var(--cream-rgb), 0.6);
  margin-bottom: 44px;
  max-width: 460px;
}

/* ── Full bleed (index only) ── */
.full-bleed {
  height: 72vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--forest-rgb), 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-bleed-quote {
  font-family: "Crimson Text", serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  max-width: 740px;
  padding: 0 var(--pad-x);
  line-height: 1.25;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .intro-section {
    padding: 80px var(--pad-x) 64px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .intro-photos {
    grid-template-columns: 1fr 1fr;
  }
  .intro-photo-cell:last-child {
    display: none;
  }
  .property-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prop-item:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin: 0 auto;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-panel {
    grid-template-columns: 1fr;
  }
  .story-img {
    height: 420px;
  }
  .story-img img {
    object-position: bottom;
  }
  .story-text {
    padding: 64px var(--pad-x);
  }
}

@media (max-width: 599px) {
  .hero-meta {
    text-align: center;
    white-space: normal;
  }
  .intro-photos {
    grid-template-columns: 1fr;
  }
  .intro-photo-cell:nth-child(2) {
    display: none;
  }
  .property-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .prop-item:last-child {
    grid-column: auto;
    width: auto;
    margin: 0;
  }
}
