:root {
  --bg: #07080b;
  --bg-2: #0e1118;
  --bg-3: #151a24;
  --gold: #c9a227;
  --gold-2: #e6c35a;
  --gold-dim: rgba(201, 162, 39, 0.18);
  --cream: #f3ead6;
  --text: #f6f1e6;
  --muted: #b7b0a0;
  --line: rgba(243, 234, 214, 0.12);
  --danger: #c9a227;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.wrap-wide { width: min(1400px, calc(100% - 32px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 8, 11, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: "Cinzel", serif;
  font-weight: 700; color: var(--gold);
  letter-spacing: 0.04em;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block; font-family: "Cinzel", serif;
  font-size: 15px; letter-spacing: 0.16em;
}
.logo-text span {
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 16px;
  color: var(--gold) !important;
}
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--cream); padding: 8px 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 12px; cursor: pointer;
}

/* HERO */
.hero {
  position: relative; min-height: 88vh;
  display: grid; align-items: end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.55) contrast(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,11,0.15) 0%, rgba(7,8,11,0.35) 40%, rgba(7,8,11,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0 64px; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.34em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 16px;
}
h1, h2, h3 { font-family: "Cinzel", serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(42px, 7vw, 86px); max-width: 16ch; }
.hero p.lede {
  margin-top: 22px; max-width: 52ch; color: var(--cream);
  font-size: 18px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12px; border: 1px solid transparent; cursor: pointer;
  transition: 0.2s ease;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn-ghost:hover { background: rgba(243,234,214,0.08); }

/* SECTIONS */
section { padding: 88px 0; }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); }
.section-head p { color: var(--muted); max-width: 62ch; margin-top: 12px; }

.gold-rule {
  width: 64px; height: 1px; background: var(--gold); margin: 16px 0;
}

/* STATS */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat { text-align: center; }
.stat b {
  display: block; font-family: "Cinzel", serif;
  font-size: 32px; color: var(--gold);
}
.stat span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* GRID CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden; transition: transform 0.25s ease, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.45); }
.card .media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,8,11,0.78); border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 10px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}
.card-body { padding: 18px 18px 22px; }
.card-body h3 { font-size: 20px; margin-bottom: 6px; }
.meta { color: var(--muted); font-size: 13px; }
.price { color: var(--gold-2); margin-top: 10px; font-weight: 600; letter-spacing: 0.04em; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; }
.split.rev { grid-template-columns: 0.95fr 1.05fr; }
.split.rev .copy { order: -1; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  border: 1px solid var(--line); padding: 7px 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* GALLERY STRIP */
.mosaic {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 10px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic img:first-child { grid-row: 1 / span 2; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.field { margin-bottom: 14px; }
label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line);
  color: var(--text); padding: 12px 14px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
.info-block { border: 1px solid var(--line); padding: 28px; background: var(--bg-2); }
.info-block h3 { margin-bottom: 12px; }
.info-block p { color: var(--muted); margin-bottom: 10px; }

/* PAGE HERO SMALL */
.page-hero {
  position: relative; min-height: 42vh; display: grid; align-items: end;
}
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,11,0.2), rgba(7,8,11,0.9));
}
.page-hero .inner { position: relative; z-index: 2; padding: 80px 0 40px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px; background: #05060a;
}
.foot {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  margin-bottom: 36px;
}
.foot h4 {
  font-family: "Cinzel", serif; letter-spacing: 0.12em; font-size: 14px; margin-bottom: 14px;
}
.foot a, .foot p { color: var(--muted); display: block; margin-bottom: 8px; font-size: 14px; }
.legal {
  border-top: 1px solid var(--line); padding-top: 16px;
  color: #7d776b; font-size: 12px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.filter-bar button {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 8px 14px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; cursor: pointer;
}
.filter-bar button.on, .filter-bar button:hover {
  border-color: var(--gold); color: var(--gold);
}

.note {
  margin-top: 28px; color: #8b8478; font-size: 12px; max-width: 80ch;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 74px; left: 0; right: 0; background: #0b0d12;
    padding: 20px; border-bottom: 1px solid var(--line); gap: 16px;
  }
  .menu-btn { display: block; }
  .stats-grid, .grid-3, .grid-2, .split, .split.rev, .contact-grid, .foot, .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .split.rev .copy { order: 0; }
  .split img { height: 320px; }
  .mosaic img:first-child { grid-row: auto; height: 280px; }
  h1 { font-size: 42px; }
}
