﻿:root {
  /* Brand */
  --navy-900: #001C38;
  --navy-800: #003A6B;
  --navy-700: #004E8A;
  --navy-600: #0066B2;
  --navy-500: #2A86C9;
  --navy-50:  #F2F7FC;
  --navy-25:  #F8FBFE;

  --gold-600: #C9A22F;
  --gold-500: #ECC246;
  --gold-400: #F4D27A;
  --gold-50:  #FFF8E2;

  /* Neutrals (warm-cool, low saturation) */
  --ink:      #1A1C1C;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --slate-300:#C1C7D3;
  --slate-200:#E2E8F0;
  --slate-100:#F1F5F9;
  --cream:    #FBF8F2;
  --paper:    #FAFAF7;
  --white:    #FFFFFF;

  /* Type */
  --font-sans: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Shadows — soft, premium */
  --sh-1: 0 1px 2px rgba(15,30,55,0.04), 0 1px 3px rgba(15,30,55,0.04);
  --sh-2: 0 4px 14px -6px rgba(15,30,55,0.08), 0 8px 24px -12px rgba(15,30,55,0.06);
  --sh-3: 0 12px 32px -12px rgba(15,30,55,0.14), 0 24px 56px -24px rgba(15,30,55,0.10);
  --sh-card-img: 0 24px 48px -24px rgba(0, 60, 120, 0.30);

  /* Container */
  --maxw: 1280px;
  --gutter: 16px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
input, textarea, select { font: inherit; }

/* Typography scale */
.h-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.h-eyebrow.white { color: var(--gold-500); }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  margin: 0;
}
.h-display.white { color: #fff; }

.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy-700);
  margin: 0;
}
.h-section.center { text-align: center; }
.h-section .accent { color: var(--gold-600); }

.h-card {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  margin: 0;
}

.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-600);
  margin: 0;
}
.lead.white { color: rgba(255,255,255,0.85); }

.body { font-size: 15px; line-height: 1.65; color: var(--slate-600); }
.cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* Section frame */
.section {
  padding: 96px 0;
}
.section.tight { padding: 80px 0; }
.section.dense { padding: 64px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 56px;
}
.section-head.left { align-items: flex-start; text-align: left; }
.section-head .rule {
  width: 56px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-head p.lead { max-width: 760px; }
.section-head p.lead.wide { max-width: 980px; }
.section-head p.lead.full { max-width: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 220ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn.sm { height: 42px; padding: 0 20px; font-size: 11px; letter-spacing: 0.12em; }
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 10px 24px -10px rgba(236,194,70,0.65);
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(236,194,70,0.75); }
.btn-navy {
  background: var(--navy-700);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-700);
}
.btn-outline:hover { background: var(--navy-700); color: #fff; }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn .arr { display: inline-block; transition: transform 220ms var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
}
.link-gold .arr { transition: transform 220ms var(--ease); }
.link-gold:hover .arr { transform: translateX(4px); }

.link-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--navy-700);
  text-transform: uppercase;
}
.link-navy:hover { color: var(--navy-600); }
.link-navy .arr { transition: transform 220ms var(--ease); }
.link-navy:hover .arr { transform: translateX(4px); }

/* ── Dual-mode logo ─────────────────────────────────────────────────────
   .logo-light  = logo dùng khi header sticky (nền trắng)
   .logo-dark   = logo dùng khi hero-mode (nền tối) và footer
   .logo-mobile = logo trên mobile (hiện tất cả trạng thái)
────────────────────────────────────────────────────────────────────────── */
/* Header luôn dark — dùng logo-dark, ẩn logo-light */
.logo-img        { display: block; }
.logo-dark       { display: block; }
.logo-light      { display: none; }
.logo-mobile     { display: none; }

/* hero-mode: giống non-hero (cả hai đều dark) */
.site-header.hero-mode .logo-light { display: none; }
.site-header.hero-mode .logo-dark  { display: block; }

/* footer luôn dùng logo-dark */
.site-footer .logo-light { display: none; }
.site-footer .logo-dark  { display: block; }

/* ── Ẩn nút "Nhận tư vấn" trên mobile ── */
@media (max-width: 1080px) {
  .header-consult-btn { display: none !important; }
}

/* ── Mobile: ẩn logo desktop, hiện logo mobile ── */
@media (max-width: 1080px) {
  .logo-light,
  .logo-dark  { display: none !important; }
  .logo-mobile { display: block !important; }
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: 78px;
  background: rgba(13,58,88,0.80);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 220ms var(--ease), height 220ms var(--ease), border-color 220ms var(--ease);
}
.site-header.scrolled { height: 68px; background: rgba(13,58,88,0.80); }
.site-header.hero-mode {
  background: rgba(0, 28, 56, 0.0);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header.hero-mode .nav-link,
.site-header.hero-mode .logo-text,
.site-header.hero-mode .logo-sub { color: #fff; }
.site-header.hero-mode .logo-mark { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.site-header.hero-mode .logo-mark span { color: #fff; }
.site-header.hero-mode .nav-link:hover { color: var(--gold-500); }
.site-header.hero-mode .nav-link.active::after { background: var(--gold-500); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--navy-700);
  background: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(236,194,70,0.5) 50%);
}
.logo-mark span {
  position: relative; z-index: 1;
  color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.04em;
}
.logo-text {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}
.logo-sub {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.nav {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 180ms var(--ease);
}
.nav-link:hover { color: var(--gold-500); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}

.header-cta {
  display: flex; gap: 14px; align-items: center;
}
.phone-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  transition: color 200ms var(--ease);
}
.phone-cta:hover { color: var(--gold-400); }
.phone-cta .ic {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--gold-400);
  transition: all 220ms var(--ease);
}
.phone-cta .ic svg { width: 16px; height: 16px; }
.phone-cta:hover .ic { background: var(--gold-500); color: var(--navy-900); }
/* hero-mode: giống non-hero (cùng dark header) */
.site-header.hero-mode .phone-cta { color: rgba(255,255,255,0.9); }
.site-header.hero-mode .phone-cta .ic { background: rgba(255,255,255,0.12); color: var(--gold-400); }
.site-header.hero-mode .phone-cta:hover .ic { background: var(--gold-500); color: var(--navy-900); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("/uploads/hero-bg.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05) brightness(1.05);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,78,138,0.42) 0%, rgba(0,102,178,0.22) 45%, rgba(0,40,80,0.55) 100%),
    linear-gradient(100deg, rgba(0,40,80,0.35) 0%, rgba(0,40,80,0) 55%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(110% 75% at 50% 55%, rgba(0,0,0,0) 40%, rgba(0,28,56,0.35) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 980px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 32px;
  padding: 8px 18px 8px 0;
}
.hero-eyebrow .ln { width: 36px; height: 1px; background: var(--gold-500); display: inline-block; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,28,56,0.35);
}
.hero h1 .italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-500);
}
.hero .hero-lead {
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0 0 44px;
  text-shadow: 0 1px 20px rgba(0,28,56,0.4);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(0,40,80,0.15), rgba(0,28,56,0.45));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
}
.hero-meta-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--gold-500);
  line-height: 1;
}
.hero-meta-item .v .small { font-size: 14px; color: rgba(255,255,255,0.9); letter-spacing: 0.1em; }
.hero-meta-item .k {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 200px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 10px; letter-spacing: 0.32em; font-weight: 700;
  writing-mode: vertical-rl;
}
@media (max-width: 1080px) { .hero-scroll { display: none; } }
.hero-scroll .ln {
  width: 1px; height: 60px;
  background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0));
  position: relative;
}
.hero-scroll .ln::after {
  content: "";
  position: absolute;
  top: 0; left: -1.5px;
  width: 4px; height: 16px; border-radius: 2px;
  background: var(--gold-500);
  animation: drift 2.4s ease-in-out infinite;
}
@keyframes drift {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(44px); opacity: 0; }
}

/* Overview */
#tongquan { padding: 60px 0; }
@media (max-width: 768px) { #tongquan { padding: 42px 0; } }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.overview-grid .overview-body { order: 1; }
.overview-grid .overview-media { order: 2; }
.overview-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--slate-100);
}
.overview-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.overview-media .badge {
  position: absolute;
  right: -28px;
  bottom: 80px;
  background: rgba(255,255,255,0.7);
  padding: 28px 32px;
  border: 1px solid rgba(15,30,55,0.05);
  box-shadow: var(--sh-3);
  max-width: 320px;
}
@media (max-width: 1080px) {
  .overview-media .badge { right: 16px; left: 16px; bottom: 16px; max-width: none; }
}
.overview-media .badge .mark {
  width: 36px; height: 2px; background: var(--gold-500); margin-bottom: 12px;
}
.overview-media .badge .q {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--navy-700);
}
.overview-media .stamp {
  position: absolute;
  right: 24px;
  top: 24px;
  background: rgba(0,28,56,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 700;
}

.overview-body { padding-right: 16px; }
@media (max-width: 1080px) {
  .overview-grid .overview-body { order: 2; padding-right: 0; }
  .overview-grid .overview-media { order: 1; }
}
.overview-body .h-section { margin-bottom: 24px; }
.overview-body .lead { margin-bottom: 32px; }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.spec {
  display: flex; gap: 14px; align-items: flex-start;
}
.spec .ic {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
}
.spec .ic svg { width: 20px; height: 20px; }
.spec .k {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-500); font-weight: 700; margin-bottom: 2px;
}
.spec .v { font-size: 15px; color: var(--navy-700); font-weight: 700; }

/* Location section */
.section-location {
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 112px 0;
}
.section-location .bg {
  position: absolute; inset: 0;
  background: url("/uploads/contact-bg.jpg") center / cover no-repeat;
  opacity: 0.55;
  filter: saturate(0.85);
}
.section-location .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,78,138,0.45) 0%, rgba(0,40,80,0.62) 100%);
}
.section-location .container { position: relative; z-index: 2; }
.section-location .section-head .h-section { color: #fff; }
.section-location .section-head p.lead { color: rgba(255,255,255,0.78); }

.map-canvas {
  position: relative;
  height: 580px;
  border-radius: 6px;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(236,194,70,0.10) 0%, rgba(0,40,80,0) 70%);
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 3;
}
.map-pin-center .ring {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 4px solid #fff;
  box-shadow: 0 0 0 8px rgba(236,194,70,0.18), 0 0 40px rgba(236,194,70,0.45);
}
.map-pin-center .ring::before, .map-pin-center .ring::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(236,194,70,0.5);
  animation: pulse 2.4s ease-out infinite;
}
.map-pin-center .ring::after { animation-delay: 1.2s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.map-pin-center .lbl {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
}
.map-card {
  position: absolute;
  width: 280px;
  background: rgba(0,40,80,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 22px 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 280ms var(--ease);
}
.map-card:hover, .map-card.active {
  background: rgba(236,194,70,0.95);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}
.map-card:hover .num, .map-card.active .num { background: var(--navy-700); color: #fff; }
.map-card:hover .lbl-sub, .map-card.active .lbl-sub { color: rgba(0,28,56,0.78); }
.map-card .num {
  position: absolute;
  left: -16px; top: -16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  border: 3px solid var(--navy-700);
  transition: all 220ms var(--ease);
}
.map-card .lbl-distance {
  font-size: 24px; font-weight: 800; color: inherit; letter-spacing: -0.01em;
}
.map-card .lbl-distance .unit { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; opacity: 0.8; margin-left: 2px; }
.map-card .lbl-sub { font-size: 13px; color: rgba(255,255,255,0.72); }
.map-card .arr { margin-top: 4px; font-size: 11px; letter-spacing: 0.2em; font-weight: 700; opacity: 0.7; }

.map-card.c1 { top: 60px; left: 40px; }
.map-card.c2 { bottom: 60px; left: 40px; }
.map-card.c3 { top: 60px; right: 40px; }
.map-card.c4 { bottom: 60px; right: 40px; }

.location-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.location-stats .it {
  text-align: center;
}
.location-stats .it .v {
  font-size: 36px; font-weight: 800; color: var(--gold-500); letter-spacing: -0.01em;
  white-space: nowrap;
}
.location-stats .it .k {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.7); margin-top: 8px;
}
@media (max-width: 640px) {
  .location-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .location-stats .it .v { font-size: 22px; }
  .location-stats .it .k { font-size: 10px; letter-spacing: 0.14em; margin-top: 4px; }
}

/* Floor plans tabs */
.tabs {
  display: flex; gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--slate-200);
  flex-wrap: wrap;
}
.tab {
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--slate-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 200ms var(--ease);
}
.tab:hover { color: var(--navy-700); }
.tab.active { color: var(--navy-700); border-bottom-color: var(--gold-500); }

.floor-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: 16px;
}
.floor-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--slate-100);
  transition: transform 320ms var(--ease);
}
.floor-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.floor-tile:hover img { transform: scale(1.05); }
.floor-tile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,28,56,0) 50%, rgba(0,28,56,0.85) 100%);
  pointer-events: none;
}
.floor-tile .caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: #fff;
}
.floor-tile .caption .tag {
  display: inline-block;
  background: rgba(236,194,70,0.94);
  color: var(--navy-900);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 10px;
}
.floor-tile .caption .t {
  font-size: 18px; font-weight: 700; letter-spacing: -0.005em;
}
.floor-tile .caption .s {
  font-size: 12px; opacity: 0.78; margin-top: 4px;
}
.floor-tile.big { grid-row: span 2; }

/* Apartment types (Thiết kế căn hộ) */
.section-types {
  background: var(--navy-25);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.type-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 320ms var(--ease);
  position: relative;
}
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: rgba(0,102,178,0.15);
}
.type-card .num {
  position: absolute;
  right: 24px; top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  color: var(--slate-200);
  line-height: 1;
}
.type-card .ic {
  width: 56px; height: 56px;
  margin: 32px 32px 16px;
  border-radius: 4px;
  background: var(--gold-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
}
.type-card .ic svg { width: 28px; height: 28px; }
.type-card .body {
  padding: 0 32px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.type-card .body h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy-700);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.type-card .body .area {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold-600); text-transform: uppercase;
  margin-bottom: 16px;
}
.type-card .body p {
  font-size: 14px; line-height: 1.65; color: var(--slate-600); margin: 0;
  flex: 1;
}
.type-card .body .cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--navy-700);
}
.type-card.featured {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700);
}
.type-card.featured .num { color: rgba(255,255,255,0.12); }
.type-card.featured .ic { background: rgba(236,194,70,0.18); color: var(--gold-500); }
.type-card.featured .body h3 { color: #fff; }
.type-card.featured .body p { color: rgba(255,255,255,0.7); }
.type-card.featured .body .area { color: var(--gold-500); }
.type-card.featured .body .cta { border-top-color: rgba(255,255,255,0.15); color: var(--gold-500); }

/* Products / Sản phẩm */
.products-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.products-head .l h2 { margin-bottom: 12px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 320ms var(--ease);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}
.product .img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate-100);
}
.product .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.product:hover .img img { transform: scale(1.06); }
.product .img .tag {
  position: absolute; left: 14px; top: 14px;
  background: var(--navy-700); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
}
.product .img .fav {
  position: absolute; right: 14px; top: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  transition: color 220ms var(--ease);
}
.product .img .fav:hover { color: var(--gold-600); }
.product .body { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 6px; }
.product .body h3 {
  font-size: 20px; font-weight: 800; color: var(--navy-700);
  letter-spacing: -0.005em; margin: 0;
}
.product .body .sub {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--slate-500); text-transform: uppercase;
  margin-bottom: 14px;
}
.product .meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.product .meta .it { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate-700); }
.product .meta .it svg { width: 16px; height: 16px; color: var(--gold-600); }
.product .price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
}
.product .price .k { font-size: 10.5px; letter-spacing: 0.18em; font-weight: 700; color: var(--slate-500); text-transform: uppercase; }
.product .price .v { font-size: 22px; font-weight: 800; color: var(--navy-700); }
.product .actions { display: flex; gap: 10px; margin-top: 18px; }
.product .actions .btn { flex: 1; height: 44px; padding: 0; font-size: 10.5px; }

/* Amenities */
.section-amenities {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 112px 0;
}
.section-amenities .am-bg {
  position: absolute; inset: 0;
  background: url("/uploads/amenities-bg.jpg") center / cover no-repeat;
  filter: saturate(1.05);
}
.section-amenities .am-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(0,40,80,0.92) 0%,
      rgba(0,78,138,0.78) 28%,
      rgba(0,102,178,0.55) 52%,
      rgba(0,102,178,0.30) 75%,
      rgba(0,102,178,0.18) 100%);
}
.section-amenities .container { position: relative; z-index: 2; }
.amen-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.amen-intro { padding: 0; color: #fff; }
.amen-intro .h-eyebrow { color: var(--gold-500); }
.amen-intro h2 { color: #fff; margin-bottom: 18px; }
.amen-intro .rule { width: 56px; height: 3px; background: var(--gold-500); margin: 4px 0 22px; }
.amen-intro p.lead { margin-bottom: 28px; max-width: 42ch; color: rgba(255,255,255,0.85); }
.amen-list {
  margin: 24px 0 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.amen-list .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.amen-list .row + .row { border-top: 1px solid rgba(255,255,255,0.10); }
.amen-list .row .k {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.amen-list .row .v { font-weight: 700; color: var(--gold-500); }
.amen-intro .btn-navy { background: var(--gold-500); color: var(--navy-900); }
.amen-intro .btn-navy:hover { background: var(--gold-400); }

.amen-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.amen-tiles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.amen-tile {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  padding: 28px 16px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  transition: all 260ms var(--ease);
  min-height: 160px;
}
.amen-tile:hover {
  background: rgba(236,194,70,0.95);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}
.amen-tile .ic {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  transition: color 260ms var(--ease);
}
.amen-tile:hover .ic { color: var(--navy-900); }
.amen-tile .ic svg { width: 36px; height: 36px; }
.amen-tile .lbl {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.article {
  display: flex; flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-200);
  transition: all 320ms var(--ease);
}
.article:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.article .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate-100);
}
.article .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.article:hover .img img { transform: scale(1.05); }
.article .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article .body .meta {
  font-size: 10px; letter-spacing: 0.22em; font-weight: 700; text-transform: uppercase;
  color: var(--gold-600);
}
.article .body h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--navy-700);
  margin: 0;
  line-height: 1.32;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article .body p {
  font-size: 13.5px; color: var(--slate-600); margin: 0; line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article .body .read {
  margin-top: auto;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--navy-700); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  padding-top: 6px;
}

/* Contact */
.section-contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  color: #fff;
}
.section-contact .bg {
  position: absolute; inset: 0;
  background: url("/uploads/contact-bg.jpg") center / cover no-repeat;
  opacity: 0.22;
}
.section-contact .veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,28,56,0.94), rgba(0,78,138,0.88));
}
.section-contact .container { position: relative; z-index: 2; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: #fff; margin-bottom: 18px; }
.contact-info .rule { width: 56px; height: 3px; background: var(--gold-500); margin: 4px 0 22px; }
.contact-info p.lead { color: rgba(255,255,255,0.78); margin-bottom: 36px; }
.contact-info .ct-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info .ct {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-info .ct:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.contact-info .ct .ic {
  width: 44px; height: 44px;
  border: 1px solid rgba(236,194,70,0.4);
  background: rgba(236,194,70,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500); flex-shrink: 0;
}
.contact-info .ct .ic svg { width: 20px; height: 20px; }
.contact-info .ct .k { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--gold-500); margin-bottom: 4px; }
.contact-info .ct .v { font-size: 17px; font-weight: 700; }
.contact-info .ct .s { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

.contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 48px;
}
.contact-form .h-form {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.contact-form .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field {
  position: relative;
  margin-bottom: 16px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 16px 18px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: all 220ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.1);
}
.field textarea { min-height: 110px; resize: vertical; font-family: var(--font-sans); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F4D27A' d='M6 8 0 1.05 1.05 0 6 4.6 10.95 0 12 1.05z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.field select option { color: var(--ink); background: #fff; }

.checks {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  margin: 6px 0 22px;
}
.checks input { accent-color: var(--gold-500); }

.contact-form .submit {
  width: 100%; height: 56px;
  font-size: 12px;
  letter-spacing: 0.32em;
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.site-footer .logo-text { color: #fff; }
.site-footer .logo-sub { color: rgba(255,255,255,0.5); }
.site-footer .desc { font-size: 14px; line-height: 1.7; margin-top: 20px; color: rgba(255,255,255,0.55); }
.site-footer h4 {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.foot-list { display: flex; flex-direction: column; gap: 12px; }
.foot-list a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 200ms var(--ease); }
.foot-list a:hover { color: var(--gold-500); }
.foot-info { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: rgba(255,255,255,0.7); }
.foot-info .row { display: flex; gap: 12px; align-items: center; }
.foot-info .row .ic { color: var(--gold-500); width: 18px; }
.subs {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.subs input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
}
.subs input::placeholder { color: rgba(255,255,255,0.4); }
.subs button {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 220ms var(--ease);
}
.socials a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-500); }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom .links { gap: 16px; }
}

/* Floating consult button */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta .fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(236,194,70,0.55);
  transition: transform 220ms var(--ease);
}
.float-cta .fab:hover { transform: scale(1.05); }
.float-cta .fab.zalo { background: transparent; padding: 0; box-shadow: none; border: none; }
.float-cta .fab.phone {
  position: relative;
  animation: ring 3s ease-in-out infinite;
}
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
}

/* Toast wrap — overlay toàn màn hình */
.toast-wrap {
  position: fixed; inset: 0;
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
}
.toast-wrap.show {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.toast-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,20,50,.22);
  backdrop-filter: blur(2px);
}
/* Toast */
.toast {
  position: relative;
  background: var(--navy-700);
  color: #fff;
  padding: 20px 28px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--sh-3);
  font-size: 15px;
  max-width: min(480px, 90vw);
  transform: translateY(8px);
  transition: transform 280ms var(--ease);
}
.toast-wrap.show .toast { transform: translateY(0); }
.toast .ic { color: var(--gold-500); flex-shrink: 0; }

/* ── Dropdown menu 2 cấp ──────────────────────────────────────────────── */
.nav-item { position: relative; }

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}

/* Hiển thị khi hover (desktop) hoặc có class .dropdown-open (JS click) */
.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Arrow indicator */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
  filter: drop-shadow(0 -1px 0 var(--slate-200));
}

.nav-dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  white-space: nowrap;
  transition: background 150ms, color 150ms;
  border-radius: 4px;
  margin: 0 4px;
}

.nav-dropdown li a:hover {
  background: var(--navy-25);
  color: var(--navy-700);
}

/* Chevron rotation khi mở */
.nav-chevron {
  transition: transform 200ms var(--ease);
  display: inline-block;
  vertical-align: middle;
}
.has-dropdown:hover .nav-chevron,
.has-dropdown.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

/* ── Mobile menu ──────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--slate-200);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }

.mobile-link, .mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--navy-700);
  text-transform: uppercase;
  border-bottom: 1px solid var(--slate-100);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 200ms;
}
.mobile-link:last-child, .mobile-parent:last-child { border-bottom: none; }
.mobile-link:hover, .mobile-parent:hover { color: var(--gold-600); }

.mobile-children {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 16px;
}
.mobile-children.open { display: flex; }

.mobile-child-link {
  padding: 9px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: .06em;
  border-bottom: 1px dashed var(--slate-100);
  transition: color 180ms;
}
.mobile-child-link:last-child { border-bottom: none; }
.mobile-child-link:hover { color: var(--navy-700); }

/* Mobile toggle */
.mobile-toggle { display: none; }
@media (max-width: 1080px) {
  .nav { display: none; }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
  }
  .mobile-toggle span { width: 100%; height: 2px; background: rgba(255,255,255,0.9); }
  .site-header.hero-mode .mobile-toggle span { background: rgba(255,255,255,0.9); }
  .overview-grid, .contact-grid, .amen-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .types-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .floor-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .floor-tile.big { grid-row: auto; aspect-ratio: 4/3; }
  .floor-tile { aspect-ratio: 4/3; }
  .map-canvas { height: auto; padding-bottom: 24px; }
  .map-card { position: static; width: 100%; margin-top: 16px; }
  .map-pin-center { position: relative; top: auto; left: auto; transform: none; margin: 32px 0; }
  .map-svg { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .types-grid, .products-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta-row { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero-meta-item:nth-child(2) { border-right: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .specs { grid-template-columns: 1fr; }
}

/* Reveal animations — gentle, smooth, subtle */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: translate3d(0, 0, 0); }

.reveal-left {
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal-left.in { opacity: 1; transform: translate3d(0, 0, 0); }

.reveal-right {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal-right.in { opacity: 1; transform: translate3d(0, 0, 0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

.reveal-blur {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 14px, 0);
  transition: opacity 900ms var(--ease-out), filter 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity, filter;
}
.reveal-blur.in { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }

@keyframes float-slow {
  0%, 100% { transform: translateY(0) scale(1.05); }
  50% { transform: translateY(-8px) scale(1.055); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translate3d(0, -14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-bg { animation: float-slow 22s ease-in-out infinite; }
.hero h1 { animation: fadeInUp 1000ms var(--ease-out) both; animation-delay: 240ms; }
.hero-eyebrow { animation: fadeInUp 900ms var(--ease-out) both; animation-delay: 100ms; }
.hero .hero-lead { animation: fadeInUp 1000ms var(--ease-out) both; animation-delay: 440ms; }
.hero-ctas { animation: fadeInUp 1000ms var(--ease-out) both; animation-delay: 620ms; }
.hero-meta { animation: fadeIn 1200ms var(--ease-out) both; animation-delay: 820ms; }
.hero-meta-item { animation: fadeInUp 900ms var(--ease-out) both; opacity: 0; }
.hero-meta-item:nth-child(1) { animation-delay: 900ms; }
.hero-meta-item:nth-child(2) { animation-delay: 980ms; }
.hero-meta-item:nth-child(3) { animation-delay: 1060ms; }
.hero-meta-item:nth-child(4) { animation-delay: 1140ms; }
.site-header { animation: slideDown 700ms var(--ease-out) both; animation-delay: 50ms; }

/* gold underline link */
.link-gold, .link-navy { position: relative; }
.link-gold::after, .link-navy::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 360ms var(--ease);
}
.link-gold:hover::after, .link-navy:hover::after { width: 100%; }

/* smooth scroll for in-page anchors */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* hero rule shimmer */
.hero-eyebrow .ln {
  position: relative;
  overflow: hidden;
}
.hero-eyebrow .ln::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: shimmer-line 3.2s ease-in-out infinite;
}
@keyframes shimmer-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(200%); }
}

/* underlines + nav hover */
.nav-link::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: all 280ms var(--ease);
  transform: translateX(-50%);
}
.nav-link:hover::before { width: 100%; }
.nav-link.active::after { display: none; }
.nav-link.active::before { width: 100%; }

/* card lift micro */
.type-card, .product, .article, .floor-tile {
  will-change: transform;
}

/* button shine */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transition: left 700ms var(--ease);
}
.btn-gold:hover::before { left: 130%; }

/* map pulses subtler */
.map-card { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Listing + Detail page styles — extends styles.css */

/* Sub-hero banner */
.page-hero {
  position: relative;
  padding: 156px 0 80px;
  overflow: hidden;
  background: var(--navy-700);
  color: #fff;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background: url("/uploads/page-hero-bg.jpg") center / cover no-repeat;
  opacity: 0.45;
  filter: saturate(0.85);
  transform: scale(1.05);
  animation: float-slow 24s ease-in-out infinite;
}
.page-hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,40,80,0.62), rgba(0,40,80,0.78));
}
.page-hero .container { position: relative; z-index: 2; }
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--gold-500); }
.crumbs .sep { opacity: 0.5; }
.crumbs .cur { color: var(--gold-500); }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 22ch;
}
.page-hero h1 .italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-500);
}
.page-hero p.lead {
  max-width: 56ch;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.65;
}
.page-hero .meta-strip {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 32px;
}
.page-hero .meta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
}
.page-hero .meta-pill .ic { width: 16px; height: 16px; color: var(--gold-500); }
.page-hero .meta-pill .v { color: var(--gold-500); }

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 78px;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--slate-200);
  padding: 18px 0;
  transition: padding 220ms var(--ease);
}
.filter-bar.compact { padding: 12px 0; }
.filter-inner {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 767px) and (min-width: 360px) {
  #filter-form .filter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (max-width: 359px) {
  #filter-form .filter-inner { display: flex; flex-direction: column; }
  #filter-form .filter-inner input,
  #filter-form .filter-inner select { width: 100%; }
}
.filter-tabs {
  display: flex; align-items: center; gap: 2px;
  background: var(--slate-100);
  padding: 4px;
  border-radius: 999px;
}
.filter-tabs button {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  transition: all 200ms var(--ease);
}
.filter-tabs button.active {
  background: var(--navy-700);
  color: #fff;
}
.filter-tabs button:not(.active):hover { color: var(--navy-700); }

.filter-select {
  position: relative;
  min-width: 160px;
}
.filter-select select {
  width: 100%;
  appearance: none;
  background: #fff;
  border: 1px solid var(--slate-200);
  padding: 12px 38px 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
  transition: all 200ms var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230066B2' d='M6 8 0 1.05 1.05 0 6 4.6 10.95 0 12 1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.filter-select select:hover { border-color: var(--navy-600); }
.filter-select select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(236,194,70,0.18); }

.filter-search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.filter-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--slate-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 200ms var(--ease);
}
.filter-search input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(236,194,70,0.18); }
.filter-search .ic {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--slate-400);
}

.filter-view {
  display: flex; gap: 2px;
  background: var(--slate-100);
  padding: 4px;
  border-radius: 8px;
}
.filter-view button {
  width: 36px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: var(--slate-500);
  transition: all 200ms var(--ease);
}
.filter-view button.active {
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--sh-1);
}

.filter-chips {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--slate-200);
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-50);
  color: var(--navy-700);
  padding: 6px 10px 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.filter-chip .x {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,78,138,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--navy-700);
  font-size: 11px;
  line-height: 1;
}
.filter-chip .x:hover { background: var(--navy-700); color: #fff; }
.filter-clear {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.filter-clear:hover { color: var(--gold-600); }

/* Listing grid */
.listing-section { padding: 56px 0 96px; background: var(--paper); }
.listing-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.listing-count {
  font-size: 14px; color: var(--slate-600);
}
.listing-count strong {
  color: var(--navy-700); font-weight: 800;
}
.listing-sort {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--slate-600);
}
.listing-sort .sort-lbl {
  letter-spacing: 0.04em;
}
.listing-sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-700);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 12 8'%3E%3Cpath fill='%230066B2' d='M6 8 0 1.05 1.05 0 6 4.6 10.95 0 12 1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.listing-grid.list-view {
  grid-template-columns: 1fr;
}
.listing-grid.list-view .product {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.listing-grid.list-view .product .img { aspect-ratio: auto; height: 100%; min-height: 240px; }
.listing-grid.list-view .product .body { padding: 28px; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px;
  margin-top: 56px;
}
.pg-btn {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  background: #fff;
  border: 1px solid var(--slate-200);
  transition: all 200ms var(--ease);
}
.pg-btn:hover:not(:disabled) { border-color: var(--navy-700); color: var(--navy-700); }
.pg-btn.active { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.pg-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pg-btn.arrow { padding: 0 14px; gap: 6px; }
.pg-ellipsis { padding: 0 6px; color: var(--slate-400); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: #fff;
  border: 1px dashed var(--slate-200);
  border-radius: 6px;
}
.empty-state .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-400);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.empty-state h3 {
  font-size: 22px;
  color: var(--navy-700);
  margin: 0 0 8px;
  font-weight: 700;
}
.empty-state p { color: var(--slate-500); margin: 0; }

/* ============================================ */
/* DETAIL PAGE                                 */
/* ============================================ */
.detail-hero {
  padding: 110px 0 0;
  background: var(--paper);
}
.detail-hero .crumbs {
  margin: 16px 0 28px;
  color: var(--slate-500);
}
.detail-hero .crumbs a { color: var(--slate-600); }
.detail-hero .crumbs a:hover { color: var(--navy-700); }
.detail-hero .crumbs .cur { color: var(--navy-700); }

.detail-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 32px;
}
.detail-top .heading h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy-700);
  margin: 0 0 14px;
}
.detail-top .tag-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.detail-top .tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-50);
  color: var(--navy-700);
  padding: 6px 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
}
.detail-top .tag.live {
  background: var(--navy-700);
  color: #fff;
}
.detail-top .tag.live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(236,194,70,0.3);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.detail-top .heading .sub {
  font-size: 15px;
  color: var(--slate-600);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.detail-top .heading .sub .dot { color: var(--slate-300); }
.detail-top .actions {
  display: flex; gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.detail-top .icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  transition: all 220ms var(--ease);
}
.detail-top .icon-btn:hover {
  color: var(--navy-700);
  border-color: var(--navy-600);
  transform: translateY(-2px);
}
.detail-top .icon-btn svg { width: 18px; height: 18px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  height: 460px;
  margin-bottom: 32px;
}
.gallery .g-main {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
}
.gallery .g-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery > div:hover img { transform: scale(1.04); }
.gallery .g-more {
  position: absolute; inset: 0;
  background: rgba(0,40,80,0.55);
  backdrop-filter: blur(2px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
}
.gallery .g-more .v { font-size: 26px; }
.gallery .g-more .k { font-size: 10px; letter-spacing: 0.2em; margin-top: 4px; text-transform: uppercase; opacity: 0.7; }
.gallery .g-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,28,56,0.55) 100%);
}
.gallery .g-main .gtag {
  position: absolute;
  top: 18px; left: 18px;
  display: flex; gap: 8px;
}
.gallery .g-main .gtag .tag {
  background: rgba(255,255,255,0.94);
  color: var(--navy-700);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
}
.gallery .g-main .gcaption {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 2;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Two-column layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  padding: 56px 0 96px;
  align-items: flex-start;
}

/* Detail blocks */
.dblock {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
.dblock-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-100);
}
.dblock-head h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-700);
  margin: 0;
  letter-spacing: -0.005em;
}
.dblock-head .eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
}

.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.kv {
  display: flex; gap: 14px; align-items: flex-start;
}
.kv .ic {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-50);
  color: var(--gold-600);
  border-radius: 6px;
  flex-shrink: 0;
}
.kv .ic svg { width: 18px; height: 18px; }
.kv .k {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--slate-500); margin-bottom: 4px;
}
.kv .v {
  font-size: 15px; font-weight: 700; color: var(--navy-700);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--slate-700);
}
.feature-item .ck {
  width: 20px; height: 20px;
  background: var(--gold-50);
  color: var(--gold-600);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item .ck svg { width: 12px; height: 12px; }

.prose p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-700);
  margin: 0 0 14px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy-700); font-weight: 700; }

/* Floor plan viewer */
.floorplan-viewer {
  position: relative;
  background: var(--navy-25);
  border-radius: 6px;
  padding: 32px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.floorplan-viewer img {
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
}
.floorplan-controls {
  display: flex; gap: 8px;
}
.floorplan-controls button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--slate-600);
  transition: all 200ms var(--ease);
}
.floorplan-controls button:hover { color: var(--navy-700); border-color: var(--navy-600); }

/* Mini map */
.mini-map {
  position: relative;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  background: url("/uploads/contact-bg.jpg") center / cover no-repeat;
  margin-top: 8px;
}
.mini-map::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,40,80,0.4), rgba(0,40,80,0.6));
}
.mini-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: #fff;
}
.mini-pin .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(236,194,70,0.25);
  position: relative;
}
.mini-pin .dot::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(236,194,70,0.6);
  animation: pulse 2.4s ease-out infinite;
}
.mini-pin .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: 999px;
}
.mini-map .addr {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0,28,56,0.6);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 6px;
}
.mini-map .addr .k {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.7;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* Sticky sidebar */
.detail-side {
  position: sticky;
  top: 100px;
}
.price-card {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  color: #fff;
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(closest-side, rgba(236,194,70,0.25), transparent);
}
.price-card .eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
}
.price-card .price .unit { font-size: 18px; font-weight: 600; opacity: 0.7; margin-left: 4px; }
.price-card .price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 4px 0 24px;
}
.price-card .quick-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.price-card .qm .v {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-500);
}
.price-card .qm .k {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 4px;
}
.price-card .cta-row {
  display: flex; flex-direction: column; gap: 10px;
}
.price-card .btn { width: 100%; height: 50px; }
.price-card .btn-gold { background: var(--gold-500); }
.price-card .agent-strip {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.price-card .agent-strip .ava {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.price-card .agent-strip .info .name { font-size: 15px; font-weight: 700; }
.price-card .agent-strip .info .role { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card .agent-strip .call {
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
}

.quick-form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 28px;
}
.quick-form h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-700);
  margin: 0 0 6px;
}
.quick-form .sub {
  font-size: 13px; color: var(--slate-500);
  margin-bottom: 18px;
}
.quick-form .qf-field {
  margin-bottom: 12px;
}
.quick-form input, .quick-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-size: 14px;
  background: var(--paper);
  transition: all 200ms var(--ease);
}
.quick-form input:focus, .quick-form textarea:focus {
  outline: none; border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(236,194,70,0.15);
}
.quick-form textarea { min-height: 80px; resize: vertical; font-family: var(--font-sans); }
.quick-form .qf-cta { width: 100%; height: 48px; margin-top: 6px; }
.quick-form .legal {
  font-size: 11px;
  line-height: 1.55;
  color: var(--slate-500);
  margin-top: 12px;
}

/* Similar */
.similar {
  padding: 88px 0 96px;
  background: var(--paper);
  border-top: 1px solid var(--slate-200);
}
.similar .container > h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-700);
  margin: 0 0 8px;
}
.similar .container > p {
  font-size: 15px;
  color: var(--slate-600);
  margin: 0 0 40px;
}

/* Responsive */
@media (max-width: 1080px) {
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-side { position: static; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; height: 412px; }
  .gallery .g-main { grid-row: span 2; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-grid.list-view .product { grid-template-columns: 1fr; }
  .detail-top { grid-template-columns: 1fr; align-items: flex-start; }
  .detail-top .actions { justify-content: flex-start; }
  .filter-bar { top: 68px; }
}
@media (max-width: 640px) {
  .listing-grid, .listing-grid.list-view { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 240px 120px 120px; height: auto; }
  .gallery .g-main { grid-row: auto; aspect-ratio: 4/3; }
  .kv-grid, .feature-list { grid-template-columns: 1fr; }
  .filter-bar { position: static; }
  .page-hero { padding: 130px 0 60px; }
  .dblock { padding: 24px 22px; }
}
