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

:root {
  --bg: #fafaf8;
  --surface: #f2f0eb;
  --card: #ffffff;
  --navy: #1e3a5f;
  --navy-2: #2d5282;
  --navy-light: #edf2f7;
  --navy-glow: rgba(30,58,95,0.12);
  --gold: #d97706;
  --gold-2: #f59e0b;
  --gold-light: #fffbeb;
  --gold-glow: rgba(217,119,6,0.18);
  --green: #059669;
  --green-light: #ecfdf5;
  --text: #111827;
  --muted: #6b7280;
  --subtle: #9ca3af;
  --border: rgba(30,58,95,0.1);
  --border-hover: rgba(30,58,95,0.28);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 2px 12px rgba(17,24,39,0.06);
  --shadow-md: 0 6px 28px rgba(17,24,39,0.09);
  --shadow-lg: 0 16px 52px rgba(17,24,39,0.13);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 66px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold-2); }

nav ul { display: flex; align-items: center; gap: 0.2rem; list-style: none; }

nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  white-space: nowrap;
}

nav ul a:hover { color: var(--navy); background: var(--navy-light); }
nav ul a.active { color: var(--navy); background: var(--navy-light); font-weight: 600; }

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--navy-2) !important;
  color: white !important;
  box-shadow: 0 4px 14px var(--navy-glow) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold-2);
  color: #1c0f00;
}
.btn-gold:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--gold-glow);
}

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

.btn-purple {
  background: var(--navy);
  color: white;
}
.btn-purple:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--navy-glow);
}

/* ── HERO (Home) ──────────────────────────── */
.hero-home {
  min-height: 91vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 8% 55%, rgba(30,58,95,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 60% at 92% 20%, rgba(217,119,6,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 50% 100%, rgba(5,150,105,0.05) 0%, transparent 65%);
  animation: drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes drift {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.04); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(5,150,105,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(5,150,105,0); }
}

.hero-home h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.grad {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 40%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-home > p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ── SECTION SHARED ──────────────────────── */
section { padding: 80px 5%; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.section-header { text-align: center; margin-bottom: 3rem; }

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.section-header p { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ── PROPERTY CARDS ───────────────────────── */
#properties { background: var(--surface); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.property-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

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

.property-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.property-card:hover .property-card-img img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.badge-available {
  background: rgba(5,150,105,0.12);
  border: 1px solid rgba(5,150,105,0.35);
  color: #065f46;
}

.badge-partial {
  background: rgba(217,119,6,0.12);
  border: 1px solid rgba(217,119,6,0.35);
  color: #92400e;
}

.property-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.property-card-address { font-size: 1.35rem; font-weight: 700; color: var(--text); }
.property-card-sub { font-size: 0.82rem; color: var(--muted); margin-top: -0.5rem; }

.property-specs {
  display: flex;
  gap: 1.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec { display: flex; align-items: center; gap: 0.4rem; font-size: 0.84rem; color: var(--muted); font-weight: 500; }

.property-price { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.property-price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.price-note { font-size: 0.77rem; color: var(--muted); margin-top: -0.5rem; }

.deal-banner {
  background: var(--gold-light);
  border: 1px solid rgba(217,119,6,0.22);
  border-radius: var(--radius-xs);
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  color: #78350f;
  line-height: 1.5;
}
.deal-banner a { color: var(--gold); font-weight: 700; text-decoration: underline; }

.avail-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.room-dot-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.room-dot { height: 8px; border-radius: 100px; background: var(--green); }
.room-dot.rented { background: #e5e7eb; }
.room-dot-label { font-size: 0.63rem; color: var(--muted); }
.avail-summary { display: flex; gap: 1rem; font-size: 0.78rem; }
.avail-item { display: flex; align-items: center; gap: 0.4rem; color: var(--muted); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; }
.avail-dot.green { background: var(--green); }
.avail-dot.gray { background: #d1d5db; }

.card-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.85rem 1.1rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}

.card-cta:hover { background: var(--navy); color: white; border-color: var(--navy); }
.card-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.property-card:hover .card-arrow { transform: translateX(4px); }

/* ── PROPERTY PAGE HERO ───────────────────── */
.prop-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.prop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,24,39,0.08) 0%,
    rgba(17,24,39,0.4) 50%,
    rgba(17,24,39,0.9) 100%
  );
}

.prop-hero-content { position: relative; padding: 0 5% 60px; width: 100%; }
.prop-hero-content .hero-tag { margin-bottom: 1rem; }

.prop-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.prop-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.prop-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-2);
  font-family: 'Space Grotesk', sans-serif;
}

.prop-price span {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
}

/* ── PROPERTY DETAIL ─────────────────────── */
.prop-detail-section { padding: 60px 5%; background: var(--surface); }

.prop-detail-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.glass-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.glass-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.prop-specs-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.prop-spec-item { display: flex; flex-direction: column; gap: 0.2rem; }
.prop-spec-val { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.prop-spec-key { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.contact-mini { display: flex; flex-direction: column; gap: 1rem; }
.contact-mini h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.contact-mini p { font-size: 0.84rem; color: var(--muted); }
.contact-mini-links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.4rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-xs);
  background: var(--navy-light);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-link:hover { color: white; background: var(--navy); border-color: var(--navy); }

/* ── GALLERY ──────────────────────────────── */
.gallery-section { padding: 60px 5%; background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,24,39,0.7));
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 1.5rem 0.75rem 0.6rem;
  opacity: 0;
  transition: opacity 0.2s;
}

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

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}

#lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  white-space: nowrap;
}

.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-prev:hover, .lb-next:hover { background: var(--navy); border-color: var(--navy); }

/* ── AMENITIES ────────────────────────────── */
.amenities-section { background: var(--surface); }

.amenities-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.amenity-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.amenity-icon { font-size: 1.8rem; margin-bottom: 0.7rem; display: block; }
.amenity-name { font-weight: 700; font-size: 0.93rem; color: var(--text); margin-bottom: 0.3rem; }
.amenity-desc { font-size: 0.79rem; color: var(--muted); line-height: 1.5; }

/* ── LOCATION ─────────────────────────────── */
.location-section { background: var(--bg); }

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.location-points { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.location-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.location-point:hover { border-color: var(--navy); transform: translateX(4px); }
.point-icon { font-size: 1.3rem; flex-shrink: 0; }
.point-text strong { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.15rem; color: var(--text); }
.point-text span { font-size: 0.79rem; color: var(--muted); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; width: 100%; }

.map-link {
  display: block;
  text-align: center;
  background: var(--navy-light);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.83rem;
  padding: 0.75rem;
  transition: var(--transition);
}
.map-link:hover { background: var(--navy); color: white; }

/* ── CONTACT ──────────────────────────────── */
.contact-section { background: var(--surface); }

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-top {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy-light), var(--gold-light));
}

.contact-top h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.contact-top p { color: var(--muted); font-size: 0.88rem; }

.contact-body { padding: 2rem 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-glow);
  background: white;
}

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

.form-submit {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-xs);
  padding: 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  margin-top: 0.4rem;
}

.form-submit:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 8px 22px var(--navy-glow); }

.contact-info-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.contact-info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--muted); }
.contact-info-item a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }

/* ── BACK LINK ────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xs);
  background: var(--card);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.back-link:hover { color: var(--navy); border-color: var(--navy); background: var(--navy-light); }

/* ── TOAST ────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border: 1.5px solid var(--green);
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
  z-index: 999;
}

.toast.show { display: block; animation: slideUp 0.3s ease; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2.5rem 5%;
  font-size: 0.83rem;
}

footer strong { color: rgba(255,255,255,0.9); }
footer a { color: var(--gold-2); text-decoration: none; }
footer a:hover { color: white; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  nav { position: relative; }

  nav ul {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(250,250,248,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 100;
    box-shadow: 0 8px 24px rgba(17,24,39,0.08);
  }

  nav ul.open { display: flex; }
  nav ul li { border-bottom: 1px solid var(--border); }
  nav ul li:last-child { border-bottom: none; }
  nav ul a { display: block; padding: 0.9rem 5%; font-size: 1rem; border-radius: 0; }
  .nav-cta { margin: 0.5rem 5%; display: inline-block !important; border-radius: var(--radius-xs) !important; }

  .hero-home { min-height: 80vh; padding: 60px 5% 80px; }
  .prop-hero { min-height: 55vh; }
  .properties-grid { grid-template-columns: 1fr; }
  .prop-detail-grid { grid-template-columns: 1fr; }
  .location-content { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-body, .contact-top { padding: 1.5rem; }
  .amenities-bento { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .amenities-bento { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .gallery-grid { gap: 0.35rem; }
  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }
}
