/* ============================================================
   NYAME ELITE — Luxury Real Estate
   Emerald #1F4E4A · Ivory · Gold · Playfair Display / Jost
   ============================================================ */

:root {
  --emerald: #1f4e4a;
  --emerald-deep: #14403c;
  --emerald-ink: #0d2b28;
  --emerald-soft: #eaf1ef;
  --ivory: #fbfaf7;
  --ivory-warm: #f6f4ee;
  --cream-card: #ffffff;
  --gold: #b9964f;
  --gold-light: #d9c08a;
  --ink: #1c2624;
  --muted: #56645f;
  --line: rgba(31, 78, 74, 0.1);
  --shadow-lg: 0 24px 50px -24px rgba(13, 43, 40, 0.22);
  --shadow-md: 0 10px 30px -18px rgba(13, 43, 40, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1240px, 92vw); margin: 0 auto; }

/* ---------- typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--emerald-ink); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}

.section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin: 14px 0 18px; }
.section-sub { color: var(--muted); font-size: 1.06rem; max-width: 560px; font-weight: 300; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 12px 28px -10px rgba(31, 78, 74, 0.55); }
.btn-primary:hover { background: var(--emerald-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(31, 78, 74, 0.6); }
.btn-ghost { background: #fff; color: var(--emerald-ink); border-color: rgba(31, 78, 74, 0.22); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--emerald-ink); font-weight: 600; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(194, 162, 94, 0.7); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.link-arrow { color: var(--emerald); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.link-arrow:hover { gap: 14px; }

/* ---------- navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald-ink); font-weight: 700; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 0.56rem; letter-spacing: 0.42em; color: var(--gold); font-weight: 500; }

.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em; color: var(--emerald-ink); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 26px; font-size: 0.88rem; }

.nav-toggle { display: none; background: none; border: none; width: 42px; height: 42px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--emerald-ink); margin: 5px auto; border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */
.hero { padding: 132px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin: 22px 0 24px; }
.hero-copy h1 em { font-style: italic; color: var(--emerald); }
.hero-copy p { color: var(--muted); font-size: 1.12rem; font-weight: 300; max-width: 470px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: clamp(28px, 5vw, 80px);
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat b { font-family: var(--font-display); font-size: 1.9rem; color: var(--emerald-ink); display: block; line-height: 1.1; }
.stat b span { font-size: inherit; letter-spacing: inherit; text-transform: none; color: inherit; }
.stat > span { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- marquee / developers ---------- */
.partners { padding: 54px 0 10px; text-align: center; }
.partners p { font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.partner-row { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(24px, 5vw, 70px); }
.partner-row span { font-family: var(--font-display); font-size: 1.35rem; color: rgba(13, 43, 40, 0.45); letter-spacing: 0.12em; transition: color 0.3s; }
.partner-row span:hover { color: var(--emerald); }

/* ---------- section scaffolding ---------- */
section.block { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }

/* ---------- how we help wheel ---------- */
.help-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.wheel-wrap { position: relative; aspect-ratio: 1; max-width: 560px; margin: 0 auto; width: 100%; }
.wheel-wrap svg { width: 100%; height: 100%; overflow: visible; }
.wheel-seg { cursor: pointer; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s; transform-origin: 300px 300px; filter: saturate(0.35) brightness(1.04); }
.wheel-seg.active { filter: saturate(1) brightness(1); }
.wheel-seg .seg-ring { fill: none; stroke: transparent; stroke-width: 3; transition: stroke 0.4s; }
.wheel-seg.active .seg-ring { stroke: var(--emerald); }
.wheel-center-label { font-family: var(--font-display); font-size: 26px; fill: #fff; }
.wheel-center-sub { font-size: 10px; letter-spacing: 4px; fill: var(--gold-light); text-transform: uppercase; }

.help-panel h3 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 12px 0 18px; }
.help-panel p { color: var(--muted); font-weight: 300; font-size: 1.05rem; margin-bottom: 24px; max-width: 480px; }
.help-points { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.help-points li { display: flex; gap: 12px; align-items: center; color: var(--emerald-ink); font-weight: 400; }
.help-points li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.help-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.help-tab { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent; font-size: 0.85rem; color: var(--muted); transition: all 0.3s; }
.help-tab.active, .help-tab:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ---------- listing cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.property-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--emerald-ink);
  aspect-ratio: 3 / 3.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
  isolation: isolate;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.property-card:hover img { transform: scale(1.06); }
.property-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 26, 24, 0.92) 0%, rgba(10, 26, 24, 0.35) 45%, rgba(10, 26, 24, 0.12) 100%); }

.card-badge {
  position: absolute; top: 18px; left: 18px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.66rem; letter-spacing: 0.22em; font-weight: 600;
  background: rgba(244, 241, 234, 0.16); color: #f4f1ea;
  border: 1px solid rgba(244, 241, 234, 0.35);
  backdrop-filter: blur(6px);
}
.card-badge.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--emerald-ink); border: none; }

.card-body { padding: 24px; color: #f4f1ea; }
.card-price { font-size: 1.5rem; font-weight: 600; font-family: var(--font-display); color: #fff; }
.card-name { font-size: 1.06rem; margin-top: 6px; font-weight: 500; }
.card-loc { display: flex; align-items: center; gap: 6px; font-size: 0.86rem; color: rgba(244, 241, 234, 0.75); font-weight: 300; margin-top: 3px; }
.card-meta { display: flex; align-items: center; gap: 18px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(244, 241, 234, 0.2); font-size: 0.82rem; color: rgba(244, 241, 234, 0.85); }
.card-meta b { color: #fff; font-weight: 600; }
.card-view { margin-left: auto; font-size: 0.84rem; color: var(--gold-light); opacity: 0; transform: translateX(-6px); transition: 0.35s; }
.property-card:hover .card-view { opacity: 1; transform: translateX(0); }
.photo-count { position: absolute; top: 18px; right: 18px; display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(10, 26, 24, 0.55); color: #f4f1ea; font-size: 0.74rem; backdrop-filter: blur(6px); }

/* unit inventory cards */
.badge-row { position: absolute; top: 18px; left: 18px; right: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge-row .card-badge { position: static; }
.unit-card { aspect-ratio: 3 / 3.2; }
.unit-noimg { position: absolute; inset: 0; z-index: -2; background: radial-gradient(130% 130% at 20% 0%, #2a615c 0%, var(--emerald-deep) 55%, var(--emerald-ink) 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 24%; gap: 12px; }
.unit-noimg img { position: static; width: 74px; height: 74px; border-radius: 18px; opacity: 0.9; }
.unit-noimg span { font-family: var(--font-display); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold-light); }

/* launches */
.launch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.launch-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-md); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s; }
.launch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.launch-media { position: relative; aspect-ratio: 16 / 9; background: radial-gradient(130% 130% at 20% 0%, #2a615c 0%, var(--emerald-deep) 55%, var(--emerald-ink) 100%); }
.launch-media img { width: 100%; height: 100%; object-fit: cover; }
.launch-media .card-badge { position: absolute; top: 16px; left: 16px; }
.launch-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.launch-dev { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.launch-body h3 { font-size: 1.55rem; }
.launch-loc { color: var(--muted); font-size: 0.92rem; display: flex; align-items: center; gap: 6px; }
.launch-body p.blurb { color: var(--muted); font-weight: 300; font-size: 0.95rem; flex: 1; }
.launch-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 10px; }
.launch-facts span { background: var(--emerald-soft); color: var(--emerald-ink); border-radius: 999px; padding: 7px 14px; font-size: 0.8rem; }
.launch-facts span.price { background: linear-gradient(135deg, var(--gold-light), var(--gold)); font-weight: 600; }

/* ---------- experience / editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media .main-img { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/4.6; object-fit: cover; box-shadow: var(--shadow-lg); }
.split-media .float-card {
  position: absolute; bottom: -26px; right: -20px;
  background: var(--cream-card); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-md);
  display: flex; gap: 14px; align-items: center; max-width: 300px;
  border: 1px solid var(--line);
}
.float-card .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--emerald); color: var(--gold-light); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.float-card b { display: block; font-size: 0.95rem; color: var(--emerald-ink); }
.float-card span { font-size: 0.8rem; color: var(--muted); }

/* ---------- dark CTA band ---------- */
.cta-band {
  background: radial-gradient(120% 160% at 15% 0%, #2a615c 0%, var(--emerald-deep) 45%, var(--emerald-ink) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(50px, 7vw, 90px);
  color: #f4f1ea;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(217, 192, 138, 0.25); border-radius: 20px; pointer-events: none; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px auto 18px; max-width: 700px; }
.cta-band p { color: rgba(244, 241, 234, 0.75); font-weight: 300; max-width: 520px; margin: 0 auto 34px; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.4s, box-shadow 0.4s; }
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-stars { color: var(--gold); letter-spacing: 4px; }
.quote-card p { color: var(--ink); font-weight: 300; font-size: 1rem; font-style: italic; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.quote-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote-who b { display: block; font-size: 0.94rem; color: var(--emerald-ink); }
.quote-who span { font-size: 0.8rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 80px); }
.contact-info h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 14px 0 16px; }
.contact-lines { display: grid; gap: 18px; margin-top: 34px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--emerald-soft); color: var(--emerald); display: grid; place-items: center; flex-shrink: 0; }
.contact-line b { display: block; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.contact-line a, .contact-line span.v { color: var(--emerald-ink); font-size: 1.04rem; font-weight: 400; }

.form-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.94rem; font-weight: 300; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 0.98rem; color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(31, 78, 74, 0.12); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--emerald); color: #fff; font-size: 1.6rem; display: grid; place-items: center; margin: 0 auto 18px; }

/* ---------- footer ---------- */
.site-footer { background: var(--emerald-ink); color: rgba(244, 241, 234, 0.8); margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 70px 0 50px; }
.footer-top h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-top ul { list-style: none; display: grid; gap: 12px; }
.footer-top a { font-weight: 300; font-size: 0.95rem; transition: color 0.3s; }
.footer-top a:hover { color: var(--gold-light); }
.footer-brand p { font-weight: 300; font-size: 0.95rem; max-width: 300px; margin-top: 16px; color: rgba(244, 241, 234, 0.65); }
.footer-bottom { border-top: 1px solid rgba(244, 241, 234, 0.12); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: rgba(244, 241, 234, 0.5); }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1f4e4a; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(13, 43, 40, 0.6);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); background: var(--emerald-deep); }

/* ---------- listings page ---------- */
.page-hero { padding: 150px 0 30px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 16px 0 12px; }

.filter-bar {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr auto; gap: 12px;
  align-items: end; margin: 34px 0 40px; box-shadow: var(--shadow-md);
  position: sticky; top: 78px; z-index: 50;
}
.filter-bar .field { margin: 0; }
.filter-bar input, .filter-bar select { padding: 12px 14px; }
.results-count { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }

/* ---------- property detail ---------- */
.detail-top { padding: 140px 0 0; }
.crumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--emerald); }
.detail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.detail-head h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.detail-price { text-align: right; }
.detail-price b { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--emerald); display: block; }
.detail-price span { color: var(--muted); font-size: 0.9rem; }

.gallery-mosaic {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 250px);
  gap: 12px; border-radius: var(--radius-xl); overflow: hidden; position: relative;
}
.gallery-mosaic .g-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-mosaic .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-mosaic .g-item:hover img { transform: scale(1.05); }
.gallery-mosaic .g-item:first-child { grid-row: span 2; }
.all-photos-btn {
  position: absolute; right: 16px; bottom: 16px;
  padding: 11px 20px; border-radius: 999px; border: none;
  background: rgba(250, 248, 243, 0.95); color: var(--emerald-ink);
  font-weight: 600; font-size: 0.88rem; display: flex; gap: 8px; align-items: center;
  box-shadow: var(--shadow-md);
}
.all-photos-btn:hover { background: #fff; }

.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 5vw, 70px); padding: 54px 0 30px; }
.spec-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.spec-chip { background: var(--cream-card); border: 1px solid var(--line); padding: 14px 22px; border-radius: var(--radius-md); text-align: center; min-width: 110px; }
.spec-chip b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--emerald-ink); }
.spec-chip span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.detail-desc h2 { font-size: 1.7rem; margin-bottom: 14px; }
.detail-desc p { color: var(--muted); font-weight: 300; font-size: 1.04rem; margin-bottom: 30px; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.feature-list li { display: flex; gap: 10px; align-items: center; color: var(--emerald-ink); }
.feature-list li::before { content: "◆"; font-size: 0.6rem; color: var(--gold); }

.agent-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px; position: sticky; top: 110px; box-shadow: var(--shadow-md); }
.agent-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.agent-card > p { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-bottom: 22px; }
.agent-card .btn { width: 100%; margin-bottom: 12px; }

/* thumbnails strip on detail */
.thumbs-strip { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; margin-top: 12px; }
.thumbs-strip img { aspect-ratio: 1; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.85; transition: 0.3s; border: 2px solid transparent; }
.thumbs-strip img:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(10, 22, 20, 0.96); backdrop-filter: blur(10px);
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; color: #f4f1ea; }
.lb-counter { font-size: 0.95rem; letter-spacing: 0.1em; }
.lb-close { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; transition: 0.3s; }
.lb-close:hover { background: rgba(255, 255, 255, 0.22); }
.lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 84px; min-height: 0; }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); color: #fff; font-size: 1.3rem; transition: 0.3s; }
.lb-nav:hover { background: var(--emerald); border-color: var(--emerald); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-thumbs { display: flex; gap: 8px; padding: 16px 28px 24px; overflow-x: auto; justify-content: safe center; }
.lb-thumbs img { width: 76px; height: 56px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.45; border: 2px solid transparent; transition: 0.3s; flex-shrink: 0; }
.lb-thumbs img.active { opacity: 1; border-color: var(--gold); }
.lb-thumbs img:hover { opacity: 0.9; }

/* ---------- virtual tour ---------- */
.tour-page { position: fixed; inset: 0; background: #0a1614; overflow: hidden; }
.tour-stage { position: absolute; inset: 0; cursor: grab; background-size: cover; background-position: 50% 50%; transition: background-image 0.4s ease; }
.tour-stage.dragging { cursor: grabbing; }
.tour-ui { position: absolute; z-index: 5; }
.tour-pill { background: rgba(20, 40, 37, 0.72); color: #f4f1ea; border: 1px solid rgba(244, 241, 234, 0.2); backdrop-filter: blur(8px); border-radius: 999px; padding: 11px 22px; font-size: 0.9rem; }
.tour-back { top: 24px; left: 24px; } .tour-room { top: 24px; left: 50%; transform: translateX(-50%); } .tour-rooms-btn { top: 24px; right: 24px; }
.tour-hint { bottom: 26px; left: 50%; transform: translateX(-50%); font-size: 0.8rem; padding: 8px 18px; }
.tour-rooms-menu { position: absolute; top: 76px; right: 24px; z-index: 6; background: rgba(20, 40, 37, 0.9); backdrop-filter: blur(12px); border: 1px solid rgba(244, 241, 234, 0.15); border-radius: 16px; padding: 10px; display: none; min-width: 200px; }
.tour-rooms-menu.open { display: block; }
.tour-rooms-menu button { display: block; width: 100%; text-align: left; background: none; border: none; color: #f4f1ea; padding: 11px 14px; border-radius: 10px; font-size: 0.92rem; transition: 0.25s; }
.tour-rooms-menu button:hover, .tour-rooms-menu button.active { background: rgba(194, 162, 94, 0.2); color: var(--gold-light); }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; } .reveal[data-delay="2"] { transition-delay: 0.24s; } .reveal[data-delay="3"] { transition-delay: 0.36s; }

/* mobile menu hidden by default at all widths */
.mobile-menu { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu.open { display: flex; position: fixed; inset: 0; background: var(--ivory); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
  .mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; color: var(--emerald-ink); }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .filter-bar { grid-template-columns: 1fr 1fr 1fr; position: static; }
  .help-grid, .split, .contact-grid, .detail-grid, .hero-grid { grid-template-columns: 1fr; }
  .detail-price { text-align: left; }
  .agent-card { position: static; }
  .thumbs-strip { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 720px) {
  .cards-grid { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 130px; }
  .gallery-mosaic .g-item:nth-child(n + 4) { display: none; }
  .gallery-mosaic .g-item:first-child { grid-column: span 2; grid-row: 1; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .lb-stage { padding: 0 10px; }
  .lb-nav { width: 44px; height: 44px; }
  .thumbs-strip { grid-template-columns: repeat(5, 1fr); }
}
