/* =========================================================
   NINE LIVES PARANORMAL — Shudder-inspired redesign
   Palette: obsidian black, bone white, blood red
   ========================================================= */

:root {
  --bg: #070708;
  --bg-2: #0d0d10;
  --bg-3: #16161a;
  --surface: #1a1a1f;
  --line: #26262c;
  --text: #f5f2ec;
  --muted: #8a8a92;
  --red: #d11010;
  --red-2: #ff1e1e;
  --red-3: #7a0808;
  --green: #1db954;
  --radius: 4px;
  --radius-lg: 10px;
  --max: 1440px;
  --gutter: clamp(16px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

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

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-weight: 400;
}

.accent { color: var(--red-2); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 14px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 15px 28px; font-size: 15px; }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 30px -10px rgba(209, 16, 16, 0.55);
}
.btn--primary:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--red-2); border-color: var(--red-2); }

.chip {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.chip--red { background: rgba(209,16,16,0.18); border-color: rgba(255,30,30,0.45); color: #ffbaba; }
.chip--green { background: rgba(29,185,84,0.15); border-color: rgba(29,185,84,0.45); color: #7ce5a3; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--gutter);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,7,8,0.85);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--red);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 24px -8px rgba(209,16,16,0.6);
  transform: rotate(-4deg);
}
.nav__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--text);
}
.nav__logo-accent {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--red-2);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  gap: 26px;
  margin-left: 8px;
  flex: 1;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(245,242,236,0.78);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red-2);
  transition: right 0.25s ease;
}
.nav__menu a:hover::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__search {
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav__search:hover { background: rgba(255,255,255,0.08); }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0 8px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(7,7,8,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 24px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
}
.drawer.is-open { display: flex; }
.drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { align-self: flex-start; margin-top: 8px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 60% at 20% 80%, rgba(0,0,0,0.85) 0%, transparent 70%),
    linear-gradient(180deg, rgba(7,7,8,0.85) 0%, rgba(7,7,8,0.15) 22%, rgba(7,7,8,0.1) 55%, rgba(7,7,8,0.9) 95%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7,7,8,0.9) 0%, rgba(7,7,8,0.3) 45%, rgba(7,7,8,0) 70%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  max-width: 760px;
  margin-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding-top: 100px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #eaeaea;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 0 rgba(255,30,30,0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,30,30,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,30,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,30,30,0); }
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 9vw, 136px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245,242,236,0.82);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__sub em { color: var(--red-2); font-style: normal; font-weight: 600; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.hero__meta {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
}
.hero__meta span { position: relative; padding-right: 16px; }
.hero__meta span:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  padding-bottom: 50px;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--red-2), transparent);
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0d;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: rgba(245,242,236,0.35);
}
.marquee__track span { padding-right: 40px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   ROW / RAIL
   ========================================================= */
.row {
  padding: clamp(48px, 7vw, 96px) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.row__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.row__title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.01em;
}
.row__title::before {
  content: "";
  display: inline-block;
  width: 34px; height: 3px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 8px;
}
.row__sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  margin-top: 6px;
}
.row__controls { display: flex; gap: 8px; flex-shrink: 0; align-items: center; }

.rail-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.rail-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 340px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 24px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* =========================================================
   CARD (Hollow row)
   ========================================================= */
.card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s;
}
.card--wide { grid-column: span 2; aspect-ratio: 16 / 11; }

.card:hover { transform: translateY(-4px); border-color: rgba(255,30,30,0.45); }

.card__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.4s;
  filter: grayscale(0.1) contrast(1.05);
}
.card:hover .card__media { transform: scale(1.08); filter: grayscale(0) contrast(1.1); }

.card__media--speakers {
  background: radial-gradient(circle at 30% 30%, #2a0d0d 0%, #0b0b0e 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='62' font-size='80' text-anchor='middle' x='50' fill='%23d11010' opacity='0.25'>☉</text></svg>") center / 60% no-repeat,
    #140606;
}
.card__media--film {
  background: linear-gradient(135deg, #1a0507 0%, #0b0b0e 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='70' font-size='80' text-anchor='middle' x='50' fill='%23ffffff' opacity='0.18'>▶</text></svg>") center / 45% no-repeat;
  background-blend-mode: normal, normal;
}
.card__media--devils {
  background: radial-gradient(circle at 70% 40%, #3a0606 0%, #080708 75%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='68' font-size='78' text-anchor='middle' x='50' fill='%23ffffff' opacity='0.14'>☠</text></svg>") center / 55% no-repeat;
}
.card__media--vendors {
  background: linear-gradient(160deg, #1e0a0a, #0a0a0c),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='68' font-size='72' text-anchor='middle' x='50' fill='%23d11010' opacity='0.22'>✦</text></svg>") center / 50% no-repeat;
}

.card__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}
.card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
  z-index: 1;
}
.card__body h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 10px 0 6px;
}
.card__body p {
  font-size: 13px;
  color: rgba(245,242,236,0.75);
  line-height: 1.45;
}

/* =========================================================
   SERVICE CARD
   ========================================================= */
.service {
  background: linear-gradient(180deg, var(--surface) 0%, #0e0e12 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(209,16,16,0.0) 40%, rgba(209,16,16,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}
.service:hover { transform: translateY(-3px); border-color: rgba(255,30,30,0.5); }
.service:hover::before { opacity: 1; }
.service__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,30,30,0.55);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.service__body h3 {
  font-size: 28px;
  margin: 10px 0 10px;
}
.service__body p {
  font-size: 14px;
  color: rgba(245,242,236,0.72);
  margin-bottom: 20px;
}

/* =========================================================
   STORY / ABOUT
   ========================================================= */
.story {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.story__left h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 22px;
}
.story__left p {
  color: rgba(245,242,236,0.8);
  margin-bottom: 18px;
  font-size: 16px;
  max-width: 52ch;
}
.stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats > div { display: flex; flex-direction: column; gap: 4px; }
.stats strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--red-2);
  line-height: 1;
  font-weight: 400;
}
.stats span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.story__poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,30,30,0.1);
}
.story__poster-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.15) saturate(1.05);
}
.story__poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.story__poster-badge {
  position: absolute;
  bottom: 26px; left: 26px; right: 26px;
  z-index: 2;
  color: var(--text);
}
.story__poster-badge span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--red-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.story__poster-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
}
.story__poster-badge span:last-child {
  margin-top: 8px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

/* =========================================================
   TILES (Crystal Ball, Scaredy, Shop)
   ========================================================= */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max);
  margin: clamp(40px, 6vw, 80px) auto 0;
  padding: 0 var(--gutter);
}
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.3s;
}
.tile:hover { transform: translateY(-4px); }
.tile__overlay {
  position: absolute; inset: 0;
  transition: background 0.3s;
  z-index: 1;
}
.tile__text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  z-index: 2;
  color: var(--text);
}
.tile__text h3 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 8px;
}
.tile__text p {
  font-size: 14px;
  color: rgba(245,242,236,0.82);
  margin-bottom: 16px;
  max-width: 38ch;
}

.tile--crystal {
  background:
    radial-gradient(circle at 50% 45%, rgba(123,58,237,0.25) 0%, transparent 65%),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #10091a, #07070a);
}
.tile--crystal::before {
  content: "";
  position: absolute;
  top: 18%; left: 50%;
  width: 46%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.5), rgba(150,120,240,0.25) 40%, rgba(50,20,100,0.05) 70%, transparent 72%);
  box-shadow: 0 40px 80px rgba(90,40,180,0.35), inset -10px -20px 40px rgba(0,0,0,0.5);
  filter: blur(0.3px);
}

.tile--cat {
  background:
    radial-gradient(circle at 60% 50%, rgba(209,16,16,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #190606, #070708);
}
.tile--cat::before {
  content: "🐈‍⬛";
  position: absolute;
  top: 28%; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 210px);
  filter: drop-shadow(0 0 40px rgba(209,16,16,0.35));
}
.tile--cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, transparent 30%, rgba(0,0,0,0.55) 80%);
}

.tile--shop {
  background:
    radial-gradient(circle at 40% 40%, rgba(255,200,80,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #1a1408, #070708);
}
.tile--shop::before {
  content: "✦";
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 16vw, 200px);
  color: rgba(255,200,80,0.35);
  text-shadow: 0 0 40px rgba(255,180,60,0.5);
}

.tile:hover .tile__overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
}

/* =========================================================
   BLOG GRID
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 24px;
}
.post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.post:hover { transform: translateY(-4px); border-color: rgba(255,30,30,0.45); }
.post__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.post__media--1 {
  background:
    radial-gradient(circle at 30% 40%, rgba(80,230,200,0.2), transparent 55%),
    linear-gradient(135deg, #061818 0%, #030509 100%);
}
.post__media--1::before {
  content: "🜁";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: 120px; opacity: 0.2;
}
.post__media--2 {
  background:
    radial-gradient(circle at 50% 60%, rgba(120,70,30,0.3), transparent 55%),
    linear-gradient(135deg, #1a0f05 0%, #060606 100%);
}
.post__media--2::before {
  content: "👣";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: 90px; opacity: 0.55;
}
.post__media--3 {
  background:
    radial-gradient(circle at 50% 45%, rgba(209,16,16,0.25), transparent 55%),
    linear-gradient(135deg, #140404 0%, #060608 100%);
}
.post__media--3::before {
  content: "👻";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: 110px; opacity: 0.45;
}

.post__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.post__body { padding: 22px 22px 24px; }
.post__body h3 { font-size: 26px; margin-bottom: 10px; }
.post__body p {
  font-size: 14px;
  color: rgba(245,242,236,0.72);
  margin-bottom: 16px;
  line-height: 1.5;
}
.post__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   CTA / BOOK
   ========================================================= */
.cta {
  position: relative;
  margin: clamp(64px, 10vw, 140px) 0 0;
  padding: clamp(80px, 12vw, 180px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0;
  background-image: url('assets/photos/graveyard.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) blur(2px) saturate(1.1);
  z-index: -2;
  transform: scale(1.05);
}
.cta__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 50%, rgba(209,16,16,0.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7,7,8,0.85), rgba(7,7,8,0.95));
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta__inner h2 {
  font-size: clamp(42px, 6vw, 86px);
  margin-bottom: 18px;
}
.cta__inner p {
  color: rgba(245,242,236,0.8);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__form input {
  flex: 1;
  min-width: 240px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.cta__form input::placeholder { color: rgba(245,242,236,0.45); }
.cta__form input:focus { border-color: var(--red-2); }

.cta__contact {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.cta__contact a { color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; }
.cta__contact a:hover { border-color: var(--red-2); color: var(--red-2); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #050506;
  border-top: 1px solid var(--line);
  padding: 60px var(--gutter) 30px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__cols h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-2);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: rgba(245,242,236,0.72);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--text); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer__small { letter-spacing: 0.1em; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__search { display: none; }

  .hero__content { padding-top: 120px; margin-left: var(--gutter); }

  .story__grid { grid-template-columns: 1fr; }
  .story__right { max-width: 420px; }

  .tiles { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .shop__grid { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; min-height: auto; }
  .product__media > img:first-child { min-height: 320px; }

  .involved__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 60px; }
  .hero__title { font-size: 60px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__scroll { display: none; }

  .row__header { flex-direction: column; align-items: flex-start; }
  .rail { grid-auto-columns: 82%; }
  .card--wide { grid-column: span 1; aspect-ratio: 3 / 4; }

  .stats { flex-wrap: wrap; gap: 20px; }

  .blog-grid { grid-template-columns: 1fr; }
  .involved__grid { grid-template-columns: 1fr; }
  .sponsors__row { gap: 20px; }

  .footer__cols { grid-template-columns: 1fr; }
}

/* =========================================================
   HOLLOW INTRO
   ========================================================= */
.intro {
  padding: clamp(72px, 10vw, 130px) var(--gutter) 20px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.intro__inner { max-width: 820px; margin: 0 auto; }
.intro__title {
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  margin: 8px 0 24px;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255,255,255,0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro__lede {
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(245,242,236,0.88);
  max-width: 720px;
  margin: 0 auto 16px;
}
.intro__lede strong { color: #fff; }

/* =========================================================
   TICKETS
   ========================================================= */
.tickets {
  position: relative;
  margin-top: clamp(32px, 6vw, 64px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tickets__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.1) contrast(1.05);
  z-index: -2;
  transform: scale(1.05);
}
.tickets__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,7,8,0.96) 0%, rgba(7,7,8,0.85) 45%, rgba(7,7,8,0.3) 100%),
    radial-gradient(circle at 0% 50%, rgba(209,16,16,0.22) 0%, transparent 55%);
}
.tickets__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 640px);
}
.tickets__left h2 {
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.98;
  margin-bottom: 22px;
}
.tickets__left p {
  color: rgba(245,242,236,0.82);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 58ch;
}
.tickets__left p em { color: var(--red-2); font-style: normal; font-weight: 600; }
.tickets__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tickets__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(245,242,236,0.88);
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.tickets__list li span:first-child {
  color: var(--red-2);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   SHOP
   ========================================================= */
.shop {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--gutter) 0;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 24px;
}
.product {
  background: linear-gradient(180deg, var(--surface) 0%, #0d0d11 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  transition: border-color 0.3s, transform 0.3s;
}
.product:hover { border-color: rgba(255,30,30,0.45); transform: translateY(-4px); }
.product__media {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
}
.product__media > img:first-child {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
  min-height: 260px;
}
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 64px;
}
.product__thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}
.product__thumbs img:hover { opacity: 1; }
.product__body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__body h3 {
  font-size: 30px;
  line-height: 1;
  margin: 6px 0 8px;
}
.product__body p {
  font-size: 14px;
  color: rgba(245,242,236,0.74);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.55;
}
.product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.product__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--red-2);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* =========================================================
   HOTEL
   ========================================================= */
.hotel {
  position: relative;
  margin: clamp(64px, 10vw, 120px) 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hotel__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(1.1);
  z-index: -2;
  transform: scale(1.05);
}
.hotel__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 50%, rgba(209,16,16,0.2) 0%, transparent 55%),
    linear-gradient(90deg, rgba(7,7,8,0.85) 0%, rgba(7,7,8,0.4) 60%, rgba(7,7,8,0.9) 100%);
}
.hotel__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  text-align: center;
}
.hotel__inner h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 20px;
}
.hotel__inner p {
  color: rgba(245,242,236,0.85);
  font-size: 16px;
  max-width: 60ch;
  margin: 0 auto 28px;
}
.hotel__inner strong { color: #fff; }

/* =========================================================
   GET INVOLVED
   ========================================================= */
.involved {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter) 0;
}
.involved__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.involved__header h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 8px 0 12px;
}
.involved__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.involved__card {
  position: relative;
  padding: 32px 28px 34px;
  background: linear-gradient(180deg, var(--surface) 0%, #0d0d11 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  cursor: pointer;
  overflow: hidden;
}
.involved__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(209,16,16,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.involved__card:hover { border-color: rgba(255,30,30,0.5); transform: translateY(-4px); }
.involved__card:hover::before { opacity: 1; }
.involved__icon {
  font-size: 38px;
  line-height: 1;
  filter: grayscale(0.2);
}
.involved__card h3 {
  font-size: 26px;
  line-height: 1;
  margin: 6px 0 4px;
  position: relative;
  z-index: 1;
}
.involved__card p {
  font-size: 14px;
  color: rgba(245,242,236,0.72);
  flex: 1;
  position: relative;
  z-index: 1;
}
.involved__card .link-arrow {
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.involved__tag {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffbaba;
  background: rgba(209,16,16,0.2);
  border: 1px solid rgba(255,30,30,0.35);
  padding: 4px 9px;
  border-radius: 3px;
}

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) 40px;
}
.sponsors__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sponsors__header h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 8px 0 0;
}
.sponsors__group { margin-bottom: 36px; }
.sponsors__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-2);
  text-align: center;
  margin-bottom: 18px;
}
.sponsors__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.sponsors__row--lead { padding: 40px 20px; }

.sponsor {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, filter 0.2s;
  cursor: pointer;
  padding: 0 10px;
}
.sponsor img {
  max-height: 100%;
  max-width: 200px;
  width: auto;
  filter: brightness(1.1) grayscale(0.2);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.sponsor:hover img { filter: brightness(1.2) grayscale(0); opacity: 1; }
.sponsors__row--lead .sponsor { height: 120px; }
.sponsors__row--lead .sponsor img { max-width: 320px; }
.sponsor--wide img { max-width: 260px; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.card, .service, .post, .tile, .product, .involved__card, .story__left, .story__right, .cta__inner, .tickets__left, .hotel__inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.in-view { opacity: 1 !important; transform: none !important; }
.card:hover, .service:hover, .post:hover, .tile:hover, .product:hover, .involved__card:hover { opacity: 1; }

/* Accessibility — reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
