*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#ffffff;
  --text:#1f1f1f;
  --muted:#6b6b6b;
  --light:#f7f5f1;
  --light-2:#f2efe9;
  --line:#e7e2d9;
  --accent:#c5a46d;
  --accent-dark:#aa8751;
  --white:#ffffff;
  --shadow:0 18px 45px rgba(0,0,0,0.08);
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  max-width:100%;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
  max-width:100%;
  touch-action:pan-y;
}

img{ max-width:100%; display:block; }

.section-shell{ width:min(1180px, 90%); margin:0 auto; }

.section-kicker{
  font-size:12px !important;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent-dark);
  margin-bottom:14px;
}

.section-kicker.center,
.section-title.center{ text-align:center; }

.section-title{
  font-family:'Playfair Display',serif;
  font-size:46px;
  line-height:1.1;
  margin-bottom:20px;
}


/* ================================
   SCROLL REVEAL — BASE
   ================================ */

[data-reveal]{
  opacity:0;
  transform:translateY(36px);
  transition:opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}

[data-reveal="left"]{
  opacity:0;
  transform:translateX(-48px);
  transition:opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}

[data-reveal="right"]{
  opacity:0;
  transform:translateX(48px);
  transition:opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}

[data-reveal="scale"]{
  opacity:0;
  transform:scale(0.92);
  transition:opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}

[data-reveal].revealed{
  opacity:1;
  transform:none;
}

[data-delay="100"]{ transition-delay:0.1s; }
[data-delay="200"]{ transition-delay:0.2s; }
[data-delay="300"]{ transition-delay:0.3s; }
[data-delay="400"]{ transition-delay:0.4s; }
[data-delay="500"]{ transition-delay:0.5s; }
[data-delay="600"]{ transition-delay:0.6s; }


/* ================================
   NAVBAR
   ================================ */

.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:1000;
  transition:all 0.35s ease;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border-bottom:1px solid transparent;
}

.navbar.scrolled{
  background:rgba(247,245,241,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 8px 32px rgba(0,0,0,0.08);
  border-bottom:1px solid rgba(229,220,208,0.5);
}

.nav-container{
  width:min(1180px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
}

/* Logo desktop */
.logo{
  opacity:0;
  pointer-events:none;
  transition:opacity 0.35s ease;
}
.navbar.scrolled .logo{
  opacity:1;
  pointer-events:auto;
}
.logo img{
  height:44px;
  width:auto;
  display:block;
  filter:brightness(0);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-links a{
  color:var(--white);
  text-decoration:none;
  font-size:14px;
  font-weight:400;
  opacity:0.95;
  transition:opacity 0.2s ease, color 0.35s ease;
  position:relative;
}
.navbar.scrolled .nav-links a{ color:var(--text); }

.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-3px; left:0;
  width:0; height:1px;
  background:var(--accent);
  transition:width 0.3s ease;
}
.nav-links a:hover{ opacity:0.9; }
.nav-links a:hover::after{ width:100%; }


/* ================================
   HAMBURGER
   ================================ */

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  width:40px;
  height:40px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:6px;
  z-index:1100;
  flex-shrink:0;
}

.hamburger span{
  display:block;
  width:100%;
  height:2px;
  background:white;
  border-radius:2px;
  transition:all 0.3s ease, background 0.35s ease;
}

.navbar.scrolled .hamburger span{ background:var(--text); }

.hamburger.open span{ background:white !important; }

.hamburger.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }


/* ================================
   HERO
   ================================ */

.hero{
  position:relative;
  min-height:100svh;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-gradient{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.55));
}

.hero-content{
  position:absolute;
  left:50%;
  top:54%;
  transform:translate(-50%,-50%);
  width:min(900px, 90%);
  text-align:center;
  color:var(--white);
}

.hero-kicker{
  font-size:13px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  margin-bottom:16px;
  opacity:0;
  transform:translateY(20px);
  animation:heroFadeUp 0.9s cubic-bezier(.22,.61,.36,1) 0.4s forwards;
}

.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:68px;
  line-height:1.02;
  font-weight:400;
  margin-bottom:18px;
  opacity:0;
  transform:translateY(28px);
  animation:heroFadeUp 1s cubic-bezier(.22,.61,.36,1) 0.65s forwards;
}

.hero-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  opacity:0;
  transform:translateY(20px);
  animation:heroFadeUp 0.9s cubic-bezier(.22,.61,.36,1) 0.95s forwards;
}

@keyframes heroFadeUp{
  to{ opacity:0.85; transform:translateY(0); }
}
.hero-buttons .btn{ opacity:1; }

.hero-logo{
  width:min(245px, 55%);
  height:auto;
  margin:0 auto 30px;
  display:block;
  filter:brightness(0) invert(1);
  opacity:0.85;
}

.hero-scroll{
  position:absolute;
  bottom:36px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  opacity:0;
  animation:heroFadeUp 0.9s ease 1.4s forwards;
  cursor:pointer;
}
.hero-scroll span{
  font-size:11px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
}
.scroll-line{
  width:1px; height:40px;
  background:rgba(255,255,255,0.3);
  position:relative;
  overflow:hidden;
}
.scroll-line::after{
  content:'';
  position:absolute;
  top:-100%; left:0;
  width:1px; height:100%;
  background:white;
  animation:scrollDown 1.6s ease infinite;
}
@keyframes scrollDown{
  0%{ top:-100%; opacity:1; }
  100%{ top:100%; opacity:0; }
}


/* ================================
   BUTTONS
   ================================ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  padding:12px 24px;
  border-radius:999px;
  text-decoration:none;
  transition:all 0.3s ease;
  font-weight:500;
  font-size:14px;
}

.btn-primary{ background:var(--white); color:var(--text); }
.btn-primary:hover{ transform:translateY(-3px); background:#f2f2f2; box-shadow:0 12px 30px rgba(0,0,0,0.2); }

.btn-secondary{
  border:1px solid rgba(255,255,255,0.7);
  color:var(--white);
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(6px);
}
.btn-secondary:hover{ background:rgba(255,255,255,0.2); transform:translateY(-3px); }


/* ================================
   STATS
   ================================ */

.stats{
  margin-top:-54px;
  position:relative;
  z-index:10;
  padding-bottom:0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  background:var(--white);
  border-radius:22px;
  padding:28px 20px;
  box-shadow:var(--shadow);
  text-align:center;
}

.stat-number{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:28px;
  margin-bottom:6px;
  line-height:1.2;
}
.stat-label{ display:block; color:var(--muted); font-size:13px; line-height:1.4; }


/* ================================
   ABOUT
   ================================ */

.about{ padding:120px 0 70px; }

.about-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:54px;
  align-items:center;
}

.about-copy h2{
  font-family:'Playfair Display',serif;
  font-size:50px;
  line-height:1.08;
  margin-bottom:24px;
}
.about-copy p{
  font-size:16px;
  color:var(--muted);
  margin-bottom:16px;
}

.about-image-wrap{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-image{ width:100%; height:520px; object-fit:cover; }

/* ================================
   LIFESTYLE
   ================================ */

.lifestyle{ padding:30px 0 110px; }

.lifestyle-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:24px;
}

.lifestyle-image,
.lifestyle-text-card{ border-radius:26px; overflow:hidden; }

.lifestyle-image.large img{ width:100%; height:560px; object-fit:cover; }

.lifestyle-side{ display:grid; grid-template-rows:auto auto; gap:16px; }

.lifestyle-image.small img{ width:100%; height:270px; object-fit:cover; }

.lifestyle-text-card{
  background:var(--light);
  padding:34px 30px;
  border:1px solid var(--line);
}
.lifestyle-text-card h3{
  font-family:'Playfair Display',serif;
  font-size:32px;
  line-height:1.15;
  margin-bottom:12px;
}
.lifestyle-text-card p{ color:var(--muted); }


/* ================================
   MASTERPLAN
   ================================ */

.masterplan{ padding:120px 0; }

.masterplan-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:36px;
  align-items:center;
}

.masterplan-copy h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1.08;
  margin-bottom:20px;
}
.masterplan-copy p{ color:var(--muted); margin-bottom:22px; }

.text-link{
  text-decoration:none;
  color:var(--accent-dark);
  font-weight:600;
  position:relative;
  display:inline-block;
  transition:color 0.2s ease;
}
.text-link::after{
  content:'';
  position:absolute;
  bottom:-2px; left:0;
  width:100%; height:1px;
  background:var(--accent-dark);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.3s ease;
}
.text-link:hover::after{ transform:scaleX(1); }

.masterplan-image-wrap{
  background:var(--white);
  border-radius:28px;
  padding:16px;
  box-shadow:var(--shadow);
}
.masterplan-image{ width:100%; border-radius:18px; cursor:pointer; }


/* ================================
   LOCATION
   ================================ */

.location{ padding:120px 0; background:#f7f5f1; }

.location-container{
  width:min(1180px, 90%);
  margin:0 auto;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.location-text{ max-width:480px; }
.location-text h2{
  font-family:'Playfair Display',serif;
  font-size:54px;
  line-height:1.05;
  margin:18px 0 20px;
  color:#1f1f1f;
}
.location-text p{ font-size:17px; line-height:1.8; color:#666; margin-bottom:30px; }

.map-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:white;
  border:1.5px solid #d8d1c6;
  border-radius:40px;
  font-weight:500;
  font-size:15px;
  color:#2c2c2c;
  text-decoration:none;
  transition:all .3s ease;
}
.map-button:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,0.1);
  border-color:var(--accent);
  color:var(--accent-dark);
}
.map-icon{ font-size:18px; transition:transform 0.3s ease; }
.map-button:hover .map-icon{ transform:scale(1.2); }

.location-map{ display:flex; justify-content:center; align-items:center; }
.location-map img{ width:100%; max-width:760px; height:auto; display:block; object-fit:contain; }

.location-map iframe{
  width:100%;
  height:440px;
  border:none;
  border-radius:24px;
  box-shadow:var(--shadow);
  display:block;
}


/* ================================
   CONTACT
   ================================ */

.contact{ padding: 60px 0; }

.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
  align-items:start;
}

.contact-copy{ padding-top:10px; }
.contact-copy h2{
  font-family:'Playfair Display',serif;
  font-size:46px;
  line-height:1.08;
  margin-bottom:16px;
}
.contact-copy p{ color:var(--muted); max-width:450px; }

.contact-form{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:50px;
  transition:box-shadow 0.4s ease;
}
.contact-form:focus-within{ box-shadow:0 30px 70px rgba(0,0,0,0.12); }

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #ddd6ca;
  border-radius:16px;
  padding:15px 16px;
  font-family:'Inter',sans-serif;
  font-size:15px;
  outline:none;
  background:#fffdf9;
  transition:border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance:none;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(197,164,109,0.12);
}
.contact-form textarea{ min-height:140px; resize:vertical; }

.contact-form button{
  border:none;
  border-radius:999px;
  padding:16px 20px;
  background:var(--text);
  color:var(--white);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form button:hover{
  background:#2d2d2d;
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,0.2);
}
.contact-form button:disabled{ opacity:0.6; cursor:not-allowed; }


/* ================================
   FOOTER
   ================================ */

.footer{
  background:black;
  color:rgba(255,255,255,0.55);
  border-top:1px solid rgba(255,255,255,0.07);
}

.footer-bar{
  width:min(1280px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 0;
  gap:24px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.footer-logo{
  width:36px; height:36px;
  object-fit:contain;
  opacity:0.85;
  filter:brightness(0) invert(1);
}
.footer-name{
  font-family:'Playfair Display', serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:0.12em;
  color:rgba(255,255,255,0.85);
}
.footer-copy{
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.35);
}
.footer-nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex-shrink:0;
}
.footer-nav a{
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.45);
  text-decoration:none;
  transition:color 0.2s ease;
}
.footer-nav a:hover{ color:var(--accent); }


/* ================================
   LIGHTBOX
   ================================ */

.lightbox{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
  transition:background 0.35s ease;
}
.lightbox.open{ background:rgba(0,0,0,0.92); }
.lightbox img{
  max-width:90%; max-height:80%;
  border-radius:10px;
  opacity:0;
  transition: opacity 0.35s ease;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox.open img{ opacity:1; }
.close-lightbox{
  position:absolute;
  top:24px; right:30px;
  font-size:40px;
  color:white;
  cursor:pointer;
  transition:transform 0.3s ease, opacity 0.2s ease;
  opacity:0.7;
  line-height:1;
}
.close-lightbox:hover{ transform:rotate(90deg); opacity:1; }


/* ================================
   WHATSAPP
   ================================ */

.whatsapp-button{
  position:fixed;
  bottom:24px; right:24px;
  width:56px; height:56px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
  z-index:999;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  animation:waPulse 2.5s ease 3s infinite;
}
@keyframes waPulse{
  0%,100%{ box-shadow:0 8px 25px rgba(0,0,0,0.3); }
  50%{ box-shadow:0 8px 25px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.12); }
}
.whatsapp-button:hover{
  transform:scale(1.1) translateY(-3px);
  box-shadow:0 16px 40px rgba(37,211,102,0.4);
  animation:none;
}
.whatsapp-button img{ width:28px; }


/* ================================
   PRICE BADGE
   ================================ */

.price-badge{
  display:inline-block;
  margin-top:18px;
  margin-bottom:20px;
  padding:10px 18px;
  background:#f2efe9;
  border-radius:30px;
  font-size:15px;
  color:#444;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}
.price-badge:hover{
  background:var(--accent);
  color:white;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(197,164,109,0.3);
}
.price-badge:hover strong{ color:white; }
.price-badge strong{ color:#c5a46d; font-weight:600; transition:color 0.3s ease; }


/* ================================
   AMENITIES — CAROUSEL
   ================================ */

.amenities{
  padding:80px 0 70px;
  background:var(--light);
  overflow:hidden;
}

.amenities-subtitle{
  text-align:center;
  max-width:640px;
  margin:0 auto 20px;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.am-carousel-outer{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}

.am-scroll-wrap{
  flex:1;
  min-width:0;
  overflow:hidden;
}

.am-scroll-track{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:24px;
  padding:40px 0 50px;
}

.am-card{
  flex:0 0 360px;
  background:var(--white);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  cursor:pointer;
}
.am-card.active{
  box-shadow:0 20px 50px rgba(0,0,0,0.13);
  cursor:default;
}

.am-img{
  width:100%;
  height:230px;
  overflow:hidden;
  position:relative;
}
.am-img img{
  width:100%; height:100%;
  object-fit:cover;
}

.am-img.no-image{
  background:linear-gradient(135deg, #f2efe9, #e4ddd3);
  display:flex;
  align-items:center;
  justify-content:center;
}
.am-icon{ font-size:52px; opacity:0.5; }

.am-lightbox-trigger{ cursor:zoom-in; }
.am-zoom{
  position:absolute;
  top:10px; right:12px;
  font-size:18px;
  color:white;
  background:rgba(0,0,0,0.35);
  border-radius:50%;
  width:32px; height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.25s ease;
  pointer-events:none;
}
.am-card.active .am-lightbox-trigger:hover .am-zoom{ opacity:1; }

.am-body{ padding:22px 24px 28px; }
.am-body h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  margin-bottom:8px;
  color:var(--text);
}
.am-body p{ color:var(--muted); font-size:14px; line-height:1.75; }

.am-arrow{
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid #d8d1c6;
  background:white;
  color:var(--text);
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.25s ease;
  z-index:10;
}
.am-arrow:hover{
  background:var(--text);
  color:white;
  border-color:var(--text);
  transform:scale(1.1);
}
.am-arrow:active{ transform:scale(0.96); }


/* ================================
   PAGE TRANSITION
   ================================ */

.page-enter{
  position:fixed;
  inset:0;
  background:var(--light);
  z-index:9999;
  animation:pageIn 0.6s ease forwards;
  pointer-events:none;
}
@keyframes pageIn{
  0%{ transform:scaleY(1); transform-origin:top; }
  100%{ transform:scaleY(0); transform-origin:top; }
}


/* ================================
   CURSOR GLOW
   ================================ */

@media (hover:hover){
  .cursor-glow{
    pointer-events:none;
    position:fixed;
    width:300px; height:300px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(197,164,109,0.06) 0%, transparent 70%);
    transform:translate(-50%,-50%);
    z-index:0;
    transition:opacity 0.3s ease;
    will-change:transform;
  }
}


/* ================================
   RESPONSIVE — TABLET (≤1024px)
   ================================ */

@media (max-width:1024px){
  .hero-content h1{ font-size:54px; }
  .section-title{ font-size:38px; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .about-grid,
  .masterplan-grid,
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
  .lifestyle-grid{ grid-template-columns:1fr; }
  .lifestyle-image.large img{ height:420px; }
  .location-container{ grid-template-columns:1fr; gap:44px; }
  .location-text{ max-width:100%; }
}


/* ================================
   RESPONSIVE — MOBILE (≤768px)
   ================================ */

@media (max-width:768px){

  /* --- Navbar --- */
  .nav-container{ padding:16px 0; }
  .hamburger{ display:flex; }

  .navbar.scrolled .logo{ opacity:1; pointer-events:auto; }

  /* Mobile nav overlay */
  .nav-links{
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100dvh;
    background:rgba(15,14,12,0.97);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:32px;
    z-index:1050;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    font-size:26px;
    font-family:'Playfair Display', serif;
    font-weight:500;
    color:var(--white) !important;
    opacity:0.9;
    letter-spacing:0.02em;
  }
  .nav-links a::after{ display:none; }

  /* --- Hero --- */
  .hero{ min-height:100svh; }
  .hero-content{ top:52%; width:92%; }
  .hero-content h1{ font-size:36px; line-height:1.1; }
  .hero-kicker{ font-size:11px; }
  .hero-logo{ width:min(200px, 60%); margin-bottom:24px; }
  .hero-buttons{ flex-direction:column; align-items:center; gap:12px; margin-top:24px; }
  .hero-buttons .btn{ width:100%; max-width:280px; min-width:0; padding:14px 20px; font-size:14px; }
  .hero-scroll{ display:none; }

  /* --- Stats --- */
  .stats{ margin-top:0; padding-top:60px; }
  .stats-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .stat-card{ padding:20px 14px; border-radius:18px; }
  .stat-number{ font-size:22px; }
  .stat-label{ font-size:12px; }

  /* --- Sections base padding --- */
  .about,
  .lifestyle,
  .amenities,
  .masterplan,
  .location,
  .contact{
    padding-top:72px;
    padding-bottom:72px;
  }

  /* --- About --- */
  .about-grid{ grid-template-columns:1fr; gap:32px; }
  .about-copy h2{ font-size:32px; line-height:1.1; margin-bottom:16px; }
  .about-copy p{ font-size:15px; }
  .about-image{ height:300px; }
  .about { padding-bottom: 0; }

  /* --- Lifestyle --- */
  .lifestyle-grid{ grid-template-columns:1fr; gap:16px; }
  .lifestyle-side { grid-template-rows:auto auto; gap:16px; }
  .lifestyle-image.large img{ height:280px; }
  .lifestyle-image.small img{ height:210px; }
  .lifestyle-text-card{ padding:26px 22px; border-radius:20px; }
  .lifestyle-text-card h3{ font-size:26px; }

  /* --- Amenities --- */
  .amenities-subtitle { font-size:15px; margin-bottom:40px; }
  .am-carousel-outer { gap:10px; padding:0 16px; }
  .am-scroll-wrap { overflow: visible; }
  .am-scroll-track { gap:0; padding:24px 0 32px; justify-content:center; }
  .am-card { flex:0 0 100%; max-width:100%; display:none; }
  .am-card.active { display:flex; flex-direction:column; }
  .am-arrow { width:38px; height:38px; font-size:14px; }

  /* --- Masterplan --- */
  .masterplan-grid{ grid-template-columns:1fr; gap:32px; }
  .masterplan-copy h2{ font-size:32px; line-height:1.1; }

  /* --- Location --- */
  .location-container{ grid-template-columns:1fr; gap:36px; }
  .location-text{
    max-width:100%;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .location-text h2{ font-size:36px; margin:12px 0 16px; }
  .location-text p{ font-size:15px; }
  .location-map iframe{ height:320px; border-radius:18px; }

  /* --- Contact --- */
  .contact{ padding-top:0; padding-bottom:80px; }
  .contact-grid{ grid-template-columns:1fr; gap:28px; }
  .contact-copy h2{ font-size:32px; }
  .contact-form{ margin-top:0; padding:22px 18px; border-radius:22px; }
  .contact-form input,
  .contact-form textarea{ font-size:16px; border-radius:14px; }

  /* --- Footer --- */
  .footer-bar{
    flex-direction:column;
    text-align:center;
    gap:16px;
    padding:28px 0;
  }
  .footer-nav{ flex-wrap:wrap; justify-content:center; gap:12px; }
  .footer-copy{ font-size:11px; }

  /* --- Section title --- */
  .section-title{ font-size:30px; }
}


/* ================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ================================ */

@media (max-width:400px){
  .hero-content h1{ font-size:30px; }
  .stats-grid{ grid-template-columns:1fr; }
  .stat-card{ padding:18px 14px; }
  .am-card{ flex:0 0 90vw; max-width:320px; }
  .about-copy h2,
  .masterplan-copy h2,
  .contact-copy h2{ font-size:28px; }
  .location-text h2{ font-size:30px; }
  .section-title{ font-size:28px; }
}

#contact {
  scroll-margin-top: 80px;
}

#amenities {
  scroll-margin-top: 80px;
}

.lightbox-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.lightbox-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(6px);
  line-height: 1;
}

.lightbox-controls button:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox.open img { opacity: 1; }