/* AWABIHARI — Cinematic NRI Premium (90% visual) */
:root {
  --bg: #061018;
  --text: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --gold: #d4b87a;
  --gold-2: #e8d296;
  --ink: #1a1408;
  --stroke: rgba(255, 255, 255, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --nav-h: 72px;
  --radius: 1.5rem;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.theme-cinematic {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 78px;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: .6rem 1rem; z-index: 100;
  border-radius: 4px; transition: left .2s;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Cinematic drifting background */
.scene {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(6,16,24,.2) 0%, rgba(6,16,24,.45) 50%, rgba(6,16,24,.82) 100%),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: background-image .8s ease;
  animation: drift 32s ease-in-out infinite alternate;
  filter: saturate(1.06) contrast(1.04);
}
.scene-shade {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(212,184,122,.16), transparent 60%),
    radial-gradient(700px 420px at 12% 78%, rgba(20,110,95,.18), transparent 55%);
}
@keyframes drift {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

/* Glassmorphism */
.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid var(--stroke);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.25);
}

/* Navigation */
.glass-nav {
  position: fixed; top: .9rem; left: 50%; transform: translateX(-50%);
  z-index: 40;
  width: min(980px, calc(100% - 1.25rem));
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .45rem .5rem .45rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  transition: var(--transition);
}
.glass-nav.scrolled {
  background: rgba(6,16,24,.72);
  border-color: rgba(255,255,255,.18);
}
.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .2em;
  font-size: .95rem;
  font-weight: 600;
}
.nav-links { display: none; gap: .15rem; }
.nav-links a {
  padding: .55rem .85rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500; opacity: .88;
  transition: var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,.1); opacity: 1; }

.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  border: 0; background: transparent; color: var(--text);
  padding: .55rem .85rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500; opacity: .88;
  cursor: pointer;
}
.nav-dropdown-toggle:hover { background: rgba(255,255,255,.1); opacity: 1; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .5rem); right: 0;
  min-width: 160px; border-radius: 1rem; padding: .4rem;
  z-index: 50; display: grid; gap: .2rem;
}
.nav-dropdown-menu[hidden] { display: none !important; }
.nav-dropdown-menu a {
  display: block; padding: .7rem 1rem; border-radius: .7rem;
  font-size: .82rem; font-weight: 500; white-space: nowrap;
  opacity: .92;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.1); opacity: 1; }

.nav-end { display: flex; align-items: center; gap: .45rem; }
.lang {
  display: inline-flex; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; overflow: hidden;
}
.lang button {
  border: 0; background: transparent; color: var(--text);
  padding: .35rem .55rem; font-size: .72rem; font-weight: 700;
  transition: var(--transition);
}
.lang button[aria-pressed="true"] { background: rgba(255,255,255,.16); }

.nav-burger {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff;
}

.mobile-sheet {
  position: fixed; top: 5rem; left: 50%; transform: translateX(-50%);
  z-index: 39; width: min(360px, calc(100% - 1.5rem));
  border-radius: 1.25rem; padding: .6rem;
  display: grid; gap: .2rem;
}
.mobile-sheet[hidden] { display: none !important; }
.mobile-sheet a {
  padding: .85rem 1rem; border-radius: .9rem; font-weight: 550;
  transition: var(--transition);
}
.mobile-sheet a:hover { background: rgba(255,255,255,.08); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px;
  padding: .9rem 1.3rem;
  font-weight: 650; font-size: .92rem;
  transition: var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .55rem 1rem; font-size: .8rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(212,184,122,.28);
}
.btn-gold:hover {
  box-shadow: 0 16px 40px rgba(212,184,122,.42);
  transform: translateY(-3px);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.42);
}

/* Typography */
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
}
.display em {
  display: block;
  font-style: italic;
  color: rgba(247,243,234,.84);
  font-size: .72em;
  margin-top: .18em;
}
.display-sm {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin: .4rem 0 .8rem;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
}
.kicker i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,184,122,.18);
}
.muted { color: var(--muted); }

/* Hero - cinematic */
.hero-stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 1rem 8.5rem;
  position: relative;
}
.hero-glass {
  width: min(860px, 100%);
  text-align: center;
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
  border-radius: 2rem;
}
.hero-line {
  margin: 0 auto 1.5rem;
  max-width: 28ch;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: .7rem; opacity: .5; letter-spacing: .15em;
}

/* NRI Intro */
.nri-intro {
  width: min(860px, calc(100% - 1.5rem));
  margin: -2rem auto 2rem;
  position: relative;
  z-index: 2;
}
.nri-glass {
  padding: 2.2rem 1.8rem;
  border-radius: 1.75rem;
  text-align: center;
}
.nri-desc {
  max-width: 62ch;
  margin: 1rem auto 1.2rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.trust-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem;
}
.trust-pills span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .78rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}

/* Section heads */
.section-head {
  text-align: center;
  width: min(860px, calc(100% - 1.5rem));
  margin: 0 auto 1.5rem;
}

/* Journey / Own from Anywhere */
.journey-band {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}
.journey-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.journey-step {
  padding: 1.5rem 1.35rem;
  border-radius: 1.5rem;
  display: grid;
  gap: .65rem;
}
.step-visual {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
}
.journey-step strong {
  font-size: 1.15rem;
  display: block;
}
.journey-step small {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}
.journey-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Lifestyle & Amenities - Visual */
.lifestyle-band {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}
.lifestyle-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
  padding: 1.15rem;
  border-radius: 1.4rem;
  display: grid;
  gap: .55rem;
  min-height: 148px;
}
.feature-card.large {
  grid-column: span 1;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
}
.feature-img {
  height: 138px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-card.large .feature-body {
  padding: 1rem 1.15rem;
}
.feature-card .feature-icon {
  font-size: 1.6rem;
  margin-bottom: .15rem;
}
.feature-card strong {
  font-size: 1.05rem;
  line-height: 1.15;
}
.feature-card small {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

/* Cinematic Gallery */
.gallery-band {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}
.gallery-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.gallery-item {
  aspect-ratio: 16 / 10;
  border-radius: 1.1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .65rem .85rem;
  background: linear-gradient(transparent, rgba(6,16,24,.85));
  font-size: .82rem;
  font-weight: 500;
}
.gallery-cta {
  margin-top: 1.1rem;
  text-align: center;
}

/* Project */
.project-band {
  width: min(980px, calc(100% - 1.5rem));
  margin: 0 auto 2rem;
}
.project-glass {
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  text-align: center;
}
.project-glass h2 {
  margin: 0.5rem 0 0.8rem;
}
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.1rem 0 1.4rem;
}
.highlight {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Enquire */
.enquire-stage {
  width: min(980px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}
.enquire-grid {
  display: grid;
  gap: .85rem;
}
@media (min-width: 820px) {
  .enquire-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; }
}
.enquire-copy, .enquire-form {
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.contact-mini {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
  font-weight: 600;
}
.contact-mini a { color: var(--gold); }
.fields {
  display: grid;
  gap: .75rem;
  margin-bottom: .9rem;
}
label {
  display: grid; gap: .3rem;
  font-size: .78rem; font-weight: 600;
  color: rgba(247,243,234,.86);
}
input, select, textarea {
  width: 100%;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  padding: .85rem .95rem;
  outline: none;
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(212,184,122,.55);
  box-shadow: 0 0 0 3px rgba(212,184,122,.12);
}
.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: .65rem;
  font-weight: 500;
  color: var(--muted);
}
.consent input { width: 16px; height: 16px; margin-top: .2rem; accent-color: var(--gold); }
.form-status { min-height: 1.2rem; margin-top: .7rem; font-size: .88rem; font-weight: 600; }
.form-status.ok { color: #b7e0c8; }
.form-status.err { color: #ffb4b4; }

/* Footer */
.site-footer {
  width: min(980px, calc(100% - 1.5rem));
  margin: 0 auto 1.2rem;
  border-radius: 1.35rem;
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: .7rem;
}
.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .16em;
  font-size: 1.05rem;
}
.site-footer p { margin: .25rem 0 0; color: var(--muted); font-size: .86rem; }
.footer-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.footer-links a {
  color: var(--gold); font-weight: 600; font-size: .9rem;
}
.fineprint { font-size: .75rem !important; opacity: .8; }

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 1.25rem;
  left: 1.1rem; right: auto;
  z-index: 60;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 999px;
  padding: .55rem 1.05rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.floating-wa span:first-child { font-size: 1.15rem; }

/* Sticky bar (light fallback) */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: .45rem;
  padding: .65rem .7rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(6,16,24,.92);
  border-top: 1px solid var(--stroke);
}

/* Toast */
.toast {
  position: fixed; bottom: 4.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 70;
}
.toast.show { opacity: 1; pointer-events: auto; }

/* Responsive */
@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .lifestyle-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .journey-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .hero-glass { padding: 1.6rem 1.2rem; }
  .display { font-size: clamp(2.2rem, 9vw, 3.8rem); }
}
/* Floating Hazri / Instant Attendance (stacked above WhatsApp) */
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-attendance:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.floating-attendance span:first-child {
  font-size: 1.1rem;
}
  bottom: 1.1rem !important;
  left: 1rem !important;
  right: auto !important;
  z-index: 61 !important;
  background: #1e40af;
  color: white;
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  padding: 0;
}
.floating-attendance .att-text { display: none; } /* icon only for clean separation */
