/* =================================================================
   BASE  -  design tokens, reset, shared utilities
   Richmond Station  ·  ark solutions build
   Linked by both index.html and menu.html
================================================================= */

:root {
  --paper:       #f4eee3;
  --paper-2:     #ece2d2;
  --paper-3:     #e3d7c2;
  --ink:         #17120d;
  --ink-soft:    #41382e;
  --wine:        #5e0f24;
  --wine-deep:   #47091a;
  --wine-bright: #98002e;
  --brass:       #b6895b;
  --brass-light: #d8b483;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Newsreader', Georgia, serif;
  --label:   'Archivo', -apple-system, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film-grain texture overlay - sits above everything, pointer-events off */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.label {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.section-eyebrow {
  color: var(--wine);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::before {
  content: "";
  width: 38px; height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}
