:root {
  --black: #111111;
  --graphite: #222222;
  --gray: #6f6f6f;
  --light: #f5f3ef;
  --white: #ffffff;
  --gold: #b89b5e;
  --line: rgba(17,17,17,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-weight: 800; font-size: 28px; letter-spacing: 2px; }
.brand-text { font-size: 10px; letter-spacing: 3px; color: var(--gray); }
.nav { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav-cta { padding: 10px 18px; border: 1px solid var(--black); border-radius: 999px; }
.menu-btn { display: none; background: none; border: 0; font-size: 28px; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 140px 6vw 80px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17,17,17,.82), rgba(17,17,17,.2)),
    url('assets/hero.svg') center/cover no-repeat;
}
.hero-content { position: relative; max-width: 780px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700; }
.eyebrow.dark { color: var(--gold); }
h1 { font-size: clamp(44px, 8vw, 92px); line-height: .95; margin: 12px 0 22px; }
h2 { font-size: clamp(30px, 4vw, 56px); line-height: 1.03; margin: 0 0 24px; }
h3 { margin-bottom: 8px; }
p { color: inherit; line-height: 1.7; }
.hero-subtitle { font-size: 20px; max-width: 620px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; }
.btn.primary { background: var(--gold); color: var(--black); }
.btn.secondary { border-color: rgba(255,255,255,.55); color: var(--white); }
.section { padding: 92px 6vw; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; background: var(--black); color: var(--white); }
.stats div { border-left: 1px solid rgba(255,255,255,.22); padding-left: 24px; }
.stats strong { display: block; font-size: 36px; }
.stats span { color: rgba(255,255,255,.65); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.features { display: grid; gap: 16px; margin-top: 28px; }
.features article, .card, .map-box, .lead-form { border: 1px solid var(--line); border-radius: 26px; padding: 26px; background: var(--white); box-shadow: 0 20px 60px rgba(0,0,0,.05); }
.section-head { max-width: 780px; margin-bottom: 32px; }
.section-head.light { color: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-image, .gallery-item, .map-box { min-height: 220px; display: grid; place-items: center; background: var(--light); color: var(--gray); font-weight: 700; }
.gallery { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { min-height: 320px; border-radius: 22px; background: linear-gradient(135deg, #2a2a2a, #555); color: var(--white); }
.map-box { min-height: 360px; text-align: center; }
.availability { background: var(--light); }
.table-wrap { overflow-x: auto; background: var(--white); border-radius: 22px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid var(--line); }
.badge { padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.available { background: #e9f8ed; }
.reserved { background: #fff3cf; }
.sold { background: #eeeeee; color: #777; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; background: var(--graphite); color: var(--white); }
.lead-form { display: grid; gap: 14px; }
input { width: 100%; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); font-size: 16px; }
.form-note { min-height: 24px; color: var(--gold); }
.footer { padding: 32px 6vw; display: flex; justify-content: space-between; gap: 18px; background: var(--black); color: var(--white); }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 24px 6vw; background: white; flex-direction: column; align-items: flex-start; }
  .nav.open { display: flex; }
  .stats, .split, .cards, .gallery-grid, .contact { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}
