/* =====================================================================
   GOLDEN AVENUE — Design System v2
   Editorial luxe · paper · brass · ink · river
   Built for: fast CWV, accessibility, restrained motion.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette — royal blue → black, with gold */
  --navy:       #14315f;   /* lightest blue (top of gradient) */
  --blue:       #0b1f3f;   /* mid blue */
  --blue-deep:  #06122a;   /* deep blue */
  --black:      #04070e;   /* near-black (bottom of gradient) */

  --paper:      #f4f2ec;   /* PRIMARY — off-white page surface */
  --paper-2:    #fbfaf6;   /* raised off-white panel (cards) */
  --ink:        #0c1a30;   /* deep blue-black text */
  --ink-soft:   #495768;   /* secondary dark text */
  --ink-faint:  #8a93a1;   /* tertiary text / labels */

  --gold:        #d39f51;  /* primary gold accent (solid) */
  --gold-bright: #fff7a9;  /* highlight gold */
  --gold-deep:   #b08d3c;  /* gold hover / shadow */
  --brass:       #d39f51;  /* alias (kept so existing rules read gold) */
  --brass-deep:  #b08d3c;
  --gold-grad:   linear-gradient(to right top in oklab, rgb(211,159,81) 0%, rgb(255,247,169) 50%, rgb(229,181,102) 100%);
  --blue-head:   #14315f;  /* heading blue */

  --river:      #2f6f63;   /* cool secondary (RERA badge) */
  --line:       rgba(12,26,48,.14);    /* neutral hairline (on light) */
  --line-gold:  rgba(176,141,60,.40);  /* gold hairline */
  --line-light: rgba(255,255,255,.16); /* hairline on blue sections */
  --white:      #ffffff;
  /* blue gradient — SECONDARY surface (.section-blue, hero overlay, announce) */
  --blue-grad:  linear-gradient(to bottom right, var(--navy) 0%, var(--blue-deep) 48%, var(--black) 100%);

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;
  --mono:  "DM Mono", ui-monospace, monospace;
  --hindi: "Tiro Devanagari Hindi", serif;

  /* scale (fluid) */
  --step--1: clamp(.78rem, .76rem + .1vw, .85rem);
  --step-0:  clamp(.95rem, .92rem + .15vw, 1.05rem);
  --step-1:  clamp(1.1rem, 1rem + .4vw, 1.3rem);
  --step-2:  clamp(1.4rem, 1.2rem + .9vw, 2rem);
  --step-3:  clamp(2rem, 1.5rem + 2.2vw, 3.4rem);
  --step-4:  clamp(2.6rem, 1.6rem + 4.4vw, 5.6rem);

  /* space + layout */
  --wrap: 1240px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --nav-h: 76px;
  --announce-h: 41px;   /* ticker bar height — subtracted from hero */

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .6s;

  /* fx */
  --radius: 4px;
  --shadow: 0 18px 50px -28px rgba(24, 22, 18, .45);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink-soft);
  background-color: var(--paper);
  background-image:
    radial-gradient(900px 600px at 100% 0%, rgba(176,141,60,.06), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(20,49,95,.05), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { color: var(--blue-head); }

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { font-weight: 400; line-height: 1.05; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 3. Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--white);
  padding: .6rem 1rem; border-radius: var(--radius);
  z-index: 1000; transition: top .2s var(--ease);
  font-size: var(--step--1);
}
.skip-link:focus { top: 12px; }

/* mono label */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow i { width: 26px; height: 1px; background: var(--brass); display: inline-block; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: var(--step--1);
  letter-spacing: .04em; padding: .85em 1.5em;
  border-radius: var(--radius); transition: all .35s var(--ease);
  will-change: transform;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--navy); }
.btn-brass { background: var(--gold-grad); color: var(--blue-deep); }
.btn-brass:hover { filter: brightness(1.06) saturate(1.05); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(176,141,60,.06); }

/* ---------- 4. Motion base (JS adds .is-in) ---------- */
[data-reveal] { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   HEADER — announcement bar + sticky nav
   ===================================================================== */

/* announcement / ticker bar */
.announce {
  background: linear-gradient(90deg, var(--blue-deep), var(--navy));
  color: rgba(255,255,255,.82);
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: .14em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-deep);
}
.announce-track .sep { color: var(--gold-bright); }
.announce-track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap; width: max-content;
  padding-block: .55rem;
  animation: marquee 38s linear infinite;
}
.announce-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.announce-track .sep { color: var(--brass); }
.announce:hover .announce-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; justify-content: center; width: 100%; }
}

/* sticky header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(to bottom right, rgba(20,49,95,.90), rgba(11,31,63,.90));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line-gold);
  background: linear-gradient(to bottom right, rgba(20,49,95,.97), rgba(6,18,42,.97));
  box-shadow: 0 12px 34px -22px rgba(6,18,42,.8);
}
/* light content on blue header */
.site-header .brand img { filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
/* gold logo once scrolled (approx #d39f51 via filter chain) */
.site-header.scrolled .brand img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(46%) saturate(640%) hue-rotate(2deg) brightness(94%) contrast(88%);
}
.site-header .nav-links a:not(.btn) { color: rgba(255,255,255,.82); }
.site-header .nav-links a:not(.btn):hover,
.site-header .nav-links a.active { color: #fff; }
.site-header .burger span { background: #fff; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: var(--nav-h);
  transition: height .4s var(--ease);
}
.site-header.scrolled .header-inner { height: 62px; }

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 32px; }

/* nav links */
.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem);
}
.nav-links a:not(.btn) {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--ink-soft);
  padding: .4rem 0;
  transition: color .3s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--brass);
  transition: right .35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--ink); }

/* burger */
.burger {
  display: none; width: 44px; height: 44px; position: relative;
  flex-shrink: 0; border-radius: var(--radius);
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: var(--ink); transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { bottom: 17px; }
.burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* mobile nav */
@media (max-width: 860px) {
  .burger { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem;
    background: var(--paper);
    padding: 2rem var(--gutter);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(24,22,18,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .site-header .nav-links.open a:not(.btn) { color: var(--ink-soft); }
  .nav-links a:not(.btn) { font-size: var(--step-1); }
  .nav-links .btn { margin-top: .5rem; }
  body.menu-open { overflow: hidden; }
}

/* ---- header transparent over a dark hero (index) ---- */
body.has-hero .site-header { margin-bottom: calc(-1 * var(--nav-h)); }
body.has-hero .site-header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-hero .site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
body.has-hero .site-header:not(.scrolled) .nav-links a:not(.btn) { color: rgba(255,255,255,.82); }
body.has-hero .site-header:not(.scrolled) .nav-links a:not(.btn):hover,
body.has-hero .site-header:not(.scrolled) .nav-links a.active { color: #fff; }
body.has-hero .site-header:not(.scrolled) .burger span { background: #fff; }
@media (max-width: 860px) {
  /* inside the open panel links are always on paper */
  body.has-hero .nav-links.open a:not(.btn) { color: var(--ink-soft); }
}

/* =====================================================================
   HERO — full-screen cinematic project slider
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

/* stacked crossfading slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 0s linear 1.4s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s var(--ease), visibility 0s;
  z-index: 1;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* slow, steady zoom-out across the full slide duration (~matches 6s interval) */
.hero-slide.is-active .hero-bg img { animation: kenburns 6.4s linear forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

/* legibility scrim: dark bottom-left + soft top for nav */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 86% 58% at 50% 64%, rgba(4,7,14,.62) 0%, rgba(4,7,14,.22) 55%, transparent 78%),
    linear-gradient(to top, rgba(4,7,14,.90) 0%, rgba(6,18,42,.58) 34%, rgba(6,18,42,.30) 58%, rgba(4,7,14,.42) 100%);
}

/* per-slide content */
/* centered composition — title, location, twin USPs */
.hero-content {
  position: relative; z-index: 2;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding-block: calc(var(--nav-h) + 2rem) clamp(7rem, 16vh, 11rem);
  color: var(--white);
}
.hero-eyebrow { justify-content: center; color: rgba(255,255,255,.78); }
.hero-eyebrow i { background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 18ch;
  margin-block: 1rem .8rem;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.hero-loc {
  font-family: var(--mono); font-size: var(--step--1);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-shadow: 0 1px 18px rgba(0,0,0,.6);
}
.hero-eyebrow { text-shadow: 0 1px 16px rgba(0,0,0,.55); }

/* twin USP glass chips with gold icon medallion */
.hero-usps {
  list-style: none; padding: 0;
  display: flex; justify-content: center; align-items: stretch;
  flex-wrap: wrap; gap: clamp(.8rem, 2vw, 1.4rem);
  margin-top: clamp(1.6rem, 4vh, 2.4rem);
}
.hero-usp {
  display: flex; flex-direction: row; align-items: center; gap: .65rem;
  padding: .5rem 1.1rem .5rem .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(214,178,94,.30);
  border-radius: 100px;
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.hero-usp:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}
.hero-usp .ico {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(214,178,94,.14);
  border: 1px solid rgba(214,178,94,.45);
  color: var(--gold-bright);
  transition: transform .45s var(--ease);
}
.hero-usp:hover .ico { transform: scale(1.08) rotate(-3deg); }
.hero-usp .ico svg { width: 19px; height: 19px; }
.hero-usp > span:last-child {
  font-size: var(--step--1); line-height: 1.2; white-space: nowrap;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 14px rgba(0,0,0,.55);
}

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: clamp(1.6rem, 4vh, 2.4rem); }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.42); }
.hero-cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* dots — centered at bottom */
.hero-dots {
  position: absolute; z-index: 3; left: 50%; transform: translateX(-50%);
  bottom: clamp(1.6rem, 4vh, 2.4rem);
  list-style: none; display: flex; gap: .7rem; padding: 0; margin: 0;
}
.hero-dots button {
  width: 34px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.32); position: relative; overflow: hidden;
  transition: background .3s var(--ease);
}
.hero-dots button .fill {
  position: absolute; inset: 0; width: 0; background: var(--gold); border-radius: 2px;
}
.hero-dots [aria-selected="true"] { background: rgba(255,255,255,.5); }

/* arrows + pause — bottom-right */
.hero-controls {
  position: absolute; z-index: 3;
  right: var(--gutter); bottom: clamp(1.4rem, 4vh, 2.4rem);
  display: flex; align-items: center; gap: .5rem; color: #fff;
}
.hero-arrows { display: flex; gap: .4rem; }
.hero-arrows button, .hero-play {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; color: #fff;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.hero-arrows button:hover, .hero-play:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.hero-arrows svg, .hero-play svg { width: 16px; height: 16px; }
.hero-play .icon-pause { display: block; }
.hero-play .icon-play { display: none; }
.hero.is-paused .hero-play .icon-pause { display: none; }
.hero.is-paused .hero-play .icon-play { display: block; }

/* right-edge hover zone (hide native cursor so the custom one shows) */
.hero-zone-next, .hero-zone-prev {
  position: absolute; top: 0; z-index: 2;
  width: 20%; height: 100%;
  background: transparent; border: 0; padding: 0;
}
.hero-zone-next { right: 0; }
.hero-zone-prev { left: 0; }

/* blurred glass cursor-follower with arrow */
.hero-cursor {
  position: fixed; left: 0; top: 0; z-index: 140;
  width: 150px; height: 150px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: radial-gradient(circle at center, rgba(255,255,255,.20) 0%, rgba(255,255,255,.10) 38%, rgba(255,255,255,0) 70%);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  -webkit-mask: radial-gradient(circle at center, #000 45%, transparent 72%);
          mask: radial-gradient(circle at center, #000 45%, transparent 72%);
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity .3s var(--ease);
  will-change: transform;
}
.hero-cursor.is-on { opacity: 1; }
.hero-cursor svg { width: 30px; height: 30px; opacity: .55; filter: drop-shadow(0 1px 6px rgba(0,0,0,.5)); transition: transform .2s var(--ease); }
.hero-cursor.flip svg { transform: scaleX(-1); }   /* chevron points left */
@media (hover: none), (pointer: coarse) { .hero-cursor, .hero-zone-next, .hero-zone-prev { display: none; } }

/* visually-hidden live region */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 620px) {
  .hero-controls { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-bg img { animation: none; }
  .hero-dots button .fill { display: none; }
}

/* =====================================================================
   LATEST UPDATES — bar directly under the hero (like SS Group)
   ===================================================================== */
.updates {
  background: var(--blue-grad);
  border-bottom: 1px solid var(--line-gold);
}
.updates-inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem);
  padding-block: 1.1rem; justify-content: center;
}
.updates-label {
  font-family: var(--mono); font-size: var(--step--1);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-bright); white-space: nowrap;
  display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0;
}
.updates-label::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.updates-feed {
  position: relative; overflow: hidden; flex: 1; max-width: 60ch;
  height: 1.5em; text-align: center;
}
.updates-feed li {
  position: absolute; inset: 0; list-style: none;
  opacity: 0; transition: opacity .5s var(--ease);
  color: rgba(255,255,255,.86); font-size: var(--step-0);
  display: flex; align-items: center; justify-content: center;
}
.updates-feed li.is-on { opacity: 1; }
.updates-nav { display: flex; gap: .3rem; flex-shrink: 0; }
.updates-nav button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-light); color: #fff;
  display: grid; place-items: center;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.updates-nav button:hover { border-color: var(--gold); background: rgba(255,255,255,.1); }
.updates-nav svg { width: 14px; height: 14px; }
@media (max-width: 620px) {
  .updates-inner { flex-wrap: wrap; }
  .updates-feed { order: 3; flex-basis: 100%; }
}

/* =====================================================================
   SECTION primitives
   ===================================================================== */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-alt { background: var(--paper-2); }

/* secondary surface — blue gradient, light text */
.section-blue {
  position: relative; overflow: hidden;
  background: var(--blue-grad);
  color: rgba(255,255,255,.80);
}
.section-blue h1, .section-blue h2, .section-blue h3 { color: var(--white); }
.section-blue .sec-head .lede { color: rgba(255,255,255,.72); }
.section-blue .eyebrow { color: rgba(255,255,255,.6); }
.section-blue .btn-ghost { border-color: var(--line-light); color: #fff; }
.section-blue .leaf-watermark { opacity: .10; }
.section-blue > .wrap { position: relative; z-index: 1; }

.sec-head { max-width: 64ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-block: 1rem .9rem;
}
.sec-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-blue .sec-head h2 em { color: var(--gold-bright); }
.sec-head .lede { color: var(--ink-soft); font-size: var(--step-1); max-width: 52ch; }
.sec-head.center .lede { margin-inline: auto; }

/* ---- gold-leaf ornament (sprig divider) ---- */
.ornament { display: flex; justify-content: flex-start; margin-bottom: 1.1rem; }
.sec-head.center .ornament { justify-content: center; }
.ornament svg { width: clamp(96px, 14vw, 132px); height: auto; }
.ornament .leaf { fill: url(#goldgrad); }
.ornament .gem  { fill: var(--gold-bright); }
.ornament .vein { stroke: var(--blue-deep); stroke-width: 1; opacity: .35; }

/* ---- large faint gold-leaf watermark (section accent) ---- */
.leaf-watermark {
  position: absolute; z-index: 0; pointer-events: none;
  width: clamp(220px, 36vw, 520px); height: auto;
  opacity: .06; color: var(--gold);
}
.leaf-watermark svg { width: 100%; height: auto; fill: currentColor; }

/* =====================================================================
   PROJECTS — two-up editorial showcase
   ===================================================================== */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.6rem);
}
@media (max-width: 820px) { .proj-grid { grid-template-columns: 1fr; } }

.proj-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(12,26,48,.5), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

.proj-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.proj-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.proj-card:hover .proj-media img { transform: scale(1.05); }
.proj-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,.45), transparent 55%);
}

.proj-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--mono); font-size: var(--step--1);
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--gold-grad); color: var(--blue-deep);
  padding: .35em .8em; border-radius: 2px; font-weight: 600;
}
.proj-badge.is-rera { background: var(--ink); color: var(--gold-bright); }

.proj-body { padding: clamp(1.1rem, 2.2vw, 1.6rem); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.proj-loc {
  font-family: var(--mono); font-size: var(--step--1);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint);
}
.proj-body h3 { font-family: var(--serif); font-weight: 400; font-size: var(--step-2); }
.proj-body p { color: var(--ink-soft); }

.proj-facts {
  list-style: none; display: flex; gap: clamp(1rem, 3vw, 2rem);
  margin-block: .3rem .4rem; padding-block: .7rem; border-block: 1px solid var(--line);
}
.proj-facts li { display: flex; flex-direction: column; gap: .1rem; }
.proj-facts b { font-family: var(--serif); font-size: var(--step-1); font-weight: 400; }
.proj-facts span { font-size: var(--step--1); color: var(--ink-faint); letter-spacing: .03em; }

.proj-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: var(--step--1); letter-spacing: .04em;
  color: var(--ink); padding-top: .3rem;
}
.proj-link .arr { transition: transform .35s var(--ease); }
.proj-card:hover .proj-link .arr { transform: translateX(5px); }
.proj-link:hover { color: var(--brass-deep); }

/* =====================================================================
   ENQUIRE DOCK — right-edge vertical tab → springing form
   ===================================================================== */
/* vertical tab */
.enquire-tab {
  position: fixed; right: 0; top: 50%; transform: translate(0, -50%);
  z-index: 120;
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 1.4rem .7rem;
  background: linear-gradient(180deg, #3a6ef0 0%, #1c46c4 60%, #163a9e 100%);
  color: #fff;
  font-weight: 700; font-size: var(--step--1);
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: 14px 0 0 14px;   /* lightly rounded left, flush right edge */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 0 26px -2px rgba(58,110,240,.8),
    -10px 14px 34px -12px rgba(28,70,196,.6);
  transition: box-shadow .35s var(--ease), transform .3s var(--ease);
}
.enquire-tab:hover {
  transform: translate(-3px, -50%);   /* slides out 3px */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.3),
    0 0 34px 0 rgba(58,110,240,.95),
    -12px 18px 40px -12px rgba(28,70,196,.7);
}

/* backdrop */
.enquire-overlay {
  position: fixed; inset: 0; z-index: 115;
  background: rgba(6,18,42,.42); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s linear .4s;
}
.enquire.is-open .enquire-overlay { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }

/* panel positioner (no transform here — panel owns transform) */
.enquire-panel-wrap {
  position: fixed; right: clamp(.7rem, 2vw, 1.4rem); top: 50%;
  transform: translateY(-50%); z-index: 130;
  pointer-events: none;
}
/* the springing card */
.enquire-panel {
  width: min(360px, 90vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: 0 44px 90px -34px rgba(6,18,42,.7);
  transform-origin: right center;
  transform: scale(.15);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.enquire.is-open .enquire-panel { visibility: visible; pointer-events: auto; }
.enquire-close {
  position: absolute; top: .8rem; right: .8rem;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft);
  border: 1px solid var(--line); transition: border-color .25s, color .25s;
}
.enquire-close:hover { border-color: var(--gold); color: var(--ink); }
.enquire-close svg { width: 15px; height: 15px; }
.enquire-panel h3 { font-family: var(--serif); font-size: var(--step-2); margin-top: .6rem; }
.enquire-sub { color: var(--ink-soft); font-size: var(--step--1); margin: .3rem 0 1.1rem; }

/* form */
.enquire-form .field { display: block; margin-bottom: .75rem; }
.enquire-form label > span { display: block; font-size: var(--step--1); color: var(--ink-faint); margin-bottom: .3rem; letter-spacing: .03em; }
.enquire-form input, .enquire-form select {
  width: 100%; padding: .68rem .8rem;
  border: 1px solid var(--line); border-radius: 9px;
  background: var(--paper); color: var(--ink); font-size: var(--step-0);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.enquire-form input:focus, .enquire-form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,141,60,.16);
}
.enquire-check { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--step--1); color: var(--ink-soft); margin: .2rem 0 1rem; }
.enquire-check input { width: auto; margin-top: .2rem; }
.enquire-form .btn { width: 100%; justify-content: center; }
.enquire-ok { display: none; margin-top: .8rem; padding: .6rem .8rem; border-radius: 9px; background: rgba(47,111,99,.12); color: var(--river); font-size: var(--step--1); text-align: center; }
.enquire-ok.show { display: block; }

@media (max-width: 540px) {
  .enquire-tab { font-size: 11px; padding: .9rem .4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .enquire-panel { transition: opacity .2s, visibility 0s; }
}

/* =====================================================================
   ABOUT — builder story + animated legacy counters (blue surface)
   ===================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { color: rgba(255,255,255,.78); margin-top: 1rem; }
.about-quote {
  border-left: 2px solid var(--gold); padding-left: 1.2rem; margin-top: 1.6rem;
  font-family: var(--serif); font-style: italic; font-size: var(--step-1); color: #fff;
}
.about-quote cite { display: block; margin-top: .6rem; font-size: var(--step--1); font-style: normal; color: var(--gold-bright); letter-spacing: .08em; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-light); border: 1px solid var(--line-light);
  border-radius: 14px; overflow: hidden;
}
.stat { background: rgba(255,255,255,.04); padding: clamp(1.3rem, 3vw, 2rem); }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); color: #fff; line-height: 1; }
.stat small { display: block; margin-top: .55rem; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); }
.about .leaf-watermark { top: -4%; right: -3%; }

/* =====================================================================
   WHY US — value grid
   ===================================================================== */
.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); list-style: none; padding: 0; }
@media (max-width: 880px) { .why-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-list { grid-template-columns: 1fr; } }
.why-item { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.why-item .num { font-family: var(--mono); color: var(--gold-deep); font-size: var(--step--1); letter-spacing: .2em; }
.why-item h3 { font-family: var(--serif); font-weight: 400; font-size: var(--step-1); margin: .5rem 0 .45rem; }
.why-item p { color: var(--ink-soft); font-size: var(--step-0); }

/* =====================================================================
   TRUST strip — seals
   ===================================================================== */
.trust-strip { background: var(--paper-2); border-block: 1px solid var(--line); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(.9rem, 3vw, 2.4rem); padding-block: 1.5rem; }
.trust-seal { font-family: var(--mono); font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.trust-seal b { color: var(--gold-deep); font-weight: 500; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
@media (max-width: 560px) { .trust-dot { display: none; } }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.5rem, 3vw, 2rem); }
.testi-card .mark { font-family: var(--serif); font-size: 3rem; line-height: .6; color: var(--gold); opacity: .5; }
.testi-card .q { color: var(--ink); line-height: 1.6; margin-top: .4rem; }
.testi-card .who { margin-top: 1.1rem; font-size: var(--step--1); color: var(--ink-faint); }
.testi-card .who b { display: block; color: var(--ink); font-weight: 600; }

/* =====================================================================
   CONTACT — info + form + map
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { list-style: none; padding: 0; margin-top: 1.4rem; }
.contact-info li { display: flex; flex-direction: column; gap: .15rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.contact-info span { font-family: var(--mono); font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.contact-info a { font-size: var(--step-1); color: var(--ink); transition: color .25s; }
.contact-info a:hover { color: var(--gold-deep); }
.contact-map { margin-top: 1.4rem; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); display: block; }
.contact-map img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .6s var(--ease); }
.contact-map:hover img { transform: scale(1.04); }

.lead-form { background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.2rem); }
.lead-form h3 { font-family: var(--serif); font-size: var(--step-2); }
.lead-form .sub { color: var(--ink-soft); font-size: var(--step--1); margin: .3rem 0 1.2rem; }
.lead-form .field { display: block; margin-bottom: .85rem; }
.lead-form label > span { display: block; font-size: var(--step--1); color: var(--ink-faint); margin-bottom: .3rem; letter-spacing: .03em; }
.lead-form input, .lead-form select {
  width: 100%; padding: .72rem .85rem; border: 1px solid var(--line); border-radius: 9px;
  background: var(--white); color: var(--ink); font-size: var(--step-0);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.lead-form input:focus, .lead-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,60,.16); }
.lead-form .check { display: flex; gap: .55rem; align-items: flex-start; font-size: var(--step--1); color: var(--ink-soft); margin: .3rem 0 1rem; }
.lead-form .check input { width: auto; margin-top: .2rem; }
.lead-form .btn { width: 100%; justify-content: center; }
.lead-form .ok { display: none; margin-top: .8rem; padding: .6rem .8rem; border-radius: 9px; background: rgba(47,111,99,.12); color: var(--river); font-size: var(--step--1); text-align: center; }
.lead-form .ok.show { display: block; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--blue-grad); color: rgba(255,255,255,.72); padding-top: clamp(3rem, 6vw, 5rem); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-light); }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand img { height: 40px; filter: brightness(0) invert(1); }
.foot-brand p { margin-top: 1rem; font-size: var(--step--1); max-width: 38ch; }
.foot-col h5 { font-family: var(--mono); font-size: var(--step--1); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; }
.foot-col a { display: block; padding: .35rem 0; font-size: var(--step-0); color: rgba(255,255,255,.74); transition: color .25s, padding-left .25s; }
.foot-col a:hover { color: #fff; padding-left: .3rem; }
.foot-mono { display: block; text-align: center; padding-block: 1.6rem; font-family: var(--mono); font-size: var(--step--1); letter-spacing: .16em; color: var(--gold-bright); opacity: .7; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-bottom: 2rem; font-size: var(--step--1); color: rgba(255,255,255,.5); }

/* =====================================================================
   FLOATING — WhatsApp + Call (bottom-left, away from enquire tab)
   ===================================================================== */
.floaters { position: fixed; left: clamp(.8rem, 2vw, 1.4rem); bottom: clamp(.8rem, 2vw, 1.4rem); z-index: 118; display: flex; flex-direction: column; gap: .7rem; }
.floater { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px -10px rgba(6,18,42,.6); transition: transform .3s var(--ease); }
.floater:hover { transform: translateY(-3px) scale(1.05); }
.floater svg { width: 26px; height: 26px; }
.floater-wa { background: #25d366; }
.floater-call { background: var(--gold-grad); color: var(--blue-deep); }
@media (max-width: 540px) { .floater { width: 48px; height: 48px; } .floater svg { width: 22px; height: 22px; } }

/* =====================================================================
   PROJECT PAGE — highlights, price, plans, amenities, gallery, locality
   ===================================================================== */
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
@media (max-width: 880px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .highlights { grid-template-columns: 1fr; } }
.highlight { padding: 1.4rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; }
.highlight .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(176,141,60,.12); border: 1px solid var(--line-gold); color: var(--gold-deep); margin-bottom: .9rem; }
.highlight .ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.highlight h3 { font-family: var(--serif); font-weight: 400; font-size: var(--step-1); margin-bottom: .3rem; }
.highlight p { color: var(--ink-soft); font-size: var(--step--1); }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--blue-grad); color: #fff; border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem); }
.price-card .start { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); color: #fff; line-height: 1; }
.price-card .start small { display: block; font-size: var(--step--1); color: var(--gold-bright); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem; }
.config-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.config-table th, .config-table td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line-light); font-size: var(--step-0); }
.config-table th { color: var(--gold-bright); font-family: var(--mono); font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.price-card .note { color: rgba(255,255,255,.7); font-size: var(--step--1); margin-top: 1rem; }
.price-card .btn { margin-top: 1.4rem; }

.plan-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.plan-media { position: relative; }
.plan-media img { width: 100%; display: block; filter: blur(8px); transform: scale(1.06); }
.plan-lock { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; background: rgba(12,26,48,.45); color: #fff; padding: 1.5rem; }
.plan-lock .ico { width: 50px; height: 50px; border-radius: 50%; background: var(--gold-grad); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: .8rem; }
.plan-lock .ico svg { width: 22px; height: 22px; }
.plan-card .pc-body { padding: 1.3rem 1.4rem; }
.plan-card .pc-body h3 { font-family: var(--serif); font-weight: 400; font-size: var(--step-1); }

.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 2vw, 1.4rem); list-style: none; padding: 0; }
@media (max-width: 880px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
.amenity { display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; padding: 1.3rem .8rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2); }
.amenity .ico { width: 38px; height: 38px; color: var(--gold-deep); }
.amenity .ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.amenity span { font-size: var(--step--1); letter-spacing: .03em; color: var(--ink-soft); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(4,7,14,.94); backdrop-filter: blur(8px); cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 40px 90px -30px #000; }
.lightbox .lb-close { position: absolute; top: 20px; right: 24px; color: var(--gold-bright); font-family: var(--mono); font-size: var(--step--1); letter-spacing: .16em; text-transform: uppercase; }

.locality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
@media (max-width: 880px) { .locality-grid { grid-template-columns: 1fr; } }
.locality-points { list-style: none; padding: 0; }
.locality-points li { display: flex; gap: .9rem; padding: .65rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.locality-points b { color: var(--gold-deep); font-family: var(--mono); min-width: 6ch; }
