/* ═══════════════════════════════════════════════════════════════════
   The Worked Shoot — base stylesheet
   Arena palette. Cold spotlight. Purple that remembers the Deadman.
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Oswald:wght@300;400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --black:        #07070a;
  --black-soft:   #0e0d12;
  --black-raised: #14131a;
  --ash:          #1f1d26;

  --bone:         #ecebe5;
  --bone-soft:    #b9b6ac;
  --bone-dim:     rgba(236, 235, 229, 0.55);
  --bone-ghost:   rgba(236, 235, 229, 0.28);

  --purple:       #6b1fa0;
  --purple-deep:  #3d1063;
  --purple-glow:  rgba(138, 43, 186, 0.35);
  --purple-wash:  rgba(61, 16, 99, 0.18);

  --crimson:      #8b0a1a;
  --crimson-hot:  #c4162c;

  --gold:         #c9a94a;

  --max-width:    720px;
}

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

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--bone-soft);
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--purple-glow);
  color: var(--bone);
}

/* ── spotlight backdrop ─────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--purple-wash), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(20, 10, 30, 0.4), transparent 70%);
  z-index: 0;
}

/* ── layout primitives ───────────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── typography ──────────────────────────────────────────────────── */
.display {
  font-family: 'Cinzel', 'Trajan Pro', 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.oswald {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mono {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

h1, h2, h3, h4 {
  color: var(--bone);
  line-height: 1.2;
}

a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--bone-ghost);
  transition: border-color 0.2s, color 0.2s;
}

a:hover, a:focus {
  color: var(--purple);
  border-color: var(--purple);
}

p {
  margin-bottom: 1.5rem;
}

em {
  color: var(--bone);
  font-style: italic;
}

strong {
  color: var(--bone);
  font-weight: 600;
}

/* ── site footer ─────────────────────────────────────────────────── */
.site-foot {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 6rem;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.site-foot .disclaimer {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-ghost);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.site-foot .home-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: none;
}

.site-foot .home-link:hover {
  color: var(--purple);
}

/* ── mobile ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  body { font-size: 1.1rem; line-height: 1.75; }
  .wrap { padding: 0 1.25rem; }
}
