:root {
  --navy: #0b1c2c;
  --navy-2: #12263a;
  --ink: #061018;
  --gold: #c4a35a;
  --gold-2: #e0c37a;
  --cream: #f4efe4;
  --cream-2: #e8dfcc;
  --muted: #9aa8b5;
  --ice: #d7e3ea;
  --coral: #b54a3c;
  --line: rgba(196, 163, 90, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: 0.01em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(6, 16, 24, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 50%;
  border: 1px solid var(--gold);
  background: #0b1c2c;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; letter-spacing: 0.08em; font-weight: 600; }
.brand-name span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 0.92rem; letter-spacing: 0.04em; }
.nav-links a { color: var(--ice); opacity: 0.85; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); opacity: 1; }
.nav-cta {
  background: var(--gold); color: var(--ink) !important; opacity: 1 !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
}
.menu-btn {
  display: none; background: none; border: 1px solid var(--line); color: var(--cream);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
}

/* Hero */
.hero {
  position: relative; min-height: 88vh; display: grid; place-items: end start;
  overflow: hidden;
}
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,16,24,0.25) 0%, rgba(6,16,24,0.55) 45%, rgba(6,16,24,0.94) 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 0 0 72px; max-width: 760px; }
.eyebrow {
  color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.95; margin-bottom: 18px; }
.hero p.lede { font-size: 1.15rem; color: var(--cream-2); max-width: 560px; margin-bottom: 28px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid transparent; transition: 0.2s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--gold); color: var(--gold-2); }
.btn-ghost:hover { background: rgba(196,163,90,0.12); }

/* Sections */
section { padding: 88px 0; }
.section-kicker { color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.72rem; font-weight: 700; margin-bottom: 10px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin-bottom: 16px; }
.muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--cream-2); max-width: 62ch; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-img { position: relative; }
.caption {
  margin-top: 10px; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card {
  background: linear-gradient(180deg, rgba(18,38,58,0.8), rgba(11,28,44,0.9));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.card h3 { font-size: 1.55rem; margin: 8px 0 10px; }
.card .num { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }

.specs { width: 100%; border-collapse: collapse; margin-top: 24px; }
.specs th, .specs td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); }
.specs th { color: var(--gold); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.specs td { color: var(--cream-2); }

.band {
  background:
    linear-gradient(180deg, rgba(6,16,24,0.55), rgba(6,16,24,0.82)),
    center/cover no-repeat;
  min-height: 360px; display: grid; place-items: center; text-align: center; padding: 72px 20px;
}
.band h2 { max-width: 16ch; margin-inline: auto; }

.quote {
  border-left: 3px solid var(--gold); padding-left: 22px; margin: 28px 0;
  font-family: "Cormorant Garamond", serif; font-size: 1.45rem; line-height: 1.35; color: var(--cream);
}

/* Form */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-card p { margin: 8px 0; }
.contact-card a { color: var(--gold-2); }
form { display: grid; gap: 14px; }
label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%; background: #0a1824; border: 1px solid var(--line); color: var(--cream);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note { font-size: 0.86rem; color: var(--muted); }
.success { display: none; color: var(--gold-2); padding: 12px; border: 1px solid var(--line); border-radius: 12px; }

/* Footer */
footer {
  border-top: 1px solid var(--line); padding: 48px 0 28px; color: var(--muted); font-size: 0.92rem;
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.foot h4 { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: 1.3rem; margin-bottom: 10px; }
.legal { border-top: 1px solid var(--line); padding-top: 16px; font-size: 0.8rem; }

@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(6,16,24,0.97); flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: grid; place-items: center; }
  .split, .split.reverse, .cards, .contact-grid, .foot, .form-row { grid-template-columns: 1fr; }
  .split img { height: 280px; }
  .hero { min-height: 78vh; }
}
