/* =========================================================
   LEGACY89 SIGNATURE — EDITORIAL LUXURY DESIGN SYSTEM
   ========================================================= */

:root {
  --ink: #0b2016;
  --ink-2: #133425;
  --ink-3: #1c4a34;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --sand: #e9e0d0;
  --gold: #b99752;
  --gold-light: #ddc68f;
  --gold-dark: #8f6f34;
  --white: #fff;
  --text: #17291f;
  --muted: #68766e;
  --line: rgba(11, 32, 22, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-stat: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page: clamp(20px, 4.5vw, 64px);
  --section: clamp(76px, 9vw, 132px);
  --nav-h: 68px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 22px 70px rgba(7, 24, 15, 0.13);
  --gradient-gold: linear-gradient(135deg, #a8823d, #e0c98f);
  --green-deep: var(--ink);
  --green-dark: var(--ink-2);
  --green-mid: var(--ink-3);
  --green-light: #2a6040;
  --cream: var(--ivory);
  --cream-light: var(--paper);
  --text-dark: var(--text);
  --text-body: #35473d;
  --text-muted: var(--muted);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.popup-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: rgba(185, 151, 82, 0.3);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container,
.overview-banner-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-inline: var(--page);
}

.hidden {
  display: none !important;
}

/* Motion */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 1380px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(8, 27, 17, 0.7);
  box-shadow: 0 12px 44px rgba(4, 15, 9, 0.16);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 27, 17, 0.94);
  border-color: rgba(221, 198, 143, 0.2);
  box-shadow: 0 14px 50px rgba(4, 15, 9, 0.24);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding-inline: 18px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 42px;
  flex: 0 0 28px;
  overflow: hidden;
}

.brand-mark .nav-logo-img,
.brand-mark .footer-logo-img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 50px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: brightness(0) saturate(100%) invert(82%) sepia(28%) saturate(668%) hue-rotate(356deg) brightness(93%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.logo-sub {
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 10px 11px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active:not(.nav-cta-btn) {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.075);
}

.nav-link.nav-cta-btn {
  margin-left: 8px;
  padding-inline: 17px;
  border: 1px solid rgba(221, 198, 143, 0.48);
  color: var(--gold-light);
}

.nav-link.nav-cta-btn:hover,
.nav-link.nav-cta-btn.active {
  background: var(--gold);
  color: var(--ink) !important;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-right {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.02);
  transition: transform 9s var(--ease);
}

.hero:hover .hero-right-img {
  transform: scale(1);
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 21, 13, 0.96) 0%, rgba(5, 21, 13, 0.82) 34%, rgba(5, 21, 13, 0.28) 64%, rgba(5, 21, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 17, 10, 0.72), transparent 38%);
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max(760px, 100svh);
  padding:
    clamp(138px, 16vh, 180px)
    max(var(--page), calc((100vw - 1380px) / 2 + var(--page)))
    188px;
}

.hero-left > * {
  max-width: 650px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fade-up 0.7s both;
}

.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 500;
  text-transform: uppercase;
}

.badge-dot {
  display: inline-block;
  width: 6px !important;
  height: 6px !important;
  margin-right: 9px !important;
  background: #77c891 !important;
  box-shadow: 0 0 10px rgba(119, 200, 145, 0.5);
  animation: pulse 1.8s infinite !important;
}

.hero-title {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.74;
  animation: fade-up 0.8s 0.08s both;
}

.title-line,
.title-signature {
  display: block;
}

.title-signature {
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 0.54em;
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  animation: fade-up 0.8s 0.16s both;
}

.hero-desc {
  max-width: 535px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.8;
  animation: fade-up 0.8s 0.22s both;
}

.hero-price {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 28px;
  padding: 12px 0;
  border-block: 1px solid rgba(221, 198, 143, 0.28);
  animation: fade-up 0.8s 0.28s both;
}

.price-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.69rem;
  text-transform: uppercase;
}

.price-sep {
  width: 1px;
  height: 24px;
  margin-inline: 16px;
  background: rgba(221, 198, 143, 0.26);
}

.price-value {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fade-up 0.8s 0.34s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: #c6a661;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(7, 22, 14, 0.22);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-stats {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 44px), 1250px);
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(7, 24, 15, 0.75);
  backdrop-filter: blur(18px);
}

.stat-item {
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-number,
.stat-unit {
  color: var(--gold-light);
  font-family: var(--font-display);
}

.stat-number {
  font-size: 1.75rem;
  line-height: 1;
}

.stat-unit {
  margin-left: 3px;
  font-size: 0.85rem;
}

.stat-label {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
}

/* Floating actions */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(4, 18, 10, 0.2);
  transition: transform 0.25s var(--ease);
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-btn-call {
  background: #258956;
}

.float-btn-zalo {
  background: #1676da;
}

.float-zalo-text {
  font-size: 0.68rem;
  font-weight: 700;
}

.float-btn-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  padding: 7px 10px;
  transform: translateY(-50%) translateX(5px);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.69rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.2s ease;
}

.float-btn:hover .float-btn-label {
  opacity: 1;
  transform: translateY(-50%);
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 24, 15, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pulse-ring {
  display: none;
}

/* Shared section typography */
.section {
  position: relative;
  padding: var(--section) 0;
}

.section-tag,
.strip-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-tag::before,
.strip-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-title,
.strip-title {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.3vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
}

.section-title em,
.strip-title em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}

.section-desc {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.title-row .section-desc {
  max-width: 430px;
  padding-bottom: 5px;
  text-align: right;
}

.section-cream {
  background: var(--ivory);
}

.text-gold {
  color: var(--gold);
}

.text-gold-light {
  color: var(--gold-light);
}

/* First image strip is redundant after the full-bleed hero */
#strip-1 {
  display: none;
}

#strip-1 .img-strip-bg {
  background-image: url("assets/2aoboqatylz4wyemtw4fgwvpalifvh4c5qrmdabo13.jpg");
}

#strip-2 .img-strip-bg {
  background-image: url("assets/2aoboqatymo69r0vy7pfkbtrwgjgtjv5r98wng6k15.jpg");
}

#strip-3 .img-strip-bg {
  background-image: url("assets/IMG_9564.JPG");
}

.img-strip {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: var(--ink);
}

.img-strip-bg,
.img-strip-overlay {
  position: absolute;
  inset: 0;
}

.img-strip-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.img-strip-overlay {
  background: linear-gradient(90deg, rgba(5, 21, 13, 0.88), rgba(5, 21, 13, 0.42) 58%, rgba(5, 21, 13, 0.08));
}

.img-strip-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 770px;
  padding-left: max(var(--page), calc((100vw - 1380px) / 2 + var(--page)));
  padding-right: var(--page);
}

.strip-label {
  color: var(--gold-light);
}

.strip-title {
  margin-bottom: 18px;
  color: var(--white);
}

.strip-title em {
  color: var(--gold-light);
}

.strip-desc {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.92rem;
  line-height: 1.8;
}

.strip-action {
  margin-top: 28px;
}

/* Overview */
.overview {
  padding: 0;
  background: var(--paper);
}

.overview-banner-wrap {
  position: relative;
  height: min(620px, 70vw);
  min-height: 430px;
  overflow: hidden;
}

.overview-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.overview-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(5, 21, 13, 0.9), transparent 62%);
}

.overview-banner-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 34px;
}

.obi-item {
  min-width: 0;
  padding-inline: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.obi-item:first-child {
  padding-left: 0;
}

.obi-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.obi-label {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.obi-value {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.45;
}

.overview-bottom {
  padding: clamp(76px, 8vw, 108px) 0;
  background: var(--ink);
}

.overview-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 7vw, 92px);
}

.overview-bottom .section-title {
  color: var(--white) !important;
}

.overview-bottom .section-title em {
  color: var(--gold-light);
}

.overview-bottom .section-tag {
  color: var(--gold-light);
}

.overview-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ov-spec {
  min-height: 96px;
  padding: 17px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ov-spec-label {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.ov-spec-value {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
}

.overview-detail p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.93rem;
  line-height: 1.9;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(221, 198, 143, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
}

/* Location */
.location {
  background: var(--paper);
}

.location .section-title {
  color: var(--text) !important;
}

.location .section-desc {
  color: var(--muted) !important;
}

.location-map-full {
  margin-bottom: 24px;
}

.map-gif-wrap,
.amenity-map-full {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-gif-img,
.amenity-map-img-full {
  width: 100%;
}

.map-gif-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 9px 12px;
  border-radius: 4px;
  background: rgba(7, 24, 15, 0.82);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  backdrop-filter: blur(10px);
}

.location-points-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.point-group {
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.point-group-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.point-item {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 32, 22, 0.07);
}

.point-item:last-child {
  border-bottom: 0;
}

.point-dist {
  min-width: 68px;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 600;
}

.point-name {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Apartments */
.apartments {
  background: var(--ivory);
}

.apt-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.apt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.apt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.apt-card.featured {
  border-color: rgba(185, 151, 82, 0.45);
  background: var(--ink);
}

.apt-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: var(--gold);
}

.apt-3d-wrap {
  position: relative;
  overflow: hidden;
}

.apt-3d-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}

.apt-card:hover .apt-3d-img {
  transform: scale(1.035);
}

.apt-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.apt-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
  margin-bottom: 10px;
}

.apt-badge {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 600;
  text-transform: uppercase;
}

.apt-badge.popular {
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--ink);
}

.apt-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.apt-desc {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.apt-specs {
  flex: 1;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}

.apt-spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.spec-ico-svg {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  opacity: 0.65;
}

.spec-k {
  flex: 1;
  color: var(--muted);
  font-size: 0.76rem;
}

.spec-v {
  color: var(--ink-2);
  font-size: 0.79rem;
  font-weight: 600;
}

.apt-btn {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--ink-2);
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: 0.73rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.apt-btn:hover {
  background: var(--ink-2);
  color: var(--white);
}

.featured .apt-badge,
.featured .apt-desc,
.featured .spec-k {
  color: rgba(255, 255, 255, 0.53);
}

.featured h3 {
  color: var(--white);
}

.featured .apt-specs,
.featured .apt-spec-row {
  border-color: var(--line-light);
}

.featured .spec-v {
  color: var(--gold-light);
}

.featured-btn {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.featured-btn:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.apt-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: italic;
  text-align: center;
}

/* Amenities */
.amenities {
  background: var(--ink);
}

.amenities .section-title {
  color: var(--white) !important;
}

.amenities .section-title em {
  color: var(--gold-light);
}

.amenities .section-tag {
  color: var(--gold-light);
}

.amenities .section-desc,
.legal .section-desc {
  color: rgba(255, 255, 255, 0.56);
}

.amenity-map-full {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  border-color: var(--line-light);
  background: transparent;
  cursor: zoom-in;
}

.amenity-map-img-full {
  transition: transform 0.5s var(--ease);
}

.amenity-map-button:hover .amenity-map-img-full {
  transform: scale(1.012);
}

.amenity-map-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(5, 21, 13, 0.76);
  color: var(--white);
  font-size: 0.69rem;
  backdrop-filter: blur(10px);
}

.amenity-group-label {
  margin-bottom: 16px;
}

.amenity-group-label > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.amenity-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.amenity-card {
  min-height: 170px;
  padding: 26px 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  transition: background 0.25s ease;
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.amenity-icon-svg,
.legal-icon-svg,
.channel-icon-svg {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 17px;
  border: 1px solid rgba(221, 198, 143, 0.24);
  border-radius: 50%;
  background: transparent;
}

.amenity-card h4 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Bento amenity gallery */
.gallery-section {
  padding: var(--section) 0;
  background: var(--paper);
}

.gallery-heading {
  margin-bottom: 34px;
}

.gallery-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.gallery-heading .section-title {
  margin-bottom: 0;
}

.gallery-heading-row p {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  text-align: right;
}

.amenity-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 13vw, 205px);
  gap: 7px;
  width: min(calc(100% - 14px), 1510px);
  margin: 0 auto;
}

.amenity-gallery .amenity-shot:nth-child(n) {
  grid-column: span 3;
  grid-row: span 1;
}

.amenity-gallery .amenity-shot:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.amenity-gallery .amenity-shot:nth-child(6),
.amenity-gallery .amenity-shot:nth-child(7) {
  grid-column: span 6;
}

.amenity-gallery .amenity-shot:nth-child(n + 8) {
  grid-column: span 4;
}

.gal-item,
.amenity-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--ink-2);
  cursor: zoom-in;
}

.gal-item img,
.amenity-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.35s ease;
}

.gal-item:hover img,
.amenity-shot:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.04);
}

.gal-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 15px 13px;
  background: linear-gradient(transparent, rgba(3, 15, 8, 0.8));
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  pointer-events: none;
}

.amenity-shot::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(4, 17, 10, 0.35);
  color: var(--white);
  font-size: 1.05rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(8px);
}

.amenity-shot:hover::after,
.amenity-shot:focus-visible::after {
  opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 90px;
  background: rgba(2, 11, 6, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(15px);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  width: min(1180px, 100%);
  max-height: calc(100dvh - 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #041009;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100dvh - 150px);
  min-height: 260px;
  object-fit: contain;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  gap: 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-light);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 26, 16, 0.72);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
  border-radius: 4px;
  font-size: 2rem;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Interior */
.interior {
  background: var(--ivory);
}

.interior-showcase {
  margin-top: 6px;
}

.interior-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interior-tab {
  min-height: 46px;
  padding: 9px 17px;
  border: 1px solid rgba(16, 39, 27, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.interior-tab:hover,
.interior-tab:focus-visible {
  color: var(--ink);
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.interior-tab.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(16, 39, 27, 0.16);
}

.interior-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 2px 20px;
}

.interior-gallery-heading h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
}

.interior-gallery-heading p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: right;
}

.interior-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 14vw, 178px);
  gap: 8px;
}

.interior-shot {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  cursor: zoom-in;
}

.interior-shot.is-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.interior-shot.is-side {
  grid-column: span 5;
}

.interior-shot.is-last-wide {
  grid-column: span 8;
}

.interior-shot.is-last-full {
  grid-column: span 12;
}

.interior-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 20, 13, 0.78));
  transition: background 0.35s var(--ease);
}

.interior-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.interior-shot-meta {
  position: absolute;
  right: 17px;
  bottom: 14px;
  left: 17px;
  z-index: 1;
  display: block;
  color: var(--white);
  text-align: left;
}

.interior-shot-meta > span {
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interior-shot:hover img,
.interior-shot:focus-visible img {
  transform: scale(1.035);
}

.interior-shot:hover::after,
.interior-shot:focus-visible::after {
  background: linear-gradient(180deg, rgba(5, 20, 13, 0.05) 35%, rgba(5, 20, 13, 0.9));
}

.interior-shot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.interior-gallery-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.69rem;
}

.interior-gallery-hint span {
  color: var(--gold-dark);
  font-size: 1rem;
}

.interior-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item-v {
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-num-v {
  margin-bottom: 15px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.feature-item-v h4 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.84rem;
}

.feature-item-v p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.68;
}

/* Legal */
.legal {
  background: var(--ink-2);
}

.legal .section-title {
  color: var(--white) !important;
}

.legal .section-title em {
  color: var(--gold-light);
}

.legal .section-tag {
  color: var(--gold-light);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.legal-card {
  position: relative;
  min-height: 260px;
  padding: 34px 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.legal-num {
  position: absolute;
  top: 17px;
  right: 17px;
  color: rgba(221, 198, 143, 0.35);
  font-size: 0.63rem;
}

.legal-icon-svg {
  margin-bottom: 20px;
}

.legal-card h4 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.86rem;
}

.legal-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.72;
}

/* Reasons */
.reasons {
  background: var(--paper);
}

.reasons-bg,
.contact-bg {
  display: none;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.reason-item:hover {
  background: var(--ivory);
}

.reason-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.reason-content h4 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.87rem;
}

.reason-content p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.reason-icon {
  display: none;
}

/* Sales profile */
.sales-profile {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.sales-profile::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(185, 151, 82, 0.18);
  border-radius: 50%;
}

.sales-profile-heading {
  position: relative;
  z-index: 1;
}

.sales-profile-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid rgba(11, 32, 22, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sales-profile-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
}

.sales-profile-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5, 21, 13, 0.7)),
    linear-gradient(90deg, rgba(5, 21, 13, 0.06), transparent 58%);
  pointer-events: none;
}

.sales-profile-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(221, 198, 143, 0.28);
  border-radius: 8px;
  pointer-events: none;
}

.sales-profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% 46%;
  transform: scale(1.06);
  filter: brightness(1.16) contrast(0.97) saturate(1.04);
}

.sales-profile-signature {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sales-profile-signature span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-profile-signature strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.sales-profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
}

.sales-profile-role {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-profile-content h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.sales-profile-intro {
  max-width: 660px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.78;
}

.sales-profile-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sales-service {
  min-height: 126px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sales-service > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.sales-service strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.75rem;
}

.sales-service p {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.55;
}

.sales-profile-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}

.sales-profile-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.76rem;
  transition: color 0.2s var(--ease);
}

.sales-profile-contacts a:hover {
  color: var(--gold-dark);
}

.sales-profile-contacts svg {
  flex: 0 0 auto;
  color: var(--gold-dark);
}

.sales-profile-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.sales-profile-actions .btn {
  min-width: 154px;
}

.sales-zalo-btn {
  border: 1px solid rgba(11, 32, 22, 0.2);
  background: transparent;
  color: var(--ink);
}

.sales-zalo-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* Contact */
.contact {
  background: var(--ink);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.contact-info,
.contact-form-wrap {
  padding: clamp(40px, 5vw, 68px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-light);
  background: var(--ink-2);
}

.contact-title {
  margin: 12px 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.contact-title em {
  color: var(--gold-light);
  font-style: italic;
}

.contact-desc {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  line-height: 1.78;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
}

.channel-icon-svg {
  flex: 0 0 42px;
  margin: 0;
}

.channel-label {
  margin-bottom: 2px;
  color: var(--gold-light);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.channel-value {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.83rem;
}

.contact-form-wrap {
  display: flex;
  align-items: center;
  background: #0e2a1d;
}

.contact-form {
  width: 100%;
}

.form-title {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.form-subtitle {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.form-highlight {
  color: var(--gold-light);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 13px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea,
.popup-field input,
.popup-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 0.84rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.popup-field input:focus,
.popup-field select:focus {
  border-color: rgba(221, 198, 143, 0.58);
  background: rgba(255, 255, 255, 0.07);
}

.form-group select option,
.popup-field select option {
  background: var(--ink-2);
}

.form-submit,
.popup-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 49px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit:disabled,
.popup-btn-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.spin {
  animation: spin 0.9s linear infinite;
}

.inline-icon {
  display: inline-block;
  margin-right: 4px;
  opacity: 0.6;
  vertical-align: middle;
}

.form-note,
.popup-note {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.33);
  font-size: 0.69rem;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status,
.popup-form-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--gold-light);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.form-status.error,
.popup-form-status.error {
  color: #f0a3a3;
}

.form-success {
  padding: 42px 20px;
  text-align: center;
}

.success-icon {
  margin-bottom: 14px;
  font-size: 2.5rem;
}

.form-success h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.7;
}

.success-brand {
  color: var(--gold-light);
}

.success-followup {
  margin-top: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line-light);
  background: #07180f;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding-block: 58px 44px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-slogan {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.footer-address,
.footer-phone {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-phone a {
  color: var(--gold-light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.78rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
}

.footer-disclaimer {
  font-style: italic;
}

/* Lead popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 13, 7, 0.76);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-box {
  position: relative;
  width: min(430px, 100%);
  overflow: hidden;
  border: 1px solid rgba(221, 198, 143, 0.28);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(14px);
  transition: transform 0.3s var(--ease);
}

.popup-overlay.active .popup-box {
  transform: none;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.popup-close:hover {
  border-color: rgba(221, 198, 143, 0.45);
  background: rgba(221, 198, 143, 0.1);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.popup-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.popup-header {
  padding: 38px 30px 25px;
  border-bottom: 1px solid var(--line-light);
  text-align: center;
}

.popup-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.popup-eyebrow-icon {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(221, 198, 143, 0.28);
  border-radius: 50%;
  background: rgba(221, 198, 143, 0.07);
}

.popup-eyebrow-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popup-title {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.popup-title em {
  color: var(--gold-light);
  font-style: italic;
}

.popup-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.6;
}

.popup-stage {
  padding: 24px 26px 27px;
}

.popup-gifts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.popup-gifts li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.popup-gift-icon {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(221, 198, 143, 0.24);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(221, 198, 143, 0.12), rgba(221, 198, 143, 0.035));
  color: var(--gold-light);
}

.popup-gift-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popup-btn-outline {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-field input.error {
  border-color: #c96262;
}

.popup-success {
  padding: 8px 0;
  text-align: center;
}

.popup-success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 1px solid rgba(221, 198, 143, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
}

.popup-success-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popup-success h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.popup-success p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.79rem;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-link {
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  .title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .title-row .section-desc {
    max-width: 680px;
    text-align: left;
  }

  .overview-content {
    grid-template-columns: 1fr;
  }

  .location-points-row {
    grid-template-columns: 1fr;
  }

  .apt-card-body {
    padding: 22px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 62px;
  }

  .navbar {
    top: 8px;
    width: calc(100% - 16px);
  }

  .hamburger {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: min(340px, calc(100vw - 30px));
    height: 100dvh;
    padding: 92px 26px 30px;
    transform: translateX(105%);
    border-left: 1px solid var(--line-light);
    background: rgba(5, 21, 13, 0.98);
    box-shadow: -22px 0 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s var(--ease);
  }

  .nav-menu.open {
    transform: none;
  }

  .nav-link {
    padding: 15px 3px;
    border-bottom: 1px solid var(--line-light);
    border-radius: 0;
    font-size: 0.83rem;
  }

  .nav-link.nav-cta-btn {
    margin: 14px 0 0;
    border: 1px solid rgba(221, 198, 143, 0.44);
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .hero-right-img {
    object-position: 65% center;
  }

  .hero-right::after {
    background:
      linear-gradient(90deg, rgba(5, 21, 13, 0.94), rgba(5, 21, 13, 0.58) 74%, rgba(5, 21, 13, 0.25)),
      linear-gradient(0deg, rgba(4, 17, 10, 0.76), transparent 52%);
  }

  .overview-banner-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .obi-item:nth-child(2) {
    border-right: 0;
  }

  .overview-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apt-types {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .amenity-grid-4,
  .legal-grid,
  .interior-features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .gallery-heading-row p {
    max-width: 650px;
    text-align: left;
  }

  .amenity-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(145px, 24vw, 190px);
  }

  .amenity-gallery .amenity-shot:nth-child(n) {
    grid-column: span 3;
    grid-row: span 1;
  }

  .amenity-gallery .amenity-shot:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .amenity-gallery .amenity-shot:nth-child(10) {
    grid-column: span 6;
  }

  .interior-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }

  .interior-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .interior-gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(145px, 22vw, 175px);
  }

  .interior-shot {
    grid-column: span 3;
  }

  .interior-shot.is-featured {
    grid-column: span 4;
  }

  .interior-shot.is-side {
    grid-column: span 2;
  }

  .interior-shot.is-last-wide {
    grid-column: span 3;
  }

  .interior-shot.is-last-full {
    grid-column: span 6;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --page: 18px;
    --section: 70px;
  }

  .nav-container {
    padding-inline: 12px;
  }

  .brand-mark {
    width: 25px;
    height: 36px;
    flex-basis: 25px;
  }

  .brand-mark .nav-logo-img,
  .brand-mark .footer-logo-img {
    width: 45px;
  }

  .hero,
  .hero-left {
    min-height: 880px;
  }

  .hero-left {
    justify-content: flex-start;
    padding: 105px var(--page) 210px;
  }

  .hero-right::after {
    background:
      linear-gradient(90deg, rgba(5, 21, 13, 0.91), rgba(5, 21, 13, 0.46)),
      linear-gradient(0deg, rgba(4, 17, 10, 0.88), rgba(4, 17, 10, 0.18) 70%);
  }

  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .hero-stats {
    bottom: 14px;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
  }

  .stat-item {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line-light);
  }

  .stat-item:nth-child(even) {
    border-right: 0;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-title,
  .strip-title {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .img-strip {
    height: 390px;
  }

  .overview-banner-wrap {
    min-height: 510px;
  }

  .overview-banner-info {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .obi-item,
  .obi-item:first-child {
    padding: 0 0 11px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .overview-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-grid-4,
  .legal-grid,
  .interior-features-row,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card,
  .legal-card {
    min-height: auto;
  }

  .amenity-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    width: calc(100% - 12px);
    gap: 6px;
  }

  .amenity-gallery .amenity-shot:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .amenity-gallery .amenity-shot:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .amenity-gallery .amenity-shot:nth-child(10) {
    grid-column: span 2;
  }

  .amenity-shot::after {
    opacity: 1;
  }

  .interior-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 24px 17px;
  }

  .interior-gallery-heading p {
    max-width: 520px;
    text-align: left;
  }

  .interior-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 145px;
    gap: 6px;
  }

  .interior-shot,
  .interior-shot.is-side,
  .interior-shot.is-last-wide {
    grid-column: span 1;
  }

  .interior-shot.is-featured,
  .interior-shot.is-last-full {
    grid-column: span 2;
  }

  .interior-shot-meta {
    right: 12px;
    bottom: 10px;
    left: 12px;
  }

  .interior-shot-meta > span {
    font-size: 0.55rem;
  }

  .sales-profile-card {
    grid-template-columns: 1fr;
  }

  .sales-profile-visual {
    min-height: 390px;
  }

  .sales-profile-content {
    padding: 44px 32px;
  }

  .sales-profile-services {
    grid-template-columns: 1fr;
  }

  .sales-service {
    min-height: auto;
  }

  .sales-profile-contacts {
    align-items: flex-start;
    flex-direction: column;
  }

  .sales-profile-actions {
    flex-direction: column;
  }

  .sales-profile-actions .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 36px 22px;
  }

  .gallery-lightbox {
    padding: 62px 10px 74px;
  }

  .lightbox-image {
    max-height: calc(100dvh - 220px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 52px;
    height: 44px;
    transform: none;
  }

  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-contact {
    right: auto;
    bottom: 14px;
    left: 14px;
    flex-direction: row;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn-label {
    display: none;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .logo-sub {
    display: none;
  }

  .hero,
  .hero-left {
    min-height: 930px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .overview-specs-grid {
    grid-template-columns: 1fr;
  }

  .sales-profile-visual {
    min-height: 330px;
  }

  .sales-profile-content {
    padding: 34px 20px;
  }

  .floating-cta span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
