/* ===== base.css — reset & tokens ===== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p, figure, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:root {
  --bg: #FAFAF8;
  --ink: #0D0D0D;
  --near-black: #0D0D0D;
  --hero-ink: #D0CFC9;
  --gold: #B8A98A;
  --card: #FFFFFF;
  --line: #E8E5DF;
  --muted: #6B675F;

  --font-display: 'Cabinet Grotesk', -apple-system, sans-serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Cabinet Grotesk', -apple-system, sans-serif;

  --maxw: 1320px;
  --pad: clamp(1.25rem, 4vw, 4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
