*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1a2e1a;
  --deep:     #0d1f0d;
  --moss:     #2d4a2d;
  --sage:     #5a7a5a;
  --light:    #e8f0e8;
  --cream:    #f5f0e8;
  --gold:     #c9a84c;
  --gold2:    #e8c97a;
  --white:    #ffffff;
  --river:    #3a6b8a;
  --river2:   #6aadcf;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
}
nav.scrolled {
  background: rgba(13,31,13,0.92);
  backdrop-filter: blur(18px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo img {
  height: 48px; filter: brightness(1.1) drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  transition: transform 0.3s;
}
.nav-logo img:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold2); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--deep) !important; padding: 0.55rem 1.4rem; border-radius: 50px;
  font-weight: 600 !important; transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.45) !important; color: var(--deep) !important; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://www.portalterreno.com/imagenes/proyectos/1410030745_dji_0914.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  filter: brightness(0.55) saturate(1.1);
}
#hero.loaded .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,13,0.65) 0%,
    rgba(13,31,13,0.3) 50%,
    rgba(13,31,13,0.75) 100%
  );
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(201,168,76,0.35);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.8rem;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold2); backdrop-filter: blur(10px);
  opacity: 0; animation: fade-up 0.9s 0.3s forwards;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; color: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, var(--gold2) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0; animation: fade-up 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  margin-top: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.6;
  opacity: 0; animation: fade-up 1s 0.7s forwards;
}
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
  opacity: 0; animation: fade-up 1s 0.85s forwards;
}
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  opacity: 0; animation: fade-up 1s 1s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold2);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 0.3rem;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap;
  opacity: 0; animation: fade-up 1s 1.15s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--deep); font-weight: 600; font-size: 0.9rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none;
  letter-spacing: 0.05em; border: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.55); }
.btn-secondary {
  background: transparent; color: var(--white); font-weight: 500; font-size: 0.9rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  letter-spacing: 0.05em;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; animation: fade-up 1s 1.4s forwards;
  cursor: pointer; text-decoration: none;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 7rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.65); margin-top: 0.8rem; line-height: 1.7;
}
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 1.5rem 0;
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════ */
#intro-strip {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.strip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.strip-item {
  display: flex; align-items: center; gap: 1rem;
}
.strip-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.strip-item-text strong {
  display: block; font-size: 0.95rem; font-weight: 600; color: var(--gold2);
}
.strip-item-text span {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════
   SOBRE EL PROYECTO
══════════════════════════════════════ */
#about {
  background: var(--deep);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.about-img-float {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  border: 4px solid var(--deep);
}
.about-badge-img {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  color: var(--deep); text-align: center;
}
.about-badge-img span:first-child { font-size: 1.6rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.about-badge-img span:last-child { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.about-text p {
  color: rgba(255,255,255,0.72); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1.2rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.feature-pill {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.7rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.feature-pill:hover {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.feature-pill-icon { font-size: 1.3rem; }
.feature-pill-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery {
  background: linear-gradient(180deg, var(--deep) 0%, var(--forest) 100%);
  padding-bottom: 0;
}
.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: 16px; position: relative; cursor: pointer;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.2); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,13,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold2); font-weight: 500;
}

/* ══════════════════════════════════════
   ATRIBUTOS / LOTES
══════════════════════════════════════ */
#lots {
  background: linear-gradient(180deg, var(--forest) 0%, var(--deep) 100%);
}
.lots-header { text-align: center; margin-bottom: 4rem; }
.lots-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.lot-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}
.lot-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.lot-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.35); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lot-card:hover::before { opacity: 1; }
.lot-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.4);
}
.lot-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--deep); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.lot-icon {
  width: 64px; height: 64px; border-radius: 18px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.lot-icon.blue  { background: rgba(58,107,138,0.2); border: 1px solid rgba(106,173,207,0.3); }
.lot-icon.green { background: rgba(45,74,45,0.4);   border: 1px solid rgba(90,122,90,0.4); }
.lot-icon.gold  { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); }
.lot-name {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--white);
}
.lot-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 1.5rem;
}
.lot-detail {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.lot-detail-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
}
.lot-detail-item span:first-child { color: var(--gold); font-size: 0.9rem; }

/* ══════════════════════════════════════
   PRECIOS
══════════════════════════════════════ */
#pricing {
  background: var(--deep);
  position: relative; overflow: hidden;
}
#pricing::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.pricing-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.pricing-text .section-subtitle { max-width: 420px; }
.price-range {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px; padding: 2rem;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.price-value { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold2); font-weight: 700; }
.price-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.price-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 1.5rem 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateX(8px); border-color: rgba(201,168,76,0.3); }
.price-card.highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-color: rgba(201,168,76,0.4);
}
.pc-left { display: flex; align-items: center; gap: 1rem; }
.pc-icon { font-size: 1.6rem; }
.pc-name { font-weight: 600; font-size: 0.95rem; }
.pc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.pc-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold2); }

/* ══════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════ */
#location {
  background: linear-gradient(180deg, var(--deep) 0%, var(--forest) 100%);
}
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.location-map {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  aspect-ratio: 4/3;
}
.location-map iframe {
  width: 100%; height: 100%; border: none; display: block; filter: grayscale(30%) saturate(0.9);
}
.map-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(13,31,13,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.75rem; color: var(--gold2); font-weight: 500;
  letter-spacing: 0.08em;
}
.location-points { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.location-point {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s, border-color 0.3s;
}
.location-point:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.2); }
.lp-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.lp-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.lp-text span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
#contact {
  background: var(--deep);
  position: relative; overflow: hidden;
}
#contact::after {
  content: ''; position: absolute; inset: 0;
  background: url('https://www.portalterreno.com/imagenes/proyectos/1410030745_dji_0931.jpg') center/cover;
  opacity: 0.08; pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.contact-inner .section-title { margin-bottom: 0.5rem; }
.contact-inner .section-subtitle { margin-bottom: 3rem; }
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  text-align: left;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 0.85rem 1.1rem;
  color: var(--white); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s, background 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.55); background: rgba(255,255,255,0.07);
}
.form-group select option { background: var(--forest); }
.form-submit {
  grid-column: 1 / -1; text-align: center; margin-top: 0.5rem;
}
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--deep); font-weight: 700; font-size: 0.95rem;
  padding: 1rem 3rem; border-radius: 50px; border: none; cursor: pointer;
  letter-spacing: 0.05em; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  width: 100%; max-width: 320px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,0.55); }
.form-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1rem;
  grid-column: 1 / -1; text-align: center;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--deep); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer-logo img { height: 56px; filter: brightness(1.1); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.4); text-align: center;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold2); }
.footer-bottom {
  font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); width: 100%;
}

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.9); transition: transform 0.3s;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(201,168,76,0.3); }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast { display: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid, .pricing-inner, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-float { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .lots-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
}
@media (max-width: 600px) {
  section { padding: 5rem 1.2rem; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
