:root {
  --black: #090909;
  --soft-black: #151515;
  --gold: #d5aa4f;
  --gold-light: #f1d58a;
  --cream: #f7f3e9;
  --white: #ffffff;
  --gray: #c8c8c8;
  --line: rgba(255,255,255,.12);
  --shadow: 0 30px 70px rgba(0,0,0,.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input { font: inherit; }
section { padding: 100px 7vw; }
h1, h2, h3 { margin: 0 0 20px; line-height: 1.08; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 900px; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
p { color: #d5d5d5; }

.announcement {
  padding: 10px 20px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-size: .92rem;
  font-weight: 700;
}
.announcement a { text-decoration: underline; margin-left: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: rgba(9,9,9,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
.main-nav a:hover { color: var(--gold-light); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--gold); }
.menu-toggle { display: none; }

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(213,170,79,.14), transparent 26%),
    linear-gradient(130deg, #090909 0%, #121212 68%, #1b1710 100%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-text { max-width: 700px; font-size: 1.18rem; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--black); }
.button-ghost { border-color: rgba(255,255,255,.35); }
.button-light { background: var(--cream); color: var(--black); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #a8a8a8; font-size: .88rem; }
.trust-row span::before { content: "◆"; color: var(--gold); margin-right: 8px; font-size: .6rem; }

.hero-card {
  position: relative;
  padding: 44px;
  min-height: 560px;
  background: linear-gradient(155deg, #1c1c1c, #0d0d0d);
  border: 1px solid rgba(213,170,79,.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gold-line { width: 70px; height: 3px; background: var(--gold); margin-bottom: 26px; }
.mini-label { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 800; }
.hero-card h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); max-width: 500px; }
.cover-stack { position: absolute; right: -30px; bottom: -45px; width: 320px; height: 330px; }
.cover {
  position: absolute;
  width: 210px;
  height: 290px;
  border: 1px solid rgba(213,170,79,.45);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.cover-back { right: 40px; top: 0; transform: rotate(8deg); background: #252525; }
.cover-front {
  right: 85px; top: 20px; padding: 30px 22px;
  display: flex; flex-direction: column; justify-content: center;
  transform: rotate(-4deg);
  background: #080808;
}
.cover-front span { color: var(--gold); letter-spacing: .2em; font-size: .7rem; }
.cover-front strong { font-family: "Playfair Display"; font-size: 1.55rem; line-height: 1.05; }
.cover-front em { margin-top: 18px; color: var(--gold); font-style: normal; letter-spacing: .14em; font-size: .72rem; }

.problem-section { background: var(--cream); color: var(--black); }
.problem-section h2, .problem-section h3 { color: var(--black); }
.problem-section p { color: #525252; }
.problem-section > div:first-child { max-width: 800px; margin-bottom: 50px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-grid article { padding: 34px; background: white; border-top: 4px solid var(--gold); }
.problem-grid article span { color: var(--gold); font-weight: 800; }

.about-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.about-visual { min-height: 500px; display: grid; place-items: center; background: linear-gradient(140deg,#211d16,#101010); border: 1px solid rgba(213,170,79,.2); }
.quote-card { max-width: 420px; padding: 45px; background: rgba(0,0,0,.38); border-left: 3px solid var(--gold); }
.quote-card span { color: var(--gold); font-size: 5rem; line-height: .5; font-family: serif; }
.quote-card p { font-size: 1.45rem; color: white; font-family: "Playfair Display", serif; }
.about-copy p { max-width: 700px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; }

.blueprint-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
  background: #121212;
}
.included { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.included div { padding: 20px; border: 1px solid var(--line); }
.included strong, .included span { display: block; }
.included strong { color: var(--gold); }
.included span { color: #bdbdbd; font-size: .9rem; margin-top: 6px; }

.lead-form { padding: 38px; background: var(--cream); color: var(--black); box-shadow: var(--shadow); }
.form-kicker { color: #80611f; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.lead-form h3 { font-family: "Playfair Display", serif; font-size: 2rem; }
.lead-form label { display: block; margin: 18px 0; font-size: .86rem; font-weight: 700; }
.lead-form input { width: 100%; margin-top: 8px; padding: 15px; border: 1px solid #cfc8b8; background: white; }
.lead-form .button { width: 100%; margin-top: 8px; cursor: pointer; }
.form-note { color: #777; font-size: .75rem; }
.success-message { margin-top: 14px; color: #2e6f3d; font-weight: 700; }

.program-section { background: linear-gradient(135deg, #d5aa4f, #9f772a); color: var(--black); }
.program-card { max-width: 980px; margin: 0 auto; text-align: center; padding: 30px; }
.program-card .eyebrow, .program-card p, .program-card small { color: var(--black); }
.program-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 36px 0; }
.program-points span { padding: 16px; border: 1px solid rgba(0,0,0,.28); font-weight: 700; font-size: .9rem; }
.program-card small { display: block; margin-top: 18px; }

.community-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.community-section > div { max-width: 700px; }

.faq-section { background: var(--cream); color: var(--black); }
.faq-section h2 { color: var(--black); }
.faq-list { max-width: 900px; margin-top: 40px; }
details { border-top: 1px solid #cfc8b8; padding: 22px 0; }
details:last-child { border-bottom: 1px solid #cfc8b8; }
summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
details p { color: #555; max-width: 760px; }

.final-cta { text-align: center; background: radial-gradient(circle at 50% 20%, rgba(213,170,79,.16), transparent 35%); }
.final-cta p { margin-left: auto; margin-right: auto; max-width: 700px; }
.final-cta .button { margin-top: 18px; }

footer { padding: 50px 7vw; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand p { margin: 4px 0 0; font-size: .85rem; }
.footer-links { display: flex; gap: 22px; font-size: .9rem; color: #bbb; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 25px; border-top: 1px solid var(--line); font-size: .8rem; }

@media (max-width: 900px) {
  section { padding: 75px 6vw; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: 24px 6vw;
    background: #0b0b0b;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; background: transparent; color: white; border: 1px solid var(--line); padding: 9px 12px; }
  .hero, .about-section, .blueprint-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: 520px; }
  .problem-grid, .program-points { grid-template-columns: 1fr 1fr; }
  .community-section { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  h1 { font-size: 3rem; }
  section { padding: 62px 22px; }
  .site-header { padding: 15px 22px; }
  .brand strong { font-size: .88rem; }
  .hero-card { padding: 30px; min-height: 500px; }
  .cover-stack { right: -80px; }
  .problem-grid, .program-points, .included, .check-list { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .lead-form { padding: 28px 22px; }
  footer { grid-template-columns: 1fr; padding: 40px 22px; }
  .footer-links { flex-wrap: wrap; }
}
