/* ==========================================================================
   PARK LANE IN KIADB - BESPOKE LUXURY ARCHITECTURAL DESIGN SYSTEM
   Art Direction: Deep Forest Green, Warm Ivory, Muted Champagne Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette */
  --c-primary: #0B2219;
  --c-primary-light: #163C2D;
  --c-primary-dark: #061610;
  --c-primary-rgb: 11, 34, 25;

  --c-bg: #FAF8F4;
  --c-bg-subtle: #F2EFE8;
  --c-bg-card: #FFFFFF;

  --c-accent: #C5A880;
  --c-accent-hover: #B09165;
  --c-accent-light: #E8DDCD;
  --c-accent-rgb: 197, 168, 128;

  --c-text: #1B1E1C;
  --c-text-muted: #57615B;
  --c-text-light: #8E9892;
  --c-border: #E5DFC4;
  --c-border-subtle: rgba(197, 168, 128, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 10px 30px -10px rgba(11, 34, 25, 0.08);
  --shadow-elevated: 0 20px 45px -15px rgba(11, 34, 25, 0.16);
  --shadow-luxury: 0 25px 60px -20px rgba(0, 0, 0, 0.28);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--c-primary-dark);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-primary-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utility */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-accent);
}

.eyebrow-dark {
  color: var(--c-primary);
}
.eyebrow-dark::before {
  background: var(--c-primary);
}

.heading-hero {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

.heading-section {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-primary);
}

.lead-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--c-accent);
  color: #0B2219;
  border-color: var(--c-accent);
}

.btn-primary:hover {
  background-color: #D8BF97;
  border-color: #D8BF97;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(197, 168, 128, 0.4);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--c-primary);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--c-primary);
  color: #FAF8F4;
  border-color: var(--c-primary);
}

.btn-dark:hover {
  background-color: var(--c-primary-light);
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(11, 34, 25, 0.35);
}

/* ==========================================================================
   1. HIGH-CONTRAST SOLID / SEMI-OPAQUE DARK GREEN NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  /* Deep Forest Green Solid/Semi-Opaque Luxury Background across all states */
  background-color: rgba(11, 34, 25, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.28);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background-color: rgba(11, 34, 25, 0.99);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

/* Left: Brand Identity & Prestige Group Authorised Sales Partner Logo */
.header-brand-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-shrink: 0;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-location {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: rgba(197, 168, 128, 0.45);
  flex-shrink: 0;
}

.brand-prestige-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.prestige-logo-img {
  height: 32px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 3px 8px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  display: block;
  transition: transform 0.25s ease;
}

.prestige-logo-img:hover {
  transform: translateY(-1px);
}

/* Center: Desktop Navigation */
.desktop-nav-container {
  display: flex;
  justify-content: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF8F4;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--c-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--c-accent);
}

/* Right: Propsource India Logo & Compact CTA (Desktop) */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.header-propsource-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.propsource-logo-img {
  height: 26px;
  width: auto;
  max-width: 125px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 3px 7px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: block;
  transition: transform 0.25s ease;
}

.propsource-logo-img:hover {
  transform: translateY(-1px);
}

.header-cta-btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

/* Mobile Top Bar Controls */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-enquire-btn {
  padding: 0.42rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1100;
}

.toggle-bar {
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.open .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.open .toggle-bar:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background-color: #FAF8F4;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4.5rem 2rem 2.2rem;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 34, 25, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mobile-nav-links .nav-link {
  color: var(--c-primary);
  font-size: 1.08rem;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}

.drawer-divider {
  height: 1px;
  background: rgba(197, 168, 128, 0.3);
  margin: 1.4rem 0;
}

.mobile-drawer-propsource-wrap {
  text-align: center;
  background: #FFFFFF;
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-propsource-logo {
  max-height: 32px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.mobile-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.mobile-contact-list a {
  color: var(--c-primary);
  font-weight: 500;
}

/* ==========================================================================
   2. HIGH-IMPACT CINEMATIC HERO SLIDER (4 SLIDES)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  background-color: var(--c-primary-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.1s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7.5s ease-out;
  filter: brightness(0.82);
  pointer-events: none;
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.12);
}

/* Richer cinematic dark overlay with strong bottom & top vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 16, 0.78) 0%,
    rgba(6, 22, 16, 0.35) 40%,
    rgba(6, 22, 16, 0.78) 85%,
    rgba(6, 22, 16, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  width: 100%;
  padding: 8rem 1.5rem 4.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-slide-text {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.hero-slide.active .hero-slide-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge-wrap {
  margin-bottom: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FAF8F4;
  background: rgba(11, 34, 25, 0.7);
  border: 1px solid rgba(197, 168, 128, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 40px;
}

.hero-title {
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.6);
}

.hero-location-line {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-divider-gold {
  width: 60px;
  height: 1.5px;
  background: var(--c-accent);
  margin: 0.6rem auto;
}

/* Editorial Configuration & Starting Price Highlight */
.hero-pricing-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 1.4rem auto 2.2rem;
  padding: 1.1rem 2.4rem;
  background: rgba(11, 34, 25, 0.55);
  border: 1px solid rgba(197, 168, 128, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero-config-highlight {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero-price-highlight {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: #EFE7DA;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Slider Controls: Arrows, Counter, Dots */
.hero-slider-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  pointer-events: none;
}

.hero-slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  pointer-events: auto;
}

.slider-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 34, 25, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.45);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
  background: var(--c-accent);
  color: var(--c-primary);
  border-color: var(--c-accent);
}

.hero-slider-counter {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  pointer-events: auto;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}

.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--c-accent);
  height: 3px;
  width: 36px;
}

/* ==========================================================================
   3. DIRECTIONAL SCROLL REVEALS (TRIGGER ONCE AT 18% VIEWPORT)
   ========================================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   4. ABOUT SECTION + PROPSOURCE INDIA
   ========================================================================== */
.about-section {
  padding: 8.5rem 0;
  background-color: var(--c-bg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-luxury);
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.015);
}

.about-floating-card {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  background: var(--c-primary);
  color: #FAF8F4;
  padding: 2.2rem 2.4rem;
  max-width: 340px;
  border-radius: 2px;
  border-left: 3px solid var(--c-accent);
  box-shadow: var(--shadow-luxury);
}

.about-floating-card .quote-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
  color: #EFE8DA;
  margin-bottom: 0.6rem;
}

.about-floating-card .quote-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.about-content {
  padding-left: 0.5rem;
}

.about-paragraphs {
  margin: 1.8rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-propsource-block {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  background: #FFFFFF;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.propsource-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.propsource-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-primary);
}

.propsource-logo-inline {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.propsource-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 1.1rem;
}

.propsource-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(197, 168, 128, 0.25);
  font-size: 0.82rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--c-primary);
  font-weight: 600;
}

.contact-chip:hover {
  color: var(--c-accent-hover);
}

/* ==========================================================================
   5. HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
  padding: 8.5rem 0;
  background-color: var(--c-primary);
  color: #FAF8F4;
  position: relative;
  overflow: hidden;
}

.highlights-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
}

.highlights-header .heading-section {
  color: #FFFFFF;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.18);
  padding: 2.6rem 2rem;
  border-radius: 3px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--c-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.highlight-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
  display: inline-block;
  opacity: 0.9;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.highlight-desc {
  font-size: 0.86rem;
  color: #C8D1CC;
  line-height: 1.6;
}

/* ==========================================================================
   6. PRICING & PLANS SECTION
   ========================================================================== */
.pricing-section {
  padding: 8.5rem 0;
  background-color: var(--c-bg);
  position: relative;
}

.pricing-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.pricing-table-card {
  background: #FFFFFF;
  border-radius: 3px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table thead th {
  background: var(--c-primary);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.4rem 2rem;
  border-bottom: 2px solid var(--c-accent);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background-color 0.25s ease;
}

.pricing-table tbody tr:hover {
  background-color: rgba(197, 168, 128, 0.07);
}

.pricing-table tbody td {
  padding: 1.8rem 2rem;
  font-size: 1rem;
  color: var(--c-text);
  vertical-align: middle;
}

.pricing-type-cell {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-primary);
}

.pricing-area-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--c-bg-subtle);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-primary);
}

.pricing-price-value {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}

.pricing-price-asterisk {
  color: var(--c-accent-hover);
  font-size: 1rem;
  margin-left: 2px;
}

.pricing-action-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.76rem;
}

.pricing-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-m-card {
  background: #FFFFFF;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.pricing-m-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-accent);
}

.pricing-m-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-m-type {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-primary);
}

.pricing-m-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-primary);
}

.pricing-disclaimer-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  font-style: italic;
  padding: 1.2rem 2rem;
  background: rgba(197, 168, 128, 0.08);
  border-radius: 3px;
  border: 1px dashed rgba(197, 168, 128, 0.4);
}

/* ==========================================================================
   7. AMENITIES / LIFESTYLE SECTION
   ========================================================================== */
.amenities-section {
  padding: 8.5rem 0;
  background-color: #FAF8F4;
  position: relative;
}

.amenities-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.amenities-composition {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.amenities-visual {
  position: relative;
}

.amenities-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-elevated);
}

.amenities-editorial {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.editorial-pillar {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.editorial-pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-accent);
  line-height: 1;
  padding-top: 0.2rem;
}

.pillar-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.pillar-body {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   8. CONNECTIVITY SECTION
   ========================================================================== */
.connectivity-section {
  padding: 8.5rem 0;
  background-color: #F3EFE7;
  position: relative;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.connectivity-content {
  display: flex;
  flex-direction: column;
}

.connectivity-list {
  list-style: none;
  margin: 2.2rem 0 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.connectivity-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 1.6rem;
  background: #FFFFFF;
  border: 1px solid var(--c-border);
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.connectivity-item:hover {
  transform: translateX(8px);
  border-color: var(--c-accent);
  box-shadow: 0 8px 25px rgba(11, 34, 25, 0.08);
}

.conn-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.conn-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-primary);
}

.connectivity-visual-wrap {
  position: relative;
}

.connectivity-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-luxury);
}

.connectivity-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(11, 34, 25, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 2px;
  max-width: 240px;
}

.connectivity-badge-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--c-accent);
  margin-bottom: 0.25rem;
}

.connectivity-badge-desc {
  font-size: 0.76rem;
  line-height: 1.4;
  color: #E2E8E4;
}

/* ==========================================================================
   9. GALLERY SECTION & LIGHTBOX
   ========================================================================== */
.gallery-section {
  padding: 8.5rem 0;
  background-color: var(--c-bg);
}

.gallery-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--c-primary-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 34, 25, 0.88) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.gallery-caption-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: 0.3rem;
}

.gallery-span-8 {
  grid-column: span 8;
  height: 480px;
}

.gallery-span-4 {
  grid-column: span 4;
  height: 480px;
}

.gallery-span-4-lower,
.gallery-span-4-center,
.gallery-span-4-right {
  grid-column: span 4;
  height: 380px;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 20, 15, 0.96);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #FAF8F4;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--c-accent);
}

/* ==========================================================================
   10. FULL-WIDTH IMAGE BANNER / CTA
   ========================================================================== */
.fullwidth-cta-section {
  position: relative;
  padding: 10rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-primary-dark);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 34, 25, 0.4) 0%, rgba(6, 20, 15, 0.88) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.cta-banner-desc {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-style: italic;
  color: #E8DDCD;
  margin-bottom: 2.8rem;
}

/* ==========================================================================
   11. MAIN ENQUIRY FORM — SINGLE BUTTON ONLY
   ========================================================================== */
.enquiry-section {
  padding: 8.5rem 0;
  background-color: var(--c-bg);
  position: relative;
}

.enquiry-card-wrapper {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}

.enquiry-info-panel {
  background: var(--c-primary);
  color: #FAF8F4;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.enquiry-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--c-accent);
}

.enquiry-info-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.enquiry-info-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #C8D1CC;
  margin-bottom: 2rem;
}

.enquiry-contact-details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 3px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.enquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: #FAF8F4;
}

.enquiry-contact-item a {
  color: var(--c-accent);
  font-weight: 500;
}

.enquiry-contact-item a:hover {
  text-decoration: underline;
}

.enquiry-propsource-editorial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-left: 3px solid var(--c-accent);
  border-radius: 3px;
  padding: 1.4rem 1.6rem;
  margin-top: 1.6rem;
}

.propsource-editorial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.propsource-editorial-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
}

.propsource-editorial-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 2px 6px;
  border-radius: 2px;
}

.propsource-editorial-copy {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #D3DDD7;
}

.enquiry-form-panel {
  padding: 4rem 3.5rem;
  background: #FFFFFF;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-text);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

/* SINGLE BUTTON ACTION ROW */
.form-submit-row {
  margin-top: 0.5rem;
}

.form-feedback-msg {
  display: none;
  padding: 1.2rem 1.6rem;
  background: rgba(11, 34, 25, 0.08);
  border: 1px solid var(--c-accent);
  border-radius: 2px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--c-primary);
  text-align: center;
  margin-top: 1rem;
}

.form-feedback-msg.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   12. COMPACT 2-COLUMN POPUP MODAL (REDUCED HEIGHT)
   ========================================================================== */
.timed-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(6, 20, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.timed-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Compact 2-column box on desktop */
.timed-modal-box {
  background: #FFFFFF;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  border-radius: 3px;
  position: relative;
  box-shadow: var(--shadow-luxury);
  border-top: 4px solid var(--c-accent);
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.timed-modal-overlay.active .timed-modal-box {
  transform: scale(1);
}

.timed-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10;
}

.timed-modal-close:hover {
  color: var(--c-primary);
}

.modal-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.modal-col-left {
  background: var(--c-primary);
  color: #FAF8F4;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-col-left .eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
}

.timed-modal-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.timed-modal-subtitle {
  font-size: 0.84rem;
  color: #C8D1CC;
  line-height: 1.5;
}

.modal-col-right {
  padding: 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.modal-form-compact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-form-compact .form-group {
  gap: 0.3rem;
}

.modal-form-compact .form-label {
  font-size: 0.72rem;
}

.modal-form-compact .form-input,
.modal-form-compact .form-select {
  padding: 0.62rem 0.95rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--c-primary-dark);
  color: #FAF8F4;
  padding: 6.5rem 0 3rem;
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.footer-brand .brand-location {
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}

.footer-brand-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: #B5C0BA;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #E2E8E4;
}

.footer-contact-info a {
  color: var(--c-accent);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.86rem;
  color: #C8D1CC;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--c-accent);
  transform: translateX(4px);
}

.footer-partner-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 1.6rem;
  border-radius: 3px;
}

.footer-partner-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}

.footer-partner-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.footer-partner-note {
  font-size: 0.76rem;
  color: #A3AEA8;
  line-height: 1.5;
}

.footer-disclaimer-wrap {
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #8E9A93;
  text-align: justify;
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #7B8680;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.footer-legal-links a {
  color: #A3AEA8;
}

.footer-legal-links a:hover {
  color: var(--c-accent);
}

/* ==========================================================================
   14. STANDALONE LEGAL PAGES
   ========================================================================== */
.page-hero {
  background-color: var(--c-primary);
  color: #FFFFFF;
  padding: 10.5rem 0 4.5rem;
  position: relative;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.page-hero-meta {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.legal-content-section {
  padding: 6rem 0 8rem;
  background-color: var(--c-bg);
}

.legal-paper {
  background: #FFFFFF;
  padding: 4.5rem;
  border-radius: 3px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
}

.legal-clause {
  margin-bottom: 3rem;
}

.legal-clause:last-child {
  margin-bottom: 0;
}

.legal-clause-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.clause-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-primary);
  flex-shrink: 0;
}

.legal-clause-body {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--c-text-muted);
}

.legal-clause-body p {
  margin-bottom: 1rem;
}

.legal-clause-body p:last-child {
  margin-bottom: 0;
}

.legal-clause-body ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-clause-body li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1280px) {
  .header-grid {
    gap: 1.2rem;
  }
  .desktop-nav {
    gap: 1.1rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1080px) {
  .header-grid {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .desktop-nav-container,
  .header-right {
    display: none !important;
  }

  .mobile-header-actions {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .header-brand-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .brand-name {
    font-size: 1.2rem;
  }
  .brand-location {
    font-size: 0.55rem;
  }

  .brand-divider {
    height: 24px;
  }

  .prestige-logo-img {
    height: 28px;
    max-width: 140px;
    padding: 2px 6px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(25px);
  }

  .about-grid,
  .amenities-composition,
  .connectivity-grid,
  .enquiry-card-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .pricing-table-card {
    display: none;
  }
  .pricing-mobile-cards {
    display: flex;
  }

  .gallery-masonry {
    grid-template-columns: repeat(6, 1fr);
  }
  .gallery-span-8 {
    grid-column: span 6;
    height: 380px;
  }
  .gallery-span-4,
  .gallery-span-4-lower,
  .gallery-span-4-center,
  .gallery-span-4-right {
    grid-column: span 3;
    height: 280px;
  }

  .legal-paper {
    padding: 3rem 2rem;
  }

  /* Modal 2-col to stacked on smaller viewports */
  .modal-2col-layout {
    grid-template-columns: 1fr;
  }
  .modal-col-left {
    padding: 1.8rem 1.6rem 1.2rem;
  }
  .modal-col-right {
    padding: 1.4rem 1.6rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 0;
  }
  .site-header .container-wide {
    padding: 0 1.15rem;
  }
  .header-brand-group {
    gap: 0.7rem;
  }
  .brand-name {
    font-size: 1.12rem;
  }
  .brand-location {
    font-size: 0.52rem;
  }
  .brand-divider {
    height: 22px;
  }
  .prestige-logo-img {
    height: 25px;
    max-width: 125px;
    padding: 2px 5px;
  }

  .hero-content {
    padding: 6.5rem 1.25rem 4.5rem;
  }
  .hero-slider-nav {
    padding: 0 1.25rem;
    bottom: 1.5rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .gallery-span-4,
  .gallery-span-4-lower,
  .gallery-span-4-center,
  .gallery-span-4-right {
    grid-column: span 6;
    height: 320px;
  }

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

  .enquiry-info-panel,
  .enquiry-form-panel {
    padding: 3rem 1.8rem;
  }

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

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

@media (max-width: 480px) {
  .site-header {
    padding: 0.55rem 0;
  }
  .site-header .container-wide {
    padding: 0 0.85rem;
  }
  .header-brand-group {
    gap: 0.5rem;
  }
  .brand-name {
    font-size: 1.02rem;
    letter-spacing: 0.04em;
  }
  .brand-location {
    font-size: 0.46rem;
    letter-spacing: 0.16em;
  }
  .brand-divider {
    height: 20px;
  }
  .prestige-logo-img {
    height: 22px;
    max-width: 110px;
    padding: 2px 4px;
  }
  .mobile-nav-toggle {
    padding: 6px;
  }
  .toggle-bar {
    width: 20px;
  }
  .hero-content {
    padding: 5.5rem 0.85rem 4rem;
  }
  .hero-pricing-lockup {
    max-width: calc(100vw - 2rem);
    padding: 0.9rem 1.2rem;
    margin: 1.1rem auto 1.6rem;
    box-sizing: border-box;
  }
  .hero-config-highlight {
    font-size: 1.55rem;
  }
  .hero-price-highlight {
    font-size: 1.05rem;
  }
  .hero-slider-nav {
    padding: 0 0.85rem;
    bottom: 1.2rem;
  }
  .slider-arrow-btn {
    width: 36px;
    height: 36px;
  }
  .hero-slider-counter {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
  }
  .hero-slider-dots {
    gap: 0.4rem;
  }
  .slider-dot {
    width: 22px;
  }
  .slider-dot.active {
    width: 28px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .about-main-img,
  .amenities-img-main,
  .connectivity-img {
    height: 360px;
  }
  .btn {
    width: 100%;
  }
  .mobile-enquire-btn {
    width: auto;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .gallery-span-8,
  .gallery-span-4,
  .gallery-span-4-lower,
  .gallery-span-4-center,
  .gallery-span-4-right {
    height: 260px;
  }
}

@media (max-width: 360px) {
  .site-header .container-wide {
    padding: 0 0.55rem;
  }
  .header-brand-group {
    gap: 0.35rem;
  }
  .brand-name {
    font-size: 0.92rem;
  }
  .brand-location {
    font-size: 0.42rem;
  }
  .brand-divider {
    height: 18px;
  }
  .prestige-logo-img {
    height: 19px;
    max-width: 95px;
    padding: 1px 3px;
  }
  .hero-content {
    padding: 5rem 0.6rem 3.6rem;
  }
  .hero-pricing-lockup {
    max-width: calc(100vw - 1.2rem);
    padding: 0.8rem 1rem;
  }
  .hero-config-highlight {
    font-size: 1.35rem;
  }
  .hero-price-highlight {
    font-size: 0.95rem;
  }
  .hero-slider-nav {
    padding: 0 0.5rem;
    bottom: 0.8rem;
  }
  .slider-arrow-btn {
    width: 32px;
    height: 32px;
  }
  .hero-slider-dots {
    gap: 0.3rem;
  }
  .slider-dot {
    width: 16px;
  }
  .slider-dot.active {
    width: 22px;
  }
}
