/* ============================================================
   THE CROWNLINE RESIDENCES — styles.css
   Brand: Burgundy #6B0F1A | White | Gold accent #C9A84C
   Fonts: Cormorant Garamond (headings) + Montserrat (body)
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --burgundy:       #6B0F1A;
  --burgundy-dark:  #4A0B12;
  --burgundy-mid:   #8B1A28;
  --burgundy-light: #B5293A;
  --white:          #FFFFFF;
  --off-white:      #FDF8F5;
  --cream:          #F5EDE8;
  --gold:           #C9A84C;
  --gold-light:     #E6C97A;
  --text-dark:      #1A0205;
  --text-mid:       #4A2228;
  --text-muted:     #8B6B70;
  --border:         rgba(107,15,26,0.12);
  --shadow-sm:      0 2px 12px rgba(107,15,26,0.08);
  --shadow-md:      0 6px 30px rgba(107,15,26,0.14);
  --shadow-lg:      0 16px 60px rgba(107,15,26,0.20);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --transition:     all 0.3s ease;
  --nav-height:     80px;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; border: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.75;
}

/* ── LAYOUT HELPERS ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107,15,26,0.3);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 8px 30px rgba(107,15,26,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   1. NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0 40px;
}
#navbar.scrolled {
  background: rgba(55,8,14,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}
/* Text stays white when scrolled — no color override needed */
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.3));
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold); }
.nav-book {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(107,15,26,0.35);
}
.nav-book:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,15,26,0.5) !important;
}
.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
/* hamburger stays white on scroll */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 40px rgba(107,15,26,0.15);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.mobile-nav a:hover { color: var(--burgundy); }
.mobile-nav .btn { margin-top: 20px; align-self: flex-start; }

/* Sticky Book Button */
#sticky-book {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
#sticky-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ════════════════════════════════════════
   2. HERO SECTION
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 200vh;         /* 100vh splash + 100vh content */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--burgundy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1800&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;  /* parallax effect */
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74,11,18,0.55) 0%,
    rgba(74,11,18,0.35) 40%,
    rgba(26,2,5,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Hero Search Bar — moved to floating bar */
.hero-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 8px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 820px;
  margin: 0 auto 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.search-field {
  flex: 1;
  padding: 14px 22px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.search-field input,
.search-field select {
  width: 100%;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.search-field select { appearance: none; }
.search-btn {
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(107,15,26,0.4);
}
.search-btn:hover {
  background: var(--burgundy-dark);
  transform: scale(1.04);
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.hero-badge span { color: var(--gold-light); font-size: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   3. PLATFORMS STRIP
════════════════════════════════════════ */
#platforms {
  background: var(--burgundy-dark);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.platforms-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 8px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
}
.platform-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* ════════════════════════════════════════
   4. FEATURED PROPERTIES
════════════════════════════════════════ */
#properties { background: var(--off-white); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.section-header-left { flex: 1; }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(107,15,26,0.05);
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.card-badge.new { background: var(--gold); }
.wishlist-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.wishlist-btn:hover { background: var(--white); transform: scale(1.1); }
.wishlist-btn.active { color: var(--burgundy); }
.card-body { padding: 20px; }
.card-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-specs {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.card-specs span { display: flex; align-items: center; gap: 4px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy);
}
.card-price span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.card-rating .stars { color: var(--gold); font-size: 0.78rem; }
.card-view-btn {
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  transition: var(--transition);
  text-align: center;
  display: block;
}
.card-view-btn:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ════════════════════════════════════════
   5. WHY CHOOSE CROWNLINE
════════════════════════════════════════ */
#why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
}
.why-card {
  text-align: center;
  padding: 44px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.why-card:hover {
  border-color: var(--burgundy);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--burgundy);
  color: var(--white);
}
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   6. GALLERY
════════════════════════════════════════ */
#gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-top: 52px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  background: var(--cream);
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,11,18,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}
.gallery-expand {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--burgundy);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-expand { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,0,2,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  width: 100%;
}
.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none; border: none;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ════════════════════════════════════════
   7. AMENITIES
════════════════════════════════════════ */
#amenities { background: var(--white); }
.amenities-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.amenities-text { }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.amenity-item:hover {
  border-color: var(--burgundy);
  background: var(--cream);
  transform: translateY(-4px);
}
.amenity-icon {
  font-size: 1.7rem;
  color: var(--burgundy);
  transition: transform 0.3s;
}
.amenity-item:hover .amenity-icon { transform: scale(1.2); }
.amenity-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ════════════════════════════════════════
   8. LOCATIONS
════════════════════════════════════════ */
#locations { background: var(--off-white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.location-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 340px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.location-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover img { transform: scale(1.08); }
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,11,18,0.85) 0%, rgba(74,11,18,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px;
  transition: var(--transition);
}
.location-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.location-count {
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.location-upcoming {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.location-arrow {
  position: absolute;
  bottom: 24px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.location-card:hover .location-arrow {
  opacity: 1;
  background: var(--gold);
}

/* ════════════════════════════════════════
   9. TESTIMONIALS
════════════════════════════════════════ */
#testimonials { background: var(--burgundy-dark); }
#testimonials .section-label { color: var(--gold-light); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-sub { color: rgba(255,255,255,0.65); }
.testimonials-slider {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 28px;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.35);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 28px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.4);
}
.reviewer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 3px;
}
.reviewer-role {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.5);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   10. ABOUT
════════════════════════════════════════ */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 520px;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 28px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
}
.about-img-badge .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.about-img-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.about-text .section-label { margin-top: 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-stat {
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--burgundy);
}
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}
.about-stat .desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ════════════════════════════════════════
   11. CTA BANNER
════════════════════════════════════════ */
#cta {
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
}
#cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 50%; height: 150%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
#cta .section-label { color: var(--gold-light); }
#cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
#cta h2 em { font-style: italic; color: var(--gold-light); }
#cta p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   12. CONTACT
════════════════════════════════════════ */
#contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.detail-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--burgundy);
  flex-shrink: 0;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ════════════════════════════════════════
   13. FOOTER
════════════════════════════════════════ */
#footer {
  background: var(--text-dark);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img { height: 44px; }
.footer-brand .footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand .footer-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-contact-item span:first-child { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════
   PROPERTY MODAL
════════════════════════════════════════ */
#property-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,0,2,0.8);
  z-index: 8000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#property-modal.open { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-body { padding: 36px 40px 40px; }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--white); transform: rotate(90deg); }
.modal-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.modal-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.modal-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--burgundy);
}
.modal-price small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .amenities-inner { grid-template-columns: 1fr; gap: 48px; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 380px; }
  .about-img-badge { left: 16px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  #navbar { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-book { display: none; }

  /* Hero */
  .hero-search {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 12px;
    gap: 4px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
  }
  .search-field:last-of-type { border-bottom: none; }
  .hero-badges { gap: 14px; }

  /* Sections */
  .section-pad { padding: 64px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .properties-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { flex: 0 0 calc(90%); }

  /* Modal */
  .modal-body { padding: 24px; }
  .modal-footer { flex-direction: column; align-items: flex-start; }

  /* Sticky book */
  #sticky-book { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   HERO LOGO SPLASH — Premium first impression
════════════════════════════════════════ */
.hero-splash {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 32px 80px;
  text-align: center;
}
.hero-splash-logo {
  height: 130px;
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.5));
  animation: splashLogoIn 1.6s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.75) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.hero-splash-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  animation: splashFadeUp 1s ease 0.9s forwards;
}
.hero-splash-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 18px auto;
  opacity: 0;
  animation: splashFadeIn 0.8s ease 1.4s forwards;
}
.hero-splash-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  opacity: 0;
  animation: splashFadeUp 0.8s ease 1.6s forwards;
}
.hero-splash-cities {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: splashFadeUp 0.8s ease 1.9s forwards;
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes splashFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero content — headline below fold */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 120px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   FLOATING SEARCH BAR
════════════════════════════════════════ */
#search-float {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  padding: 16px 24px 24px;
  background: linear-gradient(to top, rgba(26,2,5,0.98) 0%, rgba(26,2,5,0.85) 100%);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
#search-float.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.search-float-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 60px;
  padding: 6px 6px 6px 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  gap: 0;
}
.search-float-inner .search-field {
  flex: 1;
  padding: 12px 20px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.search-float-inner .search-field:last-of-type { border-right: none; }
.search-float-inner .search-field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.search-float-inner .search-field input,
.search-float-inner .search-field select {
  width: 100%;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  background: transparent;
  border: none; outline: none;
  cursor: pointer;
}
.search-float-inner .search-field select { appearance: none; }
.search-float-inner .search-btn {
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(107,15,26,0.4);
  border: none; cursor: pointer;
}
.search-float-inner .search-btn:hover {
  background: var(--burgundy-dark);
  transform: scale(1.03);
}

/* ════════════════════════════════════════
   MOBILE — Bottom Navigation Bar
════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  background: rgba(20,2,4,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.18);
  /* safe area for iPhone home indicator */
  padding: 10px 8px calc(env(safe-area-inset-bottom, 0px) + 10px);
  justify-content: space-around;
  align-items: center;
  gap: 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.45);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 10px;
  transition: color 0.2s, transform 0.2s;
  min-width: 52px;
  position: relative;
}
.mobile-bottom-nav a:active { transform: scale(0.92); }
.mobile-bottom-nav a.active { color: var(--gold-light); }
.mobile-bottom-nav a.active .nav-icon { filter: drop-shadow(0 0 6px rgba(201,168,76,0.5)); }
.mobile-bottom-nav .nav-icon {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
}

/* Book CTA — elevated pill in center */
.mobile-bottom-nav .book-cta {
  background: linear-gradient(135deg, var(--burgundy-mid), var(--burgundy-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 18px !important;
  gap: 3px;
  margin: 0 2px;
  box-shadow: 0 -2px 16px rgba(107,15,26,0.6), 0 4px 12px rgba(107,15,26,0.4);
  border: 1px solid rgba(201,168,76,0.3);
  /* Lift it slightly above the bar */
  margin-top: -18px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.mobile-bottom-nav .book-cta .nav-icon { font-size: 1.1rem; }
.mobile-bottom-nav .book-cta span:last-child {
  color: var(--gold-light);
  font-size: 0.58rem;
}

/* ════════════════════════════════════════
   MOBILE OVERRIDES  ≤ 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show mobile bottom nav */
  .mobile-bottom-nav { display: flex; }

  /* Hide sticky book bubble on mobile — bottom nav already has Book button */
  #sticky-book { display: none !important; }

  /* Hide desktop search float on mobile — use bottom sheet instead */
  #search-float { display: none; }

  /* Mobile hero splash */
  .hero-splash { min-height: 100svh; padding-bottom: 100px; }
  .hero-splash-logo { height: 100px; }
  .hero-splash-brand { font-size: clamp(1.1rem, 6vw, 2rem); letter-spacing: 0.15em; }

  /* Mobile hero content */
  .hero-content { padding: 60px 20px 100px; }
  h1.hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-sub { font-size: 0.9rem; }

  /* Badges wrap on mobile */
  .hero-badges { gap: 12px; }
  .hero-badge { font-size: 0.72rem; }

  /* PROPERTIES — horizontal scroll carousel on mobile */
  #properties .grid-3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  #properties .grid-3::-webkit-scrollbar { display: none; }
  #properties .property-card {
    min-width: 78vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  /* Section spacing on mobile */
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }
  .container { padding: 0 20px; }

  /* Grid adjustments */
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Navbar on mobile */
  #navbar { padding: 0 20px; height: 68px; }
  .nav-logo img { height: 42px; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-links, .nav-phone { display: none; }

  /* Why section — 2 col */
  #why .grid-4 { grid-template-columns: 1fr 1fr; }

  /* Gallery grid — 2 col */
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }

  /* Locations grid — 2 col */
  #locations .grid-4 { grid-template-columns: 1fr 1fr; }

  /* About — stack */
  #about .grid-2 { grid-template-columns: 1fr; }
  .about-img-wrap { height: 280px; }

  /* Testimonials full width */
  .testimonial-slide { min-width: 90vw; }

  /* Contact form */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; }

  /* Add bottom padding so content isn't hidden behind bottom nav */
  body { padding-bottom: 70px; }

  /* Mobile search bar — full bottom sheet when triggered */
  #mobile-search-sheet {
    position: fixed;
    bottom: 70px; left: 0; right: 0;
    z-index: 840;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 24px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(.16,1,.3,1);
    border-top: 1px solid var(--border);
  }
  #mobile-search-sheet.visible { transform: translateY(0); }
  .mobile-search-handle {
    width: 36px; height: 4px;
    background: var(--border);
    border-radius: 4px;
    margin: 0 auto 20px;
  }
  .mobile-search-field {
    margin-bottom: 14px;
  }
  .mobile-search-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .mobile-search-field select,
  .mobile-search-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    appearance: none;
  }
  .mobile-search-btn {
    width: 100%;
    padding: 16px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    margin-top: 6px;
  }
}

/* ════════════════════════════════════════
   DESKTOP TWEAKS ≥ 1024px
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-splash-logo { height: 150px; }
  .hero-splash-brand { font-size: 3rem; }
  #properties .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
