/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIABLES ===== */
:root {
  --gold: #b8963e;
  --gold-light: #d4af6a;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --gray: #6b7280;
  --light: #f9f6f0;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.5px; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #9a7a2e; transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.7); color: #fff;
  padding: 13px 30px; border-radius: var(--radius); font-weight: 500;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-sm {
  display: inline-block; border: 1.5px solid var(--gold); color: var(--gold);
  padding: 10px 22px; border-radius: var(--radius); font-size: 0.875rem;
  font-weight: 500; transition: all 0.2s; margin-top: 16px;
}
.btn-outline-sm:hover { background: var(--gold); color: #fff; }
.btn-nav {
  background: var(--gold); color: #fff; padding: 10px 22px;
  border-radius: var(--radius); font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: #9a7a2e; }

/* ===== SECTION HELPERS ===== */
.section { padding: 80px 0; }
.section-tag { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-tag.center { text-align: center; }
.section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.25; margin-bottom: 20px; }
.section h2.center { text-align: center; }
.section-sub { color: var(--gray); max-width: 600px; margin: 0 auto 48px; text-align: center; }
.check-list { list-style: none; margin: 20px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-list li { font-size: 0.9rem; color: #444; padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,15,15,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,62,0.2);
  transition: all 0.3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 3px; }
.logo-sub { font-size: 0.65rem; letter-spacing: 4px; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 400; transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.mobile-nav { display: none; flex-direction: column; background: var(--dark); padding: 16px 24px 24px; gap: 16px; }
.mobile-nav a { color: rgba(255,255,255,0.8); font-size: 0.95rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1208 50%, #0f0f0f 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%, rgba(15,15,15,0.4) 50%, rgba(15,15,15,0.8) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 70px; max-width: 700px; }
.hero-tag { font-size: 0.8rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 500; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-rera { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-rera span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 1.2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gold); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.3); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1px; }

/* ===== OVERVIEW ===== */
.overview { background: var(--light); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.overview-text h2 { font-family: 'Playfair Display', serif; }
.overview-text p { color: #555; margin-bottom: 16px; }
.image-placeholder { background: linear-gradient(135deg, #e8dcc8, #d4c4a0); border-radius: 12px; height: 420px; display: flex; align-items: center; justify-content: center; color: #9a8060; font-size: 0.9rem; }

/* ===== AMENITIES ===== */
.amenities { background: var(--dark); }
.amenities .section-tag { color: var(--gold-light); }
.amenities h2 { color: #fff; }
.amenities .section-sub { color: rgba(255,255,255,0.6); }
.amenities-tabs { display: flex; gap: 0; margin-bottom: 40px; border: 1px solid rgba(184,150,62,0.3); border-radius: var(--radius); overflow: hidden; }
.tab-btn { flex: 1; padding: 14px 20px; background: transparent; border: none; color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.tab-btn.active { background: var(--gold); color: #fff; }
.tab-btn:hover:not(.active) { background: rgba(184,150,62,0.1); color: rgba(255,255,255,0.9); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px 20px; transition: border-color 0.2s, background 0.2s; }
.amenity-card:hover { border-color: rgba(184,150,62,0.4); background: rgba(184,150,62,0.05); }
.amenity-card span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.amenity-card h3 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.amenity-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== FLOOR PLANS ===== */
.floorplans { background: var(--light); }
.fp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.fp-card { background: #fff; border: 1px solid #e5e0d8; border-radius: 12px; padding: 32px 28px; position: relative; transition: box-shadow 0.2s; }
.fp-card:hover { box-shadow: var(--shadow); }
.fp-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,150,62,0.2); }
.fp-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.fp-type { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 16px; }
.fp-sizes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.fp-sizes span { font-size: 0.875rem; color: #555; padding: 6px 0; border-bottom: 1px solid #f0ece4; }
.fp-sizes span:last-child { border-bottom: none; }

/* ===== LOCATION ===== */
.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-text h2 { font-family: 'Playfair Display', serif; }
.location-text p { color: #555; margin-bottom: 24px; }
.location-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.location-list li { font-size: 0.95rem; color: #444; padding: 12px 16px; background: var(--light); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.location-list li strong { color: var(--dark); }
.location-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid #e5e0d8; border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-weight: 600; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 20px; color: #555; font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-text .section-tag { color: var(--gold-light); }
.contact-text h2 { font-family: 'Playfair Display', serif; color: #fff; }
.contact-text p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact-info p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.contact-info a { color: var(--gold-light); }
.rera-badge { background: rgba(184,150,62,0.1); border: 1px solid rgba(184,150,62,0.3); border-radius: var(--radius); padding: 12px 16px; }
.rera-badge p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.contact-form-wrap { background: #fff; border-radius: 12px; padding: 36px 32px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; color: var(--dark); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: #444; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e0dbd0; border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit; color: var(--dark); background: #fafaf8;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.form-note { font-size: 0.75rem; color: #999; margin-top: 12px; text-align: center; }
.form-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 14px 16px; color: #166534; font-size: 0.9rem; margin-top: 16px; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #080808; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 12px; line-height: 1.7; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-legal h4 { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-legal p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.disclaimer { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; margin-top: 8px; line-height: 1.6; }
.footer-bottom { text-align: center; padding: 20px; color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .overview-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.2); }
  .stat { background: var(--gold); border-right: none; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .amenities-tabs { flex-direction: column; }
  .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .hero-rera { flex-direction: column; gap: 8px; }
}

/* ===== HERO with real image ===== */
.hero {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero::before { display: none; }

/* ===== OVERVIEW real image ===== */
.overview-image img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 12px; box-shadow: var(--shadow);
}

/* ===== MASTER PLAN ===== */
.masterplan { background: #fff; }
.masterplan-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.masterplan-text h2 { font-family: 'Playfair Display', serif; }
.masterplan-text p { color: #555; margin-bottom: 16px; }
.masterplan-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); cursor: zoom-in; transition: transform 0.3s; }
.masterplan-image img:hover { transform: scale(1.02); }

/* ===== GALLERY ===== */
.gallery { background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 40px;
}
.gallery-item { overflow: hidden; border-radius: 8px; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-large img { height: 100%; min-height: 452px; }

/* ===== FLOOR PLAN images ===== */
.fp-img { width: 100%; height: 180px; object-fit: contain; background: #f5f2ec; border-radius: 6px; margin: 12px 0; padding: 8px; }

@media (max-width: 1024px) {
  .masterplan-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 2; }
  .gallery-large img { min-height: 300px; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 160px; }
  .gallery-large img { min-height: 200px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
  .gallery-large img { min-height: auto; height: 220px; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  font-size: 0.9rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* ===== PAYMENT PLAN ===== */
.payment-plan { background: var(--dark); }
.payment-plan .section-tag { color: var(--gold-light); }
.payment-plan h2 { color: #fff; }
.payment-plan .section-sub { color: rgba(255,255,255,0.55); }
.payment-grid {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin: 48px auto 36px; max-width: 780px;
}
.payment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: 16px; padding: 48px 40px;
  text-align: center; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.payment-card:hover { border-color: rgba(184,150,62,0.5); background: rgba(184,150,62,0.06); }
.payment-percent {
  font-family: 'Playfair Display', serif;
  font-size: 7rem; font-weight: 700; line-height: 1;
  color: #fff; letter-spacing: -4px;
}
.payment-percent span {
  font-size: 2.8rem; color: var(--gold); vertical-align: super; letter-spacing: 0;
}
.payment-label {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin: 14px 0 28px;
}
.payment-breakdown { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.payment-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.75); font-size: 0.95rem;
}
.pill {
  background: var(--gold); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.payment-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold); font-weight: 700;
  flex-shrink: 0; padding: 0 24px;
  display: flex; align-items: center;
}
.payment-cta { text-align: center; margin-top: 8px; }

@media (max-width: 640px) {
  .payment-grid { flex-direction: column; align-items: center; gap: 16px; max-width: 340px; }
  .payment-plus { padding: 0; transform: rotate(90deg); }
  .payment-card { width: 100%; padding: 36px 28px; }
  .payment-percent { font-size: 5rem; }
}

/* ===== SPECIFICATIONS ===== */
.specs { background: var(--light); }
.specs-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin-left: auto; margin-right: auto; }
.spec-item { background: #fff; border: 1px solid #e5e0d8; border-radius: var(--radius); overflow: hidden; }
.spec-item summary { padding: 18px 24px; font-weight: 600; font-size: 0.95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--dark); }
.spec-item summary::-webkit-details-marker { display: none; }
.spec-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); }
.spec-item[open] summary::after { content: '−'; }
.spec-item[open] summary { color: var(--gold); border-bottom: 1px solid #f0ece4; }
.spec-content { padding: 16px 24px 20px; display: flex; flex-direction: column; gap: 10px; }
.spec-content p { font-size: 0.875rem; color: #555; line-height: 1.7; }
.spec-content strong { color: var(--dark); }

/* ===== BRAND TRUST ===== */
.brand-trust { background: #fff; }
.brand-inner { text-align: center; }
.brand-logo-wrap { margin: 32px auto; max-width: 200px; }
.brand-logo-wrap img { width: 100%; filter: brightness(0); opacity: 0.8; }
.brand-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.brand-point { background: var(--light); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.brand-point span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.brand-point p { font-size: 0.875rem; color: #555; line-height: 1.6; }

/* ===== FOOTER UPDATES ===== */
.footer-social { margin-bottom: 10px; }
.footer-social a { color: var(--gold-light); margin: 0 4px; font-size: 0.85rem; }
.footer-social a:hover { color: #fff; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 800px; margin: 8px auto 12px; line-height: 1.6; }

@media (max-width: 768px) {
  .brand-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .brand-points { grid-template-columns: 1fr; }
}

/* ===== DISCLOSURE BANNER ===== */
.disclosure-bar {
  background: #1a1200;
  border-bottom: 1px solid rgba(184,150,62,0.4);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  position: relative; z-index: 200;
}
.disclosure-bar p {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  text-align: center; line-height: 1.5; max-width: 900px;
}
.disclosure-bar a { color: var(--gold-light); text-decoration: underline; }
.disclosure-bar button {
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1rem; cursor: pointer; flex-shrink: 0; padding: 4px 8px;
  transition: color 0.2s;
}
.disclosure-bar button:hover { color: #fff; }

/* push header down to account for disclosure bar */
.header { top: 0; }

/* channel partner note in footer */
.channel-partner-note {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 8px; line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
}
.channel-partner-note a { color: var(--gold-light); text-decoration: underline; }

/* ===== LANDING PAGES ===== */
.lp-hero {
  background: var(--dark); padding: 120px 0 60px;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.lp-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin: 12px 0 16px; }
.lp-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 680px; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

.lp-content { background: var(--light); }
.lp-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.lp-main h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin: 36px 0 12px; }
.lp-main h2:first-child { margin-top: 0; }
.lp-main p { color: #555; margin-bottom: 14px; line-height: 1.75; }
.lp-list { list-style: none; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.lp-list li { font-size: 0.9rem; color: #444; padding: 10px 14px; background: #fff; border-radius: var(--radius); border-left: 3px solid var(--gold); }

.lp-cta-box { background: var(--dark); border-radius: 12px; padding: 32px; margin: 36px 0; text-align: center; }
.lp-cta-box h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.lp-cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 20px; font-size: 0.9rem; }

/* Price table */
.price-table { border: 1px solid #e5e0d8; border-radius: var(--radius); overflow: hidden; margin: 16px 0; }
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 16px; border-bottom: 1px solid #f0ece4; font-size: 0.875rem; }
.price-row:last-child { border-bottom: none; }
.price-row.header-row { background: var(--dark); color: var(--gold-light); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.5px; }
.price-row:not(.header-row) { background: #fff; color: #444; }
.price-row:not(.header-row):nth-child(even) { background: #faf8f4; }
.price-note { font-size: 0.78rem; color: #999; margin-top: 8px; }

/* Floor plan grid on LP */
.fp-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0 28px; }
.fp-plan-card { background: #fff; border: 1px solid #e5e0d8; border-radius: var(--radius); overflow: hidden; text-align: center; }
.fp-plan-card img { width: 100%; height: 200px; object-fit: contain; background: #f5f2ec; padding: 8px; }
.fp-plan-card p { font-size: 0.8rem; color: #666; padding: 10px; border-top: 1px solid #f0ece4; }

/* Review score box */
.review-score-box { display: flex; gap: 12px; flex-wrap: wrap; background: var(--dark); border-radius: 12px; padding: 28px; margin-bottom: 32px; }
.review-score-item { flex: 1; min-width: 80px; text-align: center; }
.review-score-item .score { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); display: block; }
.review-score-item p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.score-overall .score { color: #fff; }

/* Sidebar */
.lp-sidebar { position: sticky; top: 90px; }
.sidebar-form { background: #fff; border: 1px solid #e5e0d8; border-radius: 12px; padding: 28px 24px; margin-bottom: 20px; }
.sidebar-form h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 20px; color: var(--dark); }
.sidebar-links { background: var(--dark); border-radius: 12px; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.sidebar-links h4 { color: var(--gold-light); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.sidebar-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.sidebar-links a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-sidebar { position: static; }
  .fp-plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fp-plan-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr 1fr; font-size: 0.8rem; }
  .price-row.header-row span:last-child,
  .price-row span:last-child { grid-column: span 2; }
}

/* ===== OFFERS PAGE ===== */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 36px; }
.offer-card { background: #fff; border: 1px solid #e5e0d8; border-radius: 12px; padding: 28px 24px; position: relative; transition: box-shadow 0.2s; }
.offer-card:hover { box-shadow: var(--shadow); }
.offer-card.highlight { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,150,62,0.15); }
.offer-icon { font-size: 2rem; margin-bottom: 12px; }
.offer-card h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.offer-card p { font-size: 0.85rem; color: #555; line-height: 1.6; }
.offer-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 12px; }

/* ===== AMENITIES STAT ROW ===== */
.amenities-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0 36px; }
.a-stat { background: var(--dark); border-radius: var(--radius); padding: 20px; text-align: center; }
.a-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.a-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 768px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .amenities-stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .offers-grid { grid-template-columns: 1fr; }
}
