:root {
  --black: #080706;
  --black-soft: #11100d;
  --charcoal: #1a1712;
  --gold: #d6ae57;
  --gold-deep: #9b7430;
  --champagne: #f4e6c5;
  --cream: #fff8ea;
  --muted: #b9ad96;
  --line: rgba(214, 174, 87, 0.26);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
}

a { color: inherit; }

.site {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 4%, rgba(214, 174, 87, 0.18), transparent 24rem),
    linear-gradient(135deg, #080706 0%, #14110c 45%, #070605 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: clamp(23px, 5vw, 34px);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--champagne);
  text-decoration: none;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--black) !important;
  background: linear-gradient(135deg, #f5d783, var(--gold) 48%, #b88938);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 76px);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(214, 174, 87, 0.16);
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.section,
.final-cta {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 910px;
  font-size: clamp(48px, 10vw, 104px);
  line-height: 0.92;
}

h2 {
  color: var(--cream);
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1;
}

h3 {
  margin: 0;
  color: var(--cream);
  font-size: 19px;
  line-height: 1.28;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-sub {
  max-width: 700px;
  margin: 24px 0 32px;
  font-size: clamp(17px, 2.5vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.hero-actions p,
.redirect-note {
  margin: 0;
  color: var(--champagne);
  font-size: 13px;
}

.gold-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border: 1px solid #ffe39b;
  background: linear-gradient(135deg, #ffe6a3 0%, var(--gold) 45%, #a77527 100%);
  box-shadow: 0 18px 44px rgba(214, 174, 87, 0.2);
  color: #100b04;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(214, 174, 87, 0.29);
}

.hero-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.07), rgba(255, 248, 234, 0.02)),
    rgba(17, 16, 13, 0.78);
}

.panel-topline {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-price {
  margin: 12px 0 4px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(74px, 13vw, 118px);
  font-weight: 700;
  line-height: 0.9;
}

.hero-panel dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.hero-panel div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(214, 174, 87, 0.16);
}

.hero-panel dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 5px 0 0;
  color: var(--champagne);
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 64px);
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 230, 197, 0.04);
}

.intro-band h2 {
  max-width: 980px;
}

.intro-band p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.dark-section {
  background:
    linear-gradient(90deg, rgba(214, 174, 87, 0.12), transparent 34%),
    var(--black-soft);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(30px, 6vw, 56px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.feature-card {
  grid-column: span 3;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, 0.035);
}

.feature-card.wide { grid-column: span 6; }

.feature-card span,
.process-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.feature-card p { margin-bottom: 0; }

.analysis-section {
  background: linear-gradient(180deg, #17130d, #0b0907);
}

.analysis-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.analysis-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) 1fr;
  gap: 18px;
  padding: 24px;
  background: #0f0d0a;
}

.analysis-list strong {
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.analysis-list p { margin: 0; }

.process-section {
  background: rgba(255, 248, 234, 0.025);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(214, 174, 87, 0.09), rgba(214, 174, 87, 0.025));
}

.final-cta {
  padding: clamp(64px, 10vw, 130px) clamp(18px, 5vw, 64px);
  text-align: center;
  background:
    linear-gradient(rgba(8, 7, 6, 0.84), rgba(8, 7, 6, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(214, 174, 87, 0.08) 45px);
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 28px;
}

.final-cta .gold-button { margin-bottom: 14px; }

.footer-strip {
  padding: 26px 18px;
  border-top: 1px solid var(--line);
  background: #050403;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.guide-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 90px) 18px;
}

.guide-card {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, 0.04);
}

.guide-card h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 48px);
}

.guide-card li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-card strong { color: var(--champagne); }

code {
  color: var(--champagne);
  background: rgba(214, 174, 87, 0.12);
  padding: 2px 5px;
}

.page-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 90px) 18px;
}

.page-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
}

.page-lede {
  max-width: 760px;
  margin: 20px 0 30px;
  font-size: 18px;
}

.form-card {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 248, 234, 0.045);
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 48px);
}

.form-sub {
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.optional-label {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(214, 174, 87, 0.36);
  border-radius: 0;
  background: rgba(8, 7, 6, 0.72);
  color: var(--cream);
  font: inherit;
  padding: 13px 14px;
}

.form-row input[type="file"] {
  padding: 12px;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(214, 174, 87, 0.4);
  outline-offset: 2px;
}

.field-note,
.legal-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.submit-btn,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid #ffe39b;
  background: linear-gradient(135deg, #ffe6a3 0%, var(--gold) 45%, #a77527 100%);
  color: #100b04;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.honeypot {
  display: none;
}

.thanks {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(70px, 14vw, 150px) 18px;
  text-align: center;
}

.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a { white-space: nowrap; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after { inset: 14px; }

  .feature-card,
  .feature-card.wide {
    grid-column: span 6;
  }

  .analysis-list div,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-links a:not(.nav-cta) { display: none; }

  .gold-button {
    width: 100%;
    min-height: 58px;
  }

  .hero-actions { align-items: stretch; }

  .hero-panel,
  .feature-card,
  .process-grid article,
  .analysis-list div,
  .guide-card {
    padding: 20px;
  }
}
