/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ============ TOKENS ============ */
:root {
  --black: #0a0a0b;
  --black-2: #131311;
  --black-3: #1c1b18;
  --cream: #f6f5f2;
  --cream-dim: #a8a6a0;
  --gold: #ffffff;
  --gold-soft: #f6f5f2;
  --wine: #3a3a38;
  --wine-soft: #b0aca4;
  --line: rgba(246, 245, 242, 0.16);

  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Jost', 'Inter', sans-serif;

  --container: 1180px;
  --radius: 2px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}

.section-lede {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.italic-accent {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

section { position: relative; padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head .section-lede { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--black);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn-block { width: 100%; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ DIVIDER ============ */
.divider-orn {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

::selection { background: var(--gold); color: var(--black); }

/* scrollbar (webkit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-3); border-radius: 8px; }
