/* ============================================================
   RAFT TONE — 2026 landing
   Cinematic dark + bold typography
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #161616;
  --line: rgba(245, 245, 245, 0.08);
  --line-strong: rgba(245, 245, 245, 0.18);
  --text: #f5f5f5;
  --text-muted: #888888;
  --text-faint: #555555;
  --accent: #ff4f00;
  --accent-soft: #ff4f0022;

  --font-sans: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --gutter-x: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 12vw, 160px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
img, iframe { display: block; max-width: 100%; }
ul { list-style: none; }
h1, h2, h3 { line-height: 0.9; letter-spacing: -0.04em; font-weight: 900; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: 18px var(--gutter-x);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.brand:hover .brand-logo { opacity: 0.75; }

.site-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.site-nav a { transition: color 0.2s ease; position: relative; }
.site-nav a:hover { color: var(--text); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.lang-switch button {
  padding: 4px 6px;
  color: var(--text-faint);
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--gutter-x) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.05);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.85) 85%, var(--bg) 100%),
    radial-gradient(ellipse 60% 40% at 50% 100%, #ff4f0014 0%, transparent 70%);
}

.hero > *:not(.hero-bg) {
  position: relative;
  z-index: 1;
}


.hero-meta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.hero-meta:hover {
  border-color: var(--accent);
  background: rgba(255, 79, 0, 0.12);
  transform: translateY(-1px);
}
.hero-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(80px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  z-index: 1;
  margin: auto 0;
}
.hero-title .line {
  display: block;
}
.hero-title .line-offset {
  text-align: right;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  z-index: 1;
}
.hero-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-tag .num {
  font-size: 10px;
  color: var(--text-faint);
}
.hero-tag-press a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.hero-tag-press a:hover { opacity: 0.7; }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: scroll 35s linear infinite;
  padding-left: 40px;
}
.ticker-track span:nth-child(even) {
  color: var(--accent);
  font-size: 0.7em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad) var(--gutter-x);
  max-width: 1600px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.section h2 {
  font-size: clamp(48px, 9vw, 140px);
  text-transform: uppercase;
}
.section-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* ---- Bio ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.bio-lead {
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.bio-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-top: 14px;
}
.bio-body p { max-width: 50ch; }

/* ---- Format block (what I play / for whom) ---- */
.format-block {
  margin-top: 80px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.format-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
}
.format-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.chip-soft {
  background: transparent;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- Festivals chips (in Bio) ---- */
.festivals {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.festivals-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.festivals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.fest:hover {
  border-color: var(--accent);
  background: var(--bg-elev);
}
.fest-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.fest-times {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-left: 6px;
  border-left: 1px solid var(--line-strong);
}

/* ---- Shared stages (mini-block in Bio) ---- */
.shared-stages {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shared-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.shared-names {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.shared-names > span {
  color: var(--text);
  white-space: nowrap;
}
.shared-names > span:not(:last-child)::after {
  content: '\00a0·';
  color: var(--text-faint);
  font-weight: 400;
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.shared-names > .shared-etc {
  color: var(--text-faint);
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
}
.shared-names small {
  font-family: var(--font-mono);
  font-size: 0.38em;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  font-weight: 400;
  vertical-align: super;
  margin-left: 4px;
  text-transform: uppercase;
}
.shared-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  max-width: 65ch;
  margin-top: 4px;
}

/* ---- Brands marquee (social proof) ---- */
.brands-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px var(--gutter-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 50%, var(--bg) 100%);
  overflow: hidden;
}
/* When marquee is nested inside Bio (sales-focused position), break out to full viewport width */
.section-bio > .brands-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 40px;
}
.brands-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  white-space: nowrap;
}
.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  will-change: transform;
}
.brands-track .brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  opacity: 0.85;
}
.brands-track .brand::after {
  content: '×';
  color: var(--accent);
  opacity: 0.65;
  font-weight: 400;
  margin: 0 22px;
  font-size: 0.85em;
}

@media (max-width: 600px) {
  .brands-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- Shows (with background under dates only) ---- */
.section-shows {
  position: relative;
  max-width: none;
  padding: 0;
  margin: 0;
}
.shows-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.shows-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.shows-gallery {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter-x);
}
.shows-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6) contrast(1.05) brightness(0.75);
}
.shows-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 10, 0.78) 15%, rgba(10, 10, 10, 0.78) 85%, var(--bg) 100%),
    radial-gradient(ellipse 100% 70% at 50% 50%, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
}
.shows-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter-x);
}

.show-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.show-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.show-item:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--bg-elev) 0%, transparent 80%);
}
.show-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
}
.show-day {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--text);
}
.show-month {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.show-year {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.show-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.show-venue {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.show-city {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.show-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.show-status {
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
}
.show-cta a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.show-cta a:hover { color: var(--accent); }
.btn-tickets {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn-tickets:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: var(--bg) !important;
}
.show-item-placeholder { opacity: 0.7; }
.show-item-placeholder .show-day { color: var(--text-faint); font-size: 32px; font-weight: 500; }

/* TBA placeholder: whole row is one link to Instagram */
.show-item-placeholder:has(.show-item-link) {
  display: block;
  padding: 0;
}
.show-item-link {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  transition: opacity 0.2s ease;
}
.show-item-placeholder:hover { opacity: 1; }
.show-cta-handle {
  color: var(--text-muted);
  transition: color 0.2s;
}
.show-item-link:hover .show-cta-handle { color: var(--accent); }
/* JS sets [hidden] on the TBA row when real dates exist — this must beat the
   display:block rule above, so the placeholder actually disappears */
.show-item-placeholder[hidden] { display: none !important; }

/* ---- Past shows (open block, fixed columns, compact, dimmed) ---- */
.shows-past {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.shows-past[hidden] { display: none; }
.shows-past-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.shows-past-label { color: var(--text); }
.shows-past-count { color: var(--text-faint); }

/* years are split into fixed columns by JS (.past-col); each column is an
   independent vertical list so expanding a year never reshuffles the others */
.past-years {
  display: flex;
  align-items: flex-start;
  gap: 0 64px;
  padding-top: 4px;
}
.past-col {
  flex: 1 1 0;
  min-width: 0;
}
.past-year {
  border-top: 1px solid var(--line);
}
.past-col > .past-year:first-child { border-top: none; }
.past-year-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}
.past-year-summary::-webkit-details-marker { display: none; }
.past-year-summary:hover { color: var(--accent); }
.past-year-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.past-year-highlight {
  flex-basis: 100%;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  line-height: 1.4;
}
.past-year-count { color: var(--text-faint); font-size: 12px; margin-left: auto; }
.past-year-icon {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.past-year[open] .past-year-icon { transform: rotate(45deg); }

.show-list-past {
  border-top: 1px solid var(--line);
  padding-bottom: 12px;
}
.show-item-past {
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 14px 0;
  opacity: 0.55;
  transition: opacity 0.2s ease, padding 0.2s ease;
}
.show-item-past:hover {
  opacity: 0.85;
  padding-left: 8px;
  background: none;
}
.show-item-past .show-day { font-size: 28px; font-weight: 700; }
.show-item-past .show-month { font-size: 11px; }
.show-item-past .show-year { font-size: 11px; }
.show-item-past .show-venue { font-size: 16px; font-weight: 600; }
.show-item-past .show-city { font-size: 11px; }
.show-item-past .show-cta { display: none; }

/* ---- Releases ---- */
.release-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.release-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.release-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.release-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.release-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 55ch;
}

.embed-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 32px;
}
.embed-card iframe {
  width: 100%;
  border-radius: 12px;
}
/* SoundCloud classic widget is light-only — present it as a deliberate light "paper" card
   on the dark page (keeps artwork colours intact instead of inverting them) */
.embed-card--paper {
  background: #faf9f6;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.streaming-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.streaming-links a:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ---- Live ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.photo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.photo-frame {
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.photo-frame::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: -0.04em;
  opacity: 0.4;
}
.photo:hover .photo-frame {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.photo-frame.has-image::before { display: none; }
.photo-frame img,
.photo-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cap-meta { color: var(--text-faint); }
.cap-text { color: var(--text-muted); }

.video-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--bg-elev);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-cap {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 16px 4px 4px;
}

/* ---- Awards & Sync ---- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.award-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  min-height: 240px;
}
.award-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.award-card-feature {
  background:
    linear-gradient(135deg, #1a1a1a 0%, var(--bg-card) 70%);
  border-color: var(--accent);
}
.award-card-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}
.award-card > * { position: relative; z-index: 1; }
.award-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.award-year { color: var(--accent); }
.award-flag {
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text-muted);
}
.award-title {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.award-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: auto;
}
.award-link {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: opacity 0.2s ease;
  margin-top: 4px;
}
.award-link:hover { opacity: 0.75; }

/* ---- Behind the scenes (production credits) ---- */
.prod-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.prod-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.prod-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.prod-card-feature {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--bg-card) 70%);
  border-color: var(--accent);
}
.prod-card-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}
.prod-card > * { position: relative; z-index: 1; }
.prod-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prod-org { color: var(--accent); }
.prod-period { color: var(--text-faint); }
.prod-role {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.prod-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}
.prod-metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.atlas-fact {
  position: relative;
  padding: 22px 24px 22px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.atlas-fact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.fact-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  max-width: 55ch;
}

/* ---- Cyborgs ---- */
.cyborgs-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 32px;
}
.cyborgs-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cyborgs-lead {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.cyborgs-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 50ch;
}
.cyborgs-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.stat {
  padding: 24px 28px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.collabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.collabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.collab {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.collab:hover { border-color: var(--line-strong); }
.collab-name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.collab-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.collab-extra {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.cyborgs-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cy-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.cy-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cy-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.cy-value {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cy-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* ---- Instagram ---- */
.ig-handle {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-muted);
  transition: all 0.2s ease;
  align-self: center;
}
.ig-handle:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ig-tile {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ig-tile::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--text-faint);
  opacity: 0.4;
  letter-spacing: -0.04em;
}
.ig-tile::after {
  content: 'IG';
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 6px;
  border-radius: 4px;
}
.ig-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.ig-tile.has-image::before { display: none; }
.ig-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  transition: padding 0.3s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { padding-left: 8px; }
.faq-q-text {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.faq-icon {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 70ch;
}

/* ---- Booking ---- */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.booking-grid-2 { grid-template-columns: repeat(2, 1fr); }
.booking-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s ease;
  min-height: 220px;
  justify-content: space-between;
}
.booking-card:hover {
  background: var(--bg-elev);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.card-value {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.card-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px var(--gutter-x) 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .brand-logo { height: 28px; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.socials a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.socials a:hover { color: var(--accent); }
.footer-bottom {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(255, 79, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 79, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.4);
}
@media (max-width: 600px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    padding: 14px var(--gutter-x);
  }
  .site-nav { display: none; }
  .lang-switch { justify-self: end; }

  .bio-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-foot {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-tag-press {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-grid-2 { grid-template-columns: 1fr; }
  .cyborgs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cyborgs-links { grid-template-columns: 1fr; }
  .collabs-list { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .shared-stages { margin-top: 48px; }
  .format-block { margin-top: 48px; }
  .format-row { grid-template-columns: 1fr; gap: 10px; }

  .show-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .show-item:hover { padding-left: 0; }
  .show-item-link {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .show-date { gap: 10px; }
  .show-day { font-size: 56px; }
  .show-cta { justify-self: start; }

  .ig-handle { margin-left: 0; }
  .section-head { gap: 12px; }
}

@media (max-width: 600px) {
  /* Slight shift so face sits just to the right of the logo */
  .hero-bg img { object-position: 43% 30%; }

  /* Push the bookings pill up under the header, drop RAFT TONE title down */
  .hero {
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 36px;
    gap: 28px;
  }
  .hero-meta {
    position: absolute;
    top: 72px;
    left: var(--gutter-x);
  }
  .hero-title { margin: 0; }
}

@media (max-width: 520px) {
  .hero-title { line-height: 0.85; }
  .section h2 { font-size: clamp(40px, 14vw, 80px); }
  .bio-lead { font-size: 26px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; }
  .shared-names { font-size: 18px; line-height: 1.35; }
  .stat-value { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
