/* aramzobian.com — public splash. Dark, warm, quiet. Bump ASSET_VER in _lib.js on change. */

:root {
  --bg: #12100e;
  --panel: #1c1916;
  --ink: #e7dfd2;
  --muted: #8f877a;
  --line: #2c2823;
  --accent: #c79a3e;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
}

/* ---- splash ---- */
.splash {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(199, 154, 62, 0.10), transparent 60%),
    var(--bg);
}

.splash-inner {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.splash-eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.splash-headline {
  margin: 0 0 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.splash-sub {
  margin: 0 auto;
  max-width: 30em;
  color: var(--muted);
  font-size: clamp(15px, 2.4vw, 18px);
}

.splash-pillars {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
}

.splash-pillars li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.splash-pillars li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot, var(--accent));
}

.splash-inq {
  margin: 36px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.splash-inq a { color: var(--ink); }
a { color: var(--accent); }
