/* ==========================================================================
   Bandit Music Projects — banditmusicprojects.co.uk
   ========================================================================== */

:root {
  --bg: #0c0a08;
  --bg-2: #14110d;
  --panel: #1b1712;
  --panel-2: #221d16;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f0e8;
  --muted: #b3a795;
  --amber: #ffb02e;
  --orange: #ff5c1a;
  --accent-grad: linear-gradient(100deg, var(--amber), var(--orange));
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --radius: 18px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film-grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

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

.wrap { width: min(1180px, 100% - 2 * var(--pad)); margin-inline: auto; }

/* ------------------------------------------------------------------ type */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.04;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent-grad);
}

.section-head h2 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  max-width: 28ch;
}
.section-head p.lede {
  color: var(--muted);
  max-width: 58ch;
  margin-top: 1rem;
  font-size: 1.06rem;
}

section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }

.accent { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--accent-grad);
  color: #180d02;
  box-shadow: 0 8px 30px rgba(255, 122, 26, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 122, 26, 0.5); }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

/* ------------------------------------------------------------------- nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.brand small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.brand b { color: var(--amber); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--amber); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -8px; }
.nav-toggle span::after { left: 0; top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(12, 10, 8, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-links a:not(.btn) { font-size: 1.4rem; }
}

/* ------------------------------------------------------------------ hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  padding-top: calc(var(--header-h) + 3rem);
  position: relative;
  isolation: isolate;
}
.hero-bg-stack { position: absolute; inset: 0; z-index: -2; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
  animation: heroDrift 24s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-bg.is-active { opacity: 1; }
/* wide crowd shots crop badly to a phone-shaped slice — skip them on small screens */
@media (max-width: 700px) {
  .hero-bg.wide-only { display: none; }
}
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(12, 10, 8, 0.55) 40%, rgba(12, 10, 8, 0.35) 70%, rgba(12, 10, 8, 0.65)),
    radial-gradient(90% 60% at 70% 20%, transparent, rgba(12, 10, 8, 0.4));
}
.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.8rem);
  max-width: 12ch;
  text-wrap: balance;
}
.hero h1 .accent { display: inline; }
.hero .sub {
  margin-top: 1.4rem;
  max-width: 54ch;
  color: #ded5c7;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.4rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #e8e0d2;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.45);
  backdrop-filter: blur(8px);
}
.chip b { color: var(--amber); font-weight: 700; }

/* ---------------------------------------------------------------- ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 0.85rem;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.ticker span i { font-style: normal; color: var(--amber); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ next dates */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.date-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.date-card:hover { transform: translateY(-4px); border-color: rgba(255, 176, 46, 0.45); }
.date-card .num {
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.date-card h3 { font-size: 1.5rem; margin-top: 0.8rem; }
.date-card .when { color: var(--text); font-weight: 700; margin-top: 0.9rem; }
.date-card .where { color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }
.date-card .status {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c1002;
  background: var(--accent-grad);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.date-card .btn { margin-top: 1.6rem; }
.apply-note { margin-top: 1.6rem; color: var(--muted); font-size: 0.95rem; max-width: 62ch; }
.apply-note a { color: var(--amber); }

/* ----------------------------------------------------------------- stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 2.4rem 1.6rem;
  text-align: center;
}
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l { color: var(--muted); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

/* ------------------------------------------------------------ split rows */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.split .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.split .media:hover img { transform: scale(1.04); }
.split p + p { margin-top: 1rem; }
.split p { color: #d8cfc0; }
.split .standfirst { font-size: 1.18rem; color: var(--text); font-weight: 600; }

/* ------------------------------------------------------------- four days */
.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
  margin-top: 2.8rem;
  counter-reset: day;
}
.day-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: var(--bg-2);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.day-card:hover { transform: translateY(-4px); border-color: rgba(255, 176, 46, 0.4); background: var(--panel); }
.day-card .d {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--amber);
}
.day-card h3 { font-size: 1.35rem; margin-top: 0.7rem; }
.day-card p { color: var(--muted); font-size: 0.96rem; margin-top: 0.7rem; }
.day-card::after {
  content: counter(day, decimal-leading-zero);
  counter-increment: day;
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}

/* ----------------------------------------------------------------- films */
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.film {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.film img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.45s ease, opacity 0.3s ease; }
.film:hover img { transform: scale(1.05); opacity: 1; }
.film .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
}
.film .play::before {
  content: "";
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 10px 34px rgba(255, 122, 26, 0.5);
  transition: transform 0.2s ease;
}
.film .play::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #180d02;
  margin-left: 5px;
}
.film:hover .play::before { transform: scale(1.12); }
.film .label {
  position: absolute;
  left: 1.1rem;
  bottom: 0.95rem;
  right: 1.1rem;
  z-index: 2;
  pointer-events: none;
}
.film .label h3 { font-size: 1.15rem; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8); }
.film .label p { font-size: 0.82rem; color: #cfc5b4; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9); }
.film iframe { width: 100%; height: 100%; border: 0; }
.films-more { margin-top: 2.2rem; text-align: center; }

/* ---------------------------------------------------------------- quotes */
.quotes {
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(255, 122, 26, 0.09), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.quote-stage { position: relative; min-height: 300px; margin-top: 1rem; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote.active { opacity: 1; transform: none; pointer-events: auto; }
.quote blockquote {
  font-size: clamp(1.35rem, 3.1vw, 2.15rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 26ch;
  text-wrap: balance;
}
.quote blockquote::before { content: "\201C"; color: var(--amber); }
.quote blockquote::after { content: "\201D"; color: var(--amber); }
.quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.quote cite::before { content: "— "; color: var(--amber); }
.quote-dots { display: flex; gap: 0.55rem; margin-top: 2rem; }
.quote-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: background 0.2s ease;
}
.quote-dots button.active { background: var(--accent-grad); }
.quotes .more-link { margin-top: 2.4rem; }

/* --------------------------------------------------------- gallery strip */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
}
@media (max-width: 860px) { .strip { grid-template-columns: repeat(2, 1fr); } }
.strip a {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.strip a:nth-child(even) { transform: translateY(14px); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.strip a:hover img { transform: scale(1.07); }

/* ------------------------------------------------------------- supporters */
.supporters { text-align: center; }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.logo-row a {
  background: #f5f0e8;
  border-radius: 16px;
  padding: 1.1rem;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.logo-row a:hover { transform: translateY(-4px); }
.logo-row img { width: 130px; height: 130px; object-fit: contain; }
.supporters .thanks { color: var(--muted); max-width: 60ch; margin: 2rem auto 0; font-size: 0.96rem; }

/* --------------------------------------------------------------- contact */
.contact {
  background:
    radial-gradient(80% 100% at 50% 100%, rgba(255, 122, 26, 0.13), transparent 60%),
    var(--bg);
}
.contact .big-cta {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
}
.contact-rows { margin-top: 2.8rem; display: grid; gap: 0.4rem; }
.contact-rows a {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 700;
  transition: color 0.15s ease, padding-left 0.2s ease;
}
.contact-rows a:hover { color: var(--amber); padding-left: 0.6rem; }
.contact-rows a span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); min-width: 92px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--amber); }

/* ---------------------------------------------------------- page headers */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 6.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  isolation: isolate;
}
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); max-width: 14ch; }
.page-hero .sub { color: var(--muted); max-width: 58ch; margin-top: 1.2rem; font-size: 1.1rem; }

/* --------------------------------------------------------------- letters */
.letters-cols {
  columns: 2 380px;
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.letter {
  break-inside: avoid;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 1.7rem 1.8rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.letter:hover { border-color: rgba(255, 176, 46, 0.35); }
.letter p { color: #d8cfc0; font-size: 0.98rem; }
.letter p + p { margin-top: 0.8rem; }
.letter .from {
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.letter .from small { display: block; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-top: 0.15rem; }
.letter.featured { background: linear-gradient(160deg, rgba(255, 122, 26, 0.12), var(--bg-2) 55%); border-color: rgba(255, 176, 46, 0.3); }

.press-quote {
  border-left: 3px solid var(--amber);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin-top: 2rem;
  color: #d8cfc0;
  font-size: 1.05rem;
}
.press-quote cite { display: block; margin-top: 0.7rem; color: var(--muted); font-style: normal; font-size: 0.9rem; font-weight: 700; }

/* --------------------------------------------------------------- gallery */
.masonry { columns: 3 320px; gap: 1rem; margin-top: 2.6rem; }
.masonry a {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.masonry img { width: 100%; transition: transform 0.4s ease; }
.masonry a:hover img { transform: scale(1.05); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 6, 4, 0.94);
  display: none;
  place-items: center;
  padding: 4vmin;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8); }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.lightbox button:hover { background: rgba(255, 176, 46, 0.25); }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------- story extras */
.timeline { margin-top: 2.8rem; display: grid; gap: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--amber), var(--orange), transparent);
}
.tl-item { position: relative; padding: 0 0 2.2rem 2.4rem; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--amber);
}
.tl-item .year { font-family: var(--font-display); color: var(--amber); font-size: 1.05rem; letter-spacing: 0.1em; }
.tl-item h3 { font-size: 1.3rem; margin-top: 0.3rem; }
.tl-item p { color: var(--muted); margin-top: 0.5rem; max-width: 60ch; }

.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: 2.6rem; }
.skill-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); padding: 1.8rem; }
.skill-card h3 { font-size: 1.25rem; }
.skill-card ul { margin-top: 1rem; list-style: none; display: grid; gap: 0.5rem; }
.skill-card li { color: var(--muted); padding-left: 1.4rem; position: relative; font-size: 0.98rem; }
.skill-card li::before { content: "\266A"; position: absolute; left: 0; color: var(--amber); }

/* ------------------------------------------------------------------ logo */
.brand { align-items: center; }
.logo { color: var(--text); flex: none; }
.logo-gear { transform-box: view-box; transform-origin: center; will-change: transform; }
.logo-picks { color: var(--amber); transform-box: view-box; transform-origin: center; }
.brand:hover .logo-picks { animation: pickPulse 0.7s ease; }
@keyframes pickPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  35% { transform: scale(0.86) rotate(-14deg); }
  70% { transform: scale(1.06) rotate(4deg); }
}
.brand .word { display: flex; align-items: baseline; gap: 0.45rem; }

/* -------------------------------------------------------- scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 70;
  background: var(--accent-grad);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.7);
}

/* --------------------------------------------------------------- hero EQ */
.hero-eq {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}
.hero .wrap { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ form */
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  margin-top: 2.4rem;
}
.form-card fieldset { border: 0; margin: 0 0 2.4rem; padding: 0; }
.form-card fieldset:last-of-type { margin-bottom: 1rem; }
.form-card legend {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.3rem;
  color: var(--text);
}
.form-card legend::before { content: "// "; color: var(--amber); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field label b { color: var(--amber); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field select, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--amber) 50%), linear-gradient(135deg, var(--amber) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--panel); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 176, 46, 0.06);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input[type="date"] { color-scheme: dark; }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.radio-row label, .check label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.check label { border-radius: 12px; align-items: flex-start; line-height: 1.45; padding: 0.9rem 1.1rem; }
.radio-row input, .check input { accent-color: var(--orange); width: 17px; height: 17px; flex: none; }
.check input { margin-top: 2px; }
.radio-row label:has(input:checked), .check label:has(input:checked) {
  border-color: var(--amber);
  background: rgba(255, 176, 46, 0.08);
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 1.6rem; }
.form-msg { font-size: 0.95rem; color: var(--muted); }
.form-msg.err { color: #ff7d66; }
.form-success {
  display: none;
  text-align: center;
  padding: clamp(2.5rem, 7vw, 5rem) 1rem;
}
.form-success.show { display: block; }
.form-success .tick {
  width: 84px; height: 84px; margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid; place-items: center;
  font-size: 2.4rem; color: #180d02;
  box-shadow: 0 14px 44px rgba(255, 122, 26, 0.5);
}
.form-success h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.form-success p { color: var(--muted); max-width: 46ch; margin: 1rem auto 0; }

/* -------------------------------------------------- plectrum cursor & fx */
@media (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 28 28'%3E%3Cpath d='M4 3C13 0.5 22 5 22.5 12 23 18.5 17.5 24 12 22.5 6.5 21 2.5 13 4 3Z' fill='%23ffb02e' stroke='%23170d02' stroke-width='1.5'/%3E%3C/svg%3E") 4 3, auto;
  }
  a, button, .btn, .film, [data-lightbox], select, label, .quote-dots button, summary {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 28 28'%3E%3Cpath d='M4 3C13 0.5 22 5 22.5 12 23 18.5 17.5 24 12 22.5 6.5 21 2.5 13 4 3Z' fill='%23ff5c1a' stroke='%23fff4e4' stroke-width='1.6'/%3E%3C/svg%3E") 4 3, pointer;
  }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea { cursor: text; }
  input[type="range"] { cursor: ew-resize; }
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(255, 176, 46, 0.06), rgba(255, 92, 26, 0.02) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cursor-glow.live { opacity: 1; }

.note-pop {
  position: fixed;
  z-index: 6;
  pointer-events: none;
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
  text-shadow: 0 0 14px rgba(255, 122, 26, 0.9);
  animation: noteFloat 0.9s ease-out forwards;
}
@keyframes noteFloat {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(0deg); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -140%) scale(1.15) rotate(var(--note-rot, 18deg)); }
}

/* 3D tilt cards */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .num, .tilt h3 { transform: translateZ(26px); }

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .sub, .hero .hero-ctas, .hero .hero-meta {
    animation: riseIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .hero h1 { animation-delay: 0.12s; }
  .hero .sub { animation-delay: 0.28s; }
  .hero .hero-ctas { animation-delay: 0.44s; }
  .hero .hero-meta { animation-delay: 0.6s; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* photos warm up on hover */
.strip img, .masonry img { filter: saturate(0.6) contrast(1.03); transition: filter 0.45s ease, transform 0.45s ease; }
.strip a:hover img, .masonry a:hover img { filter: saturate(1.05); }

/* --------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .ticker-track { animation-duration: 90s; }
  .cursor-glow, .note-pop { display: none; }
}

/* ---------------------------------------------------- poster marquee (films) */
.poster-rows { margin-top: 2.8rem; display: grid; gap: 1.3rem; }
.poster-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.poster-track { display: flex; width: max-content; animation: posterL 46s linear infinite; }
.poster-row.rev .poster-track { animation-name: posterR; }
.poster-track .film { flex: 0 0 clamp(280px, 36vw, 470px); margin-right: 1.3rem; }
.poster-row:hover .poster-track { animation-play-state: paused; }
@keyframes posterL { to { transform: translateX(-50%); } }
@keyframes posterR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ------------------------------------------------------- video popup player */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(8, 6, 4, 0.93);
  display: grid;
  place-items: center;
  padding: 4vmin;
}
.video-modal .vm-box {
  width: min(1100px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal .vm-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.video-modal .vm-close:hover { background: rgba(255, 176, 46, 0.25); }
.video-modal .vm-title {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------- quotes two-column */
.quotes-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.quote-media { position: relative; height: 480px; }
.quote-media img {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s ease, opacity 0.9s ease;
}
.quote-media img.fading { opacity: 0; }
.quote-media img:first-child {
  width: 74%;
  aspect-ratio: 4 / 3;
  top: 0;
  right: 0;
  transform: rotate(2.5deg);
}
.quote-media img:last-child {
  width: 52%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  left: 0;
  transform: rotate(-3.5deg);
}
.quote-media:hover img { transform: rotate(0deg); }
@media (max-width: 900px) {
  .quotes-grid { grid-template-columns: 1fr; }
  .quote-media { display: none; }
}

/* --------------------------------------------------------- corkboard letters */
.letters-cols .letter { --tilt: 0deg; }
.letters-cols .letter:nth-child(odd) { --tilt: -0.7deg; }
.letters-cols .letter:nth-child(even) { --tilt: 0.6deg; }
.letters-cols .letter:nth-child(3n) { --tilt: -1.2deg; }
.letters-cols .letter:nth-child(5n) { --tilt: 1.1deg; }
.letters-cols .letter::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffd98f, var(--orange) 72%);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.letters-cols .letter { position: relative; overflow: visible; }

/* ------------------------------------------------------------ wave dividers */
.wave-divider {
  height: 44px;
  width: min(1180px, 100% - 2 * var(--pad));
  margin-inline: auto;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='44'%3E%3Cg fill='%23ffb02e'%3E%3Crect x='3' y='19' width='3' height='6' rx='1.5'/%3E%3Crect x='12' y='15' width='3' height='14' rx='1.5'/%3E%3Crect x='21' y='17' width='3' height='10' rx='1.5'/%3E%3Crect x='30' y='11' width='3' height='22' rx='1.5'/%3E%3Crect x='39' y='6' width='3' height='32' rx='1.5'/%3E%3Crect x='48' y='13' width='3' height='18' rx='1.5'/%3E%3Crect x='57' y='18' width='3' height='8' rx='1.5'/%3E%3Crect x='66' y='9' width='3' height='26' rx='1.5'/%3E%3Crect x='75' y='3' width='3' height='38' rx='1.5'/%3E%3Crect x='84' y='14' width='3' height='16' rx='1.5'/%3E%3Crect x='93' y='17' width='3' height='10' rx='1.5'/%3E%3Crect x='102' y='12' width='3' height='20' rx='1.5'/%3E%3Crect x='111' y='7' width='3' height='30' rx='1.5'/%3E%3Crect x='120' y='16' width='3' height='12' rx='1.5'/%3E%3Crect x='129' y='10' width='3' height='24' rx='1.5'/%3E%3Crect x='138' y='18' width='3' height='8' rx='1.5'/%3E%3Crect x='147' y='5' width='3' height='34' rx='1.5'/%3E%3Crect x='156' y='15' width='3' height='14' rx='1.5'/%3E%3Crect x='165' y='12' width='3' height='20' rx='1.5'/%3E%3Crect x='174' y='16' width='3' height='12' rx='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  animation: waveScroll 14s linear infinite;
}
@keyframes waveScroll { to { background-position-x: -180px; } }

/* ------------------------------------------------------------- intro splash */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
}
.intro.done { animation: introOut 0.65s cubic-bezier(0.7, 0, 0.3, 1) forwards; }
@keyframes introOut { to { transform: translateY(-101%); } }
body.intro-lock { overflow: hidden; }
.intro-inner { text-align: center; }
.intro-inner .logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.4rem;
  display: block;
  animation: introGear 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes introGear {
  from { opacity: 0; transform: rotate(-160deg) scale(0.55); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}
.intro-word {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  line-height: 1;
  animation: riseIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s both;
}
.intro-word b { color: var(--amber); font-weight: 400; }
.intro-tag {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  animation: riseIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.55s both;
}
.intro-eq {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 1.6rem;
  height: 26px;
  align-items: flex-end;
  animation: riseIn 0.6s ease 0.7s both;
}
.intro-eq span {
  width: 5px;
  border-radius: 3px;
  background: var(--accent-grad);
  height: 100%;
  transform-origin: bottom;
  animation: introEq 0.55s ease-in-out infinite alternate;
}
.intro-eq span:nth-child(1) { animation-delay: 0s; }
.intro-eq span:nth-child(2) { animation-delay: 0.12s; }
.intro-eq span:nth-child(3) { animation-delay: 0.24s; }
.intro-eq span:nth-child(4) { animation-delay: 0.06s; }
.intro-eq span:nth-child(5) { animation-delay: 0.18s; }
@keyframes introEq { from { transform: scaleY(0.25); } to { transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
  .poster-track { animation: none; }
  .poster-row { overflow-x: auto; }
  .wave-divider { animation: none; }
  .intro { display: none; }
}

/* corkboard rotation must win over the reveal transform */
.letters-cols .letter.reveal.in {
  transform: rotate(var(--tilt));
  transition: opacity 0.7s ease, transform 0.3s ease;
}
.letters-cols .letter.reveal.in:hover { transform: rotate(0deg) translateY(-4px); }

/* ------------------------------------------------------------ site polish */
::selection { background: var(--orange); color: #180d02; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* page fade-in */
main { animation: pageFade 0.55s ease both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* back to top */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 46, 0.4);
  background: rgba(20, 17, 13, 0.75);
  backdrop-filter: blur(10px);
  color: var(--amber);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: rgba(255, 176, 46, 0.18); }

/* lightbox counter */
.lightbox .lb-count {
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  background: rgba(12, 10, 8, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

/* footer v2 */
.site-footer { padding: 3.2rem 0 5.5rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.foot-title b { color: var(--amber); font-weight: 400; }
.foot-tag { margin-top: 0.5rem; font-size: 0.92rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: flex-end;
  align-content: start;
}
@media (max-width: 720px) { .foot-links { justify-content: flex-start; } }
.foot-links a { text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.foot-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

/* 404 */
.nf { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 2rem; }
.nf .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 13rem);
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nf h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: 0.6rem; }
.nf p { color: var(--muted); margin-top: 0.8rem; }

@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
}

/* ------------------------------------------------------------ theme system */
/* Each Bandit has a theme. Bandit 40 = "Daydream". To retheme for the next
   project: change the .theme-word text in the HTML, and if you fancy, the
   three pastel colours below. */
.theme-word {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  display: inline-block;
  padding: 0.08em 0.16em 0.38em; /* room for the script descenders (y, g) */
  margin-bottom: -0.22em;
  transform: rotate(-2deg);
  background: linear-gradient(90deg, #8ecbff, #ffa8d4, #ffd9a0, #8ecbff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: dreamShift 8s linear infinite;
}
@keyframes dreamShift { to { background-position: 300% 0; } }
.chip .theme-word { font-size: 1.05em; line-height: 1; }

/* Bandit 40 card — dreamy mini-poster */
.date-card .theme-title { margin-top: 0.4rem; }
.date-card .theme-word { font-size: 2.1rem; line-height: 1.3; }
.date-card.theme-daydream { border-color: rgba(150, 200, 255, 0.22); }
.date-card.theme-daydream::after {
  content: "";
  position: absolute;
  inset: -25% -35%;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 22% 28%, rgba(142, 203, 255, 0.13), transparent 60%),
    radial-gradient(closest-side at 78% 72%, rgba(255, 168, 212, 0.11), transparent 60%),
    radial-gradient(closest-side at 62% 18%, rgba(255, 217, 160, 0.10), transparent 55%);
  animation: cloudDrift 16s ease-in-out infinite alternate;
}
@keyframes cloudDrift { from { transform: translateX(-4%) translateY(-2%); } to { transform: translateX(4%) translateY(2%); } }
.date-card .countdown { margin-top: 0.9rem; font-size: 0.9rem; font-weight: 800; color: var(--amber); letter-spacing: 0.04em; }

/* Bandit 41 — mystery theme */
.mystery { margin-top: 0.4rem; color: var(--muted); font-size: 0.95rem; }
.mystery b { color: var(--text); animation: mysteryFlicker 2.8s ease-in-out infinite; }
@keyframes mysteryFlicker {
  0%, 100% { opacity: 1; }
  46% { opacity: 1; }
  50% { opacity: 0.35; }
  54% { opacity: 1; }
  72% { opacity: 0.75; }
}

/* theme roll-call strip */
.themes-strip { padding-block: clamp(3rem, 7vw, 5.5rem); }
.themes-roll {
  overflow: hidden;
  margin-top: 2.2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.themes-roll-track {
  display: flex;
  align-items: baseline;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.themes-roll-track span { margin-right: 3.2rem; }
.themes-roll-track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.34);
}
.themes-roll-track i { font-style: normal; color: var(--amber); -webkit-text-stroke: 0; font-size: 0.6em; }
.themes-next { margin-top: 2rem; font-size: 1.05rem; color: var(--muted); font-weight: 600; }
.themes-next .theme-word { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-left: 0.35rem; vertical-align: middle; }

/* current-project badge in the header */
.brand-now {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  padding: 0.16rem 0.68rem 0.2rem;
  border: 1px solid rgba(255, 176, 46, 0.35);
  border-radius: 999px;
  background: rgba(255, 176, 46, 0.08);
  box-shadow: 0 0 14px rgba(255, 122, 26, 0.15);
  white-space: nowrap;
}
.brand-now b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--amber);
}
.brand-now .theme-word {
  font-size: 0.88rem;
  transform: none;
  padding: 0.05em 0.05em 0.32em;
  margin-bottom: -0.28em;
}
@media (max-width: 700px) {
  .brand small { display: none; }
}
@media (max-width: 420px) {
  .brand-now { margin-left: 0.3rem; padding: 0.12rem 0.55rem 0.16rem; }
  .brand-now b { font-size: 0.85rem; }
  .brand-now .theme-word { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .theme-word, .date-card.theme-daydream::after, .mystery b, .themes-roll-track { animation: none; }
}
