/*
Theme Name: MPP Theme
Theme URI: https://mumma-property-partners.homepage.studio
Description: Custom theme for Mumma Property Partners - Blackstream Christie's International Real Estate
Author: HomePage Studios
Version: 1.0
*/

/* ============================================
   ROOT VARIABLES — EARTHY LUXURY PALETTE
   ============================================ */
:root {
  /* Primary palette - earthy organic luxury */
  --color-primary: #131414;
  --color-primary-dark: #0A0C0C;
  --color-forest: #142223;
  --color-forest-overlay: rgba(20, 34, 35, 0.91);
  --color-sage: #B3C4C1;
  --color-sage-muted: #939E92;
  --color-sage-light: rgba(179, 196, 193, 0.15);
  --color-forest-bright: #155724;

  /* Neutrals */
  --color-cream: #FAF9F6;
  --color-white: #FFFFFF;
  --color-light-gray: #F7F7F7;
  --color-border: rgba(179, 196, 193, 0.3);
  --color-border-light: rgba(179, 196, 193, 0.15);

  /* Text */
  --color-text: #030205;
  --color-text-medium: #333333;
  --color-text-muted: #4C4C4C;
  --color-text-light: #555555;
  --color-text-lighter: #888888;
  --color-text-on-dark: #FAF9F6;
  --color-text-on-dark-muted: rgba(250, 249, 246, 0.6);

  /* Accent */
  --color-accent: #B3C4C1;
  --color-accent-dark: #2D373C;
  --color-accent-glow: rgba(179, 196, 193, 0.4);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-pad: clamp(64px, 10vw, 120px);
  --container-width: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.display-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.display-heading em {
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */
@media (hover: hover) {
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--color-sage);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
  }

  .custom-cursor.active {
    transform: scale(2.5);
    border-color: var(--color-sage);
    background: rgba(179, 196, 193, 0.1);
  }
}

/* ============================================
   NAVIGATION — Floating pill with tubelight
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 24px;
  transition: padding 0.4s ease, background 0.4s ease;
}

.site-nav.scrolled {
  padding: 12px 24px;
  background: rgba(20, 34, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
}

.site-nav.scrolled .site-nav__logo img {
  height: 40px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav__links li {
  position: relative;
}

.site-nav__links a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  border-radius: 50px;
  transition: color 0.3s ease;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--color-sage);
}

/* Tubelight glow on active */
.site-nav__links a.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--color-sage);
  border-radius: 0 0 4px 4px;
  box-shadow:
    0 2px 12px var(--color-accent-glow),
    0 4px 24px var(--color-accent-glow);
}

/* Dropdown */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(20, 34, 35, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.site-nav__links li:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav__dropdown a:hover {
  background: rgba(179, 196, 193, 0.1);
}

/* Mobile toggle */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile nav */
.site-nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-forest);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
}

.site-nav__mobile.open {
  display: flex;
}

.site-nav__mobile a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 1024px) {
  .site-nav__links { display: none; }
  .site-nav__toggle { display: block; }
}

/* ============================================
   HERO — Full-screen with parallax layers
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 34, 35, 0.4) 0%,
    rgba(20, 34, 35, 0.2) 40%,
    rgba(20, 34, 35, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1.2s var(--ease-out-expo) 0.3s forwards;
}

.hero__sub {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.6s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-cream);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-sage), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SCROLL EXPANSION VIDEO
   ============================================ */
.video-expansion {
  position: relative;
  height: 250vh;
  background: var(--color-primary);
}

.video-expansion__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
}

.video-expansion__header {
  text-align: center;
  margin-bottom: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-expansion__header .eyebrow {
  color: var(--color-sage);
  justify-content: center;
  margin-bottom: 16px;
}

.video-expansion__header .eyebrow::before {
  background: var(--color-sage);
}

.video-expansion__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-cream);
  font-weight: 300;
}

.video-expansion__frame {
  aspect-ratio: 16 / 9;

  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(179, 196, 193, 0.2);
  box-shadow:
    0 0 0 0 rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.5);
  will-change: transform, width, height, border-radius;
  transition: border-radius 0.1s linear;
}

.video-expansion__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   ABOUT SECTION — Asymmetric overlap
   ============================================ */
.about-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--color-cream);
  overflow: hidden;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.about-section__text .eyebrow {
  color: var(--color-sage-muted);
  margin-bottom: 24px;
}

.about-section__text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-section__text p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section__images {
  position: relative;
  height: 500px;
}

.about-section__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
}

.about-section__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--color-cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-section__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FEATURED LISTINGS (Placeholder)
   ============================================ */
.listings-section {
  padding: var(--section-pad) 0;
  background: var(--color-forest);
}

.listings-section .eyebrow {
  color: var(--color-sage);
  justify-content: center;
  margin-bottom: 16px;
}

.listings-section .eyebrow::before { background: var(--color-sage); }

.listings-section h2 {
  text-align: center;
  color: var(--color-cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
  font-weight: 300;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.listing-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(179, 196, 193, 0.05);
  border: 1px solid var(--color-border);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Glow border on hover */
.listing-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.listing-card__glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-radius: inherit;
  background:
    repeating-conic-gradient(
      from var(--glow-start, 0deg) at 50% 50%,
      var(--color-sage) 0%,
      #B3C4C1 5%,
      var(--color-sage) 10%
    );
  background-attachment: fixed;
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--glow-start, 0) - 20) * 1deg),
      transparent 0deg, #fff, transparent 40deg
    );
  mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--glow-start, 0) - 20) * 1deg),
      transparent 0deg, #fff, transparent 40deg
    );
}

.listing-card:hover .listing-card__glow {
  opacity: 1;
}

.listing-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.listing-card:hover .listing-card__image img {
  transform: scale(1.05);
}

.listing-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-forest);
  color: var(--color-sage);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}

.listing-card__info {
  padding: 20px;
}

.listing-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.listing-card__address {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 12px;
}

.listing-card__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--color-sage-muted);
}

/* ============================================
   ZOOM PARALLAX — Areas showcase
   ============================================ */
.zoom-parallax {
  position: relative;
  height: 300vh;
  background: var(--color-cream);
}

.zoom-parallax__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.zoom-parallax__header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.zoom-parallax__header .eyebrow {
  color: var(--color-sage-muted);
  justify-content: center;
  margin-bottom: 12px;
}

.zoom-parallax__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

.zoom-parallax__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.zoom-parallax__item img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.zoom-parallax__item--center img { width: 25vw; height: 25vh; }
.zoom-parallax__item--tl img { width: 35vw; height: 30vh; position: relative; top: -30vh; left: 5vw; }
.zoom-parallax__item--bl img { width: 20vw; height: 45vh; position: relative; top: 10vh; left: -25vw; }
.zoom-parallax__item--tr img { width: 25vw; height: 25vh; position: relative; left: 27.5vw; }
.zoom-parallax__item--br img { width: 20vw; height: 25vh; position: relative; top: 27.5vh; left: 5vw; }

/* ============================================
   ELEGANT CAROUSEL — Testimonials
   ============================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.elegant-carousel {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.elegant-carousel__header {
  text-align: center;
  margin-bottom: 48px;
}

.elegant-carousel__header .eyebrow {
  color: var(--color-sage-muted);
  justify-content: center;
  margin-bottom: 16px;
}

.elegant-carousel__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

.elegant-carousel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 400px;
}

.elegant-carousel__content { padding: 40px 0; }

.elegant-carousel__num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-lighter);
  margin-bottom: 24px;
}

.ec-line {
  width: 32px;
  height: 1px;
  background: var(--color-text-lighter);
}

#ec-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: opacity 0.4s, transform 0.4s;
}

.elegant-carousel__quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 440px;
  transition: opacity 0.4s;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--color-sage);
}

.elegant-carousel__arrows {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.elegant-carousel__arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.elegant-carousel__arrows button:hover {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
}

.elegant-carousel__image {
  position: relative;
}

.elegant-carousel__frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: opacity 0.4s, transform 0.4s;
}

.elegant-carousel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elegant-carousel__corner {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.elegant-carousel__corner--tl {
  top: -8px;
  left: -8px;
  border-top: 2px solid var(--color-sage);
  border-left: 2px solid var(--color-sage);
}

.elegant-carousel__corner--br {
  bottom: -8px;
  right: -8px;
  border-bottom: 2px solid var(--color-sage);
  border-right: 2px solid var(--color-sage);
}

.elegant-carousel__progress {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.ec-progress-item { flex: 1; cursor: pointer; }

.ec-progress-track {
  width: 100%;
  height: 2px;
  background: var(--color-border-light);
  border-radius: 2px;
  overflow: hidden;
}

.ec-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-sage);
  transition: width 0.05s linear;
}

.ec-progress-label {
  display: block;
  font-size: 11px;
  color: var(--color-text-lighter);
  margin-top: 8px;
  opacity: 0.5;
}

.ec-progress-item.active .ec-progress-label { opacity: 1; }

/* ============================================
   SERVICES CTAs — with glowing borders
   ============================================ */
.services-cta-section {
  padding: var(--section-pad) 0;
  background: var(--color-forest);
}

.services-cta-section .eyebrow {
  color: var(--color-sage);
  justify-content: center;
  margin-bottom: 16px;
}

.services-cta-section .eyebrow::before { background: var(--color-sage); }

.services-cta-section h2 {
  text-align: center;
  color: var(--color-cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
  font-weight: 300;
}

.services-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.service-cta-card {
  position: relative;
  padding: 48px 32px;
  background: rgba(179, 196, 193, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.5s ease;
  overflow: hidden;
}

.service-cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-sage);
}

.service-cta-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(179, 196, 193, 0.15);
  font-weight: 300;
  margin-bottom: 16px;
}

.service-cta-card h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 16px;
  font-weight: 300;
}

.service-cta-card p {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-cta-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.service-cta-card:hover .service-cta-card__link {
  gap: 14px;
}

/* ============================================
   LAMP CTA — Dramatic section divider
   ============================================ */
.lamp-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
  padding: var(--section-pad) 24px;
}

.lamp-section__light {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -40px;
}

.lamp-section__beam {
  position: absolute;
  height: 200px;
  width: 100px;
  transition: width 0.8s ease-in-out;
}

.lamp-section__beam--left {
  right: 50%;
  background: conic-gradient(from 70deg at center top, var(--color-sage), transparent, transparent);
  opacity: 0.4;
}

.lamp-section__beam--right {
  left: 50%;
  background: conic-gradient(from 290deg at center top, transparent, transparent, var(--color-sage));
  opacity: 0.4;
}

.lamp-section.in-view .lamp-section__beam {
  width: 400px;
}

.lamp-section__glow {
  position: absolute;
  z-index: 50;
  height: 120px;
  width: 400px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-sage);
  opacity: 0.15;
  filter: blur(60px);
}

.lamp-section__content {
  position: relative;
  z-index: 60;
  text-align: center;
}

.lamp-section__content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-cream);
  font-weight: 300;
  margin-bottom: 24px;
}

.lamp-section__content p {
  color: var(--color-text-on-dark-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-sage);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
  background: var(--color-sage);
  color: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--color-accent-glow);
}

/* ============================================
   CTA GLOW
   ============================================ */
.cta-glow {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 24px;
  text-align: center;
  background: var(--color-forest);
}

.cta-glow__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-glow__content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-cream);
  font-weight: 300;
  margin-bottom: 16px;
}

.cta-glow__content p {
  color: var(--color-text-on-dark-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.cta-glow__effect {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transform: translateY(16px);
  opacity: 0.5;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cta-glow__effect::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(2.5);
  width: 60%;
  height: 256px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--color-accent-glow) 10%, transparent 60%);
}

.cta-glow:hover .cta-glow__effect {
  transform: translateY(-32px);
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-primary);
  padding: 64px 24px 32px;
  color: var(--color-text-on-dark);
}

.site-footer__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer__col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--color-cream);
}

.site-footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--color-sage);
}

.site-footer__col p,
.site-footer__col address p {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.8;
  font-style: normal;
}

.site-footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col nav a {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  transition: color 0.2s;
}

.site-footer__col nav a:hover { color: var(--color-sage); }

.site-footer__form {
  position: relative;
  margin-top: 16px;
}

.site-footer__form input {
  width: 100%;
  padding: 12px 48px 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  background: rgba(179, 196, 193, 0.05);
  color: var(--color-cream);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}

.site-footer__form input::placeholder { color: var(--color-text-on-dark-muted); }
.site-footer__form input:focus { border-color: var(--color-sage); }

.site-footer__form button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-forest);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.site-footer__form button:hover { transform: scale(1.08); }

.site-footer__social {
  display: flex;
  gap: 12px;
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-on-dark-muted);
  transition: all 0.2s;
}

.site-footer__social a:hover {
  background: var(--color-sage);
  color: var(--color-forest);
  border-color: var(--color-sage);
}

.site-footer__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.site-footer__logos img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.site-footer__logos img:hover { opacity: 1; }

.site-footer__bottom {
  max-width: var(--container-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__bottom p {
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
}

.site-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom nav a {
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
  transition: color 0.2s;
}

.site-footer__bottom nav a:hover { color: var(--color-sage); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ============================================
   INNER PAGES — Shared styles
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-forest);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
}

.page-hero__content .eyebrow {
  color: var(--color-sage);
  justify-content: center;
  margin-bottom: 16px;
}

.page-hero__content .eyebrow::before { background: var(--color-sage); }

.page-hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
}

/* Content section shared */
.content-section {
  padding: var(--section-pad) 0;
}

.content-section--dark {
  background: var(--color-forest);
  color: var(--color-cream);
}

.content-section--cream { background: var(--color-cream); }
.content-section--white { background: var(--color-white); }

.content-section .container p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.content-section--dark .container p {
  color: var(--color-text-on-dark-muted);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  transition: transform 0.5s var(--ease-out-expo);
}

.team-card:hover { transform: translateY(-8px); }

.team-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px solid var(--color-sage);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage-muted);
  margin-bottom: 16px;
}

.team-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--color-white);
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-sage);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
}

.contact-form .btn-primary:hover {
  background: var(--color-sage);
  color: var(--color-forest);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__content {
  padding: 24px;
}

.blog-card__cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   DEVELOPMENT PAGES
   ============================================ */
.dev-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.dev-hero__bg {
  position: absolute;
  inset: 0;
}

.dev-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-forest) 0%, transparent 60%);
}

.dev-hero__content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  padding: 0 24px;
  z-index: 2;
}

.dev-hero__content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-cream);
  font-weight: 300;
  max-width: var(--container-width);
  margin: 0 auto;
}

.dev-hero__content p {
  font-size: 18px;
  color: var(--color-text-on-dark-muted);
  max-width: var(--container-width);
  margin: 12px auto 0;
}

/* Floor plan cards */
.floor-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.floor-plan-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.floor-plan-card:hover { transform: translateY(-4px); }

.floor-plan-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-light-gray);
}

.floor-plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.floor-plan-card__info {
  padding: 20px;
  border-top: 1px solid var(--color-border-light);
}

.floor-plan-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.floor-plan-card__meta {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.floor-plan-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-forest);
}

/* Bento gallery for development */
.bento-gallery {
  padding: var(--section-pad) 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.bento-gallery h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 300;
}

.bento-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.bento-gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.bento-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-gallery__item:hover img { transform: scale(1.05); }
.bento-gallery__item--wide { grid-column: span 2; }
.bento-gallery__item--tall { grid-row: span 2; }

/* Gallery modal */
.bento-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.bento-modal.open { display: flex; }

.bento-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.bento-modal__close:hover { background: rgba(255,255,255,0.2); }

.bento-modal__main img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

/* ============================================
   AREAS / MAP
   ============================================ */
.areas-map-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.areas-map-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.areas-list {
  list-style: none;
}

.areas-list li {
  border-bottom: 1px solid var(--color-border-light);
}

.areas-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.areas-list a:hover {
  color: var(--color-forest);
  padding-left: 8px;
}

.areas-list a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.areas-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.areas-map svg {
  width: 100%;
  height: auto;
}

/* Area cards grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.area-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.area-card:hover img { transform: scale(1.08); }

.area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 34, 35, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.area-card h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  font-weight: 300;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cta-grid { grid-template-columns: 1fr; max-width: 500px; }
  .areas-map-section .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-section__grid { grid-template-columns: 1fr; }
  .about-section__images { height: 350px; }
  .listings-grid { grid-template-columns: 1fr; }
  .elegant-carousel__inner { grid-template-columns: 1fr; }
  .elegant-carousel__frame { aspect-ratio: 4/3; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .floor-plans { grid-template-columns: 1fr; }
  .bento-gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bento-gallery__item--wide { grid-column: span 1; }
  .bento-gallery__item--tall { grid-row: span 1; }

  .zoom-parallax__item--center img { width: 50vw; height: 30vh; }
  .zoom-parallax__item--tl img { width: 40vw; height: 25vh; top: -20vh; left: 5vw; }
  .zoom-parallax__item--bl img { width: 35vw; height: 30vh; top: 10vh; left: -15vw; }
  .zoom-parallax__item--tr img { width: 40vw; height: 25vh; left: 20vw; }
  .zoom-parallax__item--br img { width: 35vw; height: 20vh; top: 20vh; left: 5vw; }
}

/* ============================================
   FEATURE SPOTLIGHT — Meet the Team
   ============================================ */
.spotlight {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  cursor: pointer;
}

.spotlight__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.spotlight__line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-text);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__line { width: 48px; }

.spotlight__label span:last-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  transition: letter-spacing 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__label span:last-child { letter-spacing: 0.3em; }

.spotlight h2 { margin-bottom: 24px; }

.spotlight__word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__word--1 { transform: translateY(-2px); }
.spotlight:hover .spotlight__word--2 { transform: translateX(12px); }

.spotlight p {
  font-size: 15px;
  color: var(--color-text-muted);
  opacity: 0.6;
  line-height: 1.8;
  transition: opacity 0.7s, transform 0.7s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover p { opacity: 1; transform: translateY(-4px); }

.spotlight__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.spotlight__cta-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

.spotlight:hover .spotlight__cta-circle {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.spotlight__cta-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  opacity: 0.5;
  transform: translateX(-8px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__cta-text { opacity: 1; transform: translateX(0); }

.spotlight__image-wrap {
  position: relative;
  flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__image-wrap { transform: translateX(4px) translateY(-4px); }

.spotlight__frame {
  position: absolute;
  inset: -16px;
  border: 1px solid transparent;
  transition: border-color 0.7s, transform 0.7s;
}

.spotlight:hover .spotlight__frame {
  border-color: rgba(0,0,0,0.12);
  transform: scale(1.01);
}

.spotlight__image {
  position: relative;
  width: 360px;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
}

.spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight:hover .spotlight__image img { transform: scale(1.03); }

.spotlight__corner {
  position: absolute;
  background: rgba(255,255,255,0.8);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight__corner--tl-v { top: 12px; left: 12px; width: 1px; height: 24px; transform: scaleY(0); transform-origin: top; }
.spotlight__corner--tl-h { top: 12px; left: 12px; width: 24px; height: 1px; transform: scaleX(0); transform-origin: left; }
.spotlight__corner--br-v { bottom: 12px; right: 12px; width: 1px; height: 24px; transform: scaleY(0); transform-origin: bottom; }
.spotlight__corner--br-h { bottom: 12px; right: 12px; width: 24px; height: 1px; transform: scaleX(0); transform-origin: right; }

.spotlight:hover .spotlight__corner { opacity: 1; transform: scaleX(1) scaleY(1); }
.spotlight:hover .spotlight__corner--tl-h { transition-delay: 50ms; }
.spotlight:hover .spotlight__corner--br-v { transition-delay: 100ms; }
.spotlight:hover .spotlight__corner--br-h { transition-delay: 150ms; }

@media (max-width: 768px) {
  .spotlight { flex-direction: column !important; text-align: center; }
  .spotlight__image { width: 280px; height: 320px; }
  .spotlight__label { justify-content: center; }
  .spotlight__cta { justify-content: center; }
}

/* Mobile refinements */
@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; gap: 16px; }
  .listing-card__info { padding: 16px; }
  
  .zoom-parallax__sticky { display: none; }
  .zoom-parallax { height: auto; }
}


/* ============================================
   PAGE HERO — Taller variant with subtitle
   ============================================ */
.page-hero--tall {
  height: 65vh;
  min-height: 500px;
}

.page-hero__subtitle {
  font-size: 16px;
  color: var(--color-text-on-dark-muted);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ============================================
   HERO STATS BAR — Bottom of hero
   ============================================ */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(20, 34, 35, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(179, 196, 193, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  border-right: 1px solid rgba(179, 196, 193, 0.1);
}

.hero-stat:last-child { border-right: none; }

.hero-stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1;
}

.hero-stat__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-sage);
  font-weight: 300;
}

.hero-stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-on-dark-muted);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stat {
    flex: 1 1 50%;
    padding: 16px 24px;
  }
  .hero-stat__num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-stat { flex: 1 1 50%; padding: 12px 16px; }
  .hero-stat__num { font-size: 1.5rem; }
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--color-forest);
  position: relative;
  overflow: hidden;
}

.process-section__header {
  margin-bottom: 64px;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-sage), var(--color-sage), transparent);
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.process-step__marker {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--color-sage);
  background: var(--color-forest);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-sage);
  font-weight: 400;
  transition: all 0.4s ease;
}

.process-step:hover .process-step__num {
  background: var(--color-sage);
  color: var(--color-forest);
  box-shadow: 0 0 24px var(--color-accent-glow);
}

.process-step__content {
  padding: 24px;
  background: rgba(179, 196, 193, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.process-step:hover .process-step__content {
  border-color: var(--color-sage);
  transform: translateY(-2px);
}

.process-step--left .process-step__content { grid-column: 1; grid-row: 1; }
.process-step--right .process-step__content { grid-column: 3; grid-row: 1; }

.process-step__content h3 {
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 12px;
  font-weight: 300;
}

.process-step__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-on-dark-muted);
}

@media (max-width: 768px) {
  .process-timeline::before { left: 24px; }
  .process-step {
    display: flex;
    gap: 16px;
  }
  .process-step__marker { flex-shrink: 0; }
  .process-step__num { width: 40px; height: 40px; font-size: 0.9rem; }
  .process-step__content { flex: 1; }
}

/* ============================================
   FEATURE CARDS — Clean, elegant
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 40px 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-forest);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.feature-card__line {
  width: 32px;
  height: 2px;
  background: var(--color-sage);
  margin-top: 20px;
  transition: width 0.5s var(--ease-out-expo);
}

.feature-card:hover .feature-card__line {
  width: 64px;
}

@media (max-width: 768px) {
  .feature-grid,
  .feature-grid--3 { grid-template-columns: 1fr; }
}

/* ============================================
   CLICKMAP — Interactive SVG map section
   ============================================ */
.clickmap-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.clickmap-section--areas {
  padding-top: 0;
}

.clickmap-section__header {
  margin-bottom: 48px;
}

.clickmap-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto 32px;
}

.clickmap-wrapper--large {
  max-width: 800px;
}

.clickmap-container {
  width: 100%;
}

.clickmap-container svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Override SVG fill colors to match our theme */
.clickmap-container svg .st0 { fill: var(--color-forest) !important; }
.clickmap-container svg .st2 { fill: var(--color-sage) !important; stroke: var(--color-sage-muted) !important; }

.clickmap-container svg a {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.clickmap-container svg a:hover {
  opacity: 0.85;
}

.clickmap-container svg a:hover .st0 {
  fill: #1a3030 !important;
}

.clickmap-tooltip {
  position: absolute;
  padding: 8px 16px;
  background: var(--color-forest);
  color: var(--color-cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  z-index: 10;
}

.clickmap-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.clickmap-legend {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.clickmap-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--color-border-light);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.clickmap-legend__item:hover {
  border-color: var(--color-sage);
  background: rgba(179, 196, 193, 0.08);
}

.clickmap-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sage);
}

.clickmap-legend__name {
  font-weight: 500;
  color: var(--color-text);
}

.clickmap-legend__count {
  color: var(--color-text-muted);
  font-size: 12px;
}

/* ============================================
   DEVELOPMENT PAGES — Features bar
   ============================================ */
.dev-features-bar {
  display: flex;
  justify-content: center;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.dev-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px;
  border-right: 1px solid var(--color-border-light);
}

.dev-feature:last-child { border-right: none; }

.dev-feature__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-forest);
  line-height: 1.2;
}

.dev-feature__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .dev-features-bar { flex-wrap: wrap; }
  .dev-feature {
    flex: 1 1 50%;
    padding: 20px 24px;
  }
}

/* Floor plan card enhancements */
.floor-plan-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-forest);
  color: var(--color-sage);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floor-plan-card__image {
  position: relative;
}

.floor-plan-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-forest);
  transition: gap 0.3s ease;
}

.floor-plan-card:hover .floor-plan-card__link {
  gap: 8px;
  color: var(--color-sage-muted);
}

/* Services grid 4-column variant */
.services-cta-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .services-cta-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-cta-grid--4 { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================
   AVAILABILITY GRID
   ============================================ */
.availability-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.availability-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  min-width: 240px;
  transition: border-color 0.3s;
}

.availability-item:hover {
  border-color: var(--color-sage);
}

.availability-item__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.availability-item__status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest-bright);
}

/* ============================================
   SPLIT CONTENT (2 column text)
   ============================================ */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .split-content { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   ABOUT STATS BAR
   ============================================ */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 40px;
  flex: 1;
  border-right: 1px solid var(--color-border-light);
}

.about-stat:last-child { border-right: none; }

.about-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-forest);
  line-height: 1;
}

.about-stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about-stats { flex-wrap: wrap; }
  .about-stat { flex: 1 1 50%; padding: 20px; }
}

@media (max-width: 480px) {
  .about-stat { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--color-border-light); }
  .about-stat:last-child { border-bottom: none; }
}
