/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ── Typography ── */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
p {
  line-height: 1.75;
}
em {
  color: var(--gold-bright);
  font-style: normal;
}

/* ── Layout Helpers ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section--alt {
  background: rgba(10, 30, 18, 0.55);
}

/* ── Section Label ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatSuit {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
/* JS-enhanced animation: hide initially only when JS is running */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Page Switcher ── */
.page {
  display: none;
}
.page.active {
  display: block;
}
