/* ============================================================
   WESTBROOK RV & TINY HOME PARK â€” Main Stylesheet
   Brand Color: #3E5C28 (Dark Forest Green)
   ============================================================ */

/* â”€â”€ CSS Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --green-dark:    #2C4219;
  --green-primary: #3E5C28;
  --green-mid:     #4F7533;
  --green-light:   #6A9944;
  --green-pale:    #A8C882;
  --cream:         #F5F0E8;
  --cream-dark:    #EDE5D4;
  --white:         #FFFFFF;
  --text-dark:     #1A1A1A;
  --text-mid:      #444444;
  --text-light:    #777777;
  --overlay-dark:  rgba(30, 44, 18, 0.72);
  --overlay-mid:   rgba(44, 66, 25, 0.55);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.15);
  --shadow-lg:     0 14px 50px rgba(0,0,0,0.22);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Segoe UI', Arial, sans-serif;
}

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.65rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-subtitle.light { color: rgba(255,255,255,0.80); }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline-green:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* â”€â”€ Layout Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}
.text-center { text-align: center; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAVIGATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#site-header.scrolled {
  background: rgba(30, 44, 18, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}
.header-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  transition: height var(--transition);
}
#site-header.scrolled .header-logo img { height: 50px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-pale);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--green-pale); }
.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-phone {
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero-location {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 0.6rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.8rem;
}
.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 2.2rem;
}
.hero-tagline span {
  color: var(--green-pale);
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-phone {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.hero-phone:hover { color: var(--white); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS STRIP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#stats-strip {
  background: var(--green-primary);
  padding: 24px 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  divide: var(--white);
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LEASING SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#leasing {
  background: var(--cream);
  padding: 90px 0;
}
.leasing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.leasing-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leasing-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.leasing-image-wrap:hover img { transform: scale(1.04); }
.leasing-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
}
.leasing-image-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-pale);
}
.leasing-content .section-label { color: var(--green-mid); }
.leasing-content .section-title { text-align: left; margin-bottom: 0.75rem; }
.leasing-content p { color: var(--text-mid); margin-bottom: 1.75rem; }

.lease-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.75rem;
}
.lease-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: var(--transition);
}
.lease-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.lease-card .months {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
}
.lease-card .months-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leasing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.feature-row svg {
  width: 20px; height: 20px;
  color: var(--green-primary);
  flex-shrink: 0;
}
.leasing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOCATION SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#location {
  background: var(--white);
  padding: 90px 0;
}
.location-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.location-intro .section-title { margin-bottom: 0.6rem; }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.proximity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proximity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 22px;
  border-left: 4px solid var(--green-primary);
  transition: var(--transition);
}
.proximity-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.proximity-name {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.proximity-name svg {
  width: 18px; height: 18px;
  color: var(--green-primary);
}
.proximity-time {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-primary);
  background: rgba(62,92,40,0.10);
  padding: 4px 12px;
  border-radius: 50px;
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  background: var(--cream);
  position: relative;
}
.location-map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.map-address-chip {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AMENITIES SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#amenities {
  background: var(--green-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
#amenities::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--green-primary);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
#amenities::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 350px; height: 350px;
  background: var(--green-mid);
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}
.amenities-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.amenities-header .section-label { color: var(--green-pale); }
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168,200,130,0.15);
  border: 1px solid var(--green-pale);
  color: var(--green-pale);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.coming-soon-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-pale);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.amenity-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.amenity-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--green-pale);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}
/* Photo-backed amenity cards */
.amenity-card.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: opacity var(--transition);
  z-index: 0;
  border-radius: var(--radius-lg);
}
.amenity-card.has-photo:hover::before { opacity: 0.25; }
.amenity-card.has-photo > * { position: relative; z-index: 1; }
.amenity-card.photo-pool::before    { background-image: url('../image/pool.jpg'); }
.amenity-card.photo-nature::before  { background-image: url('../image/tiny-home.jpg'); }
.amenity-icon {
  width: 52px; height: 52px;
  background: var(--green-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.6rem;
}
.amenity-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 0.4rem;
}
.amenity-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.amenity-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.amenity-list li::before {
  content: ✔;
  color: var(--green-pale);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALLERY SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#gallery {
  background: var(--cream);
  padding: 90px 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; height: 320px; }
.gallery-item:nth-child(2) { grid-column: 3;     grid-row: 1; height: 320px; }
.gallery-item:nth-child(3) { grid-column: 1;     grid-row: 2; height: 260px; }
.gallery-item:nth-child(4) { grid-column: 2;     grid-row: 2; height: 260px; }
.gallery-item:nth-child(5) { grid-column: 3;     grid-row: 2; height: 260px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-mid);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEWSLETTER SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#newsletter {
  background: var(--white);
  padding: 90px 0;
}
.newsletter-box {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-copy .section-label { color: var(--green-pale); }
.newsletter-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.newsletter-form-wrap { position: relative; z-index: 1; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-group input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.form-group input[type="email"]:focus {
  border-color: var(--green-pale);
  background: rgba(255,255,255,0.18);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-group label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}
.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--green-primary);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.form-submit-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.form-msg {
  display: none;
  margin-top: 0.75rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-msg.success {
  display: block;
  background: rgba(168,200,130,0.25);
  color: var(--green-pale);
  border: 1px solid var(--green-pale);
}
.form-msg.error {
  display: block;
  background: rgba(200,80,80,0.20);
  color: #ffaaaa;
  border: 1px solid rgba(200,80,80,0.40);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.70);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.60);
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--green-pale);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.80rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .leasing-grid   { gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-menu    { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger   { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(30,44,18,0.98);
    backdrop-filter: blur(12px);
    padding: 24px 24px 32px;
    gap: 1.5rem;
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.10);
    z-index: 999;
  }
  .nav-menu.open .btn { display: flex; }

  .leasing-grid   { grid-template-columns: 1fr; }
  .location-layout{ grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; height: 220px; }
  .gallery-item:nth-child(2) { grid-column: auto; grid-row: auto; height: 200px; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; height: 200px; }

  .newsletter-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid     { flex-wrap: wrap; }
  .stat-item      { min-width: 140px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat-item:last-child { border-bottom: none; }
  .lease-cards    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .amenities-grid  { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item    { height: 220px !important; grid-column: auto !important; grid-row: auto !important; }
  .lease-cards     { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; align-items: center; }
  .leasing-actions { flex-direction: column; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}
