/* ==========================================================================
   Beyond Acres — Codename Unstoppable 2.0
   Master clone stylesheet | Brand: deep teal + antique gold
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --green:        #103d39;   /* headings / primary teal */
  --green-deep:   #0b2926;   /* dark sections + footer */
  --green-800:    #0f322f;
  --green-mid:    #14524c;
  --green-050:    #eef4f2;
  --gold:         #c19a3e;
  --gold-600:     #a9842d;
  --gold-soft:    #d8c491;
  --ink:          #23302e;
  --muted:        #6a7975;
  --line:         rgba(16, 61, 57, .12);
  --bg:           #ffffff;
  --bg-soft:      #f7f2ea;    /* warm cream */
  --bg-soft2:     #f3f5f3;
  --white:        #ffffff;
  --radius:       16px;
  --radius-sm:    12px;
  --radius-lg:    22px;
  --shadow:       0 24px 60px -26px rgba(11, 41, 38, .45);
  --shadow-sm:    0 12px 30px -16px rgba(11, 41, 38, .3);
  --maxw:         1200px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --font-head:    "Poppins", "DM Sans", "Segoe UI", Roboto, sans-serif;
  --font-body:    "DM Sans", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
/* Global "zoomed-out" scale so the UI reads a touch smaller at 100% browser zoom */
@media (min-width: 768px) { html { zoom: 0.9; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; color: var(--green); letter-spacing: -.015em; }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(58px, 8vw, 118px); }
.section--soft { background: var(--bg-soft); }
.section--soft2 { background: var(--bg-soft2); }
.section--dark { background: var(--green-deep); color: #cfe0dc; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-soft); }
.h-xl { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.h-lg { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
.accent-gold { color: var(--gold); font-style: italic; }
.lead { font-size: clamp(1rem, 1.25vw, 1.1rem); color: var(--muted); max-width: 60ch; }
.section--dark .lead { color: #a9c1bd; }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }
.sec-head { max-width: 720px; }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .02em;
  padding: 13px 24px; border-radius: 6px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--gold { background: var(--gold); color: #201703; }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--outline { border: 1.5px solid var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--pill { border-radius: 999px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 16px; background: transparent;
}
.header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,0)); opacity: 1; transition: opacity .35s; pointer-events: none; }
.header.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); box-shadow: 0 8px 30px -18px rgba(0,0,0,.35); padding-block: 10px; }
.header.scrolled::before { opacity: 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav__logo img { height: 50px; width: auto; filter: brightness(0) invert(1); transition: filter .35s; }
.header.scrolled .nav__logo img { filter: none; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__menu a { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: #fff; opacity: .95; transition: color .25s, opacity .25s; position: relative; }
.nav__menu a::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav__menu a:hover::after { width: 100%; }
.header.scrolled .nav__menu a { color: var(--green); opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.header.scrolled .btn--ghost { border-color: var(--green); color: var(--green); }
.header.scrolled .btn--ghost:hover { background: var(--green); color: #fff; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.header.scrolled .nav__toggle span { background: var(--green); }

@media (max-width: 1040px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--green-deep); flex-direction: column; align-items: flex-start;
    padding: 100px 30px 30px; gap: 4px; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .nav__menu.open { transform: none; }
  .nav__menu a { color: #fff !important; opacity: 1; font-size: 18px; padding: 13px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__toggle { display: flex; }
  .nav__actions .btn--ghost { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; padding-top: 120px; padding-bottom: 46px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-color: var(--green-deep); background-size: cover; background-position: center; background-repeat: no-repeat;
  background-image: url("https://static.wixstatic.com/media/cef78c_678b49a9a2824a54acad7f3a9663fc52~mv2.png/v1/fill/w_1920,h_1080,al_c,q_80,enc_auto/cef78c_678b49a9a2824a54acad7f3a9663fc52~mv2.png"); }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,26,24,.86) 0%, rgba(6,26,24,.55) 42%, rgba(6,26,24,.15) 72%, rgba(6,26,24,.35) 100%); }
.hero__inner { position: relative; text-align: left; max-width: 720px; width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.hero__badge svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.6vw, 5rem); line-height: 1.0; margin-bottom: 6px; font-weight: 700; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--gold); display: block; font-style: italic; }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: #d7e4e1; max-width: 46ch; margin: 20px 0 0; }
.hero__logo { position: absolute; top: 120px; right: 24px; max-width: 190px; z-index: 3; }
@media (max-width: 700px) { .hero__logo { max-width: 130px; top: 96px; } }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 34px; background: rgba(7,28,26,.6); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(6px); border-radius: 12px; overflow: hidden; width: fit-content; max-width: 100%; }
.hero__stat { display: flex; align-items: center; gap: 12px; padding: 16px 26px; }
.hero__stat + .hero__stat { border-left: 1px solid rgba(255,255,255,.12); }
.hero__stat svg { width: 22px; height: 22px; color: var(--gold-soft); flex: 0 0 auto; }
.hero__stat .st { display: flex; flex-direction: column; line-height: 1.25; }
.hero__stat b { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.hero__stat span { color: #b7c9c5; font-size: 12.5px; }
.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }
.hero__price { display: inline-flex; flex-direction: column; }
.hero__price .price { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.hero__price .price sup { font-size: .9rem; }
.hero__price .price em { font-style: normal; font-size: .9rem; color: #cfe0dd; font-weight: 500; }
.hero__price small { color: #b7c9c5; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.hero__rera { position: absolute; right: 0; bottom: 46px; font-size: 11px; letter-spacing: .08em; color: #cfe0dd; background: rgba(7,28,26,.6); border: 1px solid rgba(255,255,255,.14); padding: 8px 16px; border-radius: 8px; }
@media (max-width: 640px) {
  .hero__stats { flex-direction: column; width: 100%; }
  .hero__stat + .hero__stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .hero__rera { display: none; }
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.ticker { background: var(--green); color: #fff; overflow: hidden; white-space: nowrap; padding-block: 13px; font-family: var(--font-head); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 12.5px; }
.ticker__track { display: inline-flex; gap: 44px; animation: tick 30s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: 44px; }
.ticker__track span::after { content: "✦"; color: var(--gold); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ==========================================================================
   About / intro
   ========================================================================== */
.about { background: var(--bg-soft); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__body h2 { font-size: clamp(2rem, 4vw, 3rem); }
.about__body p { margin-top: 16px; color: var(--muted); }
.about__body p:first-of-type { margin-top: 24px; }
.about__highlight { font-family: var(--font-head); font-weight: 600; color: var(--green) !important; font-size: 1.1rem; border-left: 3px solid var(--gold); padding-left: 18px; margin-top: 24px !important; }
.icon-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }
.icon-stat { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.icon-stat__ic { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 50%; background: rgba(193,154,62,.14); color: var(--gold-600); display: grid; place-items: center; }
.icon-stat__ic svg { width: 24px; height: 24px; }
.icon-stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--green); line-height: 1; }
.icon-stat .lbl { display: block; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); margin: 8px 0 4px; }
.icon-stat small { color: var(--muted); font-size: 13px; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 480px) { .icon-stats { grid-template-columns: 1fr; gap: 22px; } }

/* ==========================================================================
   Plots table
   ========================================================================== */
.plots-head { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.plots-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.plots-head .fire { font-size: 1.6rem; }
.plots-head .miss { color: var(--gold); }
.ptable { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.ptable__head, .ptable__row { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr; align-items: center; gap: 16px; padding: 20px 26px; }
.ptable__head { background: var(--bg-soft); font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ptable__row { border-top: 1px solid var(--line); transition: background .25s; }
.ptable__row:hover { background: #faf8f3; }
.ptable__row .cfg { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 1.02rem; }
.ptable__row .size { font-weight: 500; color: var(--ink); }
.ptable__row .price { color: var(--muted); }
.ptable__row .btn { padding: 10px 18px; font-size: 13px; width: 100%; }
@media (max-width: 820px) {
  .ptable__head { display: none; }
  .ptable__row { grid-template-columns: 1fr 1fr; gap: 8px 14px; padding: 20px; }
  .ptable__row .cfg { grid-column: 1 / -1; }
  .ptable__row .btn { grid-column: auto; }
}

/* ==========================================================================
   Why Mysuru — dark horizontal scroll cards
   ========================================================================== */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 300px); gap: 22px; margin-top: 48px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: rgba(193,154,62,.6); border-radius: 999px; }
.hscroll::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
.icard { position: relative; isolation: isolate; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; box-shadow: var(--shadow-sm); background: var(--green-800); }
.icard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease); }
.icard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(6,26,24,.95) 8%, rgba(6,26,24,.55) 45%, rgba(6,26,24,.1) 100%); }
.icard:hover img { transform: scale(1.06); }
.icard__tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(11,41,38,.7); border: 1px solid rgba(255,255,255,.18); padding: 7px 12px; border-radius: 6px; }
.icard__body { position: relative; z-index: 2; padding: 24px; }
.icard__body h3 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.icard__body p { color: #cbdad6; font-size: 13.5px; line-height: 1.55; }

/* ==========================================================================
   Price comparison
   ========================================================================== */
.cmp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cmp__lead h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.cmp__lead .rule { width: 70px; height: 3px; background: var(--gold); border-radius: 3px; margin: 22px 0; }
.cmp__lead p { color: var(--muted); }
.cmp__lead p b { color: var(--green); }
.pricecards { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; }
.pcard { padding: 30px 22px; text-align: left; color: #fff; }
.pcard .loc { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.pcard .sub { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.pcard .amt { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin: 16px 0 4px; }
.pcard .amt sup { font-size: .75rem; opacity: .8; }
.pcard p { font-size: 12.5px; opacity: .85; margin-top: 10px; }
.pcard--l { background: var(--green-deep); border-radius: 10px 0 0 10px; }
.pcard--c { background: linear-gradient(160deg, #7a5f1a, #5c4611); border-radius: 10px; padding-block: 44px; position: relative; z-index: 2; box-shadow: var(--shadow); }
.pcard--c .amt { color: var(--gold-soft); font-size: 1.8rem; }
.pcard--r { background: linear-gradient(160deg, #14524c, #103d39); border-radius: 0 10px 10px 0; }
.cmp__note { text-align: right; font-size: 11px; color: var(--muted); margin-top: 14px; }
@media (max-width: 900px) { .cmp__grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 560px) { .pricecards { grid-template-columns: 1fr; } .pcard--l,.pcard--c,.pcard--r{border-radius:10px;} .pcard--c{margin-block:-8px;} }

/* two big comparison image cards */
.vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 26px; align-items: center; margin-top: 56px; }
.vs__card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.vs__card--dark { background: var(--green-deep); color: #cfe0dc; }
.vs__img { position: relative; aspect-ratio: 16/9; }
.vs__img img { width: 100%; height: 100%; object-fit: cover; }
.vs__img .lbl { position: absolute; bottom: 14px; left: 14px; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(11,41,38,.72); padding: 7px 14px; border-radius: 6px; }
.vs__body { padding: 24px 26px; display: grid; gap: 16px; }
.vs__feat { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.vs__feat .ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 34px; }
.vs__card--dark .ic { background: rgba(255,255,255,.08); color: var(--gold-soft); }
.vs__card--light .ic { background: rgba(16,61,57,.08); color: var(--green); }
.vs__feat h4 { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px; }
.vs__card--dark h4 { color: #fff; }
.vs__card--light h4 { color: var(--gold-600); }
.vs__feat p { font-size: 13px; color: inherit; opacity: .8; }
.vs__arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #201703; display: grid; place-items: center; font-size: 20px; box-shadow: var(--shadow-sm); }
@media (max-width: 820px) { .vs { grid-template-columns: 1fr; gap: 20px; } .vs__arrow { transform: rotate(90deg); margin-inline: auto; } }

/* smart move band */
.smartband { background: var(--green-deep); color: #fff; }
.smartband .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; }
.smartband__l { display: flex; align-items: center; gap: 16px; }
.smartband__ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(193,154,62,.18); color: var(--gold-soft); display: grid; place-items: center; flex: 0 0 42px; }
.smartband b { color: #fff; font-family: var(--font-head); }
.smartband span { color: #a9c1bd; font-size: 14px; }
.smartband__r { display: flex; align-items: center; gap: 12px; color: #a9c1bd; font-size: 14px; max-width: 34ch; }

/* ==========================================================================
   Location
   ========================================================================== */
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.loc__lead h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.loc__lead p { color: var(--muted); }
.loc__lead p b { color: var(--green); }
.loc__mapwrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; background: #fff; }
.loc__mapwrap img { width: 100%; }
.loc__maptag { position: absolute; top: 14px; left: 14px; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--green); padding: 8px 14px; border-radius: 6px; }
.loc__mapbar { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 15px; }
.loc__mapbar:hover { background: var(--green-mid); }
.loc__tabs { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.loc__tab { padding: 0 0 14px; font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .25s; }
.loc__tab.active, .loc__tab:hover { color: var(--green); border-color: var(--gold); }
.loc__list { display: grid; gap: 2px; }
.loc__item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--line); transition: .2s; }
.loc__item:hover { padding-left: 10px; }
.loc__item .name { font-family: var(--font-head); font-weight: 500; color: var(--ink); }
.loc__item .time { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 12.5px; background: var(--bg-soft); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.loc__item .time::before { content: ""; width: 13px; height: 13px; flex: 0 0 13px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E") center/contain no-repeat; }
.loc__panel { display: none; }
.loc__panel.active { display: grid; }
.loc__note { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
@media (max-width: 900px) { .loc__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ==========================================================================
   Amenities — sidebar + icon grid
   ========================================================================== */
.amen__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.amen__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.amen__meta { font-family: var(--font-head); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.amen__layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.amen__tabs { display: flex; flex-direction: column; gap: 2px; }
.amen__tab { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--muted); text-align: left; transition: .25s; }
.amen__tab svg { width: 18px; height: 18px; flex: 0 0 18px; }
.amen__tab.active, .amen__tab:hover { background: var(--bg-soft); color: var(--green); }
.amen__tab.active { box-shadow: inset 3px 0 0 var(--gold); }
.amen__panel { display: none; }
.amen__panel.active { display: block; }
.amen__panel > h3 { font-size: 1.7rem; margin-bottom: 4px; }
.amen__count { font-family: var(--font-head); color: var(--muted); font-size: 13px; margin-bottom: 26px; }
.amen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.amen__item { padding: 34px 18px; text-align: center; background: #fff; font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink); transition: .3s; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.amen__item svg { width: 30px; height: 30px; color: var(--green); transition: .3s; }
.amen__item:hover { background: var(--green); color: #fff; }
.amen__item:hover svg { color: var(--gold-soft); }
@media (max-width: 900px) { .amen__layout { grid-template-columns: 1fr; } .amen__tabs { flex-direction: row; flex-wrap: wrap; } .amen__tab.active { box-shadow: none; } }
@media (max-width: 560px) { .amen__grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Trust / About developer  (light)
   ========================================================================== */
.trust__lead { max-width: 760px; }
.trust__lead h2 { font-size: clamp(2rem, 4vw, 3rem); }
.trust__sub { font-family: var(--font-head); font-weight: 700; font-style: italic; color: var(--gold); font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin: 12px 0 18px; }
.trust__lead p { color: var(--muted); font-style: italic; }
.trust__rule { width: 60px; height: 3px; background: var(--gold); border-radius: 3px; margin-top: 26px; }
.trust__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 48px; }
.trust__card { text-align: center; }
.trust__ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px; background: var(--green); color: var(--gold-soft); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.trust__ic svg { width: 28px; height: 28px; }
.trust__card h3 { color: var(--green); font-size: 1.02rem; margin-bottom: 8px; }
.trust__card .tag { display: block; font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--gold-600); margin-bottom: 6px; }
.trust__card p { color: var(--muted); font-size: 13px; }
@media (max-width: 940px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sustainability — accordion + image
   ========================================================================== */
.sus__intro h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 16ch; }
.sus__intro p { color: var(--muted); max-width: 66ch; margin-top: 22px; }
.sus__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; margin-top: 50px; align-items: stretch; }
.sus__acc { display: grid; gap: 4px; align-content: start; }
.sus__row { border-top: 1px solid var(--line); }
.sus__q { width: 100%; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 20px 6px; text-align: left; }
.sus__q .no { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: 13px; }
.sus__q h3 { font-size: 1.1rem; color: var(--green); transition: .25s; }
.sus__q .arw { color: var(--muted); transition: .3s; }
.sus__row.open { background: var(--green); border-radius: var(--radius); border-top-color: transparent; color: #fff; padding: 4px 18px 18px; }
.sus__row.open .no { color: var(--gold-soft); }
.sus__row.open h3 { color: #fff; }
.sus__row.open .arw { color: var(--gold-soft); transform: rotate(45deg); }
.sus__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.sus__a p { padding: 0 6px 6px 42px; color: #cbdad6; font-size: 14px; }
.sus__visual { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px; box-shadow: var(--shadow); }
.sus__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sus__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,26,24,.85), transparent 55%); }
.sus__visual .cap { position: absolute; left: 26px; bottom: 24px; z-index: 2; color: #fff; }
.sus__visual .cap small { font-family: var(--font-head); font-weight: 700; letter-spacing: .1em; color: var(--gold-soft); font-size: 12px; }
.sus__visual .cap h3 { color: #fff; font-size: 1.5rem; margin-top: 4px; }
@media (max-width: 900px) { .sus__grid { grid-template-columns: 1fr; } .sus__visual { min-height: 320px; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; margin-top: 46px; }
.gallery__item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: "⤢"; position: absolute; inset: auto 14px 14px auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(11,41,38,.72); color: #fff; display: grid; place-items: center; opacity: 0; transition: .3s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gallery__item.wide { grid-column: span 2; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(4,18,16,.94); display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 22px; display: grid; place-items: center; transition: .25s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #201703; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Consultation steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { padding: 40px 28px; text-align: center; border-right: 1px solid var(--line); transition: .3s; }
.step:last-child { border-right: 0; }
.step:hover { background: var(--bg-soft); }
.step__ic { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: var(--green-deep); color: var(--gold-soft); display: grid; place-items: center; }
.step__ic svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step h3 em { color: var(--gold); font-style: italic; }
.step p { color: var(--muted); font-size: 13.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } .step:nth-child(2){border-right:0;} .step:nth-child(1),.step:nth-child(2){border-bottom:1px solid var(--line);} }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } .step{border-right:0;border-bottom:1px solid var(--line);} }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 940px; margin: 46px auto 0; display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 24px 6px; text-align: left; }
.faq__q .faq__num { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: 13px; }
.faq__qt { display: flex; flex-direction: column; gap: 4px; }
.faq__cat { font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
.faq__q .qtext { font-family: var(--font-head); font-weight: 600; color: var(--green); font-size: 1.06rem; }
.faq__q .plus { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 6px; background: var(--bg-soft); color: var(--green); display: grid; place-items: center; transition: .3s; font-size: 18px; }
.faq__item.open .plus { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 52px 26px; color: var(--muted); }
.faq__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 940px; margin: 30px auto 0; flex-wrap: wrap; }
.faq__foot span { font-family: var(--font-head); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.faq__foot a { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); display: inline-flex; gap: 6px; }
.faq__foot a:hover { color: var(--gold-600); }

/* explore by search chips */
.explore { background: var(--bg-soft); }
.explore .eyebrow { justify-content: center; width: 100%; }
.seo-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; justify-content: center; }
.seo-chips a { font-size: 13px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: .25s; display: inline-flex; align-items: center; gap: 8px; }
.seo-chips a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.seo-chips a:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--green-deep), var(--green-mid)); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 20ch; }
.cta-band p { color: #b7c9c5; margin-top: 10px; max-width: 42ch; }
.cta-band__meta { display: flex; gap: 26px; margin-top: 18px; flex-wrap: wrap; }
.cta-band__meta span { font-family: var(--font-head); font-size: 13px; color: #cfe0dd; display: inline-flex; gap: 6px; align-items: center; }
.cta-band__meta b { color: var(--gold-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green-deep); color: #92aaa5; padding-block: 70px 30px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr; gap: 44px; }
.footer__brand img { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 14px; max-width: 32ch; line-height: 1.7; }
.footer__rera { margin-top: 20px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6f8b87; }
.footer__rera b { display: block; color: var(--gold-soft); font-family: var(--font-head); letter-spacing: .04em; margin-top: 6px; text-transform: none; font-size: 13px; }
.footer h4 { color: #7f9b97; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links a, .footer__high li { display: block; font-size: 14px; padding: 6px 0; transition: color .25s; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__high li::before { content: "→ "; color: var(--gold); }
.footer__contact li { display: flex; gap: 10px; font-size: 14px; padding: 7px 0; align-items: center; }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold-soft); flex: 0 0 16px; }
.footer__contact a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; align-items: center; }
.footer__bottom a:hover { color: var(--gold-soft); }
.footer__disclaimer { font-size: 11px; color: #5f7b77; margin-top: 26px; line-height: 1.8; }
.footer__powered { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer__powered img { height: 22px; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ==========================================================================
   Modal form
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 1500; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4,18,16,.78); backdrop-filter: blur(4px); animation: fade .3s; }
.modal__dialog {
  position: relative; z-index: 2; width: min(480px, 94vw); margin: 6vh auto; max-height: 88vh; overflow: auto;
  background: #fff; border-radius: 14px; box-shadow: 0 40px 100px rgba(0,0,0,.45); animation: pop .4s var(--ease); padding: 34px 34px 30px;
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.modal__head { position: relative; margin-bottom: 22px; }
.modal__logo { height: 40px; width: auto; margin-bottom: 16px; }
.modal__head h3 { color: var(--green); font-size: 1.55rem; font-weight: 700; }
.modal__head p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.modal__close { position: absolute; top: 26px; right: 26px; width: 30px; height: 30px; border-radius: 8px; background: transparent; color: #9aa8a4; font-size: 22px; line-height: 1; display: grid; place-items: center; transition: .25s; }
.modal__close:hover { background: var(--bg-soft); color: var(--green); }
.form { padding: 0; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field label .req { color: var(--gold-600); }
.field input {
  width: 100%; padding: 6px 0 12px; border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0; font-family: var(--font-body); font-size: 16px; color: var(--ink); background: transparent; transition: border-color .25s;
}
.field input::placeholder { color: #b3bdba; }
.field input:focus { outline: none; border-bottom-color: var(--green); }
.field input.invalid { border-bottom-color: #c0392b; }
.field .err { color: #c0392b; font-size: 12px; margin-top: 6px; display: none; }
.field.show-err .err { display: block; }
.form__submit { position: relative; width: 100%; padding: 16px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; border-radius: 4px; margin-top: 4px; }
.form__submit.loading { pointer-events: none; opacity: .85; color: transparent; }
.form__submit.loading::after { content: ""; position: absolute; top: 50%; left: 50%; margin: -9px 0 0 -9px; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__note { font-size: 12.5px; color: var(--muted); margin-top: 16px; text-align: center; }
.form__status { margin-top: 14px; padding: 13px 16px; border-radius: 8px; font-size: 14px; display: none; }
.form__status.ok { display: block; background: #e7f6ee; color: #1c6b3f; border: 1px solid #b6e2c6; }
.form__status.bad { display: block; background: #fbeaea; color: #a5281c; border: 1px solid #f0c4bf; }

/* ==========================================================================
   Floating actions
   ========================================================================== */
.enquire-fab { position: fixed; right: 22px; bottom: 22px; z-index: 820; display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 14px; padding: 14px 22px; border-radius: 999px; box-shadow: 0 16px 40px -12px rgba(11,41,38,.7); transition: transform .25s, background .25s; }
.enquire-fab:hover { transform: translateY(-3px); background: var(--green-mid); }
.enquire-fab svg { width: 18px; height: 18px; }
.fabs { position: fixed; left: 18px; bottom: 18px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .25s; }
.fab:hover { transform: scale(1.08); }
.fab--wa { background: #25d366; }
.fab--call { background: var(--green); }
.fab svg { width: 26px; height: 26px; }

/* utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
