/* ── Shared Styles ── */
/* Foundational CSS shared across all pages */

@font-face {
  font-family: 'VC Nudge';
  src: url('fonts/VCNudge-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: 'VC Nudge', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --bg-cream: #fff8f0;
  --bg-card: #fff4e6;
  --bg-dark: #212121;
  --text-primary: #212121;
  --text-secondary: rgba(0, 0, 0, 0.55);
  --text-muted: rgba(0, 0, 0, 0.35);
  --pink: #ffbfe8;
  --sky: #bae6fd;
  --green: #86efac;
  --orange: #fdba74;
  --rule: rgba(0,0,0,0.08);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page {
  max-width: 1020px;
  margin: 0 auto;
  padding: 64px 32px 0px;
}

/* ── Site Nav ── */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.site-nav a:hover {
  color: var(--bg-cream);
  border-color: rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.8);
}

.site-nav a.is-current {
  color: var(--bg-cream);
  background: rgba(0,0,0,0.8);
  border-color: rgba(0,0,0,0.8);
  pointer-events: none;
}

/* ── Header ── */
.header {
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 0.95;
  letter-spacing: 0.001em;
  margin-bottom: 24px;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  max-width: 600px;
  color: var(--text-secondary);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
