/* ========================================
   ROHAN NITARA — Styles
   Design: Inspired by Tulip Infinity Evana
   ======================================== */

:root {
  --black: #000000;
  --black-light: #1A1A1A;
  --gold: #C5A55A;
  --gold-light: #dfc27a;
  --gold-dark: #a8893f;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-100: #f7f7f7;
  --gray-200: #e9e9e9;
  --gray-300: #d4d4d4;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #333333;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 60px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.section-title .accent { color: var(--gold); }

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 165, 90, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--black);
  border: 2px solid var(--black);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-large { padding: 18px 48px; font-size: 16px; }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-link-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-link-cta::after { display: none !important; }
.nav-link-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--gold-light); color: var(--black); }
.nav-cta svg { flex-shrink: 0; }
.nav-mobile-group { display: none; }

.nav-hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, #1A1A1A 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(197, 165, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 154, 142, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(197, 165, 90, 0.04) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(197, 165, 90, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(197, 165, 90, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(197, 165, 90, 0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 45%, rgba(197, 165, 90, 0.15) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(197, 165, 90, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(197, 165, 90, 0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 45%, rgba(197, 165, 90, 0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(197, 165, 90, 0.2) 0%, transparent 100%);
  background-size: 200px 200px;
  opacity: 0.8;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .hero-img { display: block; }
}

@media (max-width: 768px) {
  .hero-img { display: none; }
  .hero-video-mobile { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 60px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 165, 90, 0.2);
  border: 1px solid rgba(197, 165, 90, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .accent { color: var(--gold); }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-desc strong { color: var(--gold-light); font-weight: 500; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== HERO SUCCESS ===== */
.hero-success {
  max-width: 500px;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.hero-success .success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
}

.hero-success p { color: var(--white); text-align: center; font-size: 15px; }

.hero-price {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.hero-price strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.hero-rera {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-form-wrap {
  display: none;
}

@media (min-width: 769px) {
  .hero-form-wrap {
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 420px;
    width: 100%;
    pointer-events: none;
  }
  .hero-form-wrap .hero-right {
    pointer-events: auto;
  }
}

.hero-form-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
}

.hero-form-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.hero-form-card-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

.hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-fields input,
.hero-form-fields select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.hero-form-fields input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form-fields input:focus,
.hero-form-fields select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
  background: rgba(255, 255, 255, 0.15);
}

.hero-form-fields select option {
  color: var(--black);
}

.hero-form-fields select {
  cursor: pointer;
  appearance: auto;
}

.hero-form-fields .btn {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}

.hero-form-card .hero-success {
  max-width: 100%;
  margin-bottom: 0;
  margin-top: 16px;
  padding: 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.hero-form-card .hero-success p {
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   OVERVIEW
   ======================================== */
.overview {
  padding: 100px 0;
  background: var(--white);
}

.overview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.overview-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.overview-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--black);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
}

.overview-badge svg { width: 18px; height: 18px; }

.overview-content { padding-right: 40px; }

.overview-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.overview-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.overview-title .gold { color: var(--gold); }

.overview-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.overview-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.overview-stat { text-align: center; }

.overview-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.overview-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}

.overview-stat-divider {
  width: 1px;
  background: var(--gray-300);
}

/* ========================================
   PROJECT SCOPE
   ======================================== */
.project-scope {
  background: var(--black);
  text-align: center;
}

.project-scope .section-title { color: var(--white); }

.scope-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.scope-stat { text-align: center; }

.scope-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.scope-unit {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.scope-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-top: 8px;
}

.scope-divider {
  width: 2px;
  height: 80px;
  background: rgba(197, 165, 90, 0.3);
}

.scope-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.scope-desc strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ========================================
   HIGHLIGHTS
   ======================================== */
.highlights {
  background: var(--off-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.highlight-icon svg { width: 28px; height: 28px; fill: var(--white); }

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--black);
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--gray-400);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  padding-top: 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border: 2px solid var(--gold);
  border-top: 4px solid var(--gold);
  transform: scale(1.03);
  position: relative;
}

.pricing-featured:hover { transform: scale(1.03) translateY(-8px); }

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-body { padding: 32px 28px; }

.pricing-type {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}

.pricing-rupee { font-size: 18px; font-weight: 700; color: var(--gold); }

.pricing-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.pricing-lacs { font-size: 16px; color: var(--gray-500); font-weight: 500; }

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--gray-500);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-body .btn-outline {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.pricing-body .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities { background: var(--off-white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.amenity-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.amenity-icon svg { width: 24px; height: 24px; fill: var(--white); }

.amenity-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}

.gallery-placeholder:hover { background: var(--off-white); }

.gallery-placeholder span { font-size: 2rem; }
.gallery-placeholder p { font-size: 13px; font-weight: 500; color: var(--gray-400); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

.gallery-overlay svg { width: 40px; height: 40px; color: var(--white); }

.gallery-item.gallery-hidden { display: none; }
.gallery-grid.expanded .gallery-item.gallery-hidden { display: block; }

.gallery-actions { text-align: center; margin-top: 36px; }

/* ========================================
   GALLERY SLIDER CONTROLS
   ======================================== */
.gallery-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.gallery-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.gallery-slider-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.gallery-slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   VIDEO TOUR
   ======================================== */
.video-tour { background: var(--off-white); }

.video-tour-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-tour-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-placeholder {
  min-width: 300px;
  min-height: 300px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  border-radius: var(--radius-md);
}

.lightbox-placeholder span { font-size: 4rem; }
.lightbox-placeholder p { font-family: var(--font-serif); font-size: 1.4rem; opacity: 0.8; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
  background: var(--black);
  color: var(--white);
}

.location .section-eyebrow { color: var(--gold); }
.location .section-title { color: var(--white); }
.location .section-desc { color: rgba(255,255,255,0.6); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.location-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  pointer-events: none;
}

.location-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}

.location-map-overlay svg {
  color: var(--gold);
  flex-shrink: 0;
}

.location-map-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.location-item:hover { background: rgba(255,255,255,0.1); }

.location-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(197, 165, 90, 0.15);
}

.location-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }

.location-item-info { flex: 1; }

.location-item-name { font-size: 14px; font-weight: 500; }
.location-item-detail { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.location-item-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* ========================================
   ABOUT BUILDER
   ======================================== */
.about-builder {
  background: var(--black);
}

.about-builder .section-eyebrow { color: var(--gold-light); }

.builder-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.builder-logo-wrap { text-align: center; }

.builder-logo {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
  line-height: 1;
}

.builder-since {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}

.builder-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.builder-text strong { color: var(--white); }

.builder-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.builder-stat { text-align: center; }

.builder-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.builder-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--black), var(--black-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.03);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-title em { color: var(--gold); font-style: normal; }

.cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--white); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-copy { padding-right: 20px; }

.contact-copy .section-title { margin-bottom: 16px; }

.contact-copy > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: background var(--transition);
  border: 1px solid var(--gray-200);
}

.contact-item:hover { background: var(--off-white); }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.form-kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group input::placeholder { color: var(--gray-400); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--black);
  margin-bottom: 8px;
}

.form-success p { color: var(--gray-500); }

/* ========================================
   FAQ
   ======================================== */
.faq-section { background: var(--off-white); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}

.faq-item.active { border-color: var(--gold); }

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  transition: color var(--transition);
  user-select: none;
}

.faq-item.active .faq-q { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page{max-width:800px;margin:calc(var(--header-height) + 40px) auto 60px;padding:0 24px;font-family:var(--font-sans);color:var(--gray-500);line-height:1.8}
.legal-page h1{font-family:var(--font-serif);font-size:2.2rem;font-weight:700;color:var(--black);margin-bottom:8px}
.legal-page .effective-date{font-size:0.9rem;color:var(--gray-400);margin-bottom:28px}
.legal-page h2{font-family:var(--font-serif);font-size:1.3rem;font-weight:700;color:var(--black);margin:32px 0 12px}
.legal-page p{font-size:0.95rem;margin-bottom:14px}
.legal-page ul{margin:0 0 18px 20px}
.legal-page ul li{font-size:0.95rem;margin-bottom:6px;list-style:disc}
.legal-page a{color:var(--gold)}
.legal-page strong{color:var(--black)}
@media(max-width:768px){
  .legal-page h1{font-size:1.6rem}
  .legal-page h2{font-size:1.1rem}
  .legal-page{padding:0 16px;margin-top:calc(var(--header-height) + 24px)}
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

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

.footer-logo-img { height: 36px; width: auto; }

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 12px;
  border-radius: 6px;
  display: none;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-column li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-column li a:hover { color: var(--gold); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 0;
}

.footer-disclaimer p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   POPUP MODAL
   ======================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray-400);
  border-radius: 50%;
  transition: all var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}

.popup-close:hover { background: var(--gray-100); color: var(--black); }

.popup-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.popup-sub {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.popup-success { display: none; text-align: center; padding: 20px; }

.popup-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.popup-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--black);
  margin-bottom: 8px;
}

.popup-success p { color: var(--gray-500); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--black);
  padding: 10px 16px;
  gap: 10px;
  border-top: 2px solid var(--gold);
}

.mobile-sticky a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-sticky .sticky-call { background: var(--gold); color: var(--black); }
.mobile-sticky .sticky-wa { background: #25D366; color: var(--white); }
.mobile-sticky svg { width: 18px; height: 18px; }

/* ========================================
   FIELD ERROR
   ======================================== */
.field-error { border-color: #DC3545 !important; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .overview-content { padding-right: 0; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-8px); }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

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

  .builder-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .builder-stats { justify-content: center; }

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

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 50vh;
    max-height: none;
    overflow: visible;
    display: block;
  }
  .hero-overlay { display: none; }
  .hero-content { display: none; }
  .hero-scroll { display: none; }

  .hero-form-wrap {
    display: block;
    position: relative;
    background: var(--off-white);
    padding: 32px 16px;
  }
  .hero-form-wrap .hero-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    padding: 0;
    justify-content: center;
  }
  .hero-form-wrap .hero-form-card {
    max-width: 100%;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
  }
  .hero-form-wrap .hero-form-card-title { color: var(--black); }
  .hero-form-wrap .hero-form-fields input,
  .hero-form-wrap .hero-form-fields select {
    background: var(--off-white);
    color: var(--black);
    border: 1px solid var(--gray-200);
  }
  .hero-form-wrap .hero-form-fields input::placeholder { color: var(--gray-400); }
  .hero-form-wrap .hero-form-fields input:focus,
  .hero-form-wrap .hero-form-fields select:focus {
    background: var(--white);
  }
  .hero-form-wrap .hero-form-fields select option { color: var(--black); }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 100px 24px 24px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    z-index: 999;
  }

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

  .nav-link {
    width: 100%;
    padding: 16px 12px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link:after { display: none; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex !important; }

  .scope-num { font-size: 48px; }
  .scope-grid { gap: 24px; }
  .scope-divider { height: 60px; }
  .scope-desc { font-size: 14px; }
  .nav-mobile-group { display: flex; align-items: center; gap: 8px; }

  .nav-cta-mobile {
    display: inline-flex;
    padding: 8px 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 6px;
  }

  .hero-form-card .hero-success p { color: var(--black); }
  .whatsapp-float { display: none; }

  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }

  .overview-title { font-size: 30px; }

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

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-8px); }

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

  .gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    gap: 0;
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 16/9;
    height: auto;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-item:nth-child(1) { grid-column: unset; grid-row: unset; }
  .gallery-item:hover img { transform: none; }
  .gallery-item:hover .gallery-overlay { opacity: 0; }
  .gallery-actions { display: none; }

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

  .contact-split { grid-template-columns: 1fr; }
  .contact-copy { padding-right: 0; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-desc { max-width: none; }

  .cta-title { font-size: 30px; }
  .btn-large { padding: 14px 32px; font-size: 15px; }

  .mobile-sticky { display: flex; }
  body { padding-bottom: 64px; }

  .popup-box { padding: 28px 20px; }

  .lightbox { padding: 20px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 22px; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-item { flex-wrap: wrap; }
  .contact-form { padding: 24px 16px; }
}
