/* ═══════════════════════════════════════
   BASE.CSS — Reset, body, globals
   ═══════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

::selection {
  background: rgba(200,165,92,0.25);
  color: #fff;
}

a { color: inherit; }
button { font-family: inherit; }

/* ─── Reveal on Scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1),
              transform 0.9s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Light Background Variant ─── */
body.bg-light {
  background: var(--warm-white);
  color: var(--navy);
}
body.bg-light ::selection {
  color: var(--navy);
}

p {
  letter-spacing: -0.03em;
}
