/* ============================================================
   TERRACE 35 — Quiet Luxury Design System
   Fonts : Cormorant Garamond (display) + Outfit (body)
   Palette : Warm ivory, charcoal, taupe, sage, terracotta
   Inspired by premium Framer real-estate templates
   ============================================================ */

/* ─── Tokens ─── */
:root{
  --bg:#F5F0EB;
  --bg-alt:#EDE7DF;
  --dark:#1A1A1A;
  --dark-soft:#2D2D2D;
  --text:#4A4A4A;
  --text-muted:#8B8B8B;
  --taupe:#8B7D6B;
  --sage:#6B8F71;
  --sage-light:#7EA882;
  --terracotta:#C4694A;
  --white:#FFFFFF;
  --line:rgba(139,125,107,.18);
  --line-dark:rgba(255,255,255,.12);

  --display:'Cormorant Garamond',serif;
  --body:'Outfit',sans-serif;

  --max-w:1320px;
  --section-py:clamp(5rem,10vw,9rem);
  --gap:clamp(1.25rem,3vw,2.5rem);
  --header-h:72px;
  --radius:12px;
  --ease:cubic-bezier(.25,.46,.45,.94);
  --spring:cubic-bezier(.34,1.56,.64,1);
}

/* ─── Reset ─── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--body);font-weight:400;font-size:16px;
  line-height:1.75;color:var(--text);background:var(--bg);
  overflow-x:hidden;-webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font-family:var(--body);cursor:pointer;border:none;background:none;color:inherit}

/* ─── Typography ─── */
h1,h2,h3,h4,h5{font-family:var(--display);font-weight:400;line-height:1.15;color:var(--dark)}
h1{font-size:clamp(3rem,8vw,7rem);letter-spacing:-.03em}
h2{font-size:clamp(2rem,5vw,3.75rem);letter-spacing:-.02em}
h3{font-size:clamp(1.4rem,3vw,2rem)}
p{margin-bottom:1em}

.eyebrow{
  font-family:var(--body);font-size:.7rem;font-weight:600;
  letter-spacing:.25em;text-transform:uppercase;color:var(--taupe);
  display:inline-flex;align-items:center;gap:.75rem;
  margin-bottom:1rem;
}
.eyebrow::before{content:'';width:2rem;height:1px;background:var(--taupe)}

.display-text{
  font-family:var(--display);font-size:clamp(3.5rem,9vw,8rem);
  font-weight:400;line-height:1.05;letter-spacing:-.04em;color:var(--dark);
}

.pull-quote{
  font-family:var(--display);font-size:clamp(1.5rem,3vw,2.25rem);
  font-weight:400;font-style:italic;line-height:1.4;color:var(--dark);
}

/* ─── Layout ─── */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 clamp(1.5rem,4vw,3rem)}
.section{padding:var(--section-py) 0;position:relative}
.section-dark{background:var(--dark);color:rgba(255,255,255,.7)}
.section-dark h2,.section-dark h3{color:#fff}
.section-alt{background:var(--bg-alt)}

/* ─── Buttons ─── */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--body);font-size:.8rem;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;
  padding:1rem 2.5rem;border-radius:50px;
  transition:all .4s var(--ease);white-space:nowrap;position:relative;overflow:hidden;
}
.btn-sage{background:var(--sage);color:#fff}
.btn-sage:hover{background:var(--sage-light);transform:translateY(-2px);box-shadow:0 8px 30px rgba(107,143,113,.3)}
.btn-dark{background:var(--dark);color:#fff}
.btn-dark:hover{background:var(--dark-soft);transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,.2)}
.btn-outline{border:1.5px solid var(--dark);color:var(--dark);background:transparent}
.btn-outline:hover{background:var(--dark);color:#fff;transform:translateY(-2px)}
.btn-outline-light{border:1.5px solid rgba(255,255,255,.4);color:#fff}
.btn-outline-light:hover{background:#fff;color:var(--dark);border-color:#fff}
.btn-ghost{
  color:var(--taupe);font-size:.8rem;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;padding:0;
  position:relative;
}
.btn-ghost::after{content:'';position:absolute;bottom:-.25rem;left:0;width:0;height:1px;background:var(--taupe);transition:width .4s var(--ease)}
.btn-ghost:hover::after{width:100%}
.btn-ghost:hover{color:var(--dark)}

/* ─── Header ─── */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--header-h);
  background:rgba(245,240,235,.95);backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:background .5s,backdrop-filter .5s,border-color .5s;
}
.site-header.scrolled{
  background:rgba(245,240,235,.92);backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:100%;max-width:var(--max-w);margin:0 auto;
  padding:0 clamp(1.5rem,4vw,3rem);
}
.logo{display:flex;align-items:center;text-decoration:none;z-index:1010}
.logo img{height:40px;width:auto;transition:opacity .3s}
.logo .logo-light{display:none}
.site-header .logo .logo-light{display:none}

/* ─── Desktop Nav (inline in header) ─── */
.desktop-nav{
  display:none;align-items:center;gap:clamp(1rem,2.5vw,2.2rem);
}
@media(min-width:960px){
  .desktop-nav{display:flex}
}
.desktop-nav a{
  font-family:var(--body);font-size:.78rem;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;color:var(--dark);
  position:relative;padding:.25rem 0;
  transition:color .3s var(--ease);
}
.desktop-nav a:not(.desktop-nav-cta)::after{
  content:'';position:absolute;bottom:0;left:0;
  width:0;height:1.5px;background:var(--sage);
  transition:width .35s var(--ease);
}
.desktop-nav a:not(.desktop-nav-cta):hover::after{width:100%}
.desktop-nav a:not(.desktop-nav-cta):hover{color:var(--dark-soft)}
.desktop-nav a:not(.desktop-nav-cta).active{color:var(--sage)}
.desktop-nav a:not(.desktop-nav-cta).active::after{width:100%}
.desktop-nav-cta{
  padding:.6rem 1.6rem !important;font-size:.72rem !important;
  margin-left:.5rem;
}
/* Scrolled header slightly mutes link color */
.site-header.scrolled .desktop-nav a:not(.desktop-nav-cta){color:var(--dark)}

/* ─── Hamburger (Mobile only) ─── */
.menu-btn{
  z-index:1010;width:36px;height:24px;position:relative;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
@media(min-width:960px){
  .menu-btn{display:none}
}
.menu-btn span{
  display:block;width:28px;height:1.5px;background:var(--dark);
  position:absolute;transition:all .4s var(--ease);
}
.menu-btn span:nth-child(1){top:4px}
.menu-btn span:nth-child(2){top:50%;transform:translateY(-50%)}
.menu-btn span:nth-child(3){bottom:4px}
.menu-btn.open span:nth-child(1){top:50%;transform:translateY(-50%) rotate(45deg)}
.menu-btn.open span:nth-child(2){opacity:0}
.menu-btn.open span:nth-child(3){bottom:50%;transform:translateY(50%) rotate(-45deg)}

/* ─── Mobile Nav Backdrop ─── */
.mobile-nav-backdrop{
  position:fixed;inset:0;z-index:1004;
  background:rgba(26,26,26,.5);
  opacity:0;pointer-events:none;
  transition:opacity .4s var(--ease);
}
.mobile-nav-backdrop.open{
  opacity:1;pointer-events:auto;
}

/* ─── Mobile Nav Drawer (Slide from Right) ─── */
.mobile-nav{
  position:fixed;top:0;right:0;bottom:0;z-index:1005;
  width:min(85vw,380px);
  background:var(--dark);
  transform:translateX(100%);
  transition:transform .5s cubic-bezier(.77,0,.18,1);
  overflow-y:auto;
  display:flex;flex-direction:column;
}
@media(min-width:960px){
  .mobile-nav{display:none !important}
  .mobile-nav-backdrop{display:none !important}
}
.mobile-nav.open{
  transform:translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.2rem 1.5rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-shrink:0;
}
.mobile-nav-header .logo img{height:32px}
.mobile-nav-close{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.6);
  transition:background .3s,color .3s;
  cursor:pointer;border:none;
}
.mobile-nav-close:hover{
  background:rgba(255,255,255,.15);color:#fff;
}

/* Mobile Nav Links */
.mobile-nav-links{
  display:flex;flex-direction:column;
  padding:1.5rem 0;flex:1;
}
.mobile-nav-links a{
  font-family:var(--display);font-size:1.6rem;font-weight:400;
  color:rgba(255,255,255,.4);
  display:flex;align-items:baseline;gap:.75rem;
  padding:.75rem 1.5rem;position:relative;
  transform:translateX(30px);opacity:0;
  transition:color .3s,transform .45s var(--ease),opacity .45s var(--ease),background .3s;
}
.mobile-nav-links a::before{
  content:attr(data-num);
  font-family:var(--body);font-size:.6rem;font-weight:500;
  letter-spacing:.12em;color:rgba(255,255,255,.18);
  min-width:1.5rem;
  transition:color .3s;
}
.mobile-nav.open .mobile-nav-links a{
  transform:translateX(0);opacity:1;
}
.mobile-nav.open .mobile-nav-links a:nth-child(1){transition-delay:.06s}
.mobile-nav.open .mobile-nav-links a:nth-child(2){transition-delay:.10s}
.mobile-nav.open .mobile-nav-links a:nth-child(3){transition-delay:.14s}
.mobile-nav.open .mobile-nav-links a:nth-child(4){transition-delay:.18s}
.mobile-nav.open .mobile-nav-links a:nth-child(5){transition-delay:.22s}
.mobile-nav.open .mobile-nav-links a:nth-child(6){transition-delay:.26s}
.mobile-nav.open .mobile-nav-links a:nth-child(7){transition-delay:.30s}
.mobile-nav.open .mobile-nav-links a:nth-child(8){transition-delay:.34s}
.mobile-nav-links a:hover,.mobile-nav-links a.active{
  color:#fff;background:rgba(255,255,255,.04);
}
.mobile-nav-links a:hover::before,.mobile-nav-links a.active::before{color:var(--sage)}

/* Mobile Nav Footer */
.mobile-nav-footer{
  padding:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;gap:1.2rem;
  flex-shrink:0;
}
.mobile-nav-info{}
.mobile-nav-label{
  display:block;font-family:var(--body);font-size:.6rem;font-weight:600;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--sage);margin-bottom:.4rem;
}
.mobile-nav-footer p{
  font-family:var(--body);font-size:.82rem;
  color:rgba(255,255,255,.4);line-height:1.6;margin:0;
}
.mobile-nav-footer a{
  color:rgba(255,255,255,.4);transition:color .3s;
}
.mobile-nav-footer a:hover{color:#fff}

/* ─── Split Hero ─── */
.hero{
  min-height:100vh;display:grid;
  grid-template-columns:1fr;
  position:relative;overflow:hidden;
  padding-top:var(--header-h);
}
@media(min-width:960px){
  .hero{grid-template-columns:1fr 1fr;padding-top:0}
}
.hero-left{
  display:flex;flex-direction:column;justify-content:center;
  padding:clamp(3rem,6vw,6rem) clamp(1.5rem,4vw,4rem);
  position:relative;z-index:2;
}
.hero-left .eyebrow{color:var(--taupe)}
.hero-left h1{margin-bottom:1.5rem}
.hero-left p{
  font-size:clamp(.95rem,1.5vw,1.1rem);
  color:var(--text-muted);max-width:440px;
  margin-bottom:2.5rem;line-height:1.8;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:1rem}
.hero-scroll-indicator{
  position:absolute;bottom:2.5rem;left:clamp(1.5rem,4vw,4rem);
  display:flex;align-items:center;gap:.75rem;
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--taupe);
}
.hero-scroll-line{width:1px;height:48px;background:var(--line);position:relative;overflow:hidden}
.hero-scroll-line::after{
  content:'';position:absolute;top:-100%;left:0;width:100%;height:100%;
  background:var(--taupe);animation:scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse{0%{top:-100%}50%{top:0}100%{top:100%}}

.hero-right{
  position:relative;overflow:hidden;
  min-height:50vh;
}
@media(min-width:960px){
  .hero-right{min-height:100vh;clip-path:polygon(8% 0,100% 0,100% 100%,0 100%)}
}
.hero-right img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}

/* ─── Marquee Ticker ─── */
.marquee-strip{
  background:var(--dark);padding:1.25rem 0;overflow:hidden;
  white-space:nowrap;position:relative;
}
.marquee-track{
  display:flex;gap:0;
  animation:marquee-scroll 30s linear infinite;
}
.marquee-track:hover{animation-play-state:paused}
.marquee-item{
  display:inline-flex;align-items:center;gap:2rem;
  padding:0 2rem;flex-shrink:0;
  font-family:var(--display);font-size:clamp(1rem,2vw,1.35rem);
  color:rgba(255,255,255,.45);letter-spacing:.04em;font-weight:400;
}
.marquee-dot{
  width:4px;height:4px;border-radius:50%;
  background:var(--terracotta);flex-shrink:0;
}
@keyframes marquee-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ─── Editorial Content Block ─── */
.editorial{
  display:grid;grid-template-columns:1fr;gap:var(--gap);
  align-items:center;
}
@media(min-width:768px){
  .editorial{grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem)}
  .editorial.reverse .editorial-text{order:1}
  .editorial.reverse .editorial-media{order:0}
}
.editorial-text h2{margin-bottom:1rem}
.editorial-text p{margin-bottom:1.5rem}
.editorial-media{
  position:relative;border-radius:var(--radius);overflow:hidden;
  aspect-ratio:4/3;
}
.editorial-media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s var(--ease);
}
.editorial-media:hover img{transform:scale(1.05)}
/* Floating accent tag on media */
.editorial-media .media-tag{
  position:absolute;bottom:1.5rem;left:1.5rem;
  background:rgba(245,240,235,.92);backdrop-filter:blur(8px);
  padding:.5rem 1.25rem;border-radius:50px;
  font-size:.7rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--dark);
}

/* ─── Bento Grid (Amenities) ─── */
.bento-grid{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:auto;gap:.75rem;
}
@media(min-width:768px){
  .bento-grid{
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:280px 280px;
  }
  .bento-grid .bento-item:nth-child(1){grid-column:1/3;grid-row:1/3}
  .bento-grid .bento-item:nth-child(2){grid-column:3/4;grid-row:1/2}
  .bento-grid .bento-item:nth-child(3){grid-column:4/5;grid-row:1/2}
  .bento-grid .bento-item:nth-child(4){grid-column:3/4;grid-row:2/3}
  .bento-grid .bento-item:nth-child(5){grid-column:4/5;grid-row:2/3}
}
.bento-item{
  position:relative;border-radius:var(--radius);overflow:hidden;
  min-height:180px;cursor:pointer;
}
.bento-item img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.bento-item:hover img{transform:scale(1.08)}
.bento-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(26,26,26,.7) 0%,transparent 60%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.5rem;transition:background .4s;
}
.bento-item:hover .bento-overlay{background:linear-gradient(to top,rgba(26,26,26,.85) 0%,rgba(26,26,26,.2) 100%)}
.bento-overlay h3{
  font-family:var(--display);font-size:1.25rem;color:#fff;
  margin-bottom:.25rem;font-weight:400;
}
.bento-overlay p{
  font-size:.8rem;color:rgba(255,255,255,.6);
  max-height:0;overflow:hidden;transition:max-height .5s var(--ease);
  margin:0;
}
.bento-item:hover .bento-overlay p{max-height:80px}

/* ─── Horizontal Scroll Gallery ─── */
.hscroll-section{position:relative}
.hscroll-track{
  display:flex;gap:1.5rem;padding:0 clamp(1.5rem,4vw,3rem);
  transition:transform .1s linear;
  will-change:transform;
}
.hscroll-item{
  flex:0 0 auto;width:clamp(280px,40vw,520px);
  border-radius:var(--radius);overflow:hidden;position:relative;
}
.hscroll-item img{width:100%;aspect-ratio:3/2;object-fit:cover;display:block}
.hscroll-caption{
  padding:1rem 0;font-family:var(--body);font-size:.85rem;color:var(--text-muted);
}

/* ─── Connectivity / Location ─── */
.loc-grid{display:grid;grid-template-columns:1fr;gap:.5rem}
@media(min-width:600px){.loc-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.loc-grid{grid-template-columns:repeat(3,1fr)}}
.loc-item{
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 1.25rem;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius);
  transition:border-color .3s,box-shadow .3s;
}
.loc-item:hover{border-color:var(--sage);box-shadow:0 4px 16px rgba(107,143,113,.1)}
.loc-name{font-size:.9rem;color:var(--dark);font-weight:500}
.loc-time{font-family:var(--display);font-size:.95rem;color:var(--sage);font-weight:400}

/* ─── Specs ─── */
.spec-list{display:grid;gap:0}
.spec-item{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:.85rem 0;border-bottom:1px solid var(--line);
}
.spec-label{font-size:.9rem;color:var(--text-muted)}
.spec-value{font-size:.95rem;font-weight:500;color:var(--dark);text-align:right}

/* ─── Stats Section (Numbers) ─── */
.stats-row{
  display:grid;grid-template-columns:repeat(2,1fr);gap:2rem 1rem;
  text-align:center;padding:3rem 0;
}
@media(min-width:768px){.stats-row{grid-template-columns:repeat(5,1fr);gap:1rem}}
.stat-item{position:relative;padding:.5rem 0}
@media(min-width:768px){
  .stat-item{border-right:1px solid var(--line-dark)}
  .stat-item:last-child{border-right:none}
}
.stat-value{
  font-family:var(--display);font-size:clamp(2rem,4vw,3.5rem);
  color:#fff;display:block;line-height:1.2;font-weight:400;
}
.stat-value.counting{color:var(--sage-light)}
.stat-label{
  font-family:var(--body);font-size:.65rem;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.4);margin-top:.5rem;
}

/* ─── FAQ Accordion ─── */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  width:100%;padding:1.5rem 0;text-align:left;
  font-family:var(--body);font-size:1rem;font-weight:500;color:var(--dark);
  cursor:pointer;background:none;border:none;transition:color .3s;
}
.faq-q:hover{color:var(--sage)}
.faq-icon{
  flex-shrink:0;width:28px;height:28px;border-radius:50%;
  border:1px solid var(--line);position:relative;transition:all .3s;
}
.faq-icon::before,.faq-icon::after{
  content:'';position:absolute;background:var(--taupe);transition:transform .3s;
}
.faq-icon::before{width:12px;height:1.5px;top:50%;left:50%;transform:translate(-50%,-50%)}
.faq-icon::after{width:1.5px;height:12px;top:50%;left:50%;transform:translate(-50%,-50%)}
.faq-item.open .faq-icon{background:var(--dark);border-color:var(--dark)}
.faq-item.open .faq-icon::before,.faq-item.open .faq-icon::after{background:#fff}
.faq-item.open .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.faq-a-inner{padding:0 0 1.5rem;color:var(--text);font-size:.95rem;line-height:1.8}
.faq-a-inner a{color:var(--sage);text-decoration:underline}

/* ─── Forms ─── */
.form-group{margin-bottom:1.25rem}
.form-label{
  display:block;font-size:.7rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--taupe);margin-bottom:.5rem;
}
.form-input,.form-select,.form-textarea{
  width:100%;padding:.9rem 1.15rem;font-family:var(--body);font-size:.95rem;
  color:var(--dark);background:var(--white);
  border:1.5px solid var(--line);border-radius:var(--radius);
  transition:border-color .3s,box-shadow .3s;outline:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--sage);box-shadow:0 0 0 3px rgba(107,143,113,.12);
}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-muted)}
.form-textarea{min-height:120px;resize:vertical}
.form-select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8B8B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem;
}
.form-error{font-size:.8rem;color:#DC2626;margin-top:.35rem;display:none}
.form-error.visible{display:block}
.hp-field{position:absolute;left:-9999px;opacity:0;width:0;height:0;overflow:hidden}

.enquiry-box{
  max-width:560px;margin:0 auto;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(2rem,4vw,3rem);position:relative;
}
.form-success{text-align:center;padding:3rem 1.5rem;display:none}
.form-success.visible{display:block}
.form-success .checkmark{
  width:64px;height:64px;margin:0 auto 1.5rem;
  background:rgba(107,143,113,.1);border:2px solid var(--sage);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;color:var(--sage);
}

/* ─── Price Highlight ─── */
.price-hero{
  text-align:center;padding:clamp(3rem,6vw,5rem) 2rem;
  background:var(--dark);border-radius:var(--radius);
  position:relative;overflow:hidden;
}
.price-hero::before{
  content:'';position:absolute;top:-30%;right:-20%;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(107,143,113,.12) 0%,transparent 70%);
  border-radius:50%;
}
.price-hero .eyebrow{color:var(--taupe)}
.price-hero .eyebrow::before{background:var(--taupe)}
.price-val{
  font-family:var(--display);font-size:clamp(2.5rem,6vw,4.5rem);
  color:#fff;margin-bottom:.5rem;font-weight:400;position:relative;
}
.price-sub{
  font-size:.85rem;color:rgba(255,255,255,.45);
  text-transform:uppercase;letter-spacing:.15em;position:relative;
}

/* ─── Footer ─── */
.site-footer{background:var(--dark);padding:clamp(4rem,8vw,6rem) 0 0}
.footer-top{
  display:grid;grid-template-columns:1fr;gap:3rem;
  padding-bottom:clamp(3rem,5vw,4rem);
  border-bottom:1px solid var(--line-dark);
}
@media(min-width:768px){.footer-top{grid-template-columns:1.5fr 1fr 1fr;gap:3rem}}
.footer-brand{max-width:380px}
.footer-brand img{height:30px;width:auto;display:block}
.footer-brand p{font-size:.85rem;color:rgba(255,255,255,.4);line-height:1.7;margin-top:1.25rem}
.footer-col h4{
  font-family:var(--body);font-size:.65rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--taupe);margin-bottom:1.25rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:.6rem}
.footer-col a{font-size:.85rem;color:rgba(255,255,255,.45);transition:color .3s}
.footer-col a:hover{color:#fff}
.footer-rera{padding:1.25rem 0;border-bottom:1px solid var(--line-dark)}
.footer-rera p{font-size:.75rem;color:rgba(255,255,255,.3);letter-spacing:.03em;margin:0}
.footer-rera strong{color:var(--taupe)}
.footer-bottom{
  display:flex;flex-direction:column;gap:.75rem;padding:1.25rem 0;
}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between;align-items:center}}
.footer-disclaimer{font-size:.65rem;color:rgba(255,255,255,.25);line-height:1.6;max-width:700px}
.footer-legal a{font-size:.65rem;color:rgba(255,255,255,.3);transition:color .3s}
.footer-legal a:hover{color:var(--taupe)}

/* ─── WhatsApp Float ─── */
.wa-float{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:900;
  width:56px;height:56px;background:#25D366;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.35);
  transition:transform .4s var(--ease),box-shadow .4s;
}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.5)}
.wa-float svg{width:28px;height:28px;fill:#fff}

/* ─── Mobile CTA Bar ─── */
.mobile-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:900;
  background:rgba(245,240,235,.95);backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid var(--line);padding:.6rem .75rem;gap:.5rem;
}
@media(max-width:768px){
  .mobile-cta{display:flex}
  .wa-float{bottom:80px}
  body{padding-bottom:60px}
}
.mobile-cta-btn{
  flex:1;display:flex;align-items:center;justify-content:center;gap:.35rem;
  padding:.65rem .5rem;border-radius:50px;
  font-family:var(--body);font-size:.68rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  text-decoration:none;cursor:pointer;border:none;transition:all .3s;
}
.cta-call{background:transparent;color:var(--dark);border:1px solid var(--line)}
.cta-call:hover{border-color:var(--sage);color:var(--sage)}
.cta-wa{background:#25D366;color:#fff}
.cta-wa:hover{background:#1ebe57}
.cta-enquire{background:var(--sage);color:#fff}
.cta-enquire:hover{background:var(--sage-light)}

/* ─── Popup Modal ─── */
.popup-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(26,26,26,.55);backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;padding:1rem;
  opacity:0;visibility:hidden;transition:opacity .4s,visibility .4s;
}
.popup-overlay.active{opacity:1;visibility:visible}
.popup-modal{
  background:var(--white);border-radius:var(--radius);
  max-width:440px;width:100%;padding:clamp(2rem,4vw,2.5rem);
  position:relative;transform:translateY(30px) scale(.96);
  transition:transform .5s var(--spring);
  max-height:90vh;overflow-y:auto;
}
.popup-overlay.active .popup-modal{transform:translateY(0) scale(1)}
.popup-close{
  position:absolute;top:.75rem;right:1rem;background:none;border:none;
  color:var(--text-muted);font-size:1.75rem;cursor:pointer;
  transition:color .3s;line-height:1;padding:.25rem;
}
.popup-close:hover{color:var(--dark)}
.popup-header{text-align:center;margin-bottom:1.5rem}
.popup-header h3{font-family:var(--display);font-size:1.5rem;color:var(--dark);margin-bottom:.35rem}
.popup-header p{font-size:.8rem;color:var(--taupe);letter-spacing:.04em;margin:0}
.popup-form{display:flex;flex-direction:column;gap:.8rem}
.popup-form-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
@media(max-width:480px){.popup-form-row{grid-template-columns:1fr}}
.popup-form input,.popup-form select{
  width:100%;padding:.75rem 1rem;background:var(--bg);
  border:1.5px solid var(--line);border-radius:var(--radius);
  color:var(--dark);font-family:var(--body);font-size:.85rem;
  transition:border-color .3s,box-shadow .3s;outline:none;appearance:none;
}
.popup-form input:focus,.popup-form select:focus{border-color:var(--sage);box-shadow:0 0 0 3px rgba(107,143,113,.12)}
.popup-form input::placeholder{color:var(--text-muted)}
.popup-rera{
  background:rgba(107,143,113,.06);border:1px solid rgba(107,143,113,.15);
  border-radius:var(--radius);padding:.6rem 1rem;text-align:center;
}
.popup-rera p{font-size:.7rem;color:var(--text-muted);line-height:1.5;margin:0}
.popup-rera strong{color:var(--sage)}
.popup-consent{display:flex;gap:.6rem;align-items:flex-start;cursor:pointer}
.popup-consent input[type="checkbox"]{width:18px;height:18px;min-width:18px;margin-top:2px;accent-color:var(--sage);cursor:pointer}
.popup-consent span{font-size:.68rem;color:var(--text-muted);line-height:1.5}
.popup-consent a{color:var(--sage);text-decoration:underline}
.popup-submit{
  width:100%;padding:.85rem;font-size:.85rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;border-radius:50px;
  margin-top:.25rem;position:relative;overflow:hidden;
}
.popup-success{display:none;text-align:center;padding:2rem 0}
.popup-success.show{display:block}
.popup-form.hide{display:none}
.popup-success-icon{
  width:56px;height:56px;border-radius:50%;background:var(--sage);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin:0 auto 1rem;
}
.popup-success h3{font-family:var(--display);color:var(--dark);margin-bottom:.5rem}
.popup-success p{color:var(--text-muted)}
.popup-footer-links{display:flex;justify-content:center;gap:1.5rem;margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid var(--line)}
.popup-footer-links a{font-size:.75rem;color:var(--text-muted);transition:color .3s}
.popup-footer-links a:hover{color:var(--sage)}

/* ─── Breadcrumb ─── */
.breadcrumb{padding:calc(var(--header-h) + 1.5rem) 0 0;font-size:.75rem}
.breadcrumb a{color:var(--text-muted);transition:color .3s}
.breadcrumb a:hover{color:var(--sage)}
.breadcrumb span{color:var(--text-muted);margin:0 .5rem}
.breadcrumb .current{color:var(--dark);font-weight:500}

/* ─── Page Header (inner pages) ─── */
.page-header{
  padding:calc(var(--header-h) + 3rem) 0 3rem;
  text-align:center;position:relative;
}
.page-header h1{font-size:clamp(2.5rem,6vw,4.5rem);margin-bottom:1rem}
.page-header p{max-width:600px;margin:0 auto;color:var(--text-muted)}

/* ─── CTA Banner ─── */
.cta-banner{
  text-align:center;padding:clamp(4rem,8vw,6rem) 0;
  background:var(--dark);position:relative;overflow:hidden;
}
.cta-banner::before{
  content:'';position:absolute;top:-100px;left:-100px;width:400px;height:400px;
  background:radial-gradient(circle,rgba(107,143,113,.1) 0%,transparent 70%);border-radius:50%;
}
.cta-banner h2{color:#fff;margin-bottom:.75rem;position:relative}
.cta-banner p{margin-bottom:2rem;max-width:480px;margin-left:auto;margin-right:auto;color:rgba(255,255,255,.45);position:relative}
.cta-banner .btn{margin:0 .5rem;position:relative}

/* ─── Legal Content ─── */
.legal-content{max-width:800px;margin:0 auto}
.legal-content h2{margin-top:2rem;margin-bottom:1rem;font-size:1.5rem}
.legal-content h3{margin-top:1.5rem;margin-bottom:.75rem;font-size:1.125rem}
.legal-content p,.legal-content li{color:var(--text);font-size:.95rem;line-height:1.8}
.legal-content ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-content li{list-style:disc;margin-bottom:.35rem}

/* ─── 404 ─── */
.page-404{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:2rem;
}
.page-404 h1{font-size:clamp(6rem,15vw,12rem);color:var(--bg-alt);line-height:1;margin-bottom:0}
.page-404 h2{font-size:1.25rem;margin-bottom:1rem;color:var(--dark)}

/* ─── Amenity List ─── */
.amenity-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem;
}
@media(min-width:600px){.amenity-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:960px){.amenity-grid{grid-template-columns:repeat(4,1fr)}}
.amenity-tag{
  display:flex;align-items:center;gap:.6rem;
  padding:.75rem 1rem;background:var(--white);
  border:1px solid var(--line);border-radius:var(--radius);
  font-size:.8rem;color:var(--dark);font-weight:500;
  transition:border-color .3s,box-shadow .3s;
}
.amenity-tag:hover{border-color:var(--sage);box-shadow:0 2px 10px rgba(107,143,113,.08)}
.amenity-tag .dot{width:6px;height:6px;border-radius:50%;background:var(--sage);flex-shrink:0}

/* ─── Gallery grid ─── */
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
@media(min-width:768px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
.gallery-item{
  position:relative;aspect-ratio:4/3;overflow:hidden;
  border-radius:var(--radius);cursor:pointer;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.gallery-item:hover img{transform:scale(1.08)}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;z-index:2000;
  background:rgba(26,26,26,.92);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:all .3s;
}
.lightbox.active{opacity:1;visibility:visible}
.lightbox img{max-width:90%;max-height:85vh;object-fit:contain;border-radius:var(--radius)}
.lightbox-close{
  position:absolute;top:1.5rem;right:1.5rem;width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;font-size:1.5rem;
  color:#fff;cursor:pointer;background:rgba(255,255,255,.1);border-radius:50%;border:none;
  transition:background .3s;
}
.lightbox-close:hover{background:rgba(255,255,255,.25)}

/* ─── Two-Column Layout ─── */
.two-col{display:grid;grid-template-columns:1fr;gap:var(--gap)}
@media(min-width:768px){.two-col{grid-template-columns:1fr 1fr}}

/* ─── Scroll Progress ─── */
.scroll-progress{
  position:fixed;top:0;left:0;height:2px;
  background:linear-gradient(90deg,var(--sage),var(--terracotta));
  z-index:10000;width:0%;transition:width .05s linear;
}

/* ─── Scroll Animations ─── */
.reveal{opacity:0;transform:translateY(40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-50px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(50px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal-right.visible{opacity:1;transform:translateX(0)}
.reveal-scale{opacity:0;transform:scale(.9);transition:opacity .8s var(--ease),transform .8s var(--spring)}
.reveal-scale.visible{opacity:1;transform:scale(1)}

/* Stagger children */
.stagger>*{opacity:0;transform:translateY(24px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.stagger.revealed>*{opacity:1;transform:translateY(0)}
.stagger.revealed>*:nth-child(1){transition-delay:0s}
.stagger.revealed>*:nth-child(2){transition-delay:.08s}
.stagger.revealed>*:nth-child(3){transition-delay:.16s}
.stagger.revealed>*:nth-child(4){transition-delay:.24s}
.stagger.revealed>*:nth-child(5){transition-delay:.32s}
.stagger.revealed>*:nth-child(6){transition-delay:.4s}

/* Hero entrance */
@keyframes hero-up{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}
.hero-left .eyebrow{animation:hero-up .8s var(--ease) .2s both}
.hero-left h1{animation:hero-up .8s var(--ease) .4s both}
.hero-left p{animation:hero-up .8s var(--ease) .6s both}
.hero-left .hero-ctas{animation:hero-up .8s var(--ease) .8s both}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale,.stagger>*{opacity:1;transform:none;transition:none}
  .hero-left .eyebrow,.hero-left h1,.hero-left p,.hero-left .hero-ctas{animation:none;opacity:1}
  .scroll-progress{display:none}
  .marquee-track{animation:none}
}

/* ─── Utility ─── */
.text-center{text-align:center}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-6{margin-bottom:3rem}
.mt-2{margin-top:1rem}.mt-4{margin-top:2rem}
