/* ── RESET & TOKENS ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #1E2147;
  --navy-soft: #2D3060;
  --red:       #8B2535;
  --red-light: #C8707D;
  --white:     #fdf7f3;
  --off-white: #f5ede6;
  --cream:     #F5F0EB;
  --cream-2:   #EDE6DD;
  --muted:     #7A7D9A;
  --border:    rgba(30, 33, 71, 0.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY HELPERS ── */
.label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
}

.label--light {
  color: rgba(245, 240, 235, 0.4);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin: 2.5rem auto;
}

/* ── REVEAL (initial hidden state — JS adds .visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.35s; }
.reveal[data-delay="4"] { transition-delay: 0.5s; }
