:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --navy-light: #152644;
  --gold: #c9a84c;
  --gold-light: #e2c078;
  --gold-pale: #f0d99a;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-muted: #8a9bb5;
  --form-bg: rgba(10, 22, 40, 0.97);
  --border-gold: rgba(201, 168, 76, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif !important;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.serif {
  font-family: "Cormorant Garamond", serif;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ===== LAYOUT WRAPPER ===== */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100vh;
  position: relative;
}

.main-content {
  width: 100%;
}

/* ===== STICKY SIDEBAR FORM ===== */
.sidebar-form-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--navy-mid);
  border-left: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 100;
}

.sidebar-form-inner {
  padding: 40px 32px;
  flex: 1;
}

.sidebar-form-wrapper .form-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sidebar-form-wrapper h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.sidebar-form-wrapper h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.sidebar-form-wrapper p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ===== FORM STYLES (shared) ===== */
.luxury-form .form-group {
  margin-bottom: 16px;
}

.luxury-form label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.luxury-form input,
.luxury-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.luxury-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.luxury-form input:focus,
.luxury-form select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.luxury-form select option {
  background: var(--navy-mid);
  color: var(--white);
}

.luxury-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.luxury-form .checkbox-row input[type="checkbox"] {
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--gold);
  padding: 0;
}

.luxury-form .checkbox-row label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-gold {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  border: none;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-position 0.4s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-gold:hover .btn-shine {
  left: 150%;
}

.form-disclaimer {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 24px 0;
}

.sidebar-highlight {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-gold);
  padding: 16px;
  text-align: center;
}

.sidebar-highlight .sh-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-highlight .sh-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

.sidebar-highlight .sh-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 380px);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(10, 22, 40, 0.98);
  border-bottom: 1px solid var(--border-gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand {
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-text .sub {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(21, 38, 68, 0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

.hero-number {
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 400px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 60px 80px;
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

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

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.hero-stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat .label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.btn-outline {
  padding: 14px 32px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.btn-gold-sm {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s 0.8s ease both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(0.5);
    opacity: 0.5;
  }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 100px 60px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

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

.section-eyebrow span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "CANDEUR";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.04);
  letter-spacing: 20px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #152644 0%, #0d1f3c 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(201, 168, 76, 0.15);
}

.building-graphic {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  padding: 20px;
}

.bld {
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 30%,
    rgba(201, 168, 76, 0.3) 100%
  );
  border-radius: 2px 2px 0 0;
  animation: buildRise 1.5s ease both;
}

.bld:nth-child(1) {
  width: 60px;
  height: 220px;
  animation-delay: 0.1s;
}
.bld:nth-child(2) {
  width: 60px;
  height: 280px;
  animation-delay: 0.2s;
}
.bld:nth-child(3) {
  width: 60px;
  height: 260px;
  animation-delay: 0.3s;
}

@keyframes buildRise {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-badge .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  text-align: center;
  margin-top: 2px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feat {
  padding: 16px;
  border: 1px solid var(--border-gold);
  position: relative;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.about-feat:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.about-feat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s;
}

.about-feat:hover::before {
  height: 100%;
}

.about-feat .feat-val {
  font-family: "Montserrat", sans-serif !important;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.about-feat .feat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== TOWERS ===== */
.towers-section {
  background: var(--navy);
}

.towers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.tower-card {
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: pointer;
}

.tower-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.tower-card-visual {
  height: 240px;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.tower-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.tower-silhouette {
  width: 80px;
  background: linear-gradient(180deg, var(--gold-light) 0%, rgba(201, 168, 76, 0.2) 100%);
  position: relative;
  border-radius: 2px 2px 0 0;
}

.tower-a-sil {
  height: 180px;
}
.tower-b-sil {
  height: 200px;
}
.tower-c-sil {
  height: 190px;
}

.tower-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.tower-card-content {
  padding: 24px;
}

.tower-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.tower-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.tower-view {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.tower-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.tower-spec .ts-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.tower-spec .ts-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tower-variants {
  border-top: 1px solid var(--border-gold);
  padding-top: 14px;
}

.tower-variants .tv-label {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.variant-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.variant-tag {
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
}

.tower-card:hover .variant-tag {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===== AMENITIES ===== */
.amenities-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
  margin-top: 60px;
  border: 1px solid var(--border-gold);
}

.amenity-item {
  background: var(--navy-mid);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}

.amenity-item:hover {
  background: rgba(201, 168, 76, 0.07);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  transition: background 0.3s;
}

.amenity-item:hover .amenity-icon {
  background: rgba(201, 168, 76, 0.2);
}

.amenity-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== FITNESS SECTION ===== */
.fitness-section {
  background: var(--navy);
}

.fitness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.fitness-list {
  list-style: none;
}

.fitness-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.fitness-list li:hover {
  color: var(--gold-light);
}

.fitness-list li::before {
  content: "◆";
  font-size: 6px;
  color: var(--gold);
  flex-shrink: 0;
}

.fitness-visual {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fitness-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.fitness-visual h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  position: relative;
}

.fitness-visual p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  max-width: 280px;
}

/* ===== LOCATION ===== */
.location-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.location-category {
}

.location-cat-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-items {
  list-style: none;
}

.location-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.location-items li:last-child {
  border-bottom: none;
}

.loc-dist {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-light);
  flex-shrink: 0;
}

.nearby-highlights {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gold);
}

.nearby-pill {
  padding: 10px 20px;
  border: 1px solid var(--border-gold);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nearby-pill strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--gold-light);
}

/* ===== SPECIFICATIONS ===== */
.specs-section {
  background: var(--navy);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  margin-top: 60px;
}

.spec-block {
  background: var(--navy);
  padding: 30px;
}

.spec-block-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-block-title::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.spec-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== BROCHURE / DOWNLOAD ===== */
.brochure-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border-gold);
  text-align: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.brochure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
}

.brochure-section .section-title {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.brochure-section .section-desc {
  margin: 0 auto 36px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(5, 12, 24, 0.98);
  border-top: 1px solid var(--border-gold);
  padding: 48px 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand .brand-tag {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-brand p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-contact h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-contact a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

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

.footer-legal {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 36px;
  padding-top: 24px;
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== POPUP MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 24, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--navy-mid);
  border: 1px solid var(--border-gold);
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.5s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.visible .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 24px 32px;
  position: relative;
}

.modal-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
}

.modal-header p {
  font-size: 11px;
  color: rgba(10, 22, 40, 0.7);
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(10, 22, 40, 0.2);
  border: none;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(10, 22, 40, 0.4);
}

.modal-body {
  padding: 32px;
}

.modal-benefits {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-benefit {
  flex: 1;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-gold);
  padding: 12px;
  text-align: center;
}

.modal-benefit .mb-icon {
  font-size: 20px;
  margin-bottom: 6px;
}
.modal-benefit .mb-text {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  padding: 16px;
  text-align: center;
  margin-top: 12px;
}

.success-msg p {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

/* ===== LOADING SPINNER ===== */
.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 22, 40, 0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}

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

/* ===== GOLD SEPARATOR ===== */
.gold-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 60px 0 0;
}

.gold-sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-sep span {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== RESPONSIVE TWEAK ===== */
@media (max-width: 1200px) {
  .page-wrapper {
    grid-template-columns: 1fr 320px;
  }
}
/* ===== MASTERPLAN ===== */

.masterplan-section {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
}

.masterplan-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
}

.masterplan-image img {
  width: 100%;
  border: 1px solid var(--border-gold);
  display: block;
}

.masterplan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mp-card {
  border: 1px solid var(--border-gold);
  padding: 24px;
  background: rgba(201, 168, 76, 0.04);
  transition: 0.3s;
}

.mp-card:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
}

.mp-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.mp-card p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== FLOORPLAN ===== */

.floorplan-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-gold);
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.floor-card {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  background: var(--navy);
  transition: 0.3s;
}

.floor-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.floor-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.floor-content {
  padding: 24px;
  text-align: center;
}

.floor-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.floor-content p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .masterplan-wrapper,
  .floorplan-grid {
    grid-template-columns: 1fr;
  }

  .masterplan-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .about-grid,
  .fitness-grid,
  .location-content {
    grid-template-columns: 1fr;
  }

  .about-section::before {
    font-size: 80px;
    letter-spacing: 10px;
    right: -20px;
  }
  .sidebar-form-wrapper {
    display: none;
  }
}
/* ===== HERO VIDEO ===== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: contain;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.65) 0%, rgba(5, 10, 20, 0.78) 100%),
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  z-index: 2;
}

.hero-content,
.hero-scroll,
.hero-number,
.hero-grid-lines {
  position: relative;
  z-index: 3;
}

/* ===== WALKTHROUGH ===== */

.walkthrough-section {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  padding-bottom: 120px;
}

.walkthrough-video {
  position: relative;
  margin-top: 60px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  background: #000;
}

.walkthrough-video video {
  width: 100%;
  display: block;
}

.walkthrough-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
}

.play-badge {
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* ===== VIDEO HOVER EFFECT ===== */

.walkthrough-video::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: 0.4s;
  pointer-events: none;
}

.walkthrough-video:hover::after {
  inset: 14px;
  border-color: rgba(201, 168, 76, 0.45);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .hero-content {
    padding: 140px 24px 80px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .walkthrough-overlay {
    top: 14px;
    left: 14px;
  }
}
/* =========================================
   PREMIUM RESPONSIVE NAVBAR
========================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 380px);
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}

nav.scrolled {
  background: rgba(5, 10, 20, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* ===== DESKTOP LINKS ===== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s ease;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== MOBILE TOGGLE ===== */

.mobile-toggle {
  width: 52px;
  height: 52px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  z-index: 1001;
  padding: 0 14px;
}

.mobile-toggle span {
  width: 100%;
  height: 1.5px;
  background: var(--gold-light);
  transition: 0.4s ease;
}

/* ===== MOBILE ACTIVE ===== */

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE CTA ===== */

.mobile-cta {
  display: none;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {
  nav {
    width: 100%;
    padding: 18px 24px;
  }

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

  .sidebar-form-wrapper {
    display: none;
  }
}

/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.98), rgba(10, 22, 40, 0.98));

    border-left: 1px solid rgba(201, 168, 76, 0.15);

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 80px 40px;
    gap: 26px;

    transition: 0.45s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.88);
    display: inline-block;
  }

  .mobile-cta {
    display: block;
    margin-top: 20px;
    width: 100%;
  }

  .mobile-cta .btn-gold-sm {
    width: 100%;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 576px) {
  nav {
    padding: 16px 18px;
  }

  .nav-logo-text .brand {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .nav-logo-text .sub {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .mobile-toggle {
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   NAVBAR LOGO
========================================= */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1001;
}

.nav-logo-img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.4s ease;
}

/* OPTIONAL HOVER EFFECT */

.nav-logo-img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {
  .nav-logo-img {
    width: 210px;
  }
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {
  .nav-logo-img {
    width: 150px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {
  .nav-logo-img {
    width: 135px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .nav-logo-img {
    width: 115px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .nav-logo-img {
    width: 95px;
  }
}
.about {
  width: 100%;
  height: auto;
}
