/* ===================================================================
   SEDA — Demo Site (v2 — Eric's feedback round 1)
   =================================================================== */

:root {
  --bg: #050a14;
  --bg-2: #0a1530;
  --bg-3: #1e3a6b;
  --primary: #3b7fd9;
  --primary-light: #4fa3e8;
  --violet: #5b4f8a;
  --text: #d9eeff;
  --text-frost: #f0faff;
  --text-muted: #9fb6cf;       /* was #6b8aa8 (~3.7:1, failed AA) → ~5.2:1, passes AA on body copy */
  --frost: #6fe0ec;            /* icy ring on the (kept-blue) buttons */
  --border-line: rgba(217, 238, 255, 0.12);

  /* real type identity — distinctive display face + explicit body font (the #1 de-slop lever) */
  --font-display: 'Space Grotesk', 'SF Pro Display', -apple-system, BlinkMacSystemFont,
                  'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                  system-ui, sans-serif;

  --max-content: 1200px;

  /* ── Round-2 modular type scale (7 steps, ~5:1 hero:body) ──
     fills the giant-hero → tiny-label gap the critique flagged. */
  --fs-label: 0.75rem;   /* 12px — all uppercase eyebrows/meta/labels */
  --fs-body:  1rem;      /* 16px — body copy */
  --fs-sub:   1.375rem;  /* 22px — lead / intro paragraphs */
  --fs-h3:    2rem;      /* 32px — card titles, event day */
  --fs-h2:    2.5rem;    /* 40px — section titles */
  --fs-h1:    3.5rem;    /* 56px — feature / pull-quote */
  --fs-hero:  4.5rem;    /* 72px — hero wordmark (top of ladder) */
}

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

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
  position: relative;
}

/* ====== AMBIENT GLOBAL DARK-ICE BACKGROUND ====== */
/* Sits behind everything, fixed in viewport, large tile, low opacity.
   NO mix-blend-mode — that breaks position:fixed on iOS Safari + causes scroll bug. */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-image: url('/img/textures/dark-ice-texture.webp');
  background-size: 1800px 1800px;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.18;
  pointer-events: none;
  /* Promote to its own GPU layer so iOS keeps it locked */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* All page content sits above the global texture */
nav.top, main, footer.bottom, .float-cta, .modal-backdrop {
  position: relative;
  z-index: 1;
}

/* ====== Navigation ====== */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(5, 10, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  transition: padding 0.3s ease, background 0.3s ease;
}
nav.top.scrolled { padding: 0.7rem 2rem; background: rgba(5, 10, 20, 0.9); }
nav.top .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
nav.top .brand img {
  height: 50px; /* was 42 — bumped for legibility + to match Book Now visual weight (Eric, 2026-06-07) */
  width: auto;
  filter: invert(1) drop-shadow(0 0 12px rgba(75, 163, 232, 0.4));
  transition: filter 0.3s ease;
  display: block;
  vertical-align: middle;
}
nav.top.scrolled .brand img { height: 40px; }
nav.top .brand:hover img { filter: invert(1) drop-shadow(0 0 20px rgba(75, 163, 232, 0.7)); }

/* DEMO badge — red pill in the nav */
.demo-badge {
  background: #ff3344;
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  vertical-align: middle;
  user-select: none;
  box-shadow: 0 0 16px rgba(255, 51, 68, 0.45);
}
.demo-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: demoBlink 1.4s infinite;
}
@keyframes demoBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (max-width: 720px) {
  nav.top .brand img { height: 34px; }
  /* Kill the logo-size shift on scroll (caused the visible hop) */
  nav.top.scrolled .brand img { height: 34px; }
  .demo-badge { font-size: 0.5rem; padding: 0.25rem 0.5rem; }
}

nav.top .links {
  display: flex; gap: 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
nav.top .links a {
  color: #93afcc; /* was var(--text-muted) #6b8aa8 — nudged brighter for legibility over the bright hero (Eric, 2026-06-07) */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5); /* dark halo: readable over hero, invisible over the dark scrolled nav */
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
nav.top .links a:hover { color: var(--text-frost); }
nav.top .links a::after {
  content: ''; position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--primary-light);
  transition: width 0.3s ease;
}
nav.top .links a:hover::after { width: 100%; }

.cta-mini {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 0.6rem 1.3rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  /* keep blue + frost ring on the inner edge (Eric) */
  box-shadow: 0 4px 14px rgba(75, 163, 232, 0.35),
    inset 0 0 0 1px rgba(111, 224, 236, 0.5), inset 0 0 9px rgba(111, 224, 236, 0.2);
  font-family: inherit;
}
.cta-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(75, 163, 232, 0.55),
    inset 0 0 0 1px rgba(111, 224, 236, 0.65), inset 0 0 11px rgba(111, 224, 236, 0.28);
}
/* Nav "Join the inner circle": clear gap from the section links (was touching
   "Contact"), + a subtle darker-blue text outline for legibility on the blue
   gradient. (Reza + Eric review, 2026-06-07) */
nav.top .cta-mini {
  margin-left: 2.2rem;
  text-shadow:
    -0.6px -0.6px 0 #235a8f,  0.6px -0.6px 0 #235a8f,
    -0.6px  0.6px 0 #235a8f,  0.6px  0.6px 0 #235a8f;
}

/* ── R2 hamburger toggle (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
  z-index: 95;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 0 auto;
  background: var(--text-frost);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
nav.top.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.top.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.top.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  nav.top { padding: 0.9rem 1.2rem; gap: 0.6rem; }
  nav.top.scrolled { padding: 0.9rem 1.2rem; }

  /* R2: real hamburger replaces the 8px crammed-link row.
     Book Now stays as the one persistent CTA; everything else lives in the panel. */
  .nav-toggle { display: flex; }
  nav.top .nav-book { margin-left: auto; margin-right: 0.2rem; font-size: 0.7rem; }

  /* collapse the desktop nav items — they reappear in the drop panel when open */
  nav.top .links,
  nav.top .cta-mini { display: none; }

  /* open state: nav wraps, links + CTA drop onto their own full-width rows */
  nav.top.nav-open {
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1.5rem;
    background: rgba(5, 10, 20, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-line);
    z-index: 90;
  }
  nav.top.nav-open .links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    gap: 0;
    margin-top: 1rem;
  }
  nav.top.nav-open .links a {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    text-transform: none;
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-line);
  }
  nav.top.nav-open .cta-mini {
    display: inline-flex;
    justify-content: center;
    flex-basis: 100%;
    margin-top: 1.25rem;
  }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 6rem;
}

/* Hero photo — Ice3 (Reza on the right, rocky cliff on the left) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--cms-bg, url('/img/hero-falls.jpg'));
  background-size: cover;
  background-position: 65% 22%; /* push focal point UP so head/face don't crop on wide viewports */
  z-index: 1;
  /* Feather hero photo at the bottom — bleeds into global dark-ice texture */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
}
@media (max-width: 720px) {
  .hero-bg { background-position: 70% 30%; }
}

/* Dark gradient on the LEFT side for text legibility */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Strong left-side darkening for text */
    linear-gradient(to right, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.55) 35%, rgba(5, 10, 20, 0.15) 60%, transparent 80%),
    /* Bottom fade */
    linear-gradient(to bottom, transparent 50%, rgba(5, 10, 20, 0.65) 90%, var(--bg) 100%);
}

/* Frost atmosphere — extends below the hero so it bleeds into next section.
   Mask only renders the lower half + bleed (top half stays clear over Reza's face). */
.hero-atmosphere {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 118vh;
  pointer-events: none;
  z-index: 2;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 1800px 1800px;
  background-repeat: repeat;
  background-position: center 0;
  mix-blend-mode: screen;
  opacity: 0.45;
  will-change: background-position;
  /* Top half clear, mid section visible, bleed below hero fades out */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%, transparent 38%,
    black 55%, black 75%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%, transparent 38%,
    black 55%, black 75%,
    transparent 100%);
}
@media (max-width: 720px) {
  .hero-atmosphere {
    background-size: 1200px 1200px;
    opacity: 0.55;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  width: 100%;
  text-align: left;
}
.hero-logo {
  width: clamp(260px, 42vw, 560px);
  height: auto;
  filter: invert(1) drop-shadow(0 0 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 80px rgba(75, 163, 232, 0.45));
  margin-bottom: 1.8rem;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-frost);
  font-weight: 400;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 30px rgba(75, 163, 232, 0.4);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217, 238, 255, 0.85);
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 0 24px rgba(75, 163, 232, 0.25);
  max-width: 38em;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
}
.hero-sub .amp {
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
  margin: 0 0.15em;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 1.1rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  /* dark-blue outline stroke for legibility on the gradient (Eric: add this to Get Exclusive Access too) */
  text-shadow:
    -0.6px -0.6px 0 #235a8f,  0.6px -0.6px 0 #235a8f,
    -0.6px  0.6px 0 #235a8f,  0.6px  0.6px 0 #235a8f;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  /* keep the blue fill (Eric likes it) + a frost ring on the inner edge */
  box-shadow: 0 6px 24px rgba(75, 163, 232, 0.4),
    inset 0 0 0 1px rgba(111, 224, 236, 0.55), inset 0 0 12px rgba(111, 224, 236, 0.22);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(75, 163, 232, 0.6),
    inset 0 0 0 1px rgba(111, 224, 236, 0.7), inset 0 0 14px rgba(111, 224, 236, 0.3);
}
.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ====== Generic content sections ====== */
section.content {
  position: relative;
  padding: 5.5rem 2rem; /* R2: tightened from 8rem — deliberate rhythm, not dead voids */
  max-width: var(--max-content);
  margin: 0 auto;
}
section.content > h2,
section.content > .reveal > h2,
.shows-section .section-h2,
.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem); /* R2: section H2 demoted off hero scale → --fs-h2 tier */
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.5rem;
  line-height: 1;
}
/* Section eyebrow — styled as a small banner instead of tiny text */
section.content .eyebrow,
section.content .reveal .eyebrow,
.shows-section .eyebrow,
.contact-section .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1.4rem;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.18) 0%, rgba(75, 163, 232, 0.04) 100%);
  border-left: 2px solid var(--primary-light);
  border-radius: 0 2px 2px 0;
  text-shadow: 0 0 12px rgba(75, 163, 232, 0.2);
}
.lead {
  font-size: var(--fs-sub); /* R2: 19.2px → 22px, creates the missing sub-tier between H2 and body */
  line-height: 1.6;
  color: var(--text);
  max-width: 42rem;
  margin-top: 1.5rem;
}

/* ====== About section — wrapped in a glass-card container ====== */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  /* card styling — overrides section.content's 8rem padding */
  padding: 3.5rem 3rem;
  margin: 4rem auto;
  background:
    linear-gradient(135deg, rgba(10, 21, 48, 0.7) 0%, rgba(30, 58, 107, 0.4) 100%);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 238, 255, 0.04);
}
/* Subtle frost crystal overlay on the about card (no parallax, just static) */
.about::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 800px 800px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.07;
  pointer-events: none;
}
.about > * { position: relative; z-index: 1; }
.about .text { padding-right: 0.5rem; }
.about .photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background-image: var(--cms-bg, url('/img/icicles.jpg'));
  background-size: cover;
  background-position: center;
  /* Tight edge fade — blends photo into surrounding dark texture */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  /* drop-shadow follows the masked alpha — soft glow instead of hard rectangle */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
}
/* Subtle frost crystal overlay — no parallax, just static texture */
.about .photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 700px 700px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.20;
  pointer-events: none;
}
.about .photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(5, 10, 20, 0.45) 100%);
  pointer-events: none;
}
.about ul.accolades {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-line);
}
.about ul.accolades:first-of-type {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}
.about ul.accolades li { margin-bottom: 0.4rem; color: var(--text-muted); font-size: 0.95rem; }
.about ul.accolades li strong { color: var(--text-frost); font-weight: 500; }
/* Mini banner labels (Opened for / Festivals / Latest) */
.about .accolades-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  background: rgba(75, 163, 232, 0.12);
  border-left: 2px solid var(--primary-light);
  border-radius: 0 2px 2px 0;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about .photo { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ====== Mid-page parallax band — restructured ====== */
/* No dark-ice base layer (global bg already covers that).
   Uses crystals + psyche overlay with stronger edge feathering. */
.band {
  position: relative;
  width: 100%;
  height: 420px; /* R2: was 600px — the lone quote was marooned in dead space */
  overflow: hidden;
  contain: paint;
  margin: 4rem 0;
}
.band .layer {
  position: absolute;
  pointer-events: none;
  background-repeat: repeat;
  background-position: center 0;
  will-change: background-position;
}
/* Layer A — fills the band, stronger feathering so it fades into global dark-ice.
   Slight horizontal extension to overflow band edges. */
.band .layer-a {
  inset: 0 -3%;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 1280px 1280px;
  --fx: 16%; --fy: 22%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.65;
  mix-blend-mode: screen;
}
/* Layer B — extended outward (especially mobile) for more presence */
.band .layer-b {
  inset: 50px 6%;
  background-image: url('/img/textures/psyche-overlay.webp');
  background-size: 1100px 1100px;
  --fx: 18%; --fy: 26%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.50;
  mix-blend-mode: screen;
}
@media (max-width: 720px) {
  .band .layer-b { inset: 30px 2%; --fx: 12%; --fy: 20%; }
}

/* Borders — significantly bigger on both mobile + desktop */
.band .border {
  position: absolute;
  top: 8%; bottom: 8%;
  width: clamp(280px, 34vw, 600px); /* mobile 280 → desktop 600 (was 220→460) */
  background-image: url('/img/borders/border-2-r.webp');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  will-change: background-position;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  pointer-events: none;
  opacity: 0.85;
}
.band .border-l { left: -20px; transform: scaleX(-1); }
.band .border-r { right: -20px; }
/* Static frost crystal texture overlay on borders — no parallax */
.band .border::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}

/* Quote inside the band — properly capitalized + visible SEDA wordmark */
.band .quote {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  z-index: 5;
}
.band .quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: -0.005em;
  font-weight: 300;
  font-style: italic;
  color: var(--text-frost);
  max-width: 36rem;
  line-height: 1.35;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.95), 0 0 60px rgba(0, 0, 0, 0.6);
}
.band .quote-attr {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.band .quote-attr .dash {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}
.band .quote-attr img {
  height: clamp(28px, 5vw, 44px);
  width: auto;
  filter: invert(1) drop-shadow(0 2px 20px rgba(0, 0, 0, 0.9));
}

/* ====== Music section ====== */
.music .release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.release {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.release:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 18px 40px rgba(75, 163, 232, 0.25);
}
.release-art {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}
/* Placeholder gradient for releases without real cover art */
.release-art.placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 163, 232, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #0a1530 0%, #1e3a6b 50%, #5b4f8a 100%);
}
.release-art.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/dark-ice-texture.webp');
  background-size: 250px 250px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.55;
}
.release-info {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(5, 10, 20, 0.92) 0%, rgba(5, 10, 20, 0.4) 35%, transparent 60%);
  z-index: 2;
}
.release-info .title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-frost);
  letter-spacing: -0.01em;
}
.release-info .year {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.release-info .play-cue {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(5, 10, 20, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-frost);
  border: 1px solid rgba(217, 238, 255, 0.18);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.release:hover .play-cue {
  opacity: 1;
  transform: scale(1);
  background: rgba(75, 163, 232, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}

.platforms {
  display: flex; flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-line);
}
.platform-link {
  padding: 0.9rem 1.6rem;
  background: var(--bg-2);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.platform-link:hover {
  border-color: var(--primary-light);
  color: var(--text-frost);
  background: var(--bg-3);
}

/* ====== Shows section — empty state ====== */
.shows-section {
  position: relative;
  padding: 5.5rem 2rem; /* R2: tightened from 8rem — deliberate rhythm, not dead voids */
  background: var(--bg);
  overflow: hidden;
}
.shows-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/crowd.jpg');
  background-size: cover;
  /* Anchor image 10% above the section's bottom (Reza is at bottom of frame, but
     pulled up slightly so he's not fading into the bottom-edge mask).
     Horizontal shifted left so the busted right edge falls outside the visible crop. */
  background-position: 20% 90%;
  opacity: 0.42;
  z-index: 0;
  /* Slight blue tint to match the ice palette, NOT warm */
  filter: hue-rotate(-15deg) saturate(0.7) brightness(0.9);
  /* Soft fade on edges — minimal bottom fade so Reza stays visible.
     Stronger right-edge fade to hide busted edge. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.shows-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(5, 10, 20, 0.6) 65%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(5, 10, 20, 0.45) 0%, transparent 25%, transparent 75%, rgba(5, 10, 20, 0.7) 100%);
  z-index: 1;
}
/* Side accent borders running along the shows section */
.shows-section .accent-border {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(150px, 18vw, 320px);
  background-image: url('/img/borders/border-1-r.webp');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.shows-section .accent-border.left  { left: -20px; transform: scaleX(-1); }
.shows-section .accent-border.right { right: -20px; }
/* Static frost crystal texture overlay on shows-section borders — no parallax.
   Strong on the OUTER edge (touching screen edge), drops off quickly inward.
   Single mask works for both sides because scaleX(-1) on left flips it correctly. */
.shows-section .accent-border::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 420px 420px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 40%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 40%, black 100%);
}
.shows-inner {
  position: relative; z-index: 2;
  max-width: var(--max-content);
  margin: 0 auto;
}

/* Empty-state card for "no upcoming shows yet" — styled like a glass panel */
.shows-empty {
  margin-top: 3rem;
  padding: 4rem 2.5rem;
  border: 1px solid rgba(75, 163, 232, 0.25);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(10, 21, 48, 0.75) 0%, rgba(30, 58, 107, 0.45) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 238, 255, 0.04);
}
.shows-empty::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.10;
  pointer-events: none;
}
.shows-empty > * { position: relative; z-index: 1; }
.shows-empty .pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--primary-light);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px var(--primary-light);
}
.shows-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-frost);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.shows-empty p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.shows-empty .cta-mini {
  font-size: 0.7rem;
  padding: 0.95rem 1.8rem;
}

/* Past highlights below empty state */
.shows-highlights {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-line);
}
.shows-highlights h4 {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.highlight {
  padding: 1.2rem 1.4rem;
  background: rgba(10, 21, 48, 0.35);
  border: 1px solid var(--border-line);
  border-radius: 2px;
}
.highlight .role {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}
.highlight .name { font-size: 0.95rem; color: var(--text-frost); font-weight: 500; }
.highlight .meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ====== Contact section — REDESIGNED with clear cards ====== */
.contact-section {
  position: relative;
  padding: 5.5rem 2rem; /* R2: tightened from 8rem — deliberate rhythm, not dead voids */
  max-width: var(--max-content);
  margin: 0 auto;
}
.contact-section .header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact-section .header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem); /* R2: section H2 demoted off hero scale → --fs-h2 tier */
  font-weight: 800;
  color: var(--text-frost);
  letter-spacing: -0.02em;
  line-height: 1;
}
.contact-section .header .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(10, 21, 48, 0.55);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.contact-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-frost);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.contact-card .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.contact-card .email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.contact-card .email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(75, 163, 232, 0.45);
}
.contact-card .email-btn .arrow { transition: transform 0.3s ease; }
.contact-card .email-btn:hover .arrow { transform: translateX(4px); }
.contact-card .email-display {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: 0.02em;
}

.socials {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.social-link {
  padding: 0.7rem 1.1rem;
  background: rgba(5, 10, 20, 0.45);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social-link:hover { border-color: var(--primary-light); color: var(--text-frost); background: var(--bg-3); }

/* Seda Headz FB Group — visually accented since it's the biggest owned audience */
.social-link-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-color: rgba(75, 163, 232, 0.4);
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.13) 0%, rgba(75, 163, 232, 0.04) 100%);
  color: var(--text-frost);
}
.social-link-group .group-meta {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  padding: 0.18rem 0.4rem;
  background: rgba(75, 163, 232, 0.2);
  color: var(--primary-light);
  border-radius: 2px;
}
.social-link-group:hover {
  border-color: var(--primary-light);
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.25) 0%, rgba(75, 163, 232, 0.08) 100%);
}

@media (max-width: 720px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ====== Footer ====== */
footer.bottom {
  border-top: 1px solid var(--border-line);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
footer.bottom strong { color: var(--text); }
footer.bottom .footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.65rem;
}
footer.bottom .footer-operator {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}
footer.bottom .footer-legal {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}
footer.bottom .footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.bottom .footer-legal a:hover { color: var(--primary-light); }
footer.bottom .footer-legal .sep {
  color: rgba(217, 238, 255, 0.2);
  margin: 0 0.6rem;
}

/* ====== Floating CTA ====== */
.float-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 40;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  font-family: inherit;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(75, 163, 232, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(75, 163, 232, 0.7);
}
.float-cta::before {
  content: '';
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@media (max-width: 720px) {
  .float-cta { bottom: 1.2rem; right: 1.2rem; padding: 0.85rem 1.2rem; font-size: 0.65rem; }
}

/* ====== Modals — base styles shared by signup + release ====== */
.modal-backdrop {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(5, 10, 20, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.modal {
  position: relative;
  background: rgba(10, 21, 48, 0.88);
  border: 1px solid rgba(217, 238, 255, 0.18);
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(75, 163, 232, 0.12);
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.modal::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.08;
  pointer-events: none;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  background: rgba(5, 10, 20, 0.5);
  border: 1px solid var(--border-line);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}
.modal-close:hover { color: var(--text-frost); border-color: var(--primary-light); }

/* Signup modal specifics */
.signup-modal { width: 100%; max-width: 480px; padding: 2.5rem; }
.signup-modal h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.signup-modal .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
}
.signup-modal .pitch {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.signup-modal form .field { position: relative; margin-bottom: 0.9rem; }
.signup-modal form input {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(5, 10, 20, 0.5);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text-frost);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.signup-modal form input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(5, 10, 20, 0.8);
}
.signup-modal form input::placeholder { color: var(--text-muted); letter-spacing: 0.05em; }
/* Custom-styled consent checkboxes — TCPA-compliant capture */
.signup-modal form .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  cursor: pointer;
  user-select: none;
}
.signup-modal form .consent + .consent {
  border-top: 1px solid rgba(217, 238, 255, 0.06);
}
.signup-modal form .consent input[type="checkbox"] {
  position: absolute;
  width: 0; height: 0;
  opacity: 0;
}
.signup-modal form .consent .check-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(217, 238, 255, 0.35);
  border-radius: 3px;
  background: rgba(5, 10, 20, 0.5);
  transition: background 0.18s ease, border-color 0.18s ease;
  display: flex; align-items: center; justify-content: center;
}
.signup-modal form .consent .check-box svg {
  width: 12px; height: 12px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.signup-modal form .consent input:checked + .check-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
}
.signup-modal form .consent input:checked + .check-box svg {
  opacity: 1;
  transform: scale(1);
}
.signup-modal form .consent input:focus-visible + .check-box {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}
.signup-modal form .consent .consent-text {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.02em;
}
.signup-modal form .consent .ch-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-right: 0.5rem;
  background: rgba(75, 163, 232, 0.18);
  color: var(--primary-light);
  vertical-align: 1px;
}

.signup-modal form .submit {
  width: 100%;
  margin-top: 0.6rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.signup-modal form .submit:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(75, 163, 232, 0.5); }
.signup-modal .legal {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.55;
}
.signup-modal .legal a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.signup-modal .legal a:hover { color: var(--text-frost); }
.signup-modal .success { display: none; text-align: center; padding: 1rem 0; }
.signup-modal .success.show { display: block; }
.signup-modal .success .check {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--primary-light);
  animation: checkPop 0.5s cubic-bezier(0.2, 1.6, 0.5, 1);
}
@keyframes checkPop { from { transform: scale(0); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.signup-modal .success p { color: var(--text); font-size: 1rem; }

/* Release modal — smart link / per-track listen */
.release-modal { width: 100%; max-width: 560px; }
.release-modal-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.release-modal-content .cover {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  position: relative;
}
.release-modal-content .cover.placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 163, 232, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #0a1530 0%, #1e3a6b 50%, #5b4f8a 100%);
}
.release-modal-content .info { padding: 2rem 1.8rem; }
.release-modal-content .info .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
}
.release-modal-content .info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.release-modal-content .info .meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.release-modal-content .links {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}
.release-modal-content .play-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.release-modal-content .play-link:hover {
  border-color: var(--primary-light);
  color: var(--text-frost);
  background: var(--bg-3);
  transform: translateX(2px);
}
.release-modal-content .play-link .icon {
  font-size: 0.7rem;
  color: var(--primary-light);
  width: 12px; text-align: center;
}

@media (max-width: 600px) {
  .release-modal-content { grid-template-columns: 1fr; }
  .release-modal-content .cover { aspect-ratio: 16 / 10; }
}

/* ====== Click ice spike ====== */
.click-spike {
  position: fixed;
  pointer-events: none;
  z-index: 30;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(120, 200, 255, 0.45));
  animation: spike-form 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0.7; /* less prominent (was 1) */
}
@keyframes spike-form {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(var(--rot)) scale(0); }
  18%  { opacity: 0.75; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.18); }
  35%  { opacity: 0.7; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.0); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.0); }
}

/* ====== DEMO MODE controls (perf comparison) ====== */
.demo-controls {
  position: fixed;
  top: 84px; left: 1rem;
  z-index: 90;
  background: rgba(10, 21, 48, 0.92);
  border: 1px solid rgba(255, 51, 68, 0.4);
  border-radius: 4px;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  user-select: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.demo-controls .demo-header {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #ff3344;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 51, 68, 0.25);
}
.demo-controls label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--text);
}
.demo-controls input[type="checkbox"] {
  accent-color: #ff3344;
  width: 14px; height: 14px;
}
@media (max-width: 720px) {
  .demo-controls { top: 68px; font-size: 0.62rem; padding: 0.5rem 0.7rem; }
  .demo-controls label { font-size: 0.62rem; }
}

/* When parallax is disabled, ensure layers are static (transform/bg-pos already
   reset by JS; this just locks any will-change ghosts) */
body.no-parallax .layer,
body.no-parallax .hero-atmosphere {
  background-position-y: 0 !important;
}

/* When blend modes are disabled, force normal compositing everywhere.
   The textures have alpha so they should still stack visually. */
body.no-blends .hero-atmosphere,
body.no-blends .band .layer-a,
body.no-blends .band .layer-b,
body.no-blends .band .border::after,
body.no-blends .shows-section .accent-border::after,
body.no-blends .shows-empty::before,
body.no-blends .about .photo::before,
body.no-blends .modal::before,
body.no-blends .shimmer::after {
  mix-blend-mode: normal !important;
}

/* ====== Cursor-follow shimmer ====== */
/* Soft radial highlight that tracks the cursor over surfaces.
   --shx and --shy CSS variables are set by JS on mousemove. */
.shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 280px at var(--shx, 50%) var(--shy, 50%),
    rgba(120, 200, 255, 0.22) 0%,
    rgba(75, 163, 232, 0.10) 25%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 5;
  mix-blend-mode: screen;
}
.shimmer:hover::after { opacity: 1; }
@media (hover: none) and (pointer: coarse) {
  /* Touch devices — disable shimmer (no hover) */
  .shimmer::after { display: none; }
}

/* ====== Reveal-on-scroll ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

/* ===================================================================
   v3 — Round 2 feedback (2026-05-07)
   - Hero labels strip (Saturate / Aspire Higher / etc)
   - Watch pill + inline hero video player
   - Continuation paragraphs in About bio
   - 67-RELEASES big-number stat
   - Discography playlist tile
   - "Frozen in awe" pull quote in shows section
   - Upcoming events grid + featured cards
   - Sign-up nudge under upcoming dates
   =================================================================== */

/* ====== Hero labels strip ====== */
.hero-labels {
  margin-bottom: 2.2rem;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  border-left: 2px solid rgba(75, 163, 232, 0.6);
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.13) 0%, rgba(75, 163, 232, 0.02) 70%, transparent 100%);
  border-radius: 0 2px 2px 0;
  max-width: 44em;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-labels-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 0.45rem;
  text-shadow: 0 0 12px rgba(75, 163, 232, 0.4);
}
.hero-labels-list {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  font-weight: 500;
  color: var(--text-frost);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.hero-labels-list strong {
  font-weight: 600;
  color: var(--text-frost);
}
.hero-labels-list .dot {
  color: var(--primary-light);
  margin: 0 0.5em;
  opacity: 0.7;
}
.hero-labels-list em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}
@media (max-width: 720px) {
  .hero-labels {
    padding: 0.6rem 0.85rem;
    margin-bottom: 1.6rem;
  }
  .hero-labels-list {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

/* ====== Hero actions (CTA + watch pill side-by-side) ====== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* "Watch SEDA in motion" pill — secondary trigger that opens hero video */
.watch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid rgba(217, 238, 255, 0.22);
  color: var(--text-frost);
  padding: 0.95rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  font-family: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.watch-pill:hover {
  border-color: var(--primary-light);
  background: rgba(75, 163, 232, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(75, 163, 232, 0.3);
}
.watch-pill .watch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(217, 238, 255, 0.4);
  font-size: 0.7rem;
  padding-left: 2px; /* optical center for the play triangle */
  color: var(--primary-light);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.2s ease;
}
.watch-pill:hover .watch-icon {
  border-color: var(--primary-light);
  background: var(--primary-light);
  color: white;
}
@media (max-width: 720px) {
  .hero-actions { gap: 0.7rem; }
  .watch-pill {
    padding: 0.85rem 1.1rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
}

/* ====== Hero inline video — appears when watch pill clicked ====== */
/* Lives inside .hero, fades in on top of hero-content while hero-bg dims.
   No black backdrop / modal — keeps it integrated. */
.hero-video {
  position: absolute;
  inset: 5% 5%;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-video.open { pointer-events: auto; opacity: 1; }
.hero-video video {
  width: 100%;
  max-width: 1100px;
  max-height: 100%;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(217, 238, 255, 0.15), 0 0 80px rgba(75, 163, 232, 0.25);
  outline: none;
}
.hero-video-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(5, 10, 20, 0.75);
  border: 1px solid rgba(217, 238, 255, 0.25);
  color: var(--text-frost);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-video-close:hover {
  background: rgba(75, 163, 232, 0.7);
  border-color: var(--primary-light);
  transform: scale(1.05);
}

/* When video is playing — dim and desaturate the rest of the hero */
.hero.video-playing .hero-bg { opacity: 0.25; transition: opacity 0.5s ease; filter: saturate(0.6); }
.hero.video-playing .hero-atmosphere { opacity: 0.15; transition: opacity 0.5s ease; }
.hero.video-playing .hero-content { opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.hero.video-playing .scroll-cue { opacity: 0; transition: opacity 0.3s ease; }

/* Default states (so the transition reverses cleanly) */
.hero .hero-bg,
.hero .hero-atmosphere,
.hero .hero-content,
.hero .scroll-cue {
  transition: opacity 0.5s ease, filter 0.5s ease;
}

@media (max-width: 720px) {
  .hero-video { inset: 3% 3%; }
  .hero-video video { border-radius: 6px; }
  .hero-video-close { width: 32px; height: 32px; font-size: 1.2rem; top: 8px; right: 8px; }
}

/* ====== About — continuation paragraphs ====== */
.about .lead-cont {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 42rem;
  margin-top: 1rem;
  opacity: 0.92;
}
.about .lead em {
  font-style: italic;
  color: var(--text-frost);
}
.about .lead-cont em {
  font-style: italic;
  color: var(--text-frost);
}

/* ====== Music — 67-releases big-number stat ====== */
.release-stat {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 2.5rem 0 2rem;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(75, 163, 232, 0.25);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(10, 21, 48, 0.7) 0%, rgba(30, 58, 107, 0.4) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(217, 238, 255, 0.04);
  width: fit-content;
  max-width: 100%;
}
.release-stat::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.10;
  pointer-events: none;
}
.release-stat > * { position: relative; z-index: 1; }
.release-stat .stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem); /* R2: stat number capped so it stops out-shouting real headings */
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #f0faff 0%, #4fa3e8 60%, #1e3a6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 40px rgba(75, 163, 232, 0.3);
  filter: drop-shadow(0 6px 20px rgba(75, 163, 232, 0.3));
}
.release-stat .stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(75, 163, 232, 0.5), transparent);
}
.release-stat .stat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.release-stat .stat-label {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-frost);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(75, 163, 232, 0.3);
}
.release-stat .stat-sub {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 720px) {
  .release-stat {
    gap: 1.1rem;
    padding: 1.2rem 1.4rem;
    margin: 2rem 0 1.6rem;
  }
}

/* ====== Music — Featured tracks section label ====== */
.release-section-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  padding: 0.4rem 1rem;
  background: rgba(75, 163, 232, 0.13);
  border-left: 2px solid var(--primary-light);
  border-radius: 0 2px 2px 0;
}

/* ====== Music — Catalog divider ("Want it all?") ====== */
.catalog-divider {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 4.5rem 0 1.6rem;
}
.catalog-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(75, 163, 232, 0.4), rgba(75, 163, 232, 0.4), transparent);
}
.catalog-divider-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ====== Music — Full catalog banner tile ====== */
/* Visually distinct from the 5 featured-track tiles: wide aspect ratio,
   larger type, gradient + watermark logo background, prominent CTA arrow. */
.catalog-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 2.4rem 2.4rem 2.6rem;
  text-decoration: none;
  border: 1px solid rgba(75, 163, 232, 0.35);
  border-left-width: 3px;
  border-left-color: var(--primary-light);
  border-radius: 4px;
  background:
    linear-gradient(120deg, rgba(10, 21, 48, 0.85) 0%, rgba(30, 58, 107, 0.55) 60%, rgba(91, 79, 138, 0.25) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 238, 255, 0.04), 0 0 60px rgba(75, 163, 232, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}
.catalog-banner:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(75, 163, 232, 0.3), 0 0 100px rgba(75, 163, 232, 0.18);
}

/* Watermark SEDA logo bg — large and faded behind the content */
.catalog-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.catalog-banner-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.10;
}
.catalog-banner .catalog-logo {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  height: 220%;
  max-height: 480px;
  width: auto;
  /* Make logo white + add icy glow, drop opacity to feel like a watermark */
  filter: invert(1) drop-shadow(0 0 30px rgba(75, 163, 232, 0.5));
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
}
.catalog-banner:hover .catalog-logo {
  opacity: 0.16;
  transition: opacity 0.4s ease;
}

.catalog-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.catalog-banner-content .catalog-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  background: rgba(75, 163, 232, 0.18);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(75, 163, 232, 0.25);
  margin-bottom: 0.3rem;
}
.catalog-banner-content .catalog-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-frost);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 30px rgba(75, 163, 232, 0.2);
}
.catalog-banner-content .catalog-meta {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.catalog-banner-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.6rem;
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid rgba(75, 163, 232, 0.5);
  border-radius: 50px;
  color: var(--text-frost);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}
.catalog-banner:hover .catalog-banner-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(75, 163, 232, 0.45);
}
.catalog-banner-cta .catalog-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(75, 163, 232, 0.6);
  font-size: 0.95rem;
  color: var(--primary-light);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.catalog-banner:hover .catalog-banner-cta .catalog-cta-arrow {
  transform: translateX(6px);
  background: white;
  border-color: white;
  color: var(--primary);
}

@media (max-width: 720px) {
  .catalog-banner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.8rem 1.5rem;
  }
  .catalog-banner .catalog-logo { right: -10%; height: 180%; opacity: 0.08; }
  .catalog-banner-cta {
    align-self: flex-start;
    padding: 0.85rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }
  .catalog-banner-cta .catalog-cta-arrow { width: 24px; height: 24px; font-size: 0.85rem; }
  .catalog-divider { margin: 3rem 0 1.2rem; gap: 1rem; }
}

/* ===================================================================
   v4 — Round 4 (Reza's review notes, 2026-05-07)
   - Labels strip moved from hero into about section
   - "Book Now" link in nav between logo and section links
   =================================================================== */

/* ====== Nav — Book Now anchor ====== */
.nav-book {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-left: 1.4rem;
  margin-right: auto;  /* Absorb space-between's extra gap — pushes links + CTA to the right so Book Now sits next to the logo */
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  background: rgba(75, 163, 232, 0.08);
  border: 1px solid rgba(75, 163, 232, 0.4);
  border-radius: 50px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.nav-book::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  margin-right: 0.55rem;
  box-shadow: 0 0 8px var(--primary-light);
  animation: navBookPulse 2s ease-in-out infinite;
}
@keyframes navBookPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-book:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(75, 163, 232, 0.4);
}
.nav-book:hover::before {
  background: white;
  box-shadow: 0 0 8px white;
}

/* Mobile: keep Book Now visible — Reza wants it as a persistent CTA in the
   header regardless of scroll state. Make it compact so it doesn't crowd the
   logo + section links (top-of-page) or logo + CTA-mini (past-hero). */
@media (max-width: 720px) {
  .nav-book {
    margin-left: 0.7rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }
  .nav-book::before {
    width: 4px;
    height: 4px;
    margin-right: 0.4rem;
  }
}
/* Very narrow screens — tighten further so the 4 section links stay readable */
@media (max-width: 420px) {
  .nav-book {
    margin-left: 0.5rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.48rem;
    letter-spacing: 0.14em;
  }
}

/* Mobile sizing — keep full "Book Now" + "Join the inner circle" text but
   shrink fonts/padding so both buttons hug their text tightly and there's
   room for margin-right: auto to distribute visible gaps. */
@media (max-width: 720px) {
  /* "Join the inner circle" — biggest offender, needs the most compression */
  nav.top .cta-mini {
    padding: 0.4rem 0.75rem;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    margin-left: 0.6rem; /* override the 2.2rem desktop gap on small screens */
  }
  /* Tighten section links gap + force a min-gap from Book Now on the LEFT
     (margin-left), and let margin-right: auto on .nav-book push the group
     toward the right edge of the nav. */
  nav.top:not(.past-hero) .links {
    gap: 0.4rem;
    margin-left: 5%;
  }
}
@media (max-width: 420px) {
  nav.top .cta-mini {
    padding: 0.35rem 0.6rem;
    font-size: 0.46rem;
    letter-spacing: 0.1em;
  }
}

/* ====== About — Labels strip (moved out of hero) ====== */
.about-labels {
  margin-top: 2.2rem;
  padding: 0.8rem 1rem 0.8rem 1.1rem;
  border-left: 2px solid rgba(75, 163, 232, 0.6);
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.13) 0%, rgba(75, 163, 232, 0.02) 70%, transparent 100%);
  border-radius: 0 2px 2px 0;
}
.about-labels-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 0.45rem;
  text-shadow: 0 0 12px rgba(75, 163, 232, 0.3);
}
.about-labels-list {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  font-weight: 500;
  color: var(--text-frost);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.about-labels-list strong {
  font-weight: 600;
  color: var(--text-frost);
}
.about-labels-list .dot {
  color: var(--primary-light);
  margin: 0 0.5em;
  opacity: 0.7;
}
.about-labels-list em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}
@media (max-width: 720px) {
  .about-labels {
    padding: 0.7rem 0.85rem;
    margin-top: 1.6rem;
  }
  .about-labels-list {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

/* ====== Shows — Frozen in awe pull quote ====== */
.frozen-quote {
  margin: 3rem 0 2rem;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.frozen-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem); /* R2: feature quote → --fs-h1 tier, under the hero wordmark */
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #f0faff 0%, #c7e5f5 60%, #6b8aa8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 60px rgba(75, 163, 232, 0.25);
  filter: drop-shadow(0 8px 30px rgba(75, 163, 232, 0.2));
  /* Subtle entrance */
  position: relative;
  display: inline-block;
}
.frozen-quote-text::before,
.frozen-quote-text::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: clamp(40px, 8vw, 80px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(75, 163, 232, 0.5), transparent);
}
.frozen-quote-text::before { right: calc(100% + 1.5rem); }
.frozen-quote-text::after { left: calc(100% + 1.5rem); transform: scaleX(-1); }
.frozen-quote-attr {
  margin-top: 1.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ====== Shows — Upcoming events grid ====== */
.shows-upcoming { margin-top: 1rem; }
.shows-upcoming h4,
.shows-highlights h4 {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  border: 1px solid var(--border-line);
  border-radius: 4px;
  background: rgba(10, 21, 48, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(75, 163, 232, 0.18);
}
.event-card-featured {
  border-color: rgba(75, 163, 232, 0.45);
  background:
    linear-gradient(135deg, rgba(10, 21, 48, 0.85) 0%, rgba(30, 58, 107, 0.55) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(75, 163, 232, 0.2);
}
.event-card-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.event-date {
  background: linear-gradient(135deg, rgba(75, 163, 232, 0.18) 0%, rgba(91, 79, 138, 0.12) 100%);
  border-right: 1px solid var(--border-line);
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.event-date::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/img/textures/blue-ice-crystals.webp');
  background-size: 300px 300px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.15;
  pointer-events: none;
}
.event-date .date-month {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.event-date .date-day {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-frost);
  margin: 0.25rem 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.event-date .date-day-sep {
  font-weight: 300;
  margin: 0 0.05em;
  color: var(--primary-light);
}
.event-date .date-year {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.event-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-body .event-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-frost);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  line-height: 1.25;
}
.event-body .event-venue {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  line-height: 1.45;
}
.event-body .event-perk {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  background: rgba(75, 163, 232, 0.13);
  border-left: 2px solid var(--primary-light);
  border-radius: 0 2px 2px 0;
  align-self: flex-start;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.event-body .event-perk strong {
  color: var(--text-frost);
  font-weight: 800;
}
.event-body .event-perk-win {
  background: linear-gradient(90deg, rgba(75, 163, 232, 0.25) 0%, rgba(75, 163, 232, 0.05) 100%);
  border-color: var(--primary-light);
  color: var(--text-frost);
  box-shadow: 0 0 14px rgba(75, 163, 232, 0.25);
}
.event-body .event-perk-win::before {
  content: '★ ';
  color: var(--primary-light);
}

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  color: var(--primary-light);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.event-cta .arrow { transition: transform 0.3s ease; }
.event-cta:hover {
  color: var(--text-frost);
  border-bottom-color: var(--primary-light);
}
.event-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 480px) {
  .event-card { grid-template-columns: 90px 1fr; }
  .event-date { padding: 1rem 0.5rem; }
  .event-date .date-day { font-size: 1.6rem; }
  .event-body { padding: 1rem 1.1rem; }
  .event-body .event-name { font-size: 0.95rem; }
}

/* ====== Shows — sign-up nudge under upcoming dates ====== */
.shows-nudge {
  margin-top: 2rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--border-line);
  border-left-width: 3px;
  border-left-color: var(--primary-light);
  border-radius: 0 4px 4px 0;
  background: rgba(10, 21, 48, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.shows-nudge p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.shows-nudge p strong { color: var(--text-frost); }
@media (max-width: 600px) {
  .shows-nudge { padding: 1.1rem 1.3rem; gap: 0.9rem; }
  .shows-nudge p { font-size: 0.85rem; }
}
