/* ============================================================
   GALAXY BUILDERS — $100M PREMIUM DESIGN SYSTEM
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --black:     #080808;
  --black-2:   #0d0d0d;
  --black-3:   #111111;
  --grey:      #1a1a1a;
  --grey-2:    #2a2a2a;
  --grey-3:    #444444;
  --gold:      #c9a96e;
  --gold-2:    #e8cc96;
  --gold-3:    #a8813d;
  --gold-rgba: rgba(201,169,110,0.15);
  --white:     #ffffff;
  --white-dim: rgba(255,255,255,0.06);
  --white-mid: rgba(255,255,255,0.55);

  /* Inner page palette */
  --black-card: #0f0f0f;
  --black-soft: #111111;
  --gray-mid:   rgba(255,255,255,0.45);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --display: 'Montserrat', 'Inter', sans-serif;

  --nav-h:      88px;
  --action-bar-h: 72px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-circ:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 2px; }

/* ── GRAIN OVERLAY ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold), var(--gold-2));
  z-index: 10000;
  transition: width 0.05s linear;
}

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 160px; opacity: 0; animation: preloaderFadeIn 0.6s var(--ease-out) 0.2s forwards; }
.preloader-bar-wrap {
  width: 200px; height: 1px;
  background: rgba(201,169,110,0.2);
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.4s var(--ease-out) 0.4s forwards;
}
.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold), var(--gold-2));
  width: 0%;
  animation: preloaderLoad 2s var(--ease-out) 0.5s forwards;
}
.preloader-text {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFadeIn 0.4s var(--ease-out) 0.6s forwards;
}
@keyframes preloaderFadeIn { to { opacity: 1; } }
@keyframes preloaderLoad { to { width: 100%; } }

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
}
body.cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--gold-2); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.t-overline {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-overline::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.t-section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
.t-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, height 0.4s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  height: 68px;
}
.nav-logo img { height: 52px; width: auto; transition: height 0.4s; }
#nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 36px; margin: 0 auto; }
.nav-links a {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Nav */
#nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
}
#nav-mobile.open { transform: translateX(0); }
#nav-mobile a {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
#nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}
.nav-mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: heroKenBurns 20s var(--ease-out) forwards;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.45) 30%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.92) 100%),
    linear-gradient(90deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.1) 70%);
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 380px;
  background: linear-gradient(to top, var(--black) 0%, rgba(8,8,8,0.85) 30%, rgba(8,8,8,0.4) 70%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 72px; max-width: 900px; }
.hero-overline {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-out) 2.8s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroSlideUp 1s var(--ease-out) 3s forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-out) 3.2s forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}
.hero-overline {
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-out) 3.4s forwards;
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-out) 3.8s forwards;
}
.hero-scroll span {
  font-family: var(--display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out 4s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: pointer;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { transform: translateY(-2px); }
.btn > * { position: relative; z-index: 1; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold::before { background: var(--gold-2); }
.btn-outline { border: 1px solid rgba(201,169,110,0.5); color: var(--gold); }
.btn-outline::before { background: rgba(201,169,110,0.08); }
.btn-outline:hover { border-color: var(--gold); }
.btn-white { border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-white::before { background: rgba(255,255,255,0.06); }

/* ── GOLD MARQUEE ────────────────────────────────────────────── */
.marquee-strip { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-dot { width: 4px; height: 4px; background: rgba(8,8,8,0.35); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION BASE ────────────────────────────────────────────── */
.section { padding: 120px 72px; max-width: 1440px; margin: 0 auto; }
.section-full { padding: 120px 72px; }
.section-sm { padding: 80px 72px; }

/* ── PROJECTS ────────────────────────────────────────────────── */
.projects-section { padding: 120px 72px; }
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}
.project-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.project-card.card-tall { aspect-ratio: 2/3; }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.project-card:hover img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 80%, transparent 100%);
  transition: background 0.5s;
}
.project-card:hover .project-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.99) 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.25) 80%, transparent 100%); }
.project-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px 36px;
}
.project-card-status {
  display: inline-block;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.project-card-logo { height: 36px; width: auto; margin-bottom: 12px; object-fit: contain; }
.project-card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.95), 0 1px 6px rgba(0,0,0,0.85), 0 0 1px rgba(0,0,0,0.5);
}
.project-card-location { font-size: 12px; color: rgba(255,255,255,0.95); letter-spacing: 1px; margin-bottom: 20px; text-shadow: 0 1px 10px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.7); }
.project-card-spec { color: rgba(255,255,255,0.85) !important; text-shadow: 0 1px 10px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.7); }
.project-card-status { text-shadow: 0 1px 10px rgba(0,0,0,0.9); }
.project-card-specs { display: flex; gap: 20px; flex-wrap: wrap; }
.project-card-spec {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.project-card-cta {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--black);
  transform: scale(0);
  transition: transform 0.4s var(--ease-out);
}
.project-card:hover .project-card-cta { transform: scale(1); }

/* ── ABOUT SPLIT SECTION ────────────────────────────────────── */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.about-image-side { position: relative; overflow: hidden; }
.about-image-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s var(--ease-out);
}
.about-image-side.active img { transform: scale(1); }
.about-image-badge {
  position: absolute;
  bottom: 40px; right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 32px;
  z-index: 2;
}
.about-image-badge .num {
  font-family: var(--serif);
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-image-badge .label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 100px;
  background: var(--black-2);
}
.about-content-side .t-overline { margin-bottom: 24px; }
.about-content-side .t-section-title { margin-bottom: 28px; }
.about-content-side p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.about-stat { padding: 28px 0; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.about-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.about-stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── PHILOSOPHY GRID ─────────────────────────────────────────── */
.philosophy-section { padding: 120px 72px; background: var(--black-2); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 72px;
}
.philosophy-card {
  background: var(--black-2);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.philosophy-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.philosophy-card:hover { background: var(--black-3); }
.philosophy-card:hover::before { width: 100%; }
.philosophy-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(201,169,110,0.25);
}
.philosophy-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}
.philosophy-text { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.78); }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  padding: 80px 72px;
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 20px 40px; text-align: center; border-right: 1px solid rgba(8,8,8,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(8,8,8,0.6);
  margin-top: 8px;
}

/* ── AMENITIES SHOWCASE ─────────────────────────────────────── */
.amenities-section { padding: 120px 0; background: var(--black-3); overflow: hidden; }
.amenities-section .section-header { padding: 0 72px; margin-bottom: 64px; }
.amenities-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 0 72px 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.amenities-scroll::-webkit-scrollbar { display: none; }
.amenities-scroll:active { cursor: grabbing; }
.amenity-card { flex: 0 0 320px; aspect-ratio: 3/4; position: relative; overflow: hidden; }
.amenity-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.amenity-card:hover img { transform: scale(1.08); }
.amenity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
}
.amenity-card-label {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
}

/* ── CHAIRMAN QUOTE ─────────────────────────────────────────── */
.chairman-section {
  padding: 140px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.chairman-quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 32px;
  opacity: 0.3;
}
.chairman-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 40px;
}
.chairman-attribution { display: flex; flex-direction: column; gap: 6px; }
.chairman-line { width: 48px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.chairman-name {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.chairman-role { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.chairman-image-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.chairman-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.6s, transform 0.8s var(--ease-out);
}
.chairman-image-wrap:hover img { filter: grayscale(0%); transform: scale(1.04); }
.chairman-image-border {
  position: absolute;
  bottom: -20px; right: -20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid rgba(201,169,110,0.2);
  pointer-events: none;
}

/* ── LEAD FORM ───────────────────────────────────────────────── */
.lead-section { padding: 120px 72px; background: var(--black-2); }
.lead-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.lead-left .t-overline { margin-bottom: 24px; }
.lead-left .t-section-title { margin-bottom: 20px; font-size: clamp(32px, 4vw, 56px); }
.lead-left p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-group select option { background: var(--black-2); }
.form-group textarea { resize: none; height: 100px; }
.phone-wrap { display: flex; align-items: stretch; }
.phone-code {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(201,169,110,0.18);
  color: var(--white);
  padding: 14px 30px 14px 14px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
  cursor: pointer;
  width: 110px;
  min-width: 110px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  letter-spacing: 0.04em;
}
.phone-code:focus, .phone-code:hover {
  border-color: var(--gold);
  background-color: rgba(201,169,110,0.06);
}
.phone-code option {
  background: var(--black-2, #0d0d0d);
  color: var(--white);
  padding: 8px;
  font-weight: 500;
}
.phone-num {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: none;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.phone-num:focus { border-color: var(--gold); background: rgba(201,169,110,0.04); }
.phone-wrap:focus-within .phone-code { border-color: var(--gold); }
@media (max-width: 480px) {
  .phone-code { width: 96px; min-width: 96px; padding: 14px 26px 14px 12px; font-size: 13px; }
  .phone-num { padding: 14px 14px; font-size: 13px; }
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 18px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.form-submit:hover::after { transform: scaleX(1); transform-origin: left; }
.form-submit:hover { transform: translateY(-1px); }
.form-submit span { position: relative; z-index: 1; }
.form-privacy { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 8px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--black-3); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 72px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 24px; }
.footer-about { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.4); margin-bottom: 28px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201,169,110,0.07); }
.footer-social a img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.55; transition: opacity 0.3s; }
.footer-social a:hover img { opacity: 1; }
.footer-col-title {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 14px; line-height: 1.5; }
.footer-contact-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.12);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(201,169,110,0.025) 100%);
  padding: 28px 72px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-copy { font-family: var(--display); font-size: 10px; font-weight: 500; letter-spacing: 2px; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.footer-rera {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--gold);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  background: rgba(201,169,110,0.05);
  white-space: nowrap;
}

/* ── STICKY ACTION BAR ───────────────────────────────────────── */
#action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex;
}
.action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(8,8,8,0.96);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.04);
  font-family: var(--display);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}
.action-btn:hover { background: rgba(20,20,20,0.98); color: var(--gold); }
.action-btn.gold { background: var(--gold); color: var(--black); }
.action-btn.gold:hover { background: var(--gold-2); }
.action-btn img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.3s; }
.action-btn:hover img, .action-btn.gold img { opacity: 1; }
.action-btn.gold img { filter: brightness(0); }
.action-bar-separator { width: 1px; background: rgba(255,255,255,0.06); flex-shrink: 0; }
.action-dropdown {
  position: absolute;
  bottom: 100%; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid rgba(201,169,110,0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  backdrop-filter: blur(20px);
}
.action-dropdown.open { max-height: 200px; }
.action-dropdown a {
  display: block;
  padding: 14px 20px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s, background 0.3s;
  text-align: center;
}
.action-dropdown a:hover { color: var(--gold); background: rgba(201,169,110,0.05); }

/* ── ENQUIRY MODAL ───────────────────────────────────────────── */
#enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#enquiry-overlay.open { opacity: 1; pointer-events: all; }
#enquiry-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: min(600px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black-2);
  border: 1px solid rgba(201,169,110,0.15);
  z-index: 99001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
#enquiry-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.enquiry-header { padding: 48px 48px 0; position: relative; }
#enquiry-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  background: none;
  border: none;
}
#enquiry-close:hover { color: var(--gold); transform: rotate(90deg); }
.enquiry-modal-overline { margin-bottom: 16px; }
.enquiry-modal-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.enquiry-modal-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.enquiry-form-wrap { padding: 32px 48px 48px; }
.enquiry-gold-bar { height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 32px; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-image { position: absolute; inset: 0; }
.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroKenBurns 15s var(--ease-out) forwards;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.7) 100%);
}
.page-hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 72px; }
.page-hero-logo { height: 64px; width: auto; margin-bottom: 20px; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 560px; }

/* ── RERA BADGE ─────────────────────────────────────────────── */
.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  margin-top: 24px;
}
.rera-badge img { height: 28px; width: auto; }
.rera-text { font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.45); text-transform: uppercase; line-height: 1.6; }
.rera-text strong { color: var(--gold); display: block; font-size: 10px; }

/* ── TABS ───────────────────────────────────────────────────── */
.tabs-section { background: var(--black-2); }
.tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 72px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 22px 28px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: rgba(255,255,255,0.7); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; padding: 72px; }
.tab-panel.active { display: block; }

/* ── GALLERY PAGE ────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; padding: 48px 72px 0; margin-bottom: 32px; }
.gallery-filter-btn {
  padding: 10px 22px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery-masonry { columns: 3; column-gap: 3px; padding: 0 72px 80px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(8,8,8,0.5); }
.gallery-item-label {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 99500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { max-width: 92vw; max-height: 88vh; position: relative; }
.lightbox-inner img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  font-size: 32px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  z-index: 99501;
  background: none;
  border: none;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 99501;
  padding: 16px;
  background: none;
  border: none;
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── PROJECTS PAGE ───────────────────────────────────────────── */
.projects-tabs-nav { display: flex; gap: 2px; padding: 0 72px; margin-bottom: 56px; flex-wrap: wrap; }
.projects-tab-btn {
  padding: 16px 40px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.projects-tab-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.project-list-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--black-2);
  overflow: hidden;
  min-height: 240px;
  transition: background 0.3s;
}
.project-list-item:hover { background: var(--black-3); }
.project-list-image { overflow: hidden; }
.project-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.project-list-item:hover .project-list-image img { transform: scale(1.05); }
.project-list-body { padding: 40px 48px; display: flex; flex-direction: column; justify-content: center; }
.project-list-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}
.project-list-location { font-size: 12px; color: rgba(255,255,255,0.38); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.project-list-specs { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.project-list-spec-label { font-family: var(--display); font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.project-list-spec-value { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--white); }
.completed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.04); }
.completed-card { background: var(--black-2); padding: 32px 28px; transition: background 0.3s; }
.completed-card:hover { background: var(--black-3); }
.completed-card-name { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 8px; }
.completed-card-location { font-size: 11px; color: rgba(255,255,255,0.33); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.completed-card-type { font-family: var(--display); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.15); padding: 4px 10px; display: inline-block; }

/* ── PREOWNED PAGE ───────────────────────────────────────────── */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.listing-card { background: var(--black-2); overflow: hidden; transition: background 0.3s; }
.listing-card:hover { background: var(--black-3); }
.listing-card-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.listing-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.listing-card:hover .listing-card-image img { transform: scale(1.06); }
.listing-status-badge { position: absolute; top: 16px; left: 16px; font-family: var(--display); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; }
.listing-status-badge.available { background: var(--gold); color: var(--black); }
.listing-status-badge.under-offer { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.listing-card-body { padding: 28px; }
.listing-card-price { font-family: var(--serif); font-size: 28px; font-weight: 300; font-style: italic; color: var(--gold); margin-bottom: 4px; }
.listing-card-name { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.listing-card-specs { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.listing-card-spec { font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,0.38); text-transform: uppercase; }

/* ── FLOOR PLANS ────────────────────────────────────────────── */
.floor-plan-types { display: flex; gap: 2px; margin-bottom: 48px; flex-wrap: wrap; }
.fp-type-btn {
  padding: 14px 28px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.fp-type-btn.active, .fp-type-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.fp-display { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fp-image-wrap { background: rgba(255,255,255,0.02); padding: 24px; border: 1px solid rgba(255,255,255,0.06); }
.fp-image-wrap img { width: 100%; }
.fp-spec-title { font-family: var(--serif); font-size: 32px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 8px; }
.fp-spec-area { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 32px; }
.fp-spec-table { width: 100%; border-collapse: collapse; }
.fp-spec-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.fp-spec-table td { padding: 14px 0; font-size: 13px; color: rgba(255,255,255,0.55); }
.fp-spec-table td:first-child { color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; width: 45%; }
.fp-spec-table td:last-child { font-weight: 500; color: var(--white); }

/* ── AMENITIES INNER ────────────────────────────────────────── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; background: rgba(255,255,255,0.04); }
.amenity-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.amenity-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.amenity-item:hover img { transform: scale(1.06); }
.amenity-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px; }
.amenity-item-label { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--white); font-weight: 300; }

/* ── WIDE BANNER ─────────────────────────────────────────────── */
.wide-banner { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.wide-banner img { width: 100%; height: 100%; object-fit: cover; }
.wide-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 0 48px;
}
.wide-banner-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 72px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.1; }
.wide-banner-sub { font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }

/* ── SPEC HIGHLIGHTS ─────────────────────────────────────────── */
.spec-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); margin: 48px 0; }
.spec-highlight-item { background: var(--black-2); padding: 40px; text-align: center; }
.spec-highlight-num { font-family: var(--serif); font-size: 52px; font-weight: 300; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.spec-highlight-label { font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* ── ACCORDION ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
details { border-bottom: 1px solid rgba(255,255,255,0.06); }
details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  transition: color 0.3s;
  gap: 24px;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--gold); }
.summary-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
details[open] .summary-icon { border-color: var(--gold); background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { padding: 0 0 24px; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.55); max-width: 780px; }

/* ── CONSTRUCTION STATUS ─────────────────────────────────────── */
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.04); }
.status-item { background: var(--black-2); padding: 32px; }
.status-quarter { font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.status-title { font-family: var(--serif); font-size: 18px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 8px; }
.status-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.status-bar-wrap { height: 3px; background: rgba(255,255,255,0.08); margin-top: 20px; border-radius: 2px; overflow: hidden; }
.status-bar { height: 100%; background: linear-gradient(90deg, var(--gold-3), var(--gold)); border-radius: 2px; width: 0%; transition: width 1.5s var(--ease-out); }
.status-item.active .status-bar { width: var(--progress, 0%); }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 12px; padding: 20px 72px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); }
.breadcrumb a, .breadcrumb span { font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.18); }
.breadcrumb span:last-child { color: var(--gold); }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.05); }
.step-item { background: var(--black-2); padding: 48px 36px; }
.step-num { font-family: var(--serif); font-size: 80px; font-weight: 300; font-style: italic; color: rgba(201,169,110,0.08); line-height: 1; margin-bottom: 20px; }
.step-title { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.step-gold-accent { width: 32px; height: 2px; background: var(--gold); margin-bottom: 24px; }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 48px 0; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold-3), var(--gold), var(--gold-3), transparent); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; align-items: center; position: relative; }
.timeline-item.right .timeline-content { grid-column: 2; grid-row: 1; }
.timeline-item.right .timeline-year { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-year { font-family: var(--serif); font-size: 56px; font-weight: 300; font-style: italic; color: var(--gold); line-height: 1; }
.timeline-event { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 8px; }
.timeline-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: var(--gold); border-radius: 50%; border: 2px solid var(--black); box-shadow: 0 0 0 4px rgba(201,169,110,0.18); }

/* ── TEAM ────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2px; background: rgba(255,255,255,0.04); }
.team-card { background: var(--black-2); padding: 40px 32px; text-align: center; transition: background 0.3s; }
.team-card:hover { background: var(--black-3); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--gold); margin: 0 auto 20px; }
.team-name { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 6px; }
.team-role { font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ── MAP PLACEHOLDER ─────────────────────────────────────────── */
.map-placeholder { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.map-pin { font-size: 48px; opacity: 0.25; }
.map-text { font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.28); }

/* ── GOLD DIVIDER ────────────────────────────────────────────── */
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); margin: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .section, .section-full { padding: 100px 48px; }
  .projects-section { padding: 100px 48px; }
  .about-content-side { padding: 60px 60px 60px 72px; }
  .chairman-section { padding: 100px 48px; gap: 60px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 48px 48px; }
  .footer-bottom { padding: 20px 48px; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  #nav { padding: 0 32px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.card-tall { grid-column: span 2; aspect-ratio: 16/8; }
  .about-section { grid-template-columns: 1fr; }
  .about-image-side { height: 500px; }
  .about-content-side { padding: 60px 48px; }
  .chairman-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 48px; }
  .chairman-image-side { max-width: 400px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 32px; }
  .footer-bottom { padding: 20px 32px; flex-direction: column; gap: 8px; text-align: center; }
  .lead-inner { grid-template-columns: 1fr; gap: 48px; }
  .completed-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filter { padding: 48px 32px 0; }
  .gallery-masonry { columns: 2; padding: 0 32px 60px; }
  .tabs-nav { padding: 0 32px; }
  .tab-panel { padding: 48px 32px; }
  .breadcrumb { padding: 16px 32px; }
  .projects-tabs-nav { padding: 0 32px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 32px; }
  .hero-title { font-size: 52px; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.card-tall { grid-column: span 1; aspect-ratio: 3/4; }
  .projects-header { flex-direction: column; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stats-strip { padding: 48px 32px; }
  .gallery-masonry { columns: 1; padding: 0 24px 60px; }
  .gallery-filter { padding: 40px 24px 0; }
  .page-hero-content { padding: 0 32px; }
  .fp-display { grid-template-columns: 1fr; }
  .project-list-item { grid-template-columns: 1fr; }
  .project-list-image { height: 220px; }
  .listings-grid { grid-template-columns: 1fr; }
  .section, .section-full { padding: 60px 24px; }
  .projects-section, .lead-section, .philosophy-section { padding: 60px 24px; }
  .amenities-section .section-header { padding: 0 24px; }
  .amenities-scroll { padding: 0 24px 20px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .chairman-section { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 24px; }
  .timeline-item.right .timeline-content { grid-column: 2; }
  .timeline-item.right .timeline-year { grid-column: 2; text-align: left; }
  .timeline-year { font-size: 32px; }
  .timeline-dot { left: 28px; }
  .completed-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .spec-highlights { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-header { padding: 32px 24px 0; }
  .enquiry-form-wrap { padding: 24px 24px 32px; }
  .tabs-nav { padding: 0 24px; }
  .tab-panel { padding: 32px 24px; }
  .breadcrumb { padding: 16px 24px; }
  .projects-tabs-nav { padding: 0 24px; }
  #nav { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .projects-tab-btn { padding: 12px 20px; }
  .completed-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .floor-plan-types { flex-direction: column; }
  .fp-type-btn { text-align: center; }
}

/* ================================================================
   INNER PAGE ADDITIONS — Missing classes & Mobile Responsive
   ================================================================ */

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
.heading-xl {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.heading-md {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--white);
}
.section-tag {
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.body-lg { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); }
.body-md { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); }

/* ── PROJECT OVERVIEW (inner page 2-col layout) ────────────────── */
.project-overview {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3px;
  align-items: start;
  background: var(--black-soft);
  max-width: 100%;
}
.project-overview-main {
  background: var(--black);
  padding: 72px 72px 80px;
}
.project-overview-sidebar {
  background: var(--black-card);
  padding: 56px 44px 60px;
  border-left: 1px solid rgba(201,169,110,0.06);
  position: sticky;
  top: var(--nav-h);
}

/* ── PROJECT HIGHLIGHTS ────────────────────────────────────────── */
.project-highlights { display: flex; flex-direction: column; gap: 12px; }
.project-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.project-highlight-item:last-child { border-bottom: none; }
.project-highlight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}
.project-highlight-text { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── FLOOR PLAN SWITCHER ───────────────────────────────────────── */
.floor-plan-switcher { display: flex; flex-direction: column; gap: 28px; }
.floor-plans-tabs,
.floor-plan-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.floor-plan-btn {
  padding: 12px 22px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s;
}
.floor-plan-btn.active,
.floor-plan-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.floor-plan-display img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

/* ── AMENITIES LIST (inner pages) ───────────────────────────────── */
.amenities-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.amenities-list-item,
.amenity-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s;
}
.amenities-list-item:hover,
.amenity-list-item:hover { background: rgba(255,255,255,0.02); }
.amenity-bullet {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.amenity-check {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── SPEC TABLE ────────────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.spec-table th {
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 16px;
  text-align: left;
  background: rgba(201,169,110,0.04);
}
.spec-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  vertical-align: top;
}
.spec-table tr td:first-child {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  width: 30%;
  white-space: nowrap;
}

/* ── BUTTON ADDITIONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  padding: 12px 0;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }

/* ── FORM ADDITIONS (inner pages) ───────────────────────────────── */
.form-label {
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); background: rgba(201,169,110,0.03); }
.form-input option { background: #111; }
.form-textarea { resize: vertical; min-height: 88px; }
.form-phone-row {
  display: flex;
  gap: 8px;
}
.form-phone-row select { flex: 0 0 160px; }
.form-phone-row input { flex: 1; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--gold); }
.form-check label { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
.form-check label a { color: var(--gold); }

.luxury-form { display: flex; flex-direction: column; gap: 14px; }
.luxury-form .form-group { display: flex; flex-direction: column; gap: 6px; }

/* ── ACTION BAR (class variant for inner pages) ─────────────────── */
.action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.action-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 8px;
  font-family: var(--display);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.action-bar-item:last-child { border-right: none; }
.action-bar-item:hover { background: rgba(201,169,110,0.06); color: var(--gold); }
.action-bar-item.primary { background: var(--gold); color: var(--black); }
.action-bar-item.primary:hover { background: var(--gold-2); }
.action-bar-item svg { width: 18px; height: 18px; stroke-width: 1.5; }
.action-bar-label { font-size: 0.44rem; }

/* ── DROPDOWN ACTIONS ───────────────────────────────────────────── */
.action-dropdown-wrap { position: relative; flex: 1; display: flex; }
.action-dropdown-wrap .action-btn { width: 100%; }
.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border: 1px solid rgba(201,169,110,0.15);
  border-bottom: none;
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
}
.action-dropdown-wrap:hover .dropdown-menu { display: flex; }
.dropdown-item {
  display: block;
  padding: 14px 20px;
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}
.dropdown-item:hover { color: var(--gold); background: rgba(201,169,110,0.05); }

/* ── FOOTER ADDITIONS ───────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 72px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-brand {}
.footer-col h4,
.footer-heading {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-col ul,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-col ul li a,
.footer-links a,
.footer-links li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover,
.footer-links a:hover,
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-contact strong { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-family: var(--display); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-copy { font-family: var(--display); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22); }

/* ── PAGE HERO ADDITIONS ────────────────────────────────────────── */
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.72) 70%, rgba(8,8,8,0.9) 100%);
  z-index: 1;
}
/* Inner page hero: flex layout for vertical centering at bottom */
.page-hero {
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── TABS CONTAINER ─────────────────────────────────────────────── */
.tabs-container { background: var(--black); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 72px; }

/* ── PROJECT CARD ADDITIONS ─────────────────────────────────────── */
.project-card-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 5px 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.project-card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.project-card .project-card-name { position: relative; z-index: 2; }
.project-card .project-card-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  transform: none;
  transition: gap 0.3s;
}
.project-card:hover .project-card-cta { gap: 10px; }

/* ── REVEAL ANIMATION ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE — Inner Pages
   ================================================================ */

@media (max-width: 1100px) {
  .project-overview { grid-template-columns: 1fr 360px; }
  .project-overview-main { padding: 60px 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 48px; }
}

@media (max-width: 900px) {
  .project-overview { grid-template-columns: 1fr; }
  .project-overview-main { padding: 52px 40px; }
  .project-overview-sidebar {
    position: static;
    border-left: none;
    border-top: 1px solid rgba(201,169,110,0.1);
    padding: 44px 40px;
  }

  /* Inline 3-col stats grids → 2-col */
  .project-overview-main [style*="repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .project-overview-main [style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Tab panels: 2-col grids → 1-col */
  .tab-panel [style*="1fr 1fr"],
  .tab-panel [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .tab-panel [style*="repeat(2,1fr)"],
  .tab-panel [style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Related projects section: 2-col → 1-col */
  section [style*="grid-template-columns:1fr 1fr"],
  section > div [style*="grid-template-columns:1fr 1fr"],
  section > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* About-us story: 2-col → 1-col */
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  .container-wide { padding: 0 32px; }
  .page-hero-content { padding: 0 40px; }
}

@media (max-width: 768px) {
  /* Sidebar phone field 2-col */
  .project-overview-sidebar [style*="100px 1fr"] {
    grid-template-columns: 90px 1fr !important;
  }

  /* Atmosphere phone field in main form */
  .form-group[style*="100px 1fr"] {
    grid-template-columns: 90px 1fr !important;
  }

  /* Floor plan buttons: scrollable */
  .floor-plans-tabs,
  .floor-plan-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .floor-plans-tabs::-webkit-scrollbar,
  .floor-plan-buttons::-webkit-scrollbar { display: none; }
  .floor-plan-btn { flex-shrink: 0; }

  /* Amenities list: 2-col → 1-col */
  .amenities-list-grid { grid-template-columns: 1fr; }

  /* Spec table: make readable */
  .spec-table td:first-child { width: auto; white-space: normal; }

  /* Page hero padding */
  .page-hero-content { padding: 0 24px; }
  .page-hero-breadcrumb { display: none; }

  /* Tabs nav: ensure scrollable */
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* All inline 3-col grids → 1-col on mobile */
  .project-overview-main [style*="repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }

  /* Action bar item sizes */
  .action-bar-item { padding: 12px 4px; font-size: 0.4rem; }
  .action-bar-item svg { width: 16px; height: 16px; }

  /* Project overview main padding */
  .project-overview-main { padding: 44px 24px; }
  .project-overview-sidebar { padding: 36px 24px; }

  /* Container wide */
  .container-wide { padding: 0 20px; }

  /* Tab panel: reduce padding */
  .tab-panel > div[style*="padding:60px 40px"],
  .tab-panel > div[style*="padding: 60px 40px"] {
    padding: 36px 20px !important;
  }

  /* Inline padding overrides */
  section[style*="padding:80px 40px"] { padding: 60px 20px !important; }
  section[style*="padding:80px 0"] { padding: 60px 0 !important; }
}

@media (max-width: 480px) {
  /* All 2-col grids collapse */
  .project-overview-main [style*="repeat(3"],
  .project-overview-main [style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  .heading-xl { font-size: 36px; }
  .heading-md { font-size: 26px; }

  /* Action bar: show only key items */
  .action-bar { overflow-x: auto; }

  /* Floor plan display image reduce padding */
  .floor-plan-display img { padding: 0; }

  /* Spec table: stack rows better */
  .spec-table tr { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .spec-table td, .spec-table th { padding: 4px 0; border: none; width: 100%; }
  .spec-table tr td:first-child { width: 100%; }

  /* Related projects: min height */
  section [style*="aspect-ratio:4/3"] { aspect-ratio: 16/9 !important; }
}

/* ── SAFE-AREA (iPhone notch) ───────────────────────────────────── */
.action-bar,
.action-bar-item,
.action-btn { padding-bottom: env(safe-area-inset-bottom, 0px); }

/* ── MISC VISIBILITY FIXES ──────────────────────────────────────── */
/* Ensure all dark-bg sections use white text */
.project-overview,
.project-overview-main,
.project-overview-sidebar { color: var(--white); }

/* Ensure headings with inline styles remain readable */
[style*="color:var(--gold)"],
[style*="color: var(--gold)"] { color: var(--gold) !important; }

/* Fix: btn-outline used with display:inline-block inline */
a.btn-outline { display: inline-flex; align-items: center; }

/* Fix: Ensure project-card overlay text sits above the overlay */
.project-card-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

/* Status grid fix - used in atmosphere construction tab */
div[style*="grid-template-columns:auto 1fr"] {
  display: grid !important;
}
@media (max-width: 480px) {
  div[style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   PROJECTS PAGE — CARD OVERRIDES (list layout, not overlay)
══════════════════════════════════════════════════════════════ */
.tab-panel .project-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(201,169,110,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  aspect-ratio: unset;
  height: auto;
}
.tab-panel .project-card:hover { border-color: rgba(201,169,110,0.22); }

.project-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.project-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.tab-panel .project-card:hover .project-card-media img { transform: scale(1.06); }

.project-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(8,8,8,0.82);
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.tab-panel .project-card-body {
  position: static;
  padding: 28px 24px 32px;
  background: transparent;
  transform: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tab-panel .project-card:hover .project-card-body {
  transform: none;
  opacity: 1;
}

.project-card-title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.project-card-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  flex: 1;
}

.project-card-link {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-top: 4px;
  border-top: 1px solid rgba(201,169,110,0.2);
  transition: letter-spacing 0.3s;
}
.project-card-link:hover { letter-spacing: 0.22em; }

/* Tabs in projects.html page */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Responsive: project cards to 2-col on tablet, 1-col on mobile */
@media (max-width: 900px) {
  .tab-panel [style*="repeat(3, 1fr)"],
  .tab-panel [style*="repeat(3,1fr)"],
  .tab-panel [style*="1fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 580px) {
  .tab-panel [style*="repeat(3, 1fr)"],
  .tab-panel [style*="repeat(3,1fr)"],
  .tab-panel [style*="1fr 1fr 1fr"],
  .tab-panel [style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT US — TEAM CARDS (photo + info layout)
══════════════════════════════════════════════════════════════ */
.team-card {
  background: var(--black-card);
  border: 1px solid rgba(201,169,110,0.07);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(201,169,110,0.22); transform: translateY(-4px); }

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
}
.team-card:hover .team-card-photo img { transform: scale(1.05); }

.team-card-info {
  padding: 24px 22px 28px;
}

.team-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card-role {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-card-bio {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* Override team-grid for about-us cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: transparent;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT US — PRINCIPLES GRID
══════════════════════════════════════════════════════════════ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .principles-grid { grid-template-columns: 1fr; }
}

.principle-card {
  background: var(--black-card);
  border: 1px solid rgba(201,169,110,0.07);
  padding: 40px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.principle-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.03);
}

.principle-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.principle-card:hover .principle-icon {
  background: rgba(201,169,110,0.08);
}

.principle-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
}

.principle-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.52);
}

/* ══════════════════════════════════════════════════════════════
   TIMELINE — MOBILE RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Collapse 3-col timeline (1fr 60px 1fr) to single vertical stack */
  div[style*="grid-template-columns:1fr 60px 1fr"] {
    grid-template-columns: 1fr !important;
    position: relative;
    padding-left: 28px;
  }
  div[style*="grid-template-columns:1fr 60px 1fr"] > div:nth-child(2) {
    display: none !important;
  }
  div[style*="grid-template-columns:1fr 60px 1fr"] > div:first-child,
  div[style*="grid-template-columns:1fr 60px 1fr"] > div:last-child {
    text-align: left !important;
    padding: 0 !important;
  }
  /* Awards grid: 4-col → 2-col → 1-col */
  div[style*="repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  /* Contact cards: 3-col → 1-col */
  div[style*="1fr 1fr 1fr;gap:3px;margin-bottom:40px"] { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE — MOBILE FIXES
══════════════════════════════════════════════════════════════ */
.gallery-masonry { column-gap: 3px; }
@media (max-width: 640px) {
  .gallery-masonry { columns: 1 !important; }
  .gallery-filter { padding: 32px 20px 0; flex-wrap: wrap; gap: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   PREOWNED PAGE — LISTINGS GRID
══════════════════════════════════════════════════════════════ */
.listing-card {
  background: var(--black-card);
  border: 1px solid rgba(201,169,110,0.08);
  overflow: hidden;
  transition: border-color 0.3s;
}
.listing-card:hover { border-color: rgba(201,169,110,0.22); }
.listing-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.listing-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.listing-card:hover .listing-card-media img { transform: scale(1.05); }
.listing-card-body { padding: 24px 22px 28px; }
.listing-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.listing-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 6px;
}
.listing-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.listing-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL MOBILE POLISH
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  section[style*="padding:100px 40px"],
  section[style*="padding:80px 40px"] {
    padding: 64px 20px !important;
  }
  section[style*="max-width:1100px"],
  section[style*="max-width:1200px"],
  section[style*="max-width:900px"] {
    max-width: 100% !important;
  }
  /* inner max-width containers with margin:0 auto */
  [style*="max-width:1100px;margin:0 auto"],
  [style*="max-width:1200px;margin:0 auto"],
  [style*="max-width:900px;margin:0 auto"],
  [style*="max-width:700px;margin:0 auto"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   TEXT VISIBILITY — GLOBAL SAFETY NET
══════════════════════════════════════════════════════════════ */
/* Make sure all text inside dark sections is visible */
section, footer, div {
  /* no global override — only specific */
}
/* Force headings to always be white on dark background */
.page-hero-content h1,
.page-hero-content p,
.page-hero-content .section-tag { color: inherit; }

/* Page hero content must always be visible */
.page-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}
.page-hero-breadcrumb { color: rgba(255,255,255,0.55); }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.page-hero-breadcrumb span { margin: 0 8px; }

/* All serif text in project pages should be white */
.project-overview p,
.project-overview h1,
.project-overview h2,
.project-overview h3,
.project-overview h4 { color: var(--white); }

/* Nav mobile full-screen styling */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  padding: 40px 24px;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}
.nav-mobile a:hover,
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  transition: color 0.3s;
}
.nav-mobile-close:hover { color: var(--gold); }

/* ── NAV LOGO (inner pages — SVG mark + text) ─────────────────── */
a.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg {
  width: 30px;
  height: 30px;
}
.nav-logo-text {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-text > span {
  color: var(--gold);
  margin-left: 2px;
}
@media (max-width: 480px) {
  .nav-logo-text { font-size: 11px; letter-spacing: 0.16em; }
  .nav-logo-mark, .nav-logo-mark svg { width: 24px; height: 24px; }
}

/* ── FLOATING WHATSAPP BUTTON ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 8990;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.35);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* Lift WhatsApp button above the sticky action bar on mobile/tablet */
@media (max-width: 1024px) {
  .wa-float { bottom: calc(var(--action-bar-h, 76px) + 16px); right: 18px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* Push body content above fixed action bar so footer credit isn't hidden */
@media (max-width: 1024px) {
  body { padding-bottom: var(--action-bar-h, 76px); }
  /* Lift the action bar's z-index slightly under WA button */
  #action-bar, .action-bar { z-index: 8000; }
}
@media (max-width: 480px) {
  body { padding-bottom: 70px; }
  .wa-float { bottom: 84px; right: 14px; width: 46px; height: 46px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE ACTION BAR — Refined UX (BOTH #action-bar AND .action-bar)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Add iPhone safe-area inset support */
  #action-bar, .action-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-top: 1px solid rgba(201,169,110,0.18);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
  }

  .action-btn, .action-bar-item {
    padding: 11px 4px !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    line-height: 1.15 !important;
    gap: 5px !important;
    min-height: 64px;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600 !important;
  }
  .action-btn img, .action-bar-item svg, .action-bar-item img {
    width: 22px !important;
    height: 22px !important;
    opacity: 0.9 !important;
  }
  .action-btn.gold, .action-bar-item.primary {
    color: var(--black) !important;
  }
  .action-btn.gold img { opacity: 1 !important; }

  /* Active press feedback */
  .action-btn:active, .action-bar-item:active {
    background: rgba(201,169,110,0.18) !important;
    transform: scale(0.97);
  }

  /* Currently-open button stays gold-tinted */
  .action-btn[data-dropdown].dd-active,
  .action-bar-item.dd-active {
    background: rgba(201,169,110,0.14) !important;
    color: var(--gold) !important;
  }
  .action-btn[data-dropdown].dd-active img,
  .action-bar-item.dd-active img,
  .action-bar-item.dd-active svg { opacity: 1 !important; }

  /* Full-width dropdowns above the bar */
  .action-dropdown, .dropdown-menu {
    position: fixed !important;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background: rgba(10,10,10,0.99) !important;
    backdrop-filter: blur(28px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.5) !important;
    border-top: 1px solid rgba(201,169,110,0.35) !important;
    border-bottom: 1px solid rgba(201,169,110,0.12) !important;
    box-shadow: 0 -10px 32px rgba(0,0,0,0.6) !important;
    z-index: 8001 !important;
  }

  .action-dropdown {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s var(--ease-out) !important;
  }
  .action-dropdown.open {
    max-height: 320px !important;
    overflow-y: auto !important;
  }

  .dropdown-menu { display: none !important; }
  .dropdown-menu.open { display: flex !important; flex-direction: column !important; }

  /* Hover trigger does not work on touch — disable it */
  .action-dropdown-wrap:hover .dropdown-menu { display: none !important; }
  .action-dropdown-wrap.dd-active .dropdown-menu { display: flex !important; }

  /* Dropdown menu items — readable on mobile */
  .action-dropdown a, .dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 22px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    color: rgba(255,255,255,0.92) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    text-align: left !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }
  .action-dropdown a::after, .dropdown-item::after {
    content: '→';
    color: var(--gold);
    font-size: 14px;
    opacity: 0.6;
  }
  .action-dropdown a:active, .dropdown-item:active {
    background: rgba(201,169,110,0.12) !important;
    color: var(--gold) !important;
  }

  /* Tiny header above dropdown so user knows what they tapped */
  .action-dropdown::before, .dropdown-menu::before {
    content: attr(data-label);
    display: block;
    padding: 14px 22px 8px;
    font-family: var(--display);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,169,110,0.04);
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }

  /* Backdrop scrim that appears when a dropdown is open */
  .action-dd-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 7999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .action-dd-scrim.show {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .action-btn, .action-bar-item {
    font-size: 8.5px !important;
    padding: 10px 3px !important;
    min-height: 60px;
    gap: 4px !important;
  }
  .action-btn img, .action-bar-item svg, .action-bar-item img {
    width: 20px !important;
    height: 20px !important;
  }
  .action-dropdown, .dropdown-menu {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ── FOOTER BOTTOM (refined two-row) ───────────────────────────── */
.footer-bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  align-items: stretch !important;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  padding-bottom: 18px;
}
.footer-credit {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 16px 0 4px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  position: relative;
  transition: color 0.3s;
}
.footer-credit a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}
.footer-credit a:hover { color: var(--gold-2, #e0c089); }
.footer-credit a:hover::after { transform: scaleX(1); }
@media (max-width: 640px) {
  .footer-bottom-row { flex-direction: column; gap: 12px; text-align: center; }
  .footer-credit { font-size: 10px; padding: 14px 0 4px; letter-spacing: 0.18em; }
  .footer-rera { font-size: 9px; }
}

/* ================================================================
   PREMIUM UPGRADE — About sections, assurance, contact, readability
   ================================================================ */

/* Footer logo (real SVG) */
.footer-logo { height: 40px; width: auto; display: block; }

/* Chairman spread */
.chairman-portrait { position: relative; }
.chairman-portrait img {
  width: 100%; aspect-ratio: 3/3.6; object-fit: cover; object-position: top center;
  border: 1px solid rgba(201,169,110,0.18);
  filter: grayscale(0.15) contrast(1.02);
}
.chairman-portrait-seal {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--display); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 7px 12px;
}

/* Assurance grid (replaces fake awards) */
.assurance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.assurance-card {
  background: var(--black-card); padding: 38px 28px;
  border: 1px solid rgba(201,169,110,0.08);
  transition: border-color .4s, transform .4s, background .4s;
}
.assurance-card:hover { border-color: rgba(201,169,110,0.28); transform: translateY(-4px); background: #121212; }
.assurance-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px;
}
.assurance-title { font-family: var(--serif); font-size: 1.18rem; font-style: italic; color: var(--white); margin-bottom: 10px; }
.assurance-desc { font-size: 0.84rem; line-height: 1.8; color: rgba(255,255,255,0.6); }

/* Contact card icons */
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px;
}

/* ── READABILITY BUMPS (lift dim micro-text to comfortable contrast) ── */
:root { --gray-mid: rgba(255,255,255,0.6); }
.form-privacy { color: rgba(255,255,255,0.45) !important; }
.spec-table tr td:first-child { color: rgba(255,255,255,0.5) !important; }
.page-hero-breadcrumb, .page-hero-breadcrumb a { color: rgba(255,255,255,0.62) !important; }
.body-md { color: rgba(255,255,255,0.62); }

/* ── About sections — mobile ── */
@media (max-width: 860px) {
  .assurance-grid { grid-template-columns: 1fr 1fr; }
  .chairman-spread { grid-template-columns: 1fr !important; gap: 36px !important; text-align: center; }
  .chairman-portrait { max-width: 280px; margin: 0 auto; }
  .chairman-spread > div:last-child > div { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .assurance-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr !important; }
}

/* Floor-plan caption + gallery fade */
.floor-plan-caption {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-top: 14px;
}
.floor-plan-display img { background: #fff; border-radius: 2px; }
@keyframes galleryFadeIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

/* Mobile: tame oversized inline section padding */
@media (max-width: 768px) {
  section[style*="padding:120px 72px"],
  section[style*="padding: 120px 72px"] { padding: 64px 22px !important; }
  section[style*="padding:100px 40px"],
  section[style*="padding: 100px 40px"] { padding: 60px 22px !important; }
  .project-overview-main, .project-overview-sidebar { padding-left: 22px !important; padding-right: 22px !important; }
}
@media (max-width: 480px) {
  section[style*="120px 72px"], section[style*="100px 40px"] { padding-left: 18px !important; padding-right: 18px !important; }
}

/* Map embeds (project Location tabs) */
.map-embed {
  width: 100%;
  height: 420px;
  border: 1px solid rgba(201,169,110,0.18);
  background: #0d0d0d;
  overflow: hidden;
  position: relative;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9);
}
@media (max-width: 768px) { .map-embed { height: 300px !important; } }

/* ================================================================
   FIX: stats-strip with inner .stats-grid wrapper (projects + about)
   The wrapper was collapsing 4 stats into one column on the gold band,
   and .stat-number had no typographic styling.
   ================================================================ */
.stats-grid {
  grid-column: 1 / -1;            /* span the parent .stats-strip grid */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  display: block;
}
/* .stat-item already centers + adds the divider; ensure it works in .stats-grid too */
.stats-grid .stat-item { border-right: 1px solid rgba(8,8,8,0.15); }
.stats-grid .stat-item:last-child { border-right: none; }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item { border-right: none; border-bottom: 1px solid rgba(8,8,8,0.12); padding: 22px 20px; }
  .stats-grid .stat-item:last-child { border-bottom: none; }
}
