/* ==========================================================================
   BASE STYLES
   Design tokens, reset, body defaults, typography, shared utilities.
   Loaded on every page.
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #0E1014;
  --ink-soft: #1A1D24;
  --cream: #F5F1E8;
  --cream-warm: #EDE6D6;
  --gold: #C8A86B;
  --gold-deep: #A88A4F;
  --wine: #5C2A2F;
  --muted: #6B6B6B;

  /* Lines */
  --line: rgba(245, 241, 232, 0.12);
  --line-dark: rgba(14, 16, 20, 0.12);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* Display type utility */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }

/* Eyebrow label */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}

/* Layout utilities */
.container { max-width: 1280px; margin: 0 auto; }

/* Reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 168, 107, 0.3);
}
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--wine); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 241, 232, 0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 241, 232, 0.06);
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
