/* SMC SUNDAY CLUB — tinydesk warmth × Vice doc grit */

:root {
  --bg: #0c0a08;
  --bg-2: #14110d;
  --paper: #ece4d2;
  --paper-2: #d9cdb1;
  --ink: #0a0907;
  --rust: #b1421f;
  --rust-2: #d96a3e;
  --amber: #e8a04a;
  --gold: #c79a4b;
  --sage: #6f7a5e;
  --maroon: #5a1a1a;
  --blood: #7a1d1d;
  --line: rgba(236, 228, 210, 0.14);
  --line-hard: rgba(236, 228, 210, 0.28);

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-ui: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "Space Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

::selection { background: rgba(232,160,74,0.28); color: var(--paper); }

/* A11y — focus + skip link */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}
.skip-link {
  position: fixed;
  top: -100px; left: 12px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus, .skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Refined scrollbar */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: #0a0806; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--rust), var(--amber));
  border-radius: 99px;
  border: 2px solid #0a0806;
}
* { scrollbar-width: thin; scrollbar-color: var(--rust) #0a0806; }

/* Intro loader */
.loader {
  position: fixed; inset: 0;
  z-index: 999;
  background: #08070a;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: clamp(220px, 34vw, 440px);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  filter: drop-shadow(0 0 28px rgba(232,160,74,0.35));
  animation: loaderIn 1.3s var(--ease) 0.1s forwards;
}
.loader-line {
  width: 200px; height: 1px;
  background: rgba(236,228,210,0.14);
  margin: 26px auto 0;
  overflow: hidden;
}
.loader-line span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(to right, var(--rust), var(--amber));
  transition: width 1.4s var(--ease-soft);
}
.loader-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--paper-2);
  margin-top: 22px;
  opacity: 0;
  animation: loaderIn 1.1s var(--ease) 0.45s forwards;
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(to right, var(--rust), var(--amber));
  z-index: 80;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(232,160,74,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--paper); }
body {
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ===== Overlays ===== */
#stage {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}
.grain {
  position: fixed; inset: -10%;
  z-index: 50; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0 0.78  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
  animation: grain 1.4s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -1%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(2%, -2%); }
  100% { transform: translate(0,0); }
}
.scan {
  position: fixed; inset: 0;
  z-index: 51; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.018) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: screen;
}
.vignette {
  position: fixed; inset: 0;
  z-index: 52; pointer-events: none;
  background: radial-gradient(140% 100% at 50% 50%, transparent 65%, rgba(0,0,0,0.45) 100%);
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  backdrop-filter: blur(8px) saturate(120%);
  background: linear-gradient(to bottom, rgba(12,10,8,0.75), rgba(12,10,8,0));
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.brand-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--paper-2);
  margin-top: 4px;
}
.nav nav { display: flex; gap: 28px; }
.nav nav a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
  position: relative;
  padding: 4px 0;
}
.nav nav a:hover, .nav nav a.active { color: var(--paper); }
.nav nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--amber);
  transition: width 0.45s var(--ease);
}
.nav nav a:hover::after, .nav nav a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line-hard);
  border-radius: 999px;
  color: var(--paper);
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 140px 8vw 80px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(8,7,6,0.92) 0%,
    rgba(8,7,6,0.78) 40%,
    rgba(8,7,6,0.34) 60%,
    rgba(8,7,6,0) 80%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero-marquee { z-index: 2; }
.tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.tag span { color: var(--paper-2); }
.hero-h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(52px, 7.6vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-left: -0.03em;
}
.hero-h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: heroLine 1.1s var(--ease) forwards;
}
.hero-h1 .line:nth-child(2) { animation-delay: 0.1s; }
.hero-h1 .line:nth-child(3) { animation-delay: 0.2s; }
@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.hero-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--amber);
  margin-top: 28px;
  padding-top: 26px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  animation: heroLine 1.2s var(--ease) 0.34s forwards;
}
.hero-tagline::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 1px;
  background: linear-gradient(to right, var(--amber), transparent);
}
.hero-sub {
  max-width: 480px;
  font-size: 17px;
  color: var(--paper-2);
  margin: 26px 0 44px;
  line-height: 1.65;
  letter-spacing: 0.005em;
}
.hero-cta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 999px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn.primary {
  background: var(--amber); color: var(--ink);
  border: 1px solid var(--amber);
}
.btn.primary:hover {
  background: var(--rust-2); border-color: var(--rust-2);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn.ghost {
  border: 1px solid var(--line-hard);
  color: var(--paper);
}
.btn.ghost:hover {
  border-color: var(--paper);
  background: rgba(236,228,210,0.05);
}
.btn.ghost.light {
  border-color: rgba(10,9,7,0.35);
  color: var(--ink);
}
.btn.ghost.light:hover { background: rgba(10,9,7,0.05); }
.btn.solid {
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
}
.btn.solid:hover { background: var(--rust); border-color: var(--rust); }
.btn.full { width: 100%; justify-content: center; }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.hero-meta {
  display: flex; gap: 56px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 600px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta .n {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
}
.hero-meta .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--paper-2);
  margin-top: 8px;
  text-transform: uppercase;
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: rgba(12,10,8,0.5);
}
.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--paper-2);
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span { letter-spacing: 0.04em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Sections ===== */
section {
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 8vw 64px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--rust); }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 900px;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}
.section-head .lede {
  max-width: 560px;
  margin-top: 26px;
  color: var(--paper-2);
  font-size: 17px;
}
.section-head.dark h2 { color: var(--ink); }
.section-head.dark .lede { color: rgba(10,9,7,0.7); }
.section-head.dark .eyebrow { color: var(--blood); }

/* ===== Sessions ===== */
.sessions {
  padding-bottom: 100px;
}
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8vw;
}
.session-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.session-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 30px 60px -30px rgba(232,160,74,0.4);
}
.thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0a0805;
}
.thumb canvas, .thumb video { position: absolute; inset: 0; }
.dur {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.12em;
  background: rgba(10,9,7,0.7);
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 2;
}
.session-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  padding: 22px 22px 8px;
  color: var(--paper);
}
.session-card p {
  padding: 0 22px 16px;
  color: var(--paper-2);
  font-size: 14px;
}
.session-card .meta {
  display: block;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}

/* ===== Cinematics — paper / vice doc background ===== */
.cinematics {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,160,74,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(177,66,31,0.16) 0%, transparent 50%),
    var(--paper);
  color: var(--ink);
  padding-bottom: 100px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cinematics .section-head h2 { color: var(--ink); }
.cinematics::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='p'><feTurbulence baseFrequency='0.65' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0 0.03  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23p)'/></svg>");
  opacity: 0.55; pointer-events: none; mix-blend-mode: multiply;
}
.reel-deck {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 30px 8vw 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.reel-deck::-webkit-scrollbar { display: none; }
.reel {
  flex: 0 0 280px;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  border: 1px solid rgba(10,9,7,0.25);
}
.reel:hover { transform: translateY(-8px) rotate(-0.5deg); }
.reel canvas, .reel video { position: absolute; inset: 0; }
.reel { background: #0a0805; }
.reel-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--paper);
}
.reel-meta .tape {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #ff5050;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.55; } }
.reel-meta h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.reel-meta p {
  font-size: 13px;
  color: rgba(236,228,210,0.85);
}
.reel-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--paper);
  color: var(--ink);
  padding: 5px 9px;
  border-radius: 2px;
}
.reel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  padding: 10px 8vw 0;
  position: relative;
  z-index: 2;
}
.reel-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(10,9,7,0.35);
  font-size: 20px;
  color: var(--ink);
  background: transparent;
  transition: all 0.25s ease;
}
.reel-btn:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

/* ===== Tour ===== */
.tour {
  padding-bottom: 120px;
}
.tour-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8vw;
  list-style: none;
}
.tour-row {
  display: grid;
  grid-template-columns: 160px 180px 1fr 140px;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
}
.tour-row:hover {
  padding-left: 18px;
  background: linear-gradient(to right, rgba(232,160,74,0.06), transparent 70%);
}
.tour-row .date {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.tour-row .city {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
}
.tour-row .venue {
  font-size: 14px;
  color: var(--paper-2);
}
.tour-row .rsvp {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-align: right;
  color: var(--paper);
  border-bottom: 1px solid var(--line-hard);
  padding-bottom: 3px;
  justify-self: end;
}
.tour-row .rsvp:hover { color: var(--amber); border-color: var(--amber); }

/* ===== Membership ===== */
.membership {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(177,66,31,0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(232,160,74,0.12) 0%, transparent 55%),
    var(--bg-2);
  padding: 120px 8vw;
  border-top: 1px solid var(--line);
}
.m-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.m-copy h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-top: 18px;
}
.m-copy h2 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.m-copy > p {
  margin-top: 22px;
  color: var(--paper-2);
  max-width: 480px;
  font-size: 16px;
}
.m-checks {
  list-style: none;
  margin-top: 28px;
}
.m-checks li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--paper-2);
  border-bottom: 1px dashed var(--line);
}
.m-checks li::before {
  content: "▸";
  color: var(--amber);
  font-size: 12px;
  padding-top: 4px;
}

.m-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tier {
  background: rgba(12,10,8,0.7);
  border: 1px solid var(--line-hard);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(.2,.7,.2,1);
  backdrop-filter: blur(8px);
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
}
.tier-inner {
  background: linear-gradient(180deg, rgba(232,160,74,0.18), rgba(177,66,31,0.08));
  border-color: var(--amber);
}
.tier-flag {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border-radius: 999px;
}
.tier-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.t-name {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--paper-2);
}
.t-price {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--paper);
}
.t-price small {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--paper-2);
  margin-left: 4px;
  font-weight: 400;
}
.tier ul {
  list-style: none;
  margin-bottom: 26px;
}
.tier ul li {
  font-size: 14px;
  color: var(--paper-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.tier ul li:last-child { border-bottom: 0; }

.m-aside {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.m-aside a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.m-aside a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* ===== Footer ===== */
.footer {
  background: #08070a;
  padding: 90px 8vw 30px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.f-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.f-logo {
  width: 240px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.92;
  filter: drop-shadow(0 0 16px rgba(232,160,74,0.18));
}
.f-brand p {
  color: var(--paper-2);
  font-size: 14px;
  max-width: 320px;
}
.f-links h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.f-links a {
  display: block;
  font-size: 14px;
  color: var(--paper-2);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.f-links a:hover { color: var(--paper); }
.f-bottom {
  display: flex; justify-content: space-between;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--paper-2);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 14px;
}
.f-legal a {
  color: var(--paper-2);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.f-legal a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ===== Film overlay (rolls on every [data-film] canvas) ===== */
.film-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(236,228,210,0.7);
  text-transform: uppercase;
  mix-blend-mode: screen;
}
.film-overlay .fo-tc {
  position: absolute; top: 12px; left: 14px;
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.film-overlay .fo-rec {
  position: absolute; top: 12px; right: 14px;
  color: #ff5050;
  animation: blink 1.4s ease-in-out infinite;
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 2px;
}
.film-overlay .fo-iso {
  position: absolute; bottom: 12px; right: 14px;
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.reel .film-overlay .fo-iso { display: none; }
.full-reel .film-overlay { display: none; } /* full-reel has its own meta */

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { padding: 14px 18px; }
  .nav nav { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 10px; letter-spacing: 0.16em; }
  .hero { padding: 120px 7vw 60px; }
  .hero-inner { max-width: 100%; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(8,7,6,0.5) 0%,
      rgba(8,7,6,0.78) 30%,
      rgba(8,7,6,0.92) 60%,
      rgba(8,7,6,0.6) 100%);
  }
  .hero-h1 { letter-spacing: -0.025em; }
  .hero-sub { font-size: 16px; }
  .hero-cta { gap: 12px; }
  .session-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 7vw; }
  .m-grid { grid-template-columns: 1fr; gap: 50px; }
  .m-cards { grid-template-columns: 1fr; }
  .membership { padding: 90px 7vw; }
  .section-head { padding: 110px 7vw 40px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .hero-meta .n { font-size: 30px; }
  .tour-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .tour-row .venue { grid-column: 1 / -1; }
  .tour-row .rsvp { justify-self: start; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .f-bottom { flex-direction: column; gap: 8px; }
  .f-logo { width: 180px; }
  .hero-marquee { padding: 10px 0; }
  .marquee-track { font-size: 16px; gap: 24px; }
}
@media (max-width: 540px) {
  .hero-meta { gap: 16px 22px; }
  .hero-meta div { flex: 1 0 calc(50% - 22px); }
  .reel { flex: 0 0 240px; }
}
