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

:root {
  --ohr-obsidian: #0A0A0A;
  --ohr-ink: #141414;
  --ohr-ink-2: #1C1C1C;
  --ohr-charcoal: #262626;
  --ohr-gold: #D4A24C;
  --ohr-gold-neon: #F4C96B;
  --ohr-gold-deep: #8A6B2E;
  --ohr-gold-wash: rgba(212, 162, 76, 0.08);
  --ohr-ivory: #F4EEE2;
  --ohr-parchment: #E8DFCF;
  --ohr-linen: #C9BFA8;
  --ohr-stone: #7A7366;
  --border: rgba(244, 238, 226, 0.08);
  --border-strong: rgba(244, 238, 226, 0.16);
  --border-gold: rgba(212, 162, 76, 0.3);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ls-eyebrow: 0.22em;
  --ls-button: 0.08em;
  --ease-ohr: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #080808 0%, var(--ohr-obsidian) 46%, #0D0C0A 100%);
  color: var(--ohr-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  background: var(--ohr-gold);
  color: var(--ohr-obsidian);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 300ms var(--ease-ohr);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--ohr-ivory);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ohr-gold-neon);
  outline-offset: 4px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 238, 226, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 226, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 70%);
}

a { color: inherit; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 42px rgba(0,0,0,0.36);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ohr-gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ohr-linen);
  text-decoration: none;
}

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

.nav-cta {
  color: var(--ohr-obsidian) !important;
  background: var(--ohr-gold);
  padding: 12px 20px;
  border-radius: 2px;
}

main { padding-top: 72px; }

section { padding: 104px 8vw; }

.hero {
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 65% 42% at 50% 20%, rgba(244, 201, 107, 0.045), transparent 72%),
    linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.52) 100%);
}

.hero-inner,
.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ohr-gold);
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--ohr-ivory);
  margin-bottom: 28px;
}

h1 em,
h2 em { color: var(--ohr-gold); font-style: italic; }

.hero-copy {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--ohr-parchment);
  line-height: 1.75;
  margin-bottom: 34px;
}

.price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--ohr-gold);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.price-line span {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ohr-stone);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  padding: 15px 28px;
  transition: transform 300ms var(--ease-ohr), border-color 300ms var(--ease-ohr), background 300ms var(--ease-ohr);
}

.btn-primary {
  color: var(--ohr-obsidian);
  background: var(--ohr-gold);
  border: 1px solid var(--ohr-gold);
}

.btn-secondary {
  color: var(--ohr-gold);
  background: transparent;
  border: 1px solid var(--border-gold);
}

.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ohr-gold);
  margin-bottom: 14px;
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--ohr-ivory);
  margin-bottom: 28px;
}

.section-copy {
  max-width: 760px;
  color: var(--ohr-parchment);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(244,238,226,0.035), transparent),
    var(--ohr-ink);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.card .btn-row {
  margin-top: auto;
  padding-top: 22px;
}

.card.gold {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, var(--ohr-gold-wash), rgba(20,20,20,0.88) 62%);
}

.card h3 {
  color: var(--ohr-ivory);
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.card .price {
  display: block;
  color: var(--ohr-gold);
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--ohr-parchment);
  font-size: 0.92rem;
  line-height: 1.7;
}

.card ul,
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.card li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ohr-gold);
  margin-top: 0.82em;
  flex: 0 0 auto;
}

.card-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--ohr-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  text-decoration: none;
}

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(20,20,20,0.6);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  color: var(--ohr-gold);
  opacity: 0.32;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 14px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--ohr-gold);
  margin-bottom: 8px;
}

.proof-note {
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 34px;
  background: linear-gradient(145deg, var(--ohr-gold-wash), rgba(20,20,20,0.88) 62%);
}

.final-cta {
  text-align: center;
}

.final-cta .section-title,
.final-cta .section-copy {
  margin-left: auto;
  margin-right: auto;
}

footer {
  border-top: 1px solid var(--border);
  padding: 36px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--ohr-gold);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--ohr-stone);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

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

@media (max-width: 1180px) and (min-width: 861px) {
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  nav {
    position: static;
    padding: 18px 5vw;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }
  .nav-links a { font-size: 0.66rem; }
  .nav-cta { padding: 10px 16px; }
  main { padding-top: 0; }
  section { padding: 76px 6vw; }
  .hero { min-height: auto; padding-top: 58px; padding-bottom: 66px; }
  h1 { font-size: clamp(2.25rem, 10vw, 3.2rem); line-height: 1; }
  .hero-copy { line-height: 1.65; margin-bottom: 26px; }
  .price-line { margin-bottom: 24px; }
  .grid,
  .grid.three { grid-template-columns: 1fr; }
  .card { padding: 30px 24px; }
  .btn-primary,
  .btn-secondary { width: 100%; text-align: center; }
  footer { flex-direction: column; text-align: center; }
}
