/* =========================================================
   PH1 Parking Portal — V3 design tokens
   Matches treatments.aaronlieber.com design system.
   ========================================================= */
:root {
  --bg: #061320;
  --bg-deep: #04101A;
  --surface: #0E2138;
  --surface-2: #163050;
  --surface-3: #1E3F66;
  --text: #EFE7D7;
  --text-dim: rgba(239, 231, 215, 0.65);
  --text-faint: rgba(239, 231, 215, 0.35);
  --line: rgba(239, 231, 215, 0.12);
  --line-strong: rgba(239, 231, 215, 0.25);
  --accent: #C9A66B;
  --accent-soft: rgba(201, 166, 107, 0.14);
  --accent-blue: #4A7AAB;

  /* Status hues, tuned to sit on the dark surfaces */
  --ok: #6FB58A;
  --ok-soft: rgba(111, 181, 138, 0.14);
  --warn: #D8B26A;
  --warn-soft: rgba(216, 178, 106, 0.14);
  --bad: #C97A6B;
  --bad-soft: rgba(201, 122, 107, 0.14);

  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 16px;
  --pad: 28px;
  --maxw: 1180px;

  --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: -0.005em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain overlay — same recipe as the homepage */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Ambient color wash behind everything */
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(74, 122, 171, 0.16), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(201, 166, 107, 0.07), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

/* Type primitives */
.serif { font-family: 'Newsreader', Georgia, serif; font-weight: 300; }
.serif-italic { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-weight: 300; }
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); }
.ochre { color: var(--accent); }
