@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201,168,76,.18);
  --bg: #0c0c0e;
  --bg2: #141416;
  --bg3: #1a1a1e;
  --text: #f0ede8;
  --muted: #8a8478;
  --line: rgba(201,168,76,.18);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { color: #c8c2b8; line-height: 1.75; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
strong { color: var(--text); font-weight: 700; }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
main { padding: 0 0 80px; }

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(12,12,14,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 14px 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
}
nav { display: flex; gap: 4px; flex-wrap: wrap; }
nav a {
  color: var(--muted); font-size: .85rem; font-weight: 500;
  padding: 6px 11px; border-radius: 8px;
  transition: all .2s;
}
nav a:hover, nav a.active {
  color: var(--text); background: var(--gold-dim);
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 70px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; }
.eyebrow {
  display: inline-block;
  color: var(--gold); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  background: var(--gold-dim);
  padding: 5px 14px; border-radius: 30px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.hero h1 { max-width: 820px; color: var(--text); margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.lead {
  font-size: 1.2rem; color: #b0a898; max-width: 680px; margin-bottom: 36px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 10px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0c0c0e;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  transition: all .2s; white-space: nowrap;
}
.btn:hover { background: var(--gold-light); color: #0c0c0e; transform: translateY(-1px); }
.btn.ghost {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn.ghost:hover { background: var(--gold-dim); color: var(--gold-light); transform: translateY(-1px); }
.btn.sm { padding: 9px 18px; font-size: .85rem; }

/* ── VIDEO EMBED ─────────────────────────────────── */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: var(--radius);
  background: #000; border: 1px solid var(--line);
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.media-block { margin: 32px 0; }

/* ── SECTIONS ─────────────────────────────────────── */
section { margin: 56px 0; }
.section-label {
  color: var(--gold); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 28px; }

/* ── CARDS ───────────────────────────────────────── */
.cards, .card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin: 28px 0;
}
.card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card h3 { color: var(--gold-light); margin-bottom: 10px; }
.card p { font-size: .95rem; }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

/* ── SPLIT ─────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 24px 0;
}
.split > div {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.split .pro h3 { color: #6fce82; }
.split .con h3 { color: #e8735a; }

/* ── GEAR ────────────────────────────────────────── */
.gear-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin: 28px 0;
}
.gear-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .2s;
}
.gear-card:hover { border-color: var(--gold); }
.gear-icon { font-size: 2rem; flex-shrink: 0; }
.gear-card h3 { color: var(--gold-light); margin-bottom: 6px; }
.gear-card p { font-size: .9rem; }
.gear-card .gear-link { font-size: .85rem; font-weight: 700; }

/* ── MASTERCLASS ─────────────────────────────────── */
.masterclass-box {
  background: linear-gradient(135deg, var(--bg2), rgba(201,168,76,.08));
  border: 1px solid var(--gold);
  border-radius: 16px; padding: 40px;
  position: relative; overflow: hidden;
}
.masterclass-box::before {
  content: '🎸';
  position: absolute; right: 30px; top: 20px;
  font-size: 5rem; opacity: .12;
}
.masterclass-box h2 { color: var(--gold-light); margin-bottom: 14px; }
.masterclass-box .price {
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold); font-family: 'Playfair Display', serif;
  margin: 16px 0 6px;
}
.masterclass-box .price span { font-size: 1rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }

/* ── STREAMING STRIP ─────────────────────────────── */
.streaming-strip {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.streaming-strip p { margin: 0; flex: 1; min-width: 200px; }

/* ── FAQ ─────────────────────────────────────────── */
details {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); margin: 10px 0;
  overflow: hidden;
}
details[open] { border-color: var(--gold); }
summary {
  padding: 18px 22px; cursor: pointer; font-weight: 700;
  color: var(--text); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { padding: 0 22px 20px; }

/* ── STEPS ───────────────────────────────────────── */
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex; gap: 18px; margin-bottom: 22px;
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gold); color: #0c0c0e;
  border-radius: 50%;
  font-weight: 900; font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.steps li strong { display: block; color: var(--text); margin-bottom: 4px; }

/* ── HIGHLIGHT BOX ───────────────────────────────── */
.highlight {
  background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(201,168,76,.04));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.highlight p { color: var(--text); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0; background: var(--bg2);
  color: var(--muted); font-size: .88rem;
}
.footer-inner {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
}
.footer-brand { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .85rem; }
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 800px) {
  .header-inner { flex-direction: column; align-items: flex-start; padding: 12px 20px; }
  nav { gap: 4px; }
  .cards, .card-grid { grid-template-columns: 1fr; }
  .split, .gear-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  h1 { font-size: 2rem; }
  .masterclass-box { padding: 28px 22px; }
  .streaming-strip { flex-direction: column; }
}
