/* ==========================================================================
   SHREE SIDDHIVINAYAK REALITY — STYLE SHEET
   Tokens: warm white base, charcoal ink, logo-derived orange, muted gold
   ========================================================================== */

:root{
  --white:#FFFFFF;
  --warm-white:#FBF7F2;
  --cream:#F3ECDF;
  --ink:#1B1613;
  --ink-soft:#4A433D;
  --ink-faint:#8A8177;
  --orange:#EA6A15;
  --orange-deep:#C1500A;
  --orange-light:#FDECD9;
  --gold:#B98A46;
  --line:#E7DFD4;
  --line-dark:#332B23;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:26px;
  --shadow-card:0 1px 2px rgba(27,22,19,.04), 0 12px 28px -14px rgba(27,22,19,.18);
  --shadow-soft:0 1px 2px rgba(27,22,19,.03), 0 6px 16px -10px rgba(27,22,19,.12);
  --container:1200px;
  --section-pad:104px;
}

@media (max-width:768px){
  :root{ --section-pad:64px; }
}

*,*::before,*::after{ box-sizing:border-box; }
body{ overflow-wrap:break-word; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:15px; }

h1,h2,h3{ font-family:'Fraunces', 'Manrope', serif; font-weight:600; line-height:1.12; margin:0; color:var(--ink); letter-spacing:-.01em; }
h2{ font-size:clamp(28px,3.4vw,42px); }
h3{ font-size:20px; font-weight:600; }
p{ margin:0; color:var(--ink-soft); line-height:1.65; }

.accent{ color:var(--orange); font-family:inherit; font-weight:600; }

/* ---------- Layout helpers ---------- */
section{ padding:var(--section-pad) 24px; }
.section-head{
  max-width:var(--container);
  margin:0 auto 48px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
}
.section-head h2{ margin-bottom:12px; }
.section-head p{ max-width:520px; font-size:16px; }
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.section-head.center p{ max-width:560px; }
.section-head.dark h2{ color:var(--white); }
.section-head.dark p{ color:#C9BFB2; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:var(--orange-deep);
  margin:0 0 18px;
}
.eyebrow-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--orange);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  border-radius:100px;
  font-size:15px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
  max-width:100%;
  text-align:center;
}
.btn-primary{ background:var(--orange); color:var(--white); box-shadow:0 10px 24px -10px rgba(234,106,21,.55); }
.btn-primary:hover{ background:var(--orange-deep); transform:translateY(-1px); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-outline:hover{ border-color:var(--ink); background:var(--cream); }
.btn-whatsapp{ background:#25D366; color:var(--white); margin-top:22px; box-shadow:0 10px 24px -12px rgba(37,211,102,.55); }
.btn-whatsapp:hover{ background:#1EBE59; }
.btn-sm{ padding:11px 20px; font-size:13.5px; }
.btn-wide{ width:100%; padding:16px 28px; margin-top:6px; }

.link-arrow{ font-weight:600; font-size:14.5px; color:var(--ink); white-space:nowrap; padding-bottom:4px; border-bottom:1px solid var(--line); }
.link-arrow span{ color:var(--orange); margin-left:4px; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease;
}
.nav.scrolled{ box-shadow:0 4px 20px -8px rgba(27,22,19,.12); }
.nav-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav-logo{ position:relative; z-index:260; }
.nav-logo img{ height:52px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-size:14.5px; font-weight:600; color:var(--ink-soft); position:relative; padding:6px 0; }
.nav-links a:hover{ color:var(--ink); }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--orange); transform:scaleX(0); transform-origin:left;
  transition:transform .2s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-phone{ display:flex; align-items:center; gap:7px; font-size:14px; font-weight:600; color:var(--ink-soft); }
.nav-phone:hover{ color:var(--orange-deep); }
.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; position:relative; z-index:260; }
.hamburger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.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
   ========================================================================== */
.hero{ background:linear-gradient(180deg,var(--warm-white) 0%, var(--white) 100%); padding-top:76px; padding-bottom:56px; }
.hero-inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-copy h1{ font-size:clamp(36px,4.6vw,58px); margin-bottom:22px; }
.hero-sub{ font-size:17px; max-width:460px; margin-bottom:32px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-points{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; border-top:1px solid var(--line); padding-top:26px; }
.hero-point{ font-size:13.5px; color:var(--ink-faint); line-height:1.4; }
.hero-point span{ display:block; font-family:'Fraunces',serif; font-size:17px; font-weight:600; color:var(--ink); margin-bottom:4px; }

.hero-art{ position:relative; display:flex; justify-content:center; }
.hero-art-frame{
  position:relative;
  width:100%;
  max-width:460px;
  border-radius:var(--radius-lg);
  background:var(--warm-white);
  border:1px solid var(--line);
  padding:20px;
  box-shadow:var(--shadow-card);
}
.skyline-svg{ width:100%; height:auto; display:block; }
.sky-main path, .sky-main line{ animation:rise 1.1s ease both; }
@keyframes rise{ from{ opacity:0; transform:translateY(18px);} to{ opacity:1; transform:translateY(0);} }
.hero-badge{
  position:absolute; left:-18px; bottom:26px;
  background:var(--ink);
  color:var(--white);
  padding:16px 20px;
  border-radius:var(--radius-md);
  box-shadow:0 16px 30px -14px rgba(27,22,19,.45);
  max-width:200px;
}
.hero-badge strong{ display:block; font-size:14.5px; font-weight:700; margin-bottom:2px; }
.hero-badge span{ font-size:12.5px; color:#C9BFB2; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trustbar{ background:var(--ink); padding:26px 24px; }
.trustbar-inner{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.trust-item{ display:flex; align-items:center; gap:10px; color:#E7DFD4; font-size:14px; font-weight:600; }
.trust-item svg{ width:22px; height:22px; color:var(--orange); flex-shrink:0; }

@media (max-width:640px){
  .trustbar{ padding:22px 16px; }
  .trustbar-inner{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .trust-item{
    flex-direction:column; align-items:flex-start; text-align:left;
    background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
    border-radius:14px; padding:16px 14px; gap:10px; font-size:13px; line-height:1.35;
  }
  .trust-item svg{ width:20px; height:20px; }
}

/* ==========================================================================
   REQUIREMENT FORM
   ========================================================================== */
.requirement{ background:var(--warm-white); }
.req-card{
  max-width:900px; margin:0 auto;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:38px;
  box-shadow:var(--shadow-card);
}
.req-toggle{ display:inline-flex; background:var(--cream); border-radius:100px; padding:5px; margin-bottom:28px; gap:4px; }
.req-toggle input{ display:none; }
.req-toggle label{ padding:10px 22px; border-radius:100px; font-size:14px; font-weight:600; color:var(--ink-soft); cursor:pointer; transition:all .18s ease; }
.req-toggle input:checked + label{ background:var(--orange); color:var(--white); }

.req-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:26px; }
.req-grid .field:nth-child(4), .req-grid .field:nth-child(5){ grid-column:span 1; }

.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:600; color:var(--ink-soft); }
.field label span{ color:var(--ink-faint); font-weight:500; }
.field input, .field select, .field textarea{
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:var(--warm-white);
  color:var(--ink);
  outline:none;
  transition:border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--orange); background:var(--white); }
.req-note{ font-size:12.5px; color:var(--ink-faint); text-align:center; margin-top:14px; }

/* ==========================================================================
   PROPERTY CARDS
   ========================================================================== */
.property-grid{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.property-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .22s ease, box-shadow .22s ease;
}
.property-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card); }
.property-media{
  position:relative; height:210px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.property-media svg{ width:70%; height:70%; transition:transform .4s ease; }
.property-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.property-card:hover .property-media img{ transform:scale(1.06); }
.property-card:hover .property-media svg{ transform:scale(1.06); }
.property-badge{
  position:absolute; top:14px; left:14px;
  background:var(--orange); color:var(--white);
  font-size:11.5px; font-weight:700; letter-spacing:.02em;
  padding:6px 12px; border-radius:100px;
}
.property-type-tag{
  position:absolute; top:14px; right:14px;
  background:rgba(255,255,255,.92); color:var(--ink);
  font-size:11.5px; font-weight:700;
  padding:6px 12px; border-radius:100px;
}
.property-body{ padding:20px 22px 22px; }
.property-body h3{ margin-bottom:6px; }
.property-loc{ display:flex; align-items:center; gap:6px; font-size:13px; color:var(--ink-faint); margin-bottom:16px; }
.property-loc svg{ width:14px; height:14px; color:var(--orange); flex-shrink:0; }
.property-specs{ display:flex; flex-wrap:wrap; gap:8px 16px; padding-top:16px; border-top:1px solid var(--line); margin-bottom:18px; }
.property-specs div{ display:flex; align-items:center; gap:6px; font-size:12.5px; color:var(--ink-soft); font-weight:600; }
.property-specs svg{ width:15px; height:15px; color:var(--orange); }
.property-footer{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.property-price{ font-size:13.5px; font-weight:700; color:var(--orange-deep); }
.property-cta{ font-size:13px; font-weight:700; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:2px; }
.property-cta:hover{ color:var(--orange); border-color:var(--orange); }

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.categories{ background:var(--warm-white); }
.category-grid{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.category-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 24px;
  transition:transform .2s ease, border-color .2s ease;
}
.category-card:hover{ transform:translateY(-4px); border-color:var(--orange); }
.category-icon{
  width:48px; height:48px; border-radius:12px;
  background:var(--orange-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.category-icon svg{ width:24px; height:24px; color:var(--orange-deep); }
.category-card h3{ margin-bottom:6px; }
.category-card p{ font-size:14px; }

/* ==========================================================================
   LOCATIONS
   ========================================================================== */
.locations{ background:var(--ink); }
.location-grid{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.location-card{
  position:relative; border-radius:var(--radius-md);
  overflow:hidden; min-height:230px;
  display:flex; align-items:flex-end;
  border:1px solid rgba(255,255,255,.08);
}
.location-card .loc-bg{
  position:absolute; inset:0;
}
.location-card .loc-overlay{
  position:relative; z-index:2; padding:22px; width:100%;
  background:linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 100%);
}
.location-card h3{ color:var(--white); font-size:19px; margin-bottom:4px; }
.location-card p{ color:#D9CFC2; font-size:12.5px; display:flex; align-items:center; gap:6px; }
.location-card p svg{ width:13px; height:13px; color:var(--orange); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-inner{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:1.15fr .85fr; gap:60px; align-items:center;
}
.why-copy p{ font-size:16px; max-width:520px; margin:18px 0 34px; }
.why-cards{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.why-card{
  background:var(--warm-white); border:1px solid var(--line);
  border-radius:var(--radius-md); padding:22px;
}
.why-num{ font-family:'Fraunces',serif; font-size:24px; font-weight:600; color:var(--orange); display:block; margin-bottom:10px; }
.why-icon{ width:38px; height:38px; border-radius:10px; background:var(--orange-light); display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.why-icon svg{ width:20px; height:20px; color:var(--orange-deep); }
.why-card h3{ font-size:16px; margin-bottom:4px; }
.why-card p{ font-size:13px; }

.why-visual{ position:relative; }
.why-svg{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-card); }
.why-badge{
  position:absolute; left:-16px; bottom:-16px;
  background:var(--orange); color:var(--white);
  padding:18px 22px; border-radius:var(--radius-md);
  box-shadow:0 16px 30px -14px rgba(234,106,21,.55);
  max-width:190px;
}
.why-badge strong{ display:block; font-size:15px; margin-bottom:2px; }
.why-badge span{ font-size:12.5px; opacity:.85; }
.why-tagline{ text-align:center; max-width:var(--container); margin:52px auto 0; font-weight:600; color:var(--ink); font-size:15px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.service-grid{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.service-card{
  border:1px solid var(--line); border-radius:var(--radius-md);
  padding:34px 28px; transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.service-icon{
  width:52px; height:52px; border-radius:14px;
  background:var(--ink); display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-icon svg{ width:26px; height:26px; color:var(--orange); }
.service-card h3{ margin-bottom:8px; }
.service-card p{ font-size:14.5px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ background:var(--warm-white); }
.about-inner{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center;
}
.about-visual{ position:relative; }
.about-svg{ width:100%; border-radius:var(--radius-lg); }
.about-since{
  position:absolute; top:-14px; right:-14px;
  background:var(--ink); color:var(--white);
  width:88px; height:88px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:var(--shadow-card);
}
.about-since span{ font-size:10.5px; color:#C9BFB2; text-transform:uppercase; letter-spacing:.06em; }
.about-since strong{ font-family:'Fraunces',serif; font-size:20px; color:var(--orange); }
.about-copy h2{ margin-bottom:18px; }
.about-copy p{ font-size:16px; margin-bottom:16px; max-width:560px; }
.about-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.about-tags span{
  font-size:12.5px; font-weight:700; color:var(--orange-deep);
  background:var(--orange-light); padding:8px 14px; border-radius:100px;
}

/* ==========================================================================
   RERA
   ========================================================================== */
.rera{ padding:70px 24px; }
.rera-inner{ max-width:var(--container); margin:0 auto; }
.rera-card{
  background:var(--ink); border-radius:var(--radius-lg);
  padding:44px; display:flex; align-items:center; gap:32px;
}
.rera-icon{
  width:64px; height:64px; border-radius:16px; flex-shrink:0;
  background:var(--orange); display:flex; align-items:center; justify-content:center;
}
.rera-icon svg{ width:32px; height:32px; color:var(--white); }
.rera-text h2{ color:var(--white); margin-bottom:10px; font-size:26px; }
.rera-text p{ color:#C9BFB2; margin-bottom:18px; }
.rera-number{
  display:inline-flex; flex-direction:column; gap:4px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  padding:14px 20px; border-radius:var(--radius-sm);
}
.rera-number span{ font-size:11.5px; color:#C9BFB2; text-transform:uppercase; letter-spacing:.06em; }
.rera-number strong{ color:var(--white); font-size:14.5px; letter-spacing:.02em; }

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.insta-cta{ text-align:center; margin-top:40px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background:var(--warm-white); }
.contact-inner{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
}
.contact-info h2{ margin-bottom:12px; }
.contact-info > p{ font-size:16px; margin-bottom:34px; max-width:440px; }
.contact-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:6px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; }
.c-icon{
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  background:var(--white); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.c-icon svg{ width:20px; height:20px; color:var(--orange); }
.c-label{ display:block; font-size:12px; color:var(--ink-faint); margin-bottom:3px; }
.contact-row strong{ font-size:14.5px; font-weight:600; color:var(--ink); }
.contact-row a:hover{ color:var(--orange-deep); }

.map-block{ margin-top:30px; }
.map-placeholder{
  background:var(--white); border:1px dashed var(--line);
  border-radius:var(--radius-md); padding:28px;
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
}
.map-placeholder svg{ width:26px; height:26px; color:var(--orange); }
.map-placeholder p{ font-size:13.5px; }

.contact-form{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:34px;
  display:flex; flex-direction:column; gap:18px;
  box-shadow:var(--shadow-card); height:fit-content;
}
.contact-form h3{ margin-bottom:4px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--ink); color:#C9BFB2; padding:64px 24px 0; }
.footer-inner{
  max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:1.2fr .9fr .9fr 1.1fr 1.1fr; gap:32px;
  padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo{ height:56px; width:auto; margin-bottom:14px; filter:brightness(0) invert(1); opacity:.92; }
.footer-brand p{ color:#9C9186; font-size:13.5px; line-height:1.6; }
.footer-col h4{ color:var(--white); font-size:14px; font-weight:700; margin-bottom:16px; }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:13.5px; color:#B4A99C; }
.footer-col a:hover{ color:var(--orange); }
.footer-col p{ font-size:13.5px; color:#9C9186; }
.footer-col a, .footer-col p{ overflow-wrap:anywhere; }
@media (max-width:1080px){
  .property-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-inner{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px 28px; }
  .footer-brand{ grid-column:span 2; }
  .footer-inner > .footer-col:last-child{ grid-column:span 2; }
}
.rera-foot{ font-size:12px !important; margin-top:6px; }
.footer-bottom{ max-width:var(--container); margin:0 auto; padding:22px 0; text-align:center; }
.footer-bottom p{ font-size:12.5px; color:#7D7368; }

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */
.mobile-cta{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:300;
  background:var(--white); border-top:1px solid var(--line);
  box-shadow:0 -8px 24px -12px rgba(27,22,19,.18);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .why-inner, .about-inner{ grid-template-columns:1fr; }
  .why-visual{ order:-1; max-width:520px; }
  .about-visual{ max-width:420px; }
  .location-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:900px){
  .property-grid, .category-grid, .service-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-inner{ grid-template-columns:1fr; }
  .req-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:860px){
  .nav{ backdrop-filter:none; }
  .nav-links{
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--white); flex-direction:column; align-items:flex-start;
    padding:110px 28px 32px; gap:6px; transform:translateX(100%);
    transition:transform .28s ease; overflow-y:auto; z-index:250;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); font-size:16px; }
  .nav-phone{ display:none; }
  .hamburger{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ order:-1; margin-bottom:8px; }
  .hero-art-frame{ max-width:340px; }
  .hero-points{ gap:20px; }
  .trustbar-inner{ grid-template-columns:repeat(2,1fr); row-gap:22px; }
  .mobile-cta{ display:flex; align-items:center; }
  .mobile-cta a{ display:flex; flex-direction:row; align-items:center; justify-content:center; gap:8px; font-size:14px; font-weight:700; color:var(--ink-soft); width:100%; padding:12px; }
  .mobile-cta a svg{ width:20px; height:20px; color:var(--orange); }
  .mobile-cta-primary{ background:var(--orange); color:var(--white) !important; border-radius:14px; }
  .mobile-cta-primary svg{ color:var(--white) !important; }
  body{ padding-bottom:74px; }
}

@media (max-width:640px){
  :root{ --container:100%; }
  section{ padding:var(--section-pad) 18px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:16px; }
  .property-grid, .service-grid, .req-grid{ grid-template-columns:1fr; }
  .category-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .category-card{ padding:20px 16px; }
  .category-icon{ width:42px; height:42px; margin-bottom:14px; }
  .category-card h3{ font-size:18px; }
  .category-card p{ font-size:13px; line-height:1.5; }
  .category-card:last-child{ grid-column:span 2; }
  .location-grid{ grid-template-columns:1fr; gap:12px; }
  .location-card{ min-height:150px; }
  .location-card .loc-bg svg{ max-height:100px; }
  .footer-inner{ grid-template-columns:minmax(0,1fr); gap:28px; }
  .footer-brand, .footer-inner > .footer-col:last-child{ grid-column:auto; }
  .footer-inner > .footer-col:nth-child(2){ flex-direction:row; flex-wrap:wrap; gap:10px 20px; }
  .footer-inner > .footer-col:nth-child(2) h4{ flex:0 0 100%; margin-bottom:6px; }
  .rera-card{ flex-direction:column; text-align:center; padding:32px 24px; }
  .hero-badge{ left:12px; bottom:16px; }
  .why-badge{ left:12px; bottom:-14px; }
  .nav-cta .btn{ display:none; }
  .req-card{ padding:24px; }
  .contact-form{ padding:26px; }
  .btn{ white-space:normal; padding:14px 20px; font-size:14px; }
  .insta-cta .btn{ width:100%; max-width:340px; }
}

@media (max-width:640px){
  .hero-points{
    grid-template-columns:1fr; gap:16px; border-top:none; padding-top:22px;
    margin-top:22px; border-top:1px solid var(--line);
  }
  .hero-point{
    display:flex; flex-direction:column; gap:2px;
    padding:14px 0 14px 16px; border-left:3px solid var(--orange);
  }
  .hero-point span{ font-size:16.5px; margin-bottom:2px; }
}

@media (max-width:400px){
  .nav-logo img{ height:42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .sky-main path, .sky-main line{ animation:none; }
  *{ transition:none !important; }
}

/* ==========================================================================
   REQUIREMENT FORM ADDITIONS
   ========================================================================== */
.field[hidden]{ display:none; }
.req-star{ color:var(--orange-deep); font-weight:700; }
.field input:invalid:not(:placeholder-shown):not(:focus), .field select:invalid:not(:focus):user-invalid{ border-color:#C0392B; }
@media (max-width:640px){
  .req-toggle{ display:grid; grid-template-columns:1fr 1fr 1fr 1.5fr; width:100%; gap:2px; padding:4px; }
  .req-toggle label{ padding:10px 4px; text-align:center; font-size:13px; white-space:nowrap; word-break:normal; }
}

/* ==========================================================================
   INSTAGRAM REELS MARQUEE
   ========================================================================== */
.reels{ background:var(--white); overflow:hidden; }
.reels-marquee{
  overflow:hidden; margin:0 -24px;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reels-track{
  display:flex; gap:20px; width:max-content; padding:6px 10px;
  animation:reels-scroll var(--reels-duration, 40s) linear infinite;
}
.reels-marquee:hover .reels-track,
.reels-marquee:focus-within .reels-track,
.reels-marquee.paused .reels-track{ animation-play-state:paused; }
.reel-card{
  flex:0 0 auto; width:290px; height:520px;
  border-radius:var(--radius-md); overflow:hidden;
  background:var(--cream); border:1px solid var(--line);
  box-shadow:var(--shadow-card);
}
.reel-card iframe{ width:100%; height:100%; border:0; display:block; }
@keyframes reels-scroll{ from{ transform:translateX(0); } to{ transform:translateX(calc(-1 * var(--reels-shift, 1240px))); } }
@media (max-width:640px){
  .reels-marquee{ margin:0 -18px; }
  .reel-card{ width:250px; height:450px; }
}
@media (prefers-reduced-motion: reduce){
  .reels-marquee{ overflow-x:auto; }
  .reels-track{ animation:none !important; }
}

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder{
  display:flex; align-items:center; gap:16px; margin-top:26px;
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-md); padding:16px 20px; max-width:440px;
}
.founder-avatar{
  flex:0 0 52px; width:52px; height:52px; border-radius:50%;
  background:var(--orange); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:"Fraunces",serif; font-size:19px; font-weight:600;
}
.founder strong{ display:block; font-size:16px; color:var(--ink); }
.founder span:not(.founder-avatar){ font-size:13.5px; color:var(--ink-faint); }

/* ==========================================================================
   FOOTER HIGHLIGHTS
   ========================================================================== */
.footer-highlights{
  max-width:var(--container); margin:0 auto 44px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.fh-item{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; padding:20px 18px;
  display:flex; flex-direction:column; gap:6px;
}
.fh-item strong{ color:var(--orange); font-family:"Fraunces",serif; font-size:17px; font-weight:600; }
.fh-item span{ color:#B4A99C; font-size:13.5px; line-height:1.5; }
@media (max-width:900px){ .footer-highlights{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){
  .footer-highlights{ gap:12px; margin-bottom:36px; }
  .fh-item{ padding:16px 14px; }
  .fh-item strong{ font-size:15.5px; }
  .fh-item span{ font-size:12.5px; }
}
@media (max-width:340px){ .footer-highlights{ grid-template-columns:1fr; } }

/* Anchor offset so section headings clear the sticky header */
section[id]{ scroll-margin-top:64px; }
.location-card .loc-bg svg{ max-height:150px; width:auto; }

.property-card{ display:flex; flex-direction:column; }
.property-body{ flex:1; display:flex; flex-direction:column; }
.property-footer{ margin-top:auto; }

.why-card-wide{ grid-column:1 / -1; }

/* ==========================================================================
   ENQUIRE MODAL
   ========================================================================== */
.modal-overlay{
  position:fixed; inset:0; z-index:400;
  background:rgba(27,22,19,.55);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-card{
  background:var(--white); border-radius:var(--radius-lg);
  max-width:460px; width:100%; max-height:90vh; overflow-y:auto;
  padding:32px; position:relative;
  box-shadow:0 30px 60px -20px rgba(27,22,19,.5);
  transform:translateY(16px); transition:transform .2s ease;
}
.modal-overlay.open .modal-card{ transform:translateY(0); }
.modal-card h3{ margin-bottom:20px; }
.modal-card .field{ margin-bottom:14px; }
.modal-close{
  position:absolute; top:14px; right:14px;
  width:32px; height:32px; border-radius:50%; border:none;
  background:var(--cream); color:var(--ink); font-size:20px; line-height:1;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.modal-close:hover{ background:var(--line); }
@media (max-width:480px){
  .modal-card{ padding:24px 20px; }
}
