/* The Apocalypse Garage — hi-fi site styles */

:root {
  --paper: #f0e6c8;
  --paper-warm: #e8dcb8;
  --ink: #0a0806;
  --black: #0a0806;
  --black-2: #15110c;
  --black-3: #1f1a13;
  --brass: #c9a84c;
  --brass-deep: #a88638;
  --brass-bright: #e8c763;
  --death: #f0ebd9;
  --war: #b22222;
  --famine: #2a2520;
  --conquest: #2a4a78;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--paper);
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* Type */
.display { font-family: 'Cinzel', 'IM Fell English SC', serif; letter-spacing: 0.04em; font-weight: 600; }
.serif { font-family: 'Cormorant Garamond', serif; }
.mono { font-family: 'Special Elite', 'Courier New', monospace; }
.cap {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--brass);
}

/* Grain overlay */
.grain {
  position: relative;
}
.grain::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.45) 0, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.5) 0, transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 2;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 168, 76, 0.25);
  padding: 12px 40px;
}
.nav-brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.32em;
  font-size: 14px;
  color: var(--brass);
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brass-bright); }
.nav-burger { display: none; width: 28px; height: 18px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.nav-burger span { display: block; height: 1.5px; background: var(--brass); }

/* Language switcher */
.lang-switch a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brass);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 3px 9px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lang-switch a:hover { background: var(--brass); color: var(--black); }

/* Lineup dropdown */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7em;
  opacity: 0.6;
}
.nav-sub {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex; flex-direction: column;
  background: rgba(10, 8, 6, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 8px 0;
  margin: 0;
  min-width: 180px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 110;
}
.nav-links .has-sub:hover .nav-sub,
.nav-links .has-sub:focus-within .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}
.nav-sub li { width: 100%; }
.nav-sub a {
  display: block;
  padding: 11px 22px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  white-space: nowrap;
}
.nav-sub a:hover { color: var(--brass-bright); background: rgba(201, 168, 76, 0.06); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('assets/hero-wide.webp');
  background-size: cover;
  background-position: center 40%;
  filter: contrast(1.05) saturate(0.9);
  z-index: 0;
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.7) 0%, rgba(10,8,6,0.35) 30%, rgba(10,8,6,0.55) 70%, rgba(10,8,6,0.95) 100%),
    linear-gradient(90deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.2) 50%, rgba(10,8,6,0.6) 100%);
}
.hero-grain { position: absolute; inset: 0; z-index: 3; pointer-events: none; mix-blend-mode: overlay; opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--brass);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(0.5px);
  animation: drift linear infinite;
  box-shadow: 0 0 6px var(--brass);
}
@keyframes drift {
  0%   { transform: translate(0,0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 4;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 100px 60px 80px;
  gap: 40px;
}
.hero-title-block { max-width: 720px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow .rule { width: 60px; height: 1px; background: var(--brass); }
.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--paper);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-title .ampersand { color: var(--brass); font-style: italic; font-weight: 500; font-family: 'Cormorant Garamond', serif; font-size: 0.6em; vertical-align: 0.15em; }

/* Glitch effect — light, occasional flicker */
.hero-title.glitch { position: relative; display: inline-block; }
.hero-title.glitch > span {
  display: block;
  position: relative;
  animation: tag-glitch-jitter 7s infinite steps(1);
}
.hero-title.glitch > span:nth-child(2) { animation-delay: 0.15s; }
.hero-title.glitch > span:nth-child(3) { animation-delay: 0.3s; }
.hero-title.glitch > span::before,
.hero-title.glitch > span::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  text-shadow: none;
  opacity: 0;
  mix-blend-mode: screen;
}
.hero-title.glitch > span::before {
  color: rgba(220, 60, 50, 0.85);
  animation: tag-glitch-r 7s infinite steps(1);
}
.hero-title.glitch > span::after {
  color: rgba(80, 180, 220, 0.85);
  animation: tag-glitch-c 7s infinite steps(1);
  animation-delay: 0.06s;
}
.hero-title.glitch > span:nth-child(2)::before { animation-delay: 0.15s; }
.hero-title.glitch > span:nth-child(2)::after  { animation-delay: 0.21s; }
.hero-title.glitch > span:nth-child(3)::before { animation-delay: 0.3s; }
.hero-title.glitch > span:nth-child(3)::after  { animation-delay: 0.36s; }

@keyframes tag-glitch-r {
  0%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
  18.0% { opacity: 0.9; transform: translate(-2px, 0); clip-path: inset(8% 0 62% 0); }
  18.6% { opacity: 0.9; transform: translate(2px, 1px); clip-path: inset(54% 0 18% 0); }
  19.2% { opacity: 0; }
  47.0% { opacity: 0.85; transform: translate(-3px, 0); clip-path: inset(30% 0 40% 0); }
  47.5% { opacity: 0.85; transform: translate(1px, -1px); clip-path: inset(70% 0 6% 0); }
  48.0% { opacity: 0; }
  78.0% { opacity: 0.7; transform: translate(-1px, 0); clip-path: inset(0 0 78% 0); }
  78.4% { opacity: 0; }
}
@keyframes tag-glitch-c {
  0%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
  18.0% { opacity: 0.85; transform: translate(2px, 0); clip-path: inset(8% 0 62% 0); }
  18.6% { opacity: 0.85; transform: translate(-2px, -1px); clip-path: inset(54% 0 18% 0); }
  19.2% { opacity: 0; }
  47.0% { opacity: 0.8; transform: translate(3px, 0); clip-path: inset(30% 0 40% 0); }
  47.5% { opacity: 0.8; transform: translate(-1px, 1px); clip-path: inset(70% 0 6% 0); }
  48.0% { opacity: 0; }
  78.0% { opacity: 0.65; transform: translate(1px, 0); clip-path: inset(0 0 78% 0); }
  78.4% { opacity: 0; }
}
@keyframes tag-glitch-jitter {
  0%, 17.9%, 19.3%, 46.9%, 48.1%, 77.9%, 78.5%, 100% { transform: translate(0,0); filter: none; }
  18.2% { transform: translate(1px, 0); }
  18.8% { transform: translate(-1px, 1px); filter: brightness(1.15); }
  47.2% { transform: translate(-1px, 0); }
  47.7% { transform: translate(1px, 0); filter: brightness(1.1); }
  78.1% { transform: translate(0, -1px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title.glitch > span,
  .hero-title.glitch > span::before,
  .hero-title.glitch > span::after { animation: none; }
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-top: 22px;
  color: rgba(240,230,200,0.85);
  letter-spacing: 0.03em;
  max-width: 560px;
}
.hero-cta {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 38px;
  background: transparent;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 30%, rgba(232,199,99,0.5) 50%, transparent 70%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.hero-cta:hover::before { transform: translateX(100%); }
.hero-cta:hover { color: var(--paper); border-color: var(--brass-bright); }
.hero-cta .arrow { transition: transform 0.3s; }
.hero-cta:hover .arrow { transform: translateX(6px); }

/* Hero spine — vol metadata + medallion */
.hero-spine {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  height: 100%; min-height: 60vh;
  gap: 30px;
  padding: 20px 0;
}
.hero-spine .vol-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: var(--brass);
  text-transform: uppercase;
}
.hero-medallion {
  width: 130px; height: 130px;
  position: relative;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-medallion img {
  width: 100%; height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(201,168,76,0.4), 0 0 60px rgba(201,168,76,0.2), inset 0 0 0 1px rgba(232,199,99,0.6);
}
.hero-spine .chap-vert {
  writing-mode: vertical-rl;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: rgba(240,230,200,0.6);
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--brass);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.6); }
  50%     { opacity: 1; transform: scaleY(1); }
}

/* Section common */
section { position: relative; }
.section-pad { padding: 120px 60px; }
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .ornament {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--brass);
  margin-bottom: 14px;
}
.section-head .ornament .rule { width: 40px; height: 1px; background: currentColor; }
.section-head h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: 0.06em;
  color: var(--paper);
  text-transform: uppercase;
}
.section-head .lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(240,230,200,0.7);
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* LINEUP — fanned tarot spread */
.lineup {
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.06), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.5), transparent 70%);
}
.fan-stage {
  position: relative;
  height: 640px;
  perspective: 1200px;
  display: flex; align-items: flex-start; justify-content: center;
  margin: 0 auto;
  max-width: 1280px;
}
.tarot {
  position: absolute;
  width: 280px; height: 480px;
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.4s, opacity 0.5s, z-index 0s 0.35s;
  transform-origin: bottom center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6), inset 0 0 0 4px var(--black-2), inset 0 0 0 5px rgba(201,168,76,0.4);
  text-decoration: none; color: var(--paper);
}
.tarot.is-hovered { transition-delay: 0s; z-index: 50; }
.tarot:hover, .tarot.is-hovered {
  transform: translate(var(--hx, 0), -30px) rotate(0deg) scale(1.06) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 0 4px var(--black-2), inset 0 0 0 5px var(--accent), 0 0 60px var(--accent-glow);
  border-color: var(--accent);
  z-index: 50;
}
.tarot .frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,168,76,0.35);
  pointer-events: none;
  z-index: 4;
}
.tarot .corner {
  position: absolute;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--brass);
  z-index: 5;
}
.tarot .corner.tl { top: 22px; left: 24px; }
.tarot .corner.br { bottom: 22px; right: 24px; transform: rotate(180deg); }
.tarot .portrait {
  position: absolute; inset: 14px;
  background-size: cover;
  background-position: center 25%;
  z-index: 1;
}
.tarot .portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,8,6,0.4) 0%,
    rgba(10,8,6,0.1) 30%,
    rgba(10,8,6,0.55) 65%,
    rgba(10,8,6,0.95) 100%);
}
.tarot .emblem {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background-size: cover;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 24px var(--accent-glow), inset 0 0 0 1px rgba(0,0,0,0.5);
  z-index: 6;
  opacity: 0.92;
}
.tarot .body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px 30px;
  text-align: center;
  z-index: 5;
}
.tarot .season { font-family: 'Cinzel', serif; letter-spacing: 0.32em; font-size: 10px; color: var(--brass); text-transform: uppercase; }
.tarot .name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.08em;
  margin-top: 6px;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.tarot .car {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(240,230,200,0.8);
  margin-top: 4px;
}
.tarot .virtue {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.28em;
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}
.tarot:hover .virtue, .tarot.is-hovered .virtue { opacity: 1; max-height: 30px; }
.tarot .desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(240,230,200,0.85);
  margin-top: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}
.tarot:hover .desc, .tarot.is-hovered .desc { opacity: 1; max-height: 80px; }
.tarot .enter {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.28em;
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}
.tarot:hover .enter, .tarot.is-hovered .enter { opacity: 1; }

.lineup-instr {
  text-align: center;
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(240,230,200,0.5);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* MISSION — split text + image */
.mission {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.mission::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.15  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
}
.mission-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.mission .cap { color: var(--brass-deep); letter-spacing: 0.32em; }
.mission h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-transform: uppercase;
  margin-top: 16px;
}
.mission h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass-deep);
  display: block;
  font-size: 0.78em;
  margin-top: 6px;
}
.mission p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.7;
  margin-top: 26px;
  color: #2a2218;
}
.mission .signature {
  margin-top: 30px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.mission-img {
  aspect-ratio: 4/5;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.18) translateY(var(--py, 0px));
  transition: transform 0.1s linear;
  will-change: transform;
}
.mission-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.5);
  margin: 12px;
  pointer-events: none;
}

/* PATREON */
.patreon {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.patreon-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.18), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(178,34,34,0.12), transparent 60%),
    var(--black);
}
.patreon-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
}
.patreon-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.coin {
  width: 110px; height: 110px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background-image: url('assets/medallion.webp');
  background-size: cover;
  box-shadow: 0 0 40px rgba(201,168,76,0.5), inset 0 0 0 2px rgba(232,199,99,0.6);
}
.coin.deco {
  position: absolute;
  width: 70px; height: 70px;
  opacity: 0.5;
}
.coin.deco-1 { top: 80px; left: 90px; }
.coin.deco-2 { bottom: 80px; right: 100px; width: 50px; height: 50px; opacity: 0.35; }
.patreon h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}
.patreon p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.7;
  margin-top: 22px;
  color: rgba(240,230,200,0.78);
}
.btn-brass {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 36px;
  padding: 20px 44px;
  background: var(--brass);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-brass::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,240,200,0.7) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s;
}
.btn-brass:hover::before { transform: translateX(100%); }
.btn-brass:hover { background: var(--brass-bright); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,168,76,0.5); }

/* WATCH (Patreon-style) */
.watch {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.watch-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.15), transparent 60%),
    var(--paper);
}
.watch-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.15  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.watch-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.watch .play-icon {
  width: 110px; height: 110px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 2px solid var(--brass-deep);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(201,168,76,0.18);
  transition: box-shadow 0.5s ease;
  z-index: 1;
}
.watch .play-icon::before {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 100%;
  background: var(--brass);
  transition: top 0.55s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 2;
}
.watch .watch-inner:hover .play-icon { box-shadow: 0 0 50px rgba(201,168,76,0.45); }
.watch .watch-inner:hover .play-icon::before { top: 0; }
.watch .play-icon svg {
  width: 34px; height: 34px;
  fill: var(--brass-deep);
  margin-left: 5px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), fill 0.45s ease;
}
.watch .watch-inner:hover .play-icon svg {
  fill: var(--ink);
  transform: rotateY(360deg);
}

/* SOCIAL */
.social {
  background: var(--black);
  padding: 70px 60px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.social-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.social-title { font-family: 'Cinzel', serif; letter-spacing: 0.32em; font-size: 11px; text-transform: uppercase; color: var(--brass); }
.social-links { display: flex; gap: 24px; align-items: center; }
.social-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--paper);
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.social-link:hover {
  border-color: var(--brass);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}
.social-link .icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  transition: filter 0.3s;
}
.social-link:hover .icon { filter: drop-shadow(0 0 8px var(--brass)); }

/* Patreon "exclusive content" pill */
.social-link.has-note { position: relative; }
.social-link .note {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 4px);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brass);
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  z-index: 5;
}
.social-link .note::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 5px solid transparent;
  border-top-color: var(--brass);
}
.social-link.has-note:hover .note,
.social-link.has-note:focus-visible .note {
  opacity: 1;
  transform: translate(-50%, 0);
}
.social-link .icon svg { width: 22px; height: 22px; }
.social-link .handle {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 50px 60px 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-brand-mark {
  display: flex; align-items: center; gap: 18px;
}
.footer-brand-mark .mini-coin {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background-image: url('assets/medallion.webp');
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.footer-brand h4 { font-family: 'Cinzel', serif; font-weight: 700; font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); }
.footer-brand .years { font-family: 'Cinzel', serif; letter-spacing: 0.32em; font-size: 10px; color: var(--brass); margin-top: 4px; text-transform: uppercase; }
.footer-links { display: flex; gap: 26px; align-items: center; }
.footer-links a {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(240,230,200,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brass); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex; justify-content: space-between;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: rgba(240,230,200,0.45);
  text-transform: uppercase;
}
.footer-bottom .url { color: var(--brass); }

/* ─── Mobile ─── */
@media (max-width: 980px) {
  .nav { padding: 14px 22px; }
  .nav.scrolled { padding: 10px 22px; }
  .nav-links { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; height: 100dvh; flex-direction: column; gap: 0; background: rgba(10,8,6,0.98); backdrop-filter: blur(20px); padding: 110px 32px 60px; border-bottom: none; align-items: center; justify-content: flex-start; z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; overflow-y: auto; }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 18px 0; border-bottom: 1px solid rgba(201,168,76,0.12); width: 100%; text-align: center; font-size: 22px; letter-spacing: 0.18em; color: var(--paper); opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s; }
  .nav-links.open a { opacity: 1; transform: translateY(0); }
  .nav-links.open a:nth-child(1) { transition-delay: 0.10s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.16s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.22s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.28s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.34s; }
  .lang-switch a { border: none; border-radius: 0; padding: 18px 0; background: none; color: var(--brass); font-size: 22px; letter-spacing: 0.18em; width: 100%; text-align: center; }
  .lang-switch a:hover { background: none; color: var(--brass-bright); }
  .nav-burger { display: flex; position: relative; z-index: 100; }
  .nav-burger span { transition: transform 0.3s ease, opacity 0.2s ease; transform-origin: center; }
  .nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section-pad { padding: 80px 22px; }

  .hero-img { background-position: center 30%; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 22px 60px;
    align-items: end;
    overflow-x: hidden;
  }
  .hero-title-block { min-width: 0; max-width: 100%; }
  .hero-title.glitch { max-width: 100%; }
  .hero-spine { flex-direction: column; min-height: 0; height: auto; align-items: center; justify-content: center; gap: 6px; padding: 0; margin-top: 14px; width: 100%; text-align: center; }
  .hero-spine .vol-vert, .hero-spine .chap-vert { writing-mode: horizontal-tb; transform: none; font-size: 10px; letter-spacing: 0.32em; text-align: center; }
  .hero-spine .vol-vert { display: flex; flex-direction: column; align-items: center; gap: 2px; }
  .hero-spine .vol-vert .sep { display: none; }
  .hero-medallion { display: none; }
  .hero .scroll-cue { display: none; }
  .hero-title { font-size: clamp(30px, 10.5vw, 52px); }
  .hero-title.glitch { display: block; overflow: hidden; }

  /* Lineup → horizontal scrolling manifest cards (Lineup-C style) */
  .fan-stage {
    height: auto;
    perspective: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .tarot {
    position: relative !important;
    width: 100%;
    height: 180px;
    transform: none !important;
    display: grid;
    grid-template-columns: 130px 1fr;
  }
  .tarot:hover, .tarot.is-hovered {
    transform: translateY(-4px) !important;
  }
  .tarot .frame { display: none; }
  .tarot .corner.tl { display: block; }
  .tarot .corner.br { display: none; }
  .tarot .portrait {
    position: relative;
    inset: auto;
    width: 130px; height: 180px;
  }
  .tarot .emblem {
    top: 14px; left: 14px;
    transform: none;
    width: 44px; height: 44px;
  }
  .tarot .body {
    position: relative;
    text-align: left;
    padding: 22px 22px 18px;
    align-self: center;
    min-width: 0;
  }
  .tarot .name { font-size: clamp(16px, 4.8vw, 22px); line-height: 1.1; }
  .tarot .virtue, .tarot .desc { opacity: 1; max-height: none; }
  .tarot .desc { display: none; }
  .tarot .enter { display: none; }

  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-img { aspect-ratio: 4/3; }

  .social-inner { flex-direction: column; gap: 22px; align-items: center; }
  .social-links { flex-wrap: wrap; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .coin.deco { display: none; }

  /* Lineup dropdown — desktop only; hide on mobile (tap Lineup → #lineup) */
  .nav-links .has-sub > a::after { display: none; }
  .nav-sub { display: none; }
}
