/* ═══════════════════════════════════════════════════════════════
   ELITE REALTY DEVELOPERS — STYLE.CSS
   Core: Reset, Typography, Layout, Components, Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  /* Palette */
  --bk:       #04060A;
  --bk2:      #080B12;
  --bk3:      #0E1219;
  --sapphire: #2563A8;
  --sap-l:    #3B7FD4;
  --sap-gl:   #5B9CF0;
  --gold:     #C9A227;
  --gold-l:   #E8C84A;
  --gold-d:   #A67C00;
  --gold-p:   #FBF0D0;
  --rose:     #B76E79;
  --copper:   #C08B6F;

  /* Text */
  --tx:       #D8D4CB;
  --tx-d:     #8A877E;
  --tx-b:     #F5F3EE;

  /* Glass */
  --glass:    rgba(10, 12, 20, 0.55);
  --glass-b:  rgba(212, 175, 55, 0.10);
  --glass-b2: rgba(212, 175, 55, 0.16);

  /* Type */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, sans-serif;
  --ff-accent:  'Cormorant Garamond', Georgia, serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0, 1);

  /* Spacing */
  --s-section: clamp(100px, 12vw, 160px);
  --s-gutter:  clamp(20px, 4vw, 60px);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}
html::-webkit-scrollbar { display: none; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--bk);
  color: var(--tx);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
body.is-scrolling .ambient-glow {
  opacity: 0.35;
  mix-blend-mode: normal;
}
body.is-scrolling .nav {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(4,6,10,0.92);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: rgba(212,175,55,0.2); color: var(--tx-b); }

/* ─── UTILITY ─── */
.container { max-width: 1320px; margin: 0 auto; }
.s-pad { padding: var(--s-section) var(--s-gutter); }

/* ═══════════════════════════════════════════════════════════════
   OVERLAYS & GLOBAL UI
   ═══════════════════════════════════════════════════════════════ */

/* Interactive Ambient Glow */
.ambient-glow {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; overflow: hidden;
  mix-blend-mode: soft-light;
  contain: strict;
  transition: opacity 0.2s ease;
}
.ambient-glow__orb {
  position: absolute;
  width: min(45vw, 550px);
  height: min(45vw, 550px);
  border-radius: 50%;
  will-change: transform;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
}
.ambient-glow__orb--gold {
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, rgba(166,124,0,0.06) 35%, transparent 62%);
}
.ambient-glow__orb--sapphire {
  background: radial-gradient(circle, rgba(59,127,212,0.18) 0%, rgba(37,99,168,0.06) 40%, transparent 62%);
}
.ambient-glow__orb--rose {
  background: radial-gradient(circle, rgba(183,110,121,0.08) 0%, transparent 62%);
}

@media (pointer: coarse) {
  .ambient-glow { mix-blend-mode: normal; opacity: 0.55; }
}

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  z-index: 10001; width: 100%;
  background: linear-gradient(90deg, var(--sapphire), var(--sap-gl), var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: background 1.2s ease;
}
.preloader.is-stage {
  background: transparent;
  pointer-events: none;
}
.preloader.is-stage .preloader-inner,
.preloader.is-stage .preloader-tagline,
.preloader.is-stage .preloader-hint {
  pointer-events: auto;
}
.preloader-inner {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 500px; height: 500px;
}
.preloader-logo {
  width: 340px; opacity: 0;
  transform: scale(0.85);
  position: relative; z-index: 2;
}
.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.preloader-ring:nth-child(1) {
  width: 390px; height: 390px;
  border-top-color: rgba(212,175,55,0.3);
  border-right-color: rgba(212,175,55,0.1);
  animation: preRingSpin 2s linear infinite;
}
.preloader-ring:nth-child(2) {
  width: 445px; height: 445px;
  border-bottom-color: rgba(59,127,212,0.25);
  border-left-color: rgba(59,127,212,0.08);
  animation: preRingSpin 3s linear infinite reverse;
}
.preloader-ring:nth-child(3) {
  width: 490px; height: 490px;
  border-top-color: rgba(212,175,55,0.08);
  animation: preRingSpin 5s linear infinite;
}
.preloader-counter {
  position: absolute; bottom: 14%;
  font-family: var(--ff-accent);
  font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: 0.2;
  letter-spacing: 4px;
}
.preloader-label {
  position: absolute; bottom: calc(14% - 36px);
  font-size: 9px; letter-spacing: 8px;
  text-transform: uppercase; color: var(--tx-d);
}
.preloader-tagline {
  position: absolute; bottom: calc(14% - 64px);
  font-family: var(--ff-accent);
  font-size: 16px; font-weight: 300; font-style: italic;
  color: var(--gold); opacity: 0;
  letter-spacing: 2px;
}

/* ─── LOGO AS CLICK TARGET ─── */
.preloader-logo.is-clickable {
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.preloader-logo.is-clickable:hover {
  transform: scale(1.05);
}

/* ─── TAP HINT ─── */
.preloader-hint {
  position: absolute; bottom: calc(14% - 80px);
  font-family: var(--ff-accent);
  font-size: 11px; font-weight: 400;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: hintPulse 2.5s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

/* ─── BREATHING LOGO ─── */
.preloader-logo.is-breathing {
  animation: logoBreathe 2.5s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 0 60px rgba(255,248,230,0.25));
}
.preloader.is-stage .preloader-inner::after {
  content: '';
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle, rgba(91,156,240,0.08) 0%, transparent 50%),
    radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
@keyframes logoBreathe {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(91,156,240,0.2)) drop-shadow(0 0 40px rgba(201,162,39,0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 45px rgba(91,156,240,0.35)) drop-shadow(0 0 70px rgba(201,162,39,0.35));
    transform: scale(1.03);
  }
}

/* ─── CINEMA CURTAIN STAGE (Logo palette: sapphire + gold) ─── */
.curtain {
  position: fixed; inset: 0; z-index: 9999;
  display: flex;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    #0a1628 0%, #060a12 50%, #04060A 100%);
  overflow: hidden;
}
.curtain__panel {
  width: 50%; height: 100%;
  position: relative;
  z-index: 3;
  box-shadow: inset -8px 0 24px rgba(0,0,0,0.5), inset 8px 0 24px rgba(0,0,0,0.3);
}
.curtain__panel--left {
  transform-origin: left center;
  border-right: 1px solid rgba(91,156,240,0.15);
  background:
    linear-gradient(90deg,
      #0a1628 0%, #142d52 8%, #0d2240 16%,
      #1a3d6e 24%, #122a4d 32%, #2563A8 40%,
      #0d2240 48%, #142d52 56%, #0a1628 64%,
      #1a3d6e 72%, #122a4d 80%, #142d52 88%, #0d2240 100%);
}
.curtain__panel--right {
  transform-origin: right center;
  border-left: 1px solid rgba(201,162,39,0.2);
  background:
    linear-gradient(90deg,
      #2a2008 0%, #4a3810 8%, #3d2e0a 16%,
      #6b5218 24%, #5c4612 32%, #A67C00 40%,
      #3d2e0a 48%, #4a3810 56%, #2a2008 64%,
      #6b5218 72%, #5c4612 80%, #4a3810 88%, #3d2e0a 100%);
}
.curtain__folds {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 18px,
    rgba(0,0,0,0.2) 18px,
    rgba(0,0,0,0.2) 22px,
    transparent 22px,
    transparent 42px,
    rgba(255,255,255,0.04) 42px,
    rgba(255,255,255,0.04) 44px
  );
  pointer-events: none;
}
.curtain__panel--left .curtain__trim {
  background: linear-gradient(180deg,
    var(--sap-gl) 0%, var(--sap-l) 25%, var(--sapphire) 50%,
    var(--sap-l) 75%, var(--sap-gl) 100%);
  box-shadow: 0 0 12px rgba(91,156,240,0.45);
}
.curtain__panel--right .curtain__trim {
  background: linear-gradient(180deg,
    var(--gold-d) 0%, var(--gold) 20%, var(--gold-l) 50%,
    var(--gold) 80%, var(--gold-d) 100%);
  box-shadow: 0 0 12px rgba(201,162,39,0.45);
}
.curtain__trim {
  position: absolute; top: 0; bottom: 0;
  width: 14px;
}
.curtain__panel--left .curtain__trim { right: 0; }
.curtain__panel--right .curtain__trim { left: 0; }
.curtain__shimmer {
  position: absolute; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(91,156,240,0.0) 8%,
    rgba(91,156,240,0.5) 35%,
    rgba(232,200,74,1) 50%,
    rgba(91,156,240,0.5) 65%,
    rgba(91,156,240,0.0) 92%,
    transparent 100%
  );
  opacity: 0;
  box-shadow:
    0 0 30px 8px rgba(91,156,240,0.25),
    0 0 40px 10px rgba(201,162,39,0.35),
    0 0 100px 30px rgba(201,162,39,0.1);
  z-index: 2;
}
.curtain__panel--left .curtain__shimmer { right: 14px; }
.curtain__panel--right .curtain__shimmer { left: 14px; }

/* Valance — sapphire base with gold trim */
.cinema-valance {
  position: absolute; top: 0; left: 0; right: 0;
  height: 72px; z-index: 5;
  background:
    linear-gradient(180deg,
      #060a12 0%, #0d2240 25%, #2563A8 50%, #1a3d6e 75%, #0a1628 100%);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--sap-gl), var(--gold-l), var(--gold-d)) 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 4px 20px rgba(37,99,168,0.15);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.cinema-valance::after {
  content: '';
  position: absolute; bottom: -18px; left: 0; right: 0;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    #1a3d6e 0px, #1a3d6e 28px,
    #5c4612 28px, #5c4612 56px
  );
  clip-path: polygon(
    0 0, 100% 0,
    98% 100%, 94% 0, 90% 100%, 86% 0, 82% 100%, 78% 0,
    74% 100%, 70% 0, 66% 100%, 62% 0, 58% 100%, 54% 0,
    50% 100%, 46% 0, 42% 100%, 38% 0, 34% 100%, 30% 0,
    26% 100%, 22% 0, 18% 100%, 14% 0, 10% 100%, 6% 0,
    2% 100%, 0 0
  );
}
.curtain.is-stage .cinema-valance { opacity: 1; }

/* Spotlights */
.cinema-spotlight {
  position: absolute; top: 0;
  width: 55%; height: 85%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}
.cinema-spotlight--left {
  left: -5%;
  background: conic-gradient(from 200deg at 30% 0%,
    transparent 0deg, rgba(91,156,240,0.08) 25deg,
    rgba(59,127,212,0.05) 45deg, transparent 70deg);
}
.cinema-spotlight--center {
  left: 50%; transform: translateX(-50%);
  width: 70%;
  background: radial-gradient(ellipse 45% 80% at 50% 0%,
    rgba(232,200,74,0.12) 0%, rgba(255,248,230,0.06) 25%,
    rgba(91,156,240,0.04) 45%, transparent 75%);
}
.cinema-spotlight--right {
  right: -5%;
  background: conic-gradient(from 340deg at 70% 0%,
    transparent 0deg, rgba(232,200,74,0.08) 25deg,
    rgba(201,162,39,0.05) 45deg, transparent 70deg);
}
.curtain.is-stage .cinema-spotlight { opacity: 1; }
.curtain.is-opening .cinema-spotlight { opacity: 0.4; transition: opacity 1.2s ease; }

/* Reflective stage floor */
.cinema-stage__floor {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 22%;
  z-index: 2;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(37,99,168,0.06) 20%,
      rgba(201,162,39,0.04) 40%,
      rgba(10,22,40,0.7) 65%,
      rgba(4,6,10,0.95) 100%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.cinema-stage__floor::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(91,156,240,0.2) 15%, rgba(201,162,39,0.35) 50%,
    rgba(91,156,240,0.2) 85%, transparent);
}
.cinema-stage__floor::after {
  content: '';
  position: absolute; top: 20%; left: 20%; right: 20%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(91,156,240,0.04) 0%, rgba(232,200,74,0.03) 40%, transparent 70%);
}
.curtain.is-stage .cinema-stage__floor { opacity: 1; }

.curtain__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 4; pointer-events: none;
}
.curtain--hidden { display: none; }

@keyframes curtainSway {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.008); }
}
.curtain.is-stage .curtain__panel--left {
  animation: curtainSway 4s ease-in-out infinite;
  transform-origin: left center;
}
.curtain.is-stage .curtain__panel--right {
  animation: curtainSway 4s ease-in-out infinite 0.5s;
  transform-origin: right center;
}
.curtain.is-opening .curtain__panel--left,
.curtain.is-opening .curtain__panel--right {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .curtain.is-stage .curtain__panel--left,
  .curtain.is-stage .curtain__panel--right {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIVE CURSOR
   ═══════════════════════════════════════════════════════════════ */
html.has-live-cursor,
html.has-live-cursor * {
  cursor: none !important;
}

.live-cursor {
  position: fixed; inset: 0;
  z-index: 10002;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.live-cursor.is-active { opacity: 1; }

.live-cursor__glow {
  position: fixed; top: 0; left: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  margin: -160px 0 0 -160px;
  backface-visibility: hidden;
}
.live-cursor__trail {
  position: fixed; inset: 0;
  pointer-events: none;
}
.live-cursor__trail-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.45;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.live-cursor__trail-dot.is-fading {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}
.live-cursor__ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212,175,55,0.65);
  border-radius: 50%;
  margin: -20px 0 0 -20px;
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.35s,
              background 0.35s,
              border-width 0.35s;
  backface-visibility: hidden;
}
.live-cursor__ring.is-hovering {
  width: 58px; height: 58px;
  border-color: var(--gold-l);
  background: rgba(212,175,55,0.06);
}
.live-cursor__ring.is-clicking {
  width: 30px; height: 30px;
  border-width: 2px;
  background: rgba(212,175,55,0.12);
}
.live-cursor__dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: -3px 0 0 -3px;
  box-shadow: 0 0 10px rgba(212,175,55,0.8);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out);
  backface-visibility: hidden;
}
.live-cursor__ring.is-hovering + .live-cursor__dot,
.live-cursor.is-hovering .live-cursor__dot {
  width: 8px; height: 8px;
}
.live-cursor__label {
  position: fixed; top: 0; left: 0;
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(4,6,10,0.85);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 6px 12px;
  transform: translate(18px, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  white-space: nowrap;
  backface-visibility: hidden;
}
.live-cursor__label.is-visible {
  opacity: 1;
}

@media (pointer: coarse), (max-width: 768px) {
  html.has-live-cursor,
  html.has-live-cursor * { cursor: auto !important; }
  .live-cursor { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 16px; left: var(--s-gutter); right: var(--s-gutter);
  z-index: 1000;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 60px;
  background: rgba(4,6,10,0.65);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(212,175,55,0.06);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: padding 0.6s var(--ease-out), background 0.6s var(--ease-out), border-color 0.6s var(--ease-out);
}
.nav--scrolled {
  top: 10px;
  padding: 12px 28px;
  background: rgba(4,6,10,0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-color: rgba(212,175,55,0.1);
  box-shadow:
    0 12px 48px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Logo */
.nav__logo {
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.nav__logo img { height: 44px; width: auto; object-fit: contain; transition: height 0.3s; }
.nav--scrolled .nav__logo img { height: 38px; }
.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.5px;
  line-height: 1.2;
}
.nav__logo-text small {
  display: block;
  font-family: var(--ff-accent);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tx-d); font-weight: 400;
  margin-top: 1px;
}

/* Links */
.nav__links {
  display: flex; gap: 40px;
}
.nav__links a {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--tx-d);
  padding: 6px 0; position: relative;
  transition: color 0.4s;
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.5s var(--ease-out);
  transform: translateX(-50%);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

/* CTA */
.nav__cta {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bk); padding: 12px 26px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold) 40%, var(--gold-l) 70%, var(--gold));
  border-radius: 40px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.nav__cta-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.7s;
}
.nav__cta:hover .nav__cta-shine { left: 150%; }
.nav__cta:hover {
  box-shadow: 0 8px 40px rgba(212,175,55,0.28);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 7px;
  padding: 10px; z-index: 1001;
}
.hamburger span {
  width: 30px; height: 1.5px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger--active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger--active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path 0.8s var(--ease-out);
}
.mobile-menu--active {
  clip-path: circle(150% at calc(100% - 44px) 38px);
}
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 36px; color: var(--tx-b);
  letter-spacing: 3px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu--active a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu--active a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu--active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu--active a:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu--active a:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu--active a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu--active a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 780px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  contain: layout style;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.3;
  contain: strict;
  transform: translateZ(0);
}
.hero__canvas canvas {
  width: 100%; height: 100%;
  display: block;
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero__video.is-visible {
  opacity: 0.75;
}
.hero__gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(37,99,168,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(4,6,10,0) 55%, var(--bk) 100%);
  pointer-events: none;
  transform: translateZ(0);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 250px 80px rgba(4,6,10,0.75);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(37,99,168,0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,168,0.55) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1050px; padding: 0 24px;
  opacity: 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  margin-bottom: 32px; opacity: 0;
}
.hero__eyebrow span {
  font-family: var(--ff-accent);
  font-size: 13px; letter-spacing: 8px;
  text-transform: uppercase; color: var(--gold);
}
.hero__eyebrow-line {
  width: 45px; height: 1px;
  background: var(--gold); opacity: 0.4;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(46px, 7.8vw, 100px);
  font-weight: 600; line-height: 1.05;
  color: var(--tx-b); margin-bottom: 36px;
}
.hero__title .word {
  display: inline-block; overflow: hidden;
  vertical-align: top; margin-right: 0.22em;
}
.hero__title .char {
  display: inline-block;
  transform: translateY(120%) rotateX(-60deg);
  opacity: 0;
  transform-origin: center bottom;
}
.hero__title .gold-text .char {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 25%, var(--gold-l) 50%, var(--gold-p) 65%, var(--gold-l) 80%, var(--gold) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s ease infinite;
}
.hero__subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; color: var(--tx-d);
  max-width: 640px; margin: 0 auto 52px;
  line-height: 1.7; letter-spacing: 0.4px;
  opacity: 0;
}
.hero__actions {
  display: flex; gap: 20px;
  justify-content: center;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.btn__text { position: relative; z-index: 1; }
.btn--primary {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bk); padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold) 40%, var(--gold-l) 70%, var(--gold));
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-p), var(--gold-l));
  opacity: 0; transition: opacity 0.4s;
}
.btn--primary:hover::before { opacity: 0.2; }
.btn--primary:hover {
  box-shadow: 0 16px 60px rgba(212,175,55,0.3);
  transform: translateY(-3px);
}
.btn--ghost {
  font-size: 12px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); padding: 18px 44px;
  border: 1px solid rgba(212,175,55,0.2);
}
.btn--ghost::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.btn--ghost:hover::before {
  transform: scaleX(1); transform-origin: left;
}
.btn--ghost:hover .btn__text { color: var(--bk); }
.btn--ghost .btn__text { transition: color 0.4s; }

/* Scroll Indicator */
.hero__scroll {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; opacity: 0;
}
.hero__scroll-text {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--tx-d);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  position: relative; overflow: hidden;
  background: rgba(212,175,55,0.08);
}
.hero__scroll-line::after {
  content: ''; position: absolute;
  top: -50%; width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.marquee {
  padding: 28px 0; overflow: hidden; position: relative;
  border-top: 1px solid rgba(212,175,55,0.04);
  border-bottom: 1px solid rgba(212,175,55,0.04);
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0;
  width: 150px; height: 100%; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bk), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bk), transparent); }
.marquee__inner {
  display: flex; width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee__group {
  display: flex; align-items: center; gap: 50px; padding: 0 25px;
  flex-shrink: 0;
}
.marquee__item {
  font-family: var(--ff-accent);
  font-size: 19px; font-weight: 400;
  letter-spacing: 2px; color: var(--tx-d);
  white-space: nowrap;
}
.marquee__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.35; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════════════════ */
.s-label {
  font-family: var(--ff-accent);
  font-size: 12px; letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l), var(--gold-p), var(--gold-l), var(--gold), var(--gold-d));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.s-label::before {
  content: ''; width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), rgba(201,162,39,0.2));
}
.s-head {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 500; line-height: 1.1;
  color: var(--tx-b); margin-bottom: 24px;
}
.s-head .gld {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 20%, var(--gold-l) 40%, var(--gold-p) 55%, var(--gold-l) 70%, var(--gold) 85%, var(--gold-d) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gldShimmer 6s ease infinite;
}
.s-subtitle {
  font-family: var(--ff-accent);
  font-size: 15px; font-weight: 300; font-style: italic;
  color: var(--tx-d); letter-spacing: 1px;
  margin-top: -16px; margin-bottom: 24px;
}
.s-desc {
  font-size: 16px; font-weight: 300;
  color: var(--tx-d); max-width: 560px;
  line-height: 1.85;
  padding-left: 18px;
  border-left: 2px solid rgba(212,175,55,0.12);
}
.s-centered .s-desc {
  border-left: none; padding-left: 0;
}
.gold-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l), transparent);
  margin: 22px 0;
}
.s-centered { text-align: center; }
.s-centered .s-label { justify-content: center; }
.s-centered .s-desc  { margin-left: auto; margin-right: auto; }

/* Section Dividers */
.section-divider {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  height: 1px;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; height: 1px;
}
.section-divider::before {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15));
}
.section-divider::after {
  background: linear-gradient(90deg, rgba(212,175,55,0.15), transparent);
}
.section-divider__diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 16px;
  opacity: 0.35;
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--bk); position: relative; overflow: hidden;
}
.about::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,168,0.06), transparent 70%);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px; align-items: center;
}

/* Visual Column */
.about__visual { position: relative; }
.about__img {
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.about__img-inner {
  width: 100%; aspect-ratio: 3/2;
  background: url('../assets/arch.webp') center/cover no-repeat;
  position: relative;
}
.about__img-border {
  position: absolute; inset: 18px;
  border: 1px solid rgba(212,175,55,0.1);
  pointer-events: none;
}
.about__img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 50%; height: 60%;
  border: 1px solid rgba(212,175,55,0.06);
  pointer-events: none;
}
.about__float {
  position: absolute; bottom: 40px; left: -50px;
  background: rgba(8,11,18,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  padding: 28px 40px; z-index: 2;
}
.about__float-num {
  font-family: var(--ff-display);
  font-size: 52px; font-weight: 600; line-height: 1;
  background: linear-gradient(135deg, var(--gold-d), var(--gold) 40%, var(--gold-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__float-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tx-d);
  margin-top: 6px;
}
.about__badge {
  position: absolute; top: 28px; right: -24px;
  width: 105px; height: 105px;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(8,11,18,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2;
}
.about__badge-num {
  font-family: var(--ff-display);
  font-size: 30px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.about__badge-text {
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--tx-d);
}

/* Content Column */
.about__content .s-desc { margin-bottom: 14px; }
.about__values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 50px;
}
.about__val {
  padding: 28px; position: relative; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.08);
  background: rgba(10,12,20,0.7);
  box-shadow:
    0 2px 20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(212,175,55,0.04);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.about__val::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
  transition: width 0.7s var(--ease-out);
}
.about__val::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04), transparent 70%);
  opacity: 0; transition: opacity 0.5s;
}
.about__val:hover {
  border-color: rgba(212,175,55,0.16);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.25),
    0 0 30px rgba(212,175,55,0.04),
    inset 0 1px 0 rgba(212,175,55,0.08);
}
.about__val:hover::before { width: 100%; }
.about__val:hover::after  { opacity: 1; }
.about__val-icon {
  font-size: 22px; margin-bottom: 14px;
  display: block; position: relative; z-index: 1;
}
.about__val h4 {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 500;
  color: var(--tx-b); margin-bottom: 8px;
  position: relative; z-index: 1;
}
.about__val p {
  font-size: 13px; color: var(--tx-d);
  line-height: 1.65; position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats {
  position: relative; padding: 100px var(--s-gutter);
  overflow: hidden;
}
.stats__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(37,99,168,0.28), rgba(4,6,10,0.95));
}
.stats__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212,175,55,0.04) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: gldShimmer 8s ease infinite;
}
.stats__pattern {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
}
.stats__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat {
  text-align: center; padding: 36px 16px; position: relative;
}
.stat::after {
  content: ''; position: absolute;
  right: 0; top: 15%; height: 70%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.12), transparent);
}
.stat:last-child::after { display: none; }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline;
  justify-content: center; gap: 4px;
}
.stat__suffix {
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--gold-l); font-weight: 400;
}
.stat__label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tx-d);
  margin-top: 14px;
}
.stat__bar {
  width: 30px; height: 2px;
  background: var(--gold); margin: 14px auto 0; opacity: 0.25;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--bk2); position: relative;
}
.services::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-b), transparent);
}
.services__head { margin-bottom: 80px; }

.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.srv {
  position: relative; padding: 50px 38px 44px;
  border: 1px solid rgba(212,175,55,0.08);
  background: rgba(10,12,20,0.65);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(212,175,55,0.04);
  transition: transform 0.6s var(--ease-out), border-color 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.srv__glow {
  position: absolute; top: -100px; left: 50%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(212,175,55,0.06), transparent 70%);
  transform: translateX(-50%); opacity: 0;
  transition: opacity 0.7s; pointer-events: none;
}
.srv__line-t {
  position: absolute; top: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l), transparent);
  transition: width 0.9s var(--ease-out);
}
.srv__line-r {
  position: absolute; top: 0; right: 0;
  width: 1.5px; height: 0;
  background: linear-gradient(180deg, var(--gold-l), var(--gold-d), transparent);
  transition: height 0.7s 0.25s var(--ease-out);
}
.srv:hover {
  background: rgba(212,175,55,0.02);
  transform: translateY(-8px);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.3),
    0 0 40px rgba(212,175,55,0.04),
    inset 0 1px 0 rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.14);
}
.srv:hover .srv__glow   { opacity: 1; }
.srv:hover .srv__line-t { width: 100%; }
.srv:hover .srv__line-r { height: 55%; }

.srv__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,0.14);
  color: var(--gold);
  margin-bottom: 28px;
  position: relative; z-index: 1;
  transition: all 0.4s;
}
.srv__icon svg { width: 24px; height: 24px; }
.srv:hover .srv__icon {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.06);
  box-shadow: 0 0 20px rgba(212,175,55,0.08);
}
.srv h3 {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 500;
  color: var(--tx-b); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.srv p {
  font-size: 14px; color: var(--tx-d);
  line-height: 1.75;
  position: relative; z-index: 1;
}
.srv__cta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(12px);
  transition: all 0.5s var(--ease-out);
  position: relative; z-index: 1;
}
.srv__cta-arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.srv:hover .srv__cta { opacity: 1; transform: translateY(0); }
.srv:hover .srv__cta:hover .srv__cta-arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════════════
   SMART LIVING
   ═══════════════════════════════════════════════════════════════ */
.smart-living { background: var(--bk2); position: relative; }
.smart-living__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.smart-living__features {
  display: flex; flex-direction: column; gap: 0;
}
.smart-living__feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212,175,55,0.05);
  transition: all 0.4s var(--ease-out);
}
.smart-living__feature:first-child {
  border-top: 1px solid rgba(212,175,55,0.05);
}
.smart-living__feature:hover {
  padding-left: 14px;
  border-color: rgba(212,175,55,0.12);
}
.sl-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.08);
  color: rgba(212,175,55,0.4);
  transition: all 0.4s var(--ease-out);
}
.smart-living__feature:hover .sl-icon {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}
.smart-living__feature h4 {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 500;
  color: var(--tx-b); margin-bottom: 4px;
}
.smart-living__feature p {
  font-size: 13px; color: var(--tx-d); line-height: 1.6;
}
.smart-living__content {
  position: sticky; top: 120px;
}

@media (max-width: 1024px) {
  .smart-living__grid { grid-template-columns: 1fr; gap: 50px; }
  .smart-living__content { position: static; order: -1; }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO — HORIZONTAL PIN SCROLL
   ═══════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--bk);
  overflow: hidden;
  content-visibility: visible;
}
.portfolio__header {
  flex-shrink: 0;
  padding: 72px var(--s-gutter) 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  position: relative;
  z-index: 2;
}
.portfolio__pin {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.portfolio__viewport {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.portfolio__header-right {
  text-align: right;
}
.portfolio__header-hint {
  font-family: var(--ff-accent);
  font-size: 17px; color: var(--tx-d);
  font-style: italic;
}
.portfolio__track {
  display: flex; gap: 32px; align-items: center;
  padding: 0 var(--s-gutter);
  width: max-content;
  backface-visibility: hidden;
}
.pf {
  width: min(400px, 36vw); flex-shrink: 0;
  position: relative; overflow: hidden;
}
.pf__img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: min(calc(100svh - 260px), 620px);
  position: relative; overflow: hidden;
}
.pf__img-bg {
  width: 100%; height: 100%;
  transition: transform 0.9s var(--ease-out);
}
.pf:hover .pf__img-bg { transform: scale(1.08); }
.pf__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,6,10,0.95) 0%, rgba(4,6,10,0.15) 40%, transparent 60%);
}
.pf__tag {
  position: absolute; top: 22px; left: 22px;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(4,6,10,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 9px 18px;
  border: 1px solid rgba(212,175,55,0.08);
}
.pf__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 34px;
}
.pf__info h3 {
  font-family: var(--ff-display);
  font-size: 27px; font-weight: 500;
  color: var(--tx-b); margin-bottom: 0;
}
.pf__loc {
  font-size: 13px; color: var(--tx-d);
}
.pf__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(14px);
  transition: all 0.5s var(--ease-out);
}
.pf:hover .pf__link { opacity: 1; transform: translateY(0); }

.pf__status {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 10px;
  border-radius: 2px;
}
.pf__status--sold {
  color: var(--tx-d);
  background: rgba(138,135,126,0.1);
  border: 1px solid rgba(138,135,126,0.2);
}
.pf__status--selling {
  color: #5BCF80;
  background: rgba(91,207,128,0.08);
  border: 1px solid rgba(91,207,128,0.2);
}
.pf__status--coming {
  color: var(--sap-gl);
  background: rgba(91,156,240,0.08);
  border: 1px solid rgba(91,156,240,0.2);
}
.pf__smart {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 3px;
  margin-bottom: 10px;
}

.pf__counter {
  position: absolute; bottom: 50px; right: var(--s-gutter);
  font-family: var(--ff-accent);
  font-size: 130px; font-weight: 300;
  color: rgba(212,175,55,0.03); line-height: 1;
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   UPDATES
   ═══════════════════════════════════════════════════════════════ */
.updates { background: var(--bk2); position: relative; }
.updates__head { margin-bottom: 48px; }
.updates__placeholder {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.1);
  background: rgba(10,12,20,0.7);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(212,175,55,0.04);
}
.updates__placeholder-icon {
  display: block;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}
.updates__placeholder p {
  font-family: var(--ff-accent);
  font-size: 18px;
  font-style: italic;
  color: var(--tx-d);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .updates__placeholder { padding: 40px 28px; }
  .updates__placeholder p { font-size: 16px; }
}

/* Portfolio image variations — loaded lazily via JS */
.pf-bg--villa,
.pf-bg--apartment,
.pf-bg--residential,
.pf-bg--farmland,
.pf-bg--warehouse,
.pf-bg--industrial { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.is-active {
  opacity: 1; visibility: visible;
}
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,3,6,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox__img {
  position: relative; z-index: 2;
  max-width: 88vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.92); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.lightbox.is-active .lightbox__img {
  transform: scale(1); opacity: 1;
}
.lightbox__close {
  position: absolute; top: 28px; right: 32px; z-index: 3;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; line-height: 1;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox__close:hover {
  color: #fff;
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.3);
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .lightbox__img { max-width: 95vw; max-height: 80vh; }
  .lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   FORM CONFIRMATION MODAL
   ═══════════════════════════════════════════════════════════════ */
.form-modal {
  position: fixed; inset: 0; z-index: 10003;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.form-modal.is-active {
  opacity: 1; visibility: visible;
}
.form-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,3,6,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.form-modal__panel {
  position: relative; z-index: 2;
  width: min(440px, 100%);
  padding: 40px 36px 36px;
  text-align: center;
  background: linear-gradient(165deg, rgba(14,18,25,0.98), rgba(8,11,18,0.98));
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}
.form-modal.is-active .form-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.form-modal__icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 600;
  border: 1px solid rgba(212,175,55,0.18);
}
.form-modal--success .form-modal__icon {
  color: #6ecf8a;
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(110, 207, 138, 0.25);
}
.form-modal--success .form-modal__icon::before {
  content: '✓';
}
.form-modal--error .form-modal__icon {
  color: #e88;
  background: rgba(232, 136, 136, 0.08);
  border-color: rgba(232, 136, 136, 0.22);
}
.form-modal--error .form-modal__icon::before {
  content: '!';
}
.form-modal__title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  color: var(--tx-b);
  margin-bottom: 12px;
  line-height: 1.2;
}
.form-modal__message {
  font-size: 15px;
  font-weight: 300;
  color: var(--tx-d);
  line-height: 1.7;
  margin-bottom: 28px;
}
.form-modal__btn {
  min-width: 160px;
  justify-content: center;
}
@media (max-width: 768px) {
  .form-modal__panel { padding: 32px 24px 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE / WHY US
   ═══════════════════════════════════════════════════════════════ */
.experience {
  background: var(--bk2); position: relative; overflow: hidden;
}
.experience::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(183,110,121,0.025), transparent 70%);
  transform: translate(-50%, -50%);
}
.exp__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.exp__items { display: flex; flex-direction: column; }
.exp__item {
  padding: 34px 0; display: flex; gap: 24px;
  border-bottom: 1px solid rgba(212,175,55,0.05);
  transition: all 0.4s var(--ease-out);
}
.exp__item:first-child {
  border-top: 1px solid rgba(212,175,55,0.05);
}
.exp__item:hover {
  padding-left: 18px;
  border-color: rgba(212,175,55,0.12);
}
.exp__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.08);
  color: rgba(212,175,55,0.4);
  transition: all 0.4s var(--ease-out);
}
.exp__icon svg { transition: transform 0.4s var(--ease-out); }
.exp__item:hover .exp__icon {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}
.exp__item:hover .exp__icon svg { transform: scale(1.1); }
.exp__item h4 {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 500;
  color: var(--tx-b); margin-bottom: 8px;
}
.exp__item p {
  font-size: 14px; color: var(--tx-d); line-height: 1.65;
}
.exp__visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.exp__vcard {
  aspect-ratio: 1; overflow: hidden;
  position: relative;
  border: 1px solid rgba(212,175,55,0.12);
  transform-style: preserve-3d;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.exp__vcard:nth-child(2) { margin-top: 50px; }
.exp__vcard:nth-child(3) { margin-top: -50px; }
.exp__vbg {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.exp__vcard:hover .exp__vbg { transform: scale(1.1); }
.exp__vcard-ov {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,6,10,0.7) 0%,
    rgba(4,6,10,0.2) 50%,
    rgba(4,6,10,0.05) 100%
  );
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  opacity: 1;
  transition: background 0.5s var(--ease-out);
  pointer-events: none;
}
.exp__vcard:hover .exp__vcard-ov {
  background: linear-gradient(
    to top,
    rgba(4,6,10,0.5) 0%,
    rgba(4,6,10,0.1) 50%,
    transparent 100%
  );
}
.exp__vcard-ov svg {
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
  transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}
.exp__vcard:hover .exp__vcard-ov svg {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 16px rgba(201,162,39,0.5));
}
.exp__vcard-ov span {
  font-family: var(--ff-accent);
  font-size: 14px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  transition: letter-spacing 0.4s var(--ease-out);
}
.exp__vcard:hover .exp__vcard-ov span {
  letter-spacing: 7px;
}
.exp__vcard:hover {
  border-color: rgba(201,162,39,0.35);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 24px rgba(201,162,39,0.1);
}
.ev1 { background: linear-gradient(135deg, #102040, #224878); }
.ev2 { background: linear-gradient(135deg, #1a1030, #301a55); }
.ev3 { background: linear-gradient(135deg, #0e2818, #1a4530); }
.ev4 { background: linear-gradient(135deg, #281810, #453020); }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bk); position: relative;
  padding: var(--s-section) var(--s-gutter);
}
.testimonials::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(37,99,168,0.05), transparent 70%);
  transform: translate(-50%, -50%);
}
.tst__slider {
  max-width: 860px; margin: 60px auto 0;
  position: relative;
}
.tst {
  display: none; flex-direction: column;
  align-items: center; gap: 32px; text-align: center;
}
.tst--active { display: flex; }
.tst__quote {
  font-family: var(--ff-accent);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400; font-style: italic;
  color: var(--tx); line-height: 1.7;
  position: relative; padding: 0 24px;
}
.tst__quote::before {
  content: '\201C'; position: absolute;
  top: -24px; left: -16px;
  font-family: var(--ff-display);
  font-size: 130px; font-weight: 700;
  color: var(--gold); opacity: 0.06; line-height: 1;
}
.tst__stars {
  font-size: 18px; letter-spacing: 6px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,0.3);
}
.tst__author {
  display: flex; align-items: center; gap: 16px;
}
.tst__avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 600;
  color: var(--gold);
  background: rgba(212,175,55,0.04);
  letter-spacing: 1px;
}
.tst__author strong {
  font-family: var(--ff-display);
  font-size: 16px; color: var(--gold);
  font-weight: 500; display: block;
}
.tst__author span {
  font-size: 13px; color: var(--tx-d);
}
.tst-dots {
  display: flex; gap: 12px;
  justify-content: center; margin-top: 50px;
}
.tst-dots button {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(212,175,55,0.12);
  transition: all 0.4s;
}
.tst-dots button.active {
  background: var(--gold);
  width: 30px; border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  position: relative; padding: 180px var(--s-gutter);
  overflow: hidden; text-align: center;
}
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,168,0.32), transparent 70%),
    radial-gradient(ellipse 40% 40% at 25% 55%, rgba(212,175,55,0.08), transparent 60%),
    var(--bk);
}
.cta__lines {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.05;
}
.cta__lines span {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-d) 30%, var(--gold-l) 50%, var(--gold-d) 70%, transparent 100%);
}
.cta__content { position: relative; z-index: 1; }
.cta .s-head {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 20px;
}
.cta .s-desc { margin: 0 auto 52px; }
.cta__btns {
  display: flex; gap: 18px; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact { background: var(--bk2); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px;
}
.contact__info-list {
  display: flex; flex-direction: column; gap: 24px; margin-top: 40px;
}
.ci {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border: 1px solid rgba(212,175,55,0.05);
  background: rgba(10,12,20,0.6);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: all 0.4s var(--ease-out);
}
.ci:hover {
  border-color: rgba(212,175,55,0.12);
  background: var(--glass);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(212,175,55,0.06);
}
.ci__icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,0.12);
  color: var(--gold); font-size: 18px; flex-shrink: 0;
  transition: all 0.4s;
}
.ci:hover .ci__icon {
  background: rgba(212,175,55,0.05);
  border-color: rgba(212,175,55,0.25);
}
.ci h4 {
  font-size: 14px; font-weight: 600;
  color: var(--tx-b); margin-bottom: 4px;
}
.ci p {
  font-size: 14px; color: var(--tx-d); line-height: 1.5;
}
.contact__location {
  margin-top: 32px;
  scroll-margin-top: 100px;
}
.contact__map {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(212,175,55,0.12);
  background: rgba(10,12,20,0.6);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  cursor: pointer;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
  transition: filter 0.5s var(--ease-out);
}
.contact__map:hover iframe {
  filter: grayscale(0.15) contrast(1.05) brightness(0.92);
}
.contact__map-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--tx-d);
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.contact__map-note a {
  color: var(--tx-d);
  transition: color 0.3s;
}
.contact__map-note a:hover {
  color: var(--gold);
}

/* Form */
.contact__form {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 56px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.25),
    0 0 60px rgba(212,175,55,0.02),
    inset 0 1px 0 rgba(212,175,55,0.06);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.fg { margin-bottom: 26px; }
.fg label {
  display: block; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tx-d);
  margin-bottom: 10px;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.06);
  padding: 16px 20px; color: var(--tx);
  font-family: var(--ff-body); font-size: 14px;
  outline: none;
  transition: all 0.4s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.02);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.04);
}
.fg input::placeholder, .fg textarea::placeholder {
  color: rgba(106,104,98,0.6);
}
.fg textarea { resize: vertical; min-height: 130px; }
.fg select option { background: var(--bk); }
.form-btn {
  width: 100%; padding: 19px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--bk);
  background: linear-gradient(135deg, var(--gold-d), var(--gold) 40%, var(--gold-l) 70%, var(--gold));
  border: none; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.form-btn::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s;
}
.form-btn:hover::before { left: 150%; }
.form-btn:hover {
  box-shadow: 0 14px 55px rgba(212,175,55,0.28);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bk);
  border-top: 1px solid rgba(212,175,55,0.05);
  padding: 80px var(--s-gutter) 36px;
}
.footer__statement {
  font-family: var(--ff-accent);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300; font-style: italic;
  color: var(--tx-d);
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  letter-spacing: 1px; line-height: 1.4;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer__brand img { height: 52px; margin-bottom: 18px; }
.footer__brand p {
  font-size: 14px; color: var(--tx-d);
  line-height: 1.75; max-width: 310px;
}
.footer__col h4 {
  font-family: var(--ff-accent);
  font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer__col li { margin-bottom: 14px; }
.footer__col a {
  font-size: 14px; color: var(--tx-d);
  transition: all 0.3s; position: relative;
  display: inline-block;
}
.footer__col a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s var(--ease-out);
}
.footer__col a:hover { color: var(--gold); }
.footer__col a:hover::after { width: 100%; }
.footer__bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 34px;
  border-top: 1px solid rgba(212,175,55,0.05);
}
.footer__bottom p {
  font-size: 12px; color: var(--tx-d); letter-spacing: 0.5px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,0.08);
  color: var(--tx-d); font-size: 13px;
  transition: all 0.4s var(--ease-out);
}
.footer__social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,175,55,0.04);
}

/* ═══════════════════════════════════════════════════════════════
   FLOAT ACTION BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fab-stack.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-stack__main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.fab-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fab-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--ff-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bk);
  background: linear-gradient(135deg, var(--gold-d), var(--gold) 40%, var(--gold-l) 70%, var(--gold));
  border: 1px solid rgba(251,240,208,0.2);
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 20px rgba(201,162,39,0.15);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.fab-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4), 0 0 28px rgba(201,162,39,0.25);
}
.fab-pill.is-active .fab-pill__chev {
  transform: rotate(180deg);
}
.fab-pill__chev {
  transition: transform 0.35s var(--ease-out);
}

.fab-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.fab-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-menu__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx-b);
  background: rgba(4,6,10,0.92);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.fab-menu__item:hover {
  border-color: rgba(201,162,39,0.45);
  background: rgba(10,12,20,0.95);
  transform: translateX(-4px);
  color: var(--gold-l);
}
.fab-menu__item svg {
  flex-shrink: 0;
  color: var(--gold);
}
.fab-menu__item--wa svg { color: #25d366; }

.btt {
  width: 46px;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0 solid rgba(212,175,55,0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 16px;
  background: rgba(4,6,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition:
    height 0.45s var(--ease-out),
    opacity 0.45s var(--ease-out),
    margin 0.45s var(--ease-out),
    border-width 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
  transform: scale(0.85);
}
.btt--visible {
  height: 46px;
  opacity: 1;
  margin-bottom: 6px;
  border-width: 1px;
  pointer-events: auto;
  transform: scale(1);
}
.btt:hover {
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.25);
  transform: scale(1.05);
}
.btt--visible:hover {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .about__grid, .exp__grid { gap: 70px; }
  .srv-grid { gap: 20px; }
}
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__grid { gap: 60px; }
}
@media (max-width: 768px) {
  .about__grid, .exp__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { max-height: 450px; overflow: hidden; }
  .about__float { left: 12px; bottom: 12px; padding: 20px 28px; }
  .about__float-num { font-size: 38px; }
  .about__badge { right: 12px; top: 12px; width: 85px; height: 85px; }
  .about__badge-num { font-size: 24px; }
  .about__values { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat::after { display: none; }
  .exp__visual { display: none; }
  .portfolio__header {
    flex-direction: column; gap: 16px;
    align-items: flex-start;
    padding: 80px 20px 24px;
  }
  .portfolio__header-right { text-align: left; }
  .portfolio__header-hint { font-size: 14px; }
  .portfolio__pin { height: auto; min-height: 0; }
  .portfolio__viewport { flex: none; min-height: auto; }
  .portfolio__track { padding: 0 20px 40px; }
  .pf { width: 330px; }
  .pf__img { max-height: none; }
  .pf__counter { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom {
    flex-direction: column; gap: 16px; text-align: center;
  }
  .cta { padding: 110px 20px; }
  .cta__btns { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
  .nav {
    top: 10px; left: 14px; right: 14px;
    padding: 12px 20px;
    border-radius: 50px;
  }
  .nav--scrolled { top: 8px; padding: 10px 18px; }
  .fab-stack { bottom: 20px; right: 16px; }
  .fab-stack__main { gap: 4px; }
  .fab-pill {
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 2px;
    gap: 8px;
  }
  .fab-menu__item {
    padding: 10px 16px;
    font-size: 11px;
  }
  .btt--visible { margin-bottom: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── RENDER OPTIMIZATION (portfolio excluded — breaks pin scroll) ─── */
.about, .services, .experience, .updates, .contact, .smart-living, .marquee, .cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.hero__content {
  transform: translateZ(0);
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.legal-page {
  cursor: auto;
}
.legal-page .nav {
  top: 10px;
}
.legal {
  padding-top: clamp(120px, 14vw, 160px);
  min-height: 70vh;
}
.legal__container {
  max-width: 820px;
}
.legal__updated {
  font-size: 13px;
  color: var(--tx-d);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.legal__body {
  margin-top: 40px;
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: var(--tx-b);
  margin-bottom: 16px;
}
.legal__section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--tx-d);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal__section ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}
.legal__section li {
  font-size: 15px;
  font-weight: 300;
  color: var(--tx-d);
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal__section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.legal__section a:hover {
  color: var(--gold-l);
}
.legal__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.footer__bottom a {
  color: var(--tx-d);
  transition: color 0.3s;
}
.footer__bottom a:hover {
  color: var(--gold);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  color: var(--tx-d);
  line-height: 1.6;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover {
  color: var(--gold-l);
}
.fg--checkbox {
  margin-top: 8px;
  margin-bottom: 4px;
}
.fg--error .form-consent span {
  outline: 1px solid rgba(232, 136, 136, 0.4);
  outline-offset: 4px;
  border-radius: 2px;
}
.fg--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  min-height: 20px;
  margin: 8px 0 12px;
  font-size: 13px;
  line-height: 1.5;
}
.form-status--error {
  color: #e88;
}
.form-status--success {
  color: #6ecf8a;
}

@media (max-width: 768px) {
  .legal__nav-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
