/* ═══════════════════════════════════════════
   BASE — Reset, Typography, Global Elements
═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--f-body); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Utility classes ── */
.u-eyebrow {
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.u-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.u-eyebrow--centered {
  justify-content: center;
}
.u-eyebrow--centered::before { display: none; }

.u-eyebrow--dark { color: var(--gold-dim); }
.u-eyebrow--dark::before { background: var(--gold-dim); }

.u-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.u-title--light { color: var(--white); }
.u-title span   { color: var(--gold); }

.u-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.u-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--gray-text);
}
.u-body--light { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.80rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition:
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform 0.18s,
    box-shadow 0.25s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn--fill {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--fill:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── Section wrapper ── */
.section-wrap {
  padding: var(--section-v) var(--gutter);
}

/* ── Reveal animation ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}
