:root {
  --void: #0A0705;
  --surface: #15100B;
  --surface-raised: #1F1810;
  --ivory: #EDE0C9;
  --parchment: #A89B85;
  --gold: #C9A24B;
  --gold-bright: #DDB95E;
  --gold-deep: #8B7330;
  --border-subtle: #2A1F14;
  --border-gold: #6B5530;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: 'Source Serif 4', Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

/* Nav */
.nav {
  position: sticky;
  top: 20px;
  z-index: 40;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 16px;
}
.nav__pill {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 14px 32px;
  border-radius: 999px;
  background: rgba(21, 16, 11, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(107, 85, 48, 0.45);
  box-shadow: inset 0 1px 0 rgba(201, 162, 75, 0.12), 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__logo { flex-shrink: 0; }
.nav__logo-link { display: flex; flex-shrink: 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  opacity: 0.55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 5, 0.35) 0%, rgba(10, 7, 5, 0.72) 58%, var(--void) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--ivory);
}
.hero__subtitle {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.6;
  color: var(--parchment);
  max-width: 480px;
  margin: 0 auto 44px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(31, 24, 16, 0.6);
}
.hero__cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
}
.hero__cta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}

/* Value prop rows */
.value-row {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 32px;
  scroll-margin-top: 90px;
}
.value-row--a { flex-direction: row; }
.value-row--b { flex-direction: row-reverse; }
.value-row__figure {
  width: 280px;
  flex-shrink: 0;
}
.value-row__figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 75, 0.06);
}
.value-row__text { flex: 1; min-width: 0; }
.value-row__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 20px;
}
.value-row__body {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--parchment);
  max-width: 460px;
  margin: 0;
}

/* Deck grid */
.deck-section {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 64px 32px 96px;
  text-align: center;
  scroll-margin-top: 90px;
}
.deck-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.deck-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--ivory);
  margin: 0 0 48px;
}
.deck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 12px;
}
.deck-grid__item {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(107, 85, 48, 0.55);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 32px 40px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}
.footer__brand {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--parchment);
}
.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--parchment);
}

/* Legal pages (Privacy / Terms) */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 28px 96px;
}
.legal__header {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--ivory);
  margin: 0 0 12px;
}
.legal__updated {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment);
  margin: 0 0 56px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ivory);
  margin: 48px 0 16px;
}
.legal p, .legal li {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--parchment);
}
.legal a { color: var(--gold); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive: 760px breakpoint (PRD §4.1 / §5) */
@media (max-width: 760px) {
  .nav__pill { gap: 20px; padding: 12px 20px; }
  .nav__link { display: none; }
  .value-row { flex-direction: column !important; text-align: center; gap: 32px; padding: 64px 24px; }
  .value-row__figure { width: 220px; }
  .footer__row { flex-direction: column; gap: 24px; text-align: center; }
}
