:root {
  --paper: #f7f5ef;
  --ink: #111111;
  --muted: #6e655c;
  --line: rgba(141, 130, 118, 0.15);
  --line-strong: rgba(141, 130, 118, 0.3);
  --wine: #801818;
  --bronze: #bba07e;
  --bronze-dark: #8c7356;
  --bronze-light: #e6dacb;
  --premium-gold: #b88938;
  --premium-gold-highlight: #f7df9c;
  --gold-gradient: linear-gradient(135deg, #c5a880 0%, #9c7c5d 100%);
  --night: #151719;
  --night-card: #151413;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.08);
  --shadow-modal: 0 40px 90px rgba(0, 0, 0, 0.35);
}

/* Base Styles & Customizations */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    linear-gradient(90deg, rgba(141, 107, 80, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(141, 107, 80, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.62;
  overflow-x: hidden;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: var(--bronze-dark);
  border: 2px solid var(--paper);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bronze);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Sticky Header with Frosted Glass */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 6vw, 80px);
  color: #fff;
  transition: var(--transition-smooth);
  background: linear-gradient(to bottom, rgba(8, 10, 14, 0.82), rgba(8, 10, 14, 0.18) 68%, rgba(8, 10, 14, 0));
}

.site-header.is-scrolled {
  padding: 14px clamp(24px, 6vw, 80px);
  background: rgba(11, 10, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand {
  position: relative;
  z-index: 10;
}

.brand img {
  width: clamp(96px, 9vw, 132px);
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.site-header.is-scrolled .brand img {
  width: clamp(78px, 7vw, 104px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  color: #fff;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-fast);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 44px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu-logo {
  display: none;
}

nav a {
  position: relative;
  opacity: 0.75;
  color: #fff;
  padding: 6px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover {
  opacity: 1;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-enquire {
  appearance: none;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  border: 1px solid var(--premium-gold);
  border-radius: 0;
  background: var(--premium-gold);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: none;
  box-shadow: 0 12px 24px rgba(184, 137, 56, 0.24);
}

.nav-enquire::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #9d6f27;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-enquire:hover {
  border-color: var(--premium-gold-highlight);
  box-shadow: 0 16px 30px rgba(184, 137, 56, 0.3);
}

.nav-enquire:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scroll Reveal Base */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--night);
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(1.28) contrast(0.96) saturate(1.12);
  animation: zoomOutHero 10s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomOutHero {
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(11, 10, 9, 0.62) 0%, rgba(11, 10, 9, 0.12) 52%, rgba(11, 10, 9, 0.28) 100%),
    radial-gradient(circle at 78% 38%, rgba(197, 168, 128, 0.22), transparent 48%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 26% 44%, rgba(4, 6, 10, 0.72) 0%, rgba(4, 6, 10, 0.54) 28%, rgba(4, 6, 10, 0.18) 52%, transparent 74%),
    linear-gradient(90deg, rgba(4, 6, 10, 0.58) 0%, rgba(4, 6, 10, 0.28) 34%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px) clamp(80px, 10vh, 120px);
}

.hero-copy {
  max-width: 820px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--bronze);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.68),
    0 18px 42px rgba(0, 0, 0, 0.48);
}

.lead {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.5;
  margin-bottom: 34px;
  max-width: 580px;
  font-family: var(--font-serif);
  font-style: italic;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.78),
    0 12px 28px rgba(0, 0, 0, 0.48);
}

/* Premium Button Animation */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--premium-gold);
  border: 1px solid var(--premium-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 14px 28px rgba(184, 137, 56, 0.24);
}

.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #9d6f27;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium:hover {
  color: #fff;
  border-color: var(--premium-gold-highlight);
  box-shadow: 0 18px 34px rgba(184, 137, 56, 0.32);
}

.btn-premium:hover::before {
  transform: translateY(0);
}

.btn-premium svg {
  fill: currentColor;
  transition: transform 0.4s ease;
}

.btn-premium:hover svg {
  transform: translateX(4px);
}

/* Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.5s ease 2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.scroll-prompt-wheel {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-prompt-wheel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--bronze);
  animation: scrollScrollbar 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollScrollbar {
  0% { transform: translateY(-100%); }
  80%, 100% { transform: translateY(300%); }
}

/* Hero Key Facts Strip */
.hero-facts {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(197, 168, 128, 0.45);
  border-bottom: 1px solid rgba(197, 168, 128, 0.26);
  background:
    linear-gradient(90deg, rgba(197, 168, 128, 0.08), transparent 24%, transparent 76%, rgba(197, 168, 128, 0.08)),
    rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  width: 100%;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.28);
}

.hero-facts::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.hero-facts-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-fact-item {
  position: relative;
  padding: 34px 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(197, 168, 128, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.hero-fact-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: 0.7;
  transform: translateX(-50%);
}

.hero-fact-item:last-child {
  border-right: none;
}

.hero-fact-value {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-style: italic;
  line-height: 0.95;
  color: #e6c896;
  text-shadow: 0 8px 26px rgba(197, 168, 128, 0.26);
}

.hero-fact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

/* Global Section Layout */
.section {
  padding: clamp(90px, 12vw, 80px) clamp(24px, 6vw, 80px);
  max-width: 1300px;
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(50px, 8vw, 40px);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 10px;
}

/* Editorial Content Layouts */
.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  font-style: italic;
  color: var(--ink);
  margin-top: 12px;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-copy p {
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

/* Immersive Banner Section */
.immersive-banner {
  width: 100%;
  height: clamp(400px, 60vh, 700px);
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.immersive-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.immersive-banner:hover img {
  transform: scale(1.03);
}

.immersive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 9, 0.8), rgba(11, 10, 9, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 60px clamp(24px, 6vw, 80px);
  color: #fff;
}

.immersive-banner-content {
  max-width: 800px;
}

.immersive-banner-content h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

.immersive-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.05em;
}

/* Floorplan Explorer */
.floorplan-explorer {
  margin-top: 40px;
}

.floorplan-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(184, 137, 56, 0.22);
  margin-bottom: 60px;
  gap: 40px;
}

.tab-trigger {
  padding: 20px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-trigger::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--premium-gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-trigger:hover {
  color: var(--premium-gold);
}

.tab-trigger.is-active {
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.tab-trigger.is-active::after {
  transform: scaleX(1);
}

.floorplan-content {
  display: none;
}

.floorplan-content.is-active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.floorplan-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floorplan-details h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
  margin-bottom: 8px;
}

.floorplan-specs {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  border-top: 1px solid rgba(184, 137, 56, 0.22);
  border-bottom: 1px solid rgba(184, 137, 56, 0.22);
  padding: 16px 0;
}

.floorplan-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
}

.floorplan-spec-label {
  color: var(--muted);
  font-weight: 600;
}

.floorplan-spec-value {
  font-weight: 500;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.floorplan-details .lead-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--premium-gold);
  color: var(--premium-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 20px;
  width: fit-content;
}

.btn-outline:hover {
  background: var(--premium-gold);
  color: #fff;
  box-shadow: 0 12px 24px rgba(184, 137, 56, 0.18);
}

.floorplan-preview {
  position: relative;
  background: var(--night);
  border: 1px solid rgba(184, 137, 56, 0.34);
  padding: 0;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
}

.floorplan-blueprint {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.88;
  filter: blur(4px) brightness(0.98) saturate(0.9);
  transform: scale(1.03);
  pointer-events: none;
}

.floorplan-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(248, 246, 240, 0.34), rgba(248, 246, 240, 0.5)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 52%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.floorplan-overlay h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.floorplan-overlay p {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 24px;
}

/* Pricing Grid */
.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: var(--transition-fast);
}

.pricing-row:first-child {
  border-top: 1px solid var(--line);
}

.pricing-row:hover {
  background: rgba(141, 130, 118, 0.02);
}

.pricing-type {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.pricing-size {
  font-size: 14px;
  color: var(--muted);
}

.pricing-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--premium-gold);
  text-shadow:
    0 1px 0 var(--premium-gold-highlight),
    0 8px 20px rgba(184, 137, 56, 0.18);
}

/* Amenities Enhanced Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--bronze);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 137, 56, 0.1);
  border: 1px solid rgba(184, 137, 56, 0.28);
  border-radius: 50%;
  color: var(--premium-gold);
  box-shadow: inset 0 1px 0 rgba(247, 223, 156, 0.38);
  transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
  background: var(--premium-gold);
  border-color: var(--premium-gold);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 24px rgba(184, 137, 56, 0.22);
}

.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.amenity-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Gallery Section Grid */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--night);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 9, 0.8) 0%, rgba(11, 10, 9, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Asymmetric Gallery Layout configuration */
.gallery-col-6 { grid-column: span 6; height: clamp(280px, 35vh, 480px); }
.gallery-col-4 { grid-column: span 4; height: clamp(280px, 35vh, 480px); }
.gallery-col-8 { grid-column: span 8; height: clamp(280px, 35vh, 480px); }
.gallery-col-12 { grid-column: span 12; height: clamp(340px, 45vh, 600px); }

/* Location & Connectivity Section */
.location-section {
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.location-info h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 24px;
}

.location-lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.landmark-groups {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.landmark-category {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.landmark-category h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
  margin-bottom: 14px;
}

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

.landmark-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink);
}

.landmark-name {
  font-weight: 400;
}

.landmark-time {
  color: var(--premium-gold);
  font-style: italic;
  font-family: var(--font-serif);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.location-map-wrapper {
  border: 1px solid rgba(184, 137, 56, 0.34);
  padding: 12px;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(247, 223, 156, 0.24),
    var(--shadow-premium);
}

.location-map-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 480px;
}

/* About Developer Section */
.developer-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.developer-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.developer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(184, 137, 56, 0.24);
  padding-right: 40px;
}

.developer-logo-box img {
  width: 160px;
  margin-bottom: 20px;
}

.developer-logo-box span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.developer-details h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
  margin-bottom: 20px;
}

.developer-details p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(184, 137, 56, 0.24);
  padding-top: 30px;
}

.developer-stat-val {
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  color: var(--premium-gold);
  text-shadow:
    0 1px 0 var(--premium-gold-highlight),
    0 8px 20px rgba(184, 137, 56, 0.16);
}

.developer-stat-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Footer Section */
footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px clamp(24px, 6vw, 80px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  flex-wrap: wrap;
}

.footer-logo-block {
  flex: 0 0 auto;
}

.footer-logo-block img {
  width: 104px;
  margin-bottom: 12px;
}

.footer-logo-block p {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
}

.rera-badge {
  flex: 0 1 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--bronze);
  transform: translateX(4px);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cta h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-cta p {
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: #fff;
}

.legal-page {
  background: var(--ivory);
  color: var(--ink);
}

.legal-main {
  padding: 150px clamp(24px, 6vw, 80px) 90px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-content .eyebrow {
  margin-bottom: 18px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 24px;
}

.legal-updated {
  color: var(--muted);
  margin-bottom: 46px;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-home-link {
  display: inline-block;
  margin-top: 42px;
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 10, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* Luxury Concierge Enquiry Modal */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 9, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(141, 107, 80, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(141, 107, 80, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  border: 1px solid var(--bronze-light);
  box-shadow: var(--shadow-modal);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal.is-open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
}

.modal-close:hover {
  border-color: var(--premium-gold);
  color: var(--premium-gold);
}

.modal-panel .eyebrow {
  margin-bottom: 12px;
  color: var(--premium-gold);
}

.modal-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
}

.modal-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

.modal-intro {
  padding-right: clamp(0px, 2vw, 28px);
  border-right: 1px solid rgba(184, 137, 56, 0.24);
}

.enquiry-form {
  min-width: 0;
}

/* Floating Label Inputs */
.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 16px 0 8px;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-bottom-color: var(--premium-gold);
}

.form-label {
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Float logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-gold);
}

/* Preference Selectors */
.form-select-group {
  margin-bottom: 18px;
}

.form-select-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--premium-gold);
  margin-bottom: 12px;
  display: block;
}

.interest-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.interest-option {
  position: relative;
  text-align: center;
}

.interest-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.interest-option span {
  display: block;
  padding: 12px 6px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.interest-option input:checked + span {
  border-color: var(--premium-gold);
  background: rgba(184, 137, 56, 0.1);
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(247, 223, 156, 0.36);
}

.contact-channels {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.channel-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

.channel-option input {
  accent-color: var(--premium-gold);
}

/* Concierge Badge */
.concierge-badge {
  background: rgba(184, 137, 56, 0.1);
  border: 1px solid rgba(184, 137, 56, 0.24);
  padding: 16px;
  margin-top: 28px;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.concierge-badge svg {
  color: var(--premium-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.concierge-badge-text h6 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--premium-gold);
  text-shadow: 0 1px 0 var(--premium-gold-highlight);
  margin-bottom: 4px;
}

.concierge-badge-text p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.submit-button {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  background: var(--premium-gold);
  border-color: var(--premium-gold);
  color: #fff;
  box-shadow: 0 14px 28px rgba(184, 137, 56, 0.22);
}

.form-message {
  font-size: 13px;
  margin-top: 14px;
  min-height: 20px;
}

body.modal-open {
  overflow: hidden;
}

.scroll-top-button {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--premium-gold);
  border: 1px solid rgba(247, 223, 156, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px rgba(184, 137, 56, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition-fast);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: #9d6f27;
  border-color: var(--premium-gold-highlight);
  transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .enquiry-modal {
    padding: 16px;
  }

  .modal-panel {
    width: 100%;
    max-width: 580px;
    max-height: calc(100svh - 32px);
    margin-inline: auto;
    overflow-y: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 24px;
  }

  .modal-intro {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

  .modal-subtitle {
    display: none;
  }

  .concierge-badge {
    margin-top: 20px;
  }

  .intro,
  .location-grid,
  .developer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floorplan-content.is-active {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .developer-logo-box {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 40px;
  }

  .pricing-row {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 24px 0;
  }

  .pricing-row .btn-outline {
    grid-column: span 3;
    width: 100%;
    margin-top: 10px;
  }

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

@media (max-width: 768px) {
  .site-header,
  .site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 88px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 100vw);
    background: var(--night);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 40px 40px 40px;
    gap: 0;
    z-index: 99;
    transform: translateX(100%);
    transition: var(--transition-smooth);
  }

  .mobile-menu-logo {
    display: block;
    margin-bottom: 34px;
  }

  .mobile-menu-logo img {
    width: 112px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  }

  .site-header.is-menu-open nav {
    transform: translateX(0);
  }

  nav a {
    font-size: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    color: #fff;
    opacity: 0.85;
    display: block;
    width: 100%;
  }

  nav a::after {
    display: none;
  }

  nav .nav-enquire {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* Mobile Menu Backdrop */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 9, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
  }

  .site-header.is-menu-open + .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero::before {
    top: auto;
    height: 46%;
    background: linear-gradient(to top, rgba(4, 6, 10, 0.78) 0%, rgba(4, 6, 10, 0.44) 48%, transparent 100%);
  }

  .hero-content {
    min-height: calc(100svh - 176px);
    display: flex;
    align-items: flex-end;
    padding: 130px 24px 26px;
  }

  .hero-copy {
    margin-bottom: 0;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .btn-premium {
    margin-left: auto;
    margin-right: auto;
  }

  .scroll-prompt {
    display: none;
  }

  .hero-facts-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .concierge-badge {
    display: none;
  }

  .hero-fact-item {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  }

  .hero-fact-item:nth-child(even) {
    border-right: none;
  }

  .hero-fact-value {
    font-size: 30px;
  }

  .hero-fact-label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero-fact-item:nth-child(n + 3) {
    display: none;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .pricing-row .btn-outline {
    grid-column: auto;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .landmark-list {
    grid-template-columns: 1fr;
  }

  .location-map-wrapper img {
    height: 320px;
  }

  .gallery-col-6, .gallery-col-4, .gallery-col-8 {
    grid-column: span 12;
    height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom a {
    margin: 4px 10px;
  }

  .interest-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .interest-option span {
    padding: 11px 4px;
    font-size: 10px;
  }

  .lightbox-modal {
    padding: 20px;
  }

  .lightbox-close {
    top: -30px;
    right: 10px;
  }
}
