:root {
  --bg: #0b0a09;
  --bg-2: #141210;
  --panel: #1a1815;
  --ink: #f3ece0;
  --muted: #a89c8c;
  --gold: #c9a65a;
  --gold-2: #e8d09a;
  --line: rgba(201, 166, 90, 0.28);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,10,9,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase; }
.brand strong { display: block; font-size: 1.05rem; font-weight: 700; }
.brand span { display: block; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.18em; margin-top: 2px; }

nav ul { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.92rem; letter-spacing: 0.04em; }
nav a.active, nav a:hover { color: var(--gold); }
.phone-link { color: var(--gold); font-weight: 600; white-space: nowrap; }

.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--ink); padding: 8px 12px; border-radius: 4px; cursor: pointer;
}

.hero {
  position: relative; min-height: 78vh;
  display: grid; align-items: end;
  background: #000 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,.15) 20%, rgba(11,10,9,.88) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 0 0 56px; }
.eyebrow { color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.75rem; }
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 500; line-height: 0.95; margin: 10px 0 14px;
}
.lede { max-width: 36rem; color: #ddd4c6; font-size: 1.12rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.btn {
  display: inline-block; padding: 12px 20px; border-radius: 2px;
  border: 1px solid var(--gold); font-size: 0.88rem; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-solid { background: var(--gold); color: #1a1408; }
.btn-solid:hover { background: var(--gold-2); color: #1a1408; }
.btn-ghost { color: var(--gold); }
.section { padding: 72px 0; }
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; margin-bottom: 10px;
}
.rule { width: 64px; height: 2px; background: var(--gold); margin: 12px 0 28px; border: 0; }
.muted { color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery img, .shot {
  width: 100%; height: 240px; object-fit: cover; background: #111;
}
.shot-tall { height: 320px; }
.card {
  background: var(--panel); border: 1px solid var(--line); padding: 22px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--gold-2); }

.player {
  background: #000; border: 1px solid var(--line);
}
.player video { width: 100%; max-height: 70vh; background: #000; }

form { display: grid; gap: 12px; max-width: 560px; }
label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
input, select, textarea {
  width: 100%; background: #0e0d0b; color: var(--ink);
  border: 1px solid var(--line); padding: 11px 12px; font: inherit;
}
textarea { min-height: 140px; resize: vertical; }

footer {
  border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 0.9rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.page-hero {
  padding: 56px 0 20px;
  background: linear-gradient(180deg, #1a120c 0%, var(--bg) 100%);
}

.tracks { display: grid; gap: 14px; margin-top: 28px; }
.track {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px 18px 14px;
}
.track h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem; font-weight: 500; color: var(--gold-2);
}
.track .time { color: var(--muted); font-size: 0.82rem; margin: 2px 0 10px; }
.track audio { width: 100%; height: 36px; }

.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.product h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem; font-weight: 500; color: var(--gold-2);
}
.price { color: var(--gold); font-size: 1.15rem; letter-spacing: 0.04em; }
.product p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.product .actions { margin-top: 8px; }

@media (max-width: 860px) {
  .products { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .menu-btn { display: block; }
  nav { display: none; width: 100%; }
  header.open nav { display: block; }
  header.open nav ul { flex-direction: column; gap: 12px; padding: 8px 0 16px; }
  .nav { flex-wrap: wrap; }
  .grid-2, .grid-3, .gallery { grid-template-columns: 1fr; }
  .gallery img, .shot { height: 220px; }
  .hero { min-height: 70vh; }
}
