/* =========================================================
   HOME PAGE
   ========================================================= */

/* HERO — full-bleed video */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,28,24,0.25) 0%, rgba(31,28,24,0.0) 30%, rgba(31,28,24,0.0) 60%, rgba(31,28,24,0.55) 100%);
  z-index: 2;
}

.hero-tag {
  position: absolute;
  bottom: 64px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  color: var(--ivory);
}
.hero-tag .eyebrow { color: var(--bronze-soft); }
.hero-tag h1 {
  margin-top: 18px;
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: 0.22em;
  font-weight: 300;
  color: var(--ivory);
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
  z-index: 3;
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { transform: translateX(-50%) scaleY(0.4); transform-origin: bottom; opacity: 0.4; }
  50%      { transform: translateX(-50%) scaleY(1);   opacity: 1; }
}

.hero-play {
  position: absolute;
  bottom: 40px; right: 40px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bronze);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  cursor: pointer;
}
.hero-play:hover { transform: scale(1.08); background: var(--bronze-deep); }
.hero-play::before {
  content: '';
  width: 0; height: 0;
  border-left: 12px solid var(--ivory);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}

/* ========== ABOUT ========== */
.about {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--pad-section) 6vw;
}
.about-image {
  aspect-ratio: 4/5;
  background: var(--sand);
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
}
.about-copy .eyebrow { display: block; margin-bottom: 24px; }
.about-copy h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.about-copy .display {
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--bronze-deep);
  margin-bottom: 28px;
  display: block;
  line-height: 1.45;
}
.about-copy p { margin-bottom: 16px; color: var(--charcoal-soft); font-size: 14.5px; line-height: 1.85; }
.about-copy .signoff {
  margin-top: 36px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze-deep);
}

/* ========== INTERSTITIAL PHRASE ========== */
.phrase {
  padding: 140px 6vw;
  text-align: center;
  background: var(--cream);
  position: relative;
}
.phrase.dark { background: var(--dark); color: var(--dark-text); }
.phrase h2 {
  font-size: clamp(24px, 3.6vw, 46px);
  letter-spacing: 0.14em;
  font-weight: 300;
  line-height: 1.25;
}
.phrase.dark h2 { color: var(--dark-text); }
.phrase em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--bronze);
  text-transform: none;
  letter-spacing: 0;
}

/* ========== ACCOLADES ========== */
.accolades {
  background: var(--dark);
  color: var(--dark-text);
  padding: 100px 6vw;
}
.accolades-head { text-align: center; margin-bottom: 70px; }
.accolades-head .eyebrow { color: var(--bronze-soft); }
.accolades-head h2 {
  margin-top: 18px;
  color: var(--dark-text);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.3;
}
.accolades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.accolade {
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #DCC9AC;
  line-height: 1.6;
  font-weight: 400;
}
.accolade .bar {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.5;
}
@media (max-width: 900px) {
  .accolades-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .accolade { font-size: 11px; }
}

/* ========== REELS / MEDIA ========== */
.reels { background: var(--ivory); padding: var(--pad-section) 6vw; }
.reels-head { text-align: center; margin-bottom: 80px; max-width: 720px; margin-left: auto; margin-right: auto; }
.reels-head h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: 0.1em;
  margin: 18px 0 22px;
  line-height: 1.3;
}
.reels-head p { margin: 0 auto; color: var(--charcoal-soft); font-size: 15px; line-height: 1.85; }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.reel {
  aspect-ratio: 9/16;
  background: var(--sand);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.reel:hover img, .reel:hover video { transform: scale(1.04); }
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,28,24,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--ivory);
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245,241,234,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.reel:hover .reel-play { background: var(--bronze); transform: translate(-50%, -50%) scale(1.1); }
.reel-play::before {
  content: '';
  width: 0; height: 0;
  border-left: 10px solid var(--charcoal);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
  transition: border-left-color 0.4s var(--ease);
}
.reel:hover .reel-play::before { border-left-color: var(--ivory); }

@media (max-width: 880px) {
  .reels-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== FEATURED LISTING ========== */
.featured {
  position: relative;
  height: 220vh; /* gives scroll room for the zoom */
  background: var(--dark);
}
.featured-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
  transition: transform 0.05s linear;
}
.featured-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(31,28,24,0.55) 0%, rgba(31,28,24,0.15) 50%, rgba(31,28,24,0.6) 100%),
    linear-gradient(180deg, rgba(31,28,24,0.35) 0%, rgba(31,28,24,0.0) 30%, rgba(31,28,24,0.0) 60%, rgba(31,28,24,0.75) 100%);
  z-index: 2;
}
.featured-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--ivory);
  z-index: 3;
  padding: 0 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.featured-content .eyebrow { color: var(--bronze-soft); margin-bottom: 18px; }
.featured-content h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.2;
}
.featured-content .address {
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 32px;
}
.featured-content .price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--bronze-soft);
  margin-bottom: 36px;
}
.featured-content .represented {
  font-family: var(--f-heading);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 36px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--cream);
  padding: var(--pad-section) 6vw;
  text-align: center;
}
.testimonials-head .eyebrow { color: var(--bronze); }
.testimonials-head h2 {
  margin: 18px 0 60px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.3;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}
.test {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.test .quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.test .who {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .test-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== GALLERY STRIP (parallax band between sections) ========== */
.gallery-strip {
  position: relative;
  height: 60vh;
  min-height: 420px;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}
.strip-img {
  position: absolute;
  inset: -10% 0;
  height: 120%;
  width: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.gallery-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,28,24,0.12) 0%, rgba(31,28,24,0) 30%, rgba(31,28,24,0) 70%, rgba(31,28,24,0.12) 100%);
}

@media (max-width: 880px) {
  .gallery-strip { height: 40vh; min-height: 300px; }
}
