/* ============================================================
   TAMMY WILDE — Acoustic Singer & Songwriter
   Dark charcoal + electric pink/yellow
   ============================================================ */

/* ------- Design tokens ------- */
:root {
  --ink:        #0A0A0F;
  --ink-2:      #12121B;
  --ink-3:      #1B1B28;
  --paper:      #FAFAFC;
  --paper-soft: #E4E4EC;
  --muted:      #8A8A98;

  --pink:        #FF2D87;
  --pink-bright: #FF5FA3;
  --pink-deep:   #D41E6E;
  --yellow:      #F8FF2D;
  --yellow-warm: #FFDD00;

  --line:   rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);

  --f-display: 'Fraunces', Georgia, serif;
  --f-sans:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius: 20px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------- Reset & base ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--paper-soft);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Inline h2 helper (used in about + book sections) */
.h2-inline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 32px;
}
.h2-inline em {
  font-style: italic;
  color: var(--yellow);
}

/* ============================================================
   ANNOUNCEMENT MARQUEE
   ============================================================ */
.announce {
  background: var(--pink);
  color: var(--ink);
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 50;
}
.announce-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announce-track > span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}
.announce-track .star { color: var(--ink); font-size: 0.75rem; }
.announce-track strong { color: var(--yellow); text-shadow: 0 0 1px var(--ink); font-weight: 700; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10, 10, 15, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.nav-brand-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 45, 135, 0.35));
}
.nav-brand em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Inline scroll-reactive music note in the brand */
.brand-muse {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--paper);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
  transition: color 0.45s var(--ease), text-shadow 0.45s var(--ease);
  animation: muse-bob 3.4s ease-in-out infinite;
  transform-origin: center;
  pointer-events: none;
}
.brand-muse.c-white  { color: var(--paper);  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3), 0 0 8px rgba(0,0,0,0.5); }
.brand-muse.c-pink   { color: var(--pink);   text-shadow: 0 0 14px rgba(255, 45, 135, 0.55), 0 0 8px rgba(0,0,0,0.4); }
.brand-muse.c-yellow { color: var(--yellow); text-shadow: 0 0 14px rgba(248, 255, 45, 0.5), 0 0 8px rgba(0,0,0,0.4); }
.brand-muse.pop { animation: muse-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 100px;
  color: var(--paper-soft);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--pink-bright);
  background: rgba(255, 45, 135, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(248, 255, 45, 0.2), 0 0 30px rgba(248, 255, 45, 0.5);
  transform: translateY(-1px);
}
.nav-cta::after { content: '→'; transition: transform 0.3s var(--ease); }
.nav-cta:hover::after { transform: translateX(3px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--paper);
  padding: 9px 16px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(64px, 11vw, 150px) 0 clamp(48px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero-orb {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}
.hero-orb.pink {
  background: radial-gradient(circle, var(--pink) 0%, transparent 65%);
  opacity: 0.38;
  top: -180px; right: -140px;
  animation: orb-float 14s ease-in-out infinite alternate;
}
.hero-orb.yellow {
  background: radial-gradient(circle, var(--yellow) 0%, transparent 65%);
  opacity: 0.14;
  bottom: -260px; left: -180px;
  animation: orb-float 18s ease-in-out infinite alternate-reverse;
}
@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.2); }
}

/* Cursor spotlight (desktop only - disabled on touch via JS) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 40%), rgba(255, 45, 135, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
  transition: background 0.2s var(--ease);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--pink);
  background: rgba(255, 45, 135, 0.08);
  color: var(--pink-bright);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pill .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  position: relative;
}
.pill .live-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 14ch;
  margin: 0 0 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--pink) 0%, var(--yellow) 45%, var(--pink) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-sweep 9s ease-in-out infinite;
}
@keyframes gradient-sweep {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero p.lede {
  max-width: 52ch;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--paper-soft);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--pink-bright);
  box-shadow: 0 10px 40px rgba(255, 45, 135, 0.45), 0 0 0 1px var(--pink-bright);
  transform: translateY(-2px);
}
.btn-primary::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 24px rgba(248, 255, 45, 0.22);
  transform: translateY(-2px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.hero-meta .value {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper);
  line-height: 1.3;
}

/* Hero image (right column) */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.22) 0%, transparent 45%, rgba(248, 255, 45, 0.08) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}
.hero-photo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 45, 135, 0.35) 0%, transparent 55%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.hero-photo:hover img { transform: scale(1.05); }

/* Equaliser bars */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  margin-right: 4px;
}
.eq i {
  display: block;
  width: 3px;
  background: var(--pink);
  border-radius: 2px;
  animation: eq-bar 0.9s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 40%; animation-delay: -0.4s; }
.eq i:nth-child(2) { height: 90%; animation-delay: -0.2s; }
.eq i:nth-child(3) { height: 60%; animation-delay: -0.6s; }
.eq i:nth-child(4) { height: 75%; animation-delay: 0s;    }
@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

/* ============================================================
   STRIP marquees between sections
   ============================================================ */
.strip {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.strip-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}
.strip-track > span {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
  color: var(--paper);
}
.strip-track .bullet {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.strip-track .bullet.yellow { background: var(--yellow); }
.strip-track em.pink   { color: var(--pink);   font-style: italic; }
.strip-track em.yellow { color: var(--yellow); font-style: italic; }

/* ============================================================
   Sections & headings
   ============================================================ */
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }

.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow .num { color: var(--yellow); }
.eyebrow .rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--pink);
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 18ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--yellow);
}
.section-head .kicker {
  max-width: 56ch;
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.03rem;
  line-height: 1.65;
}

/* ============================================================
   ABOUT (01)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) contrast(1.05) brightness(0.95);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.2), rgba(248, 255, 45, 0.05) 60%, transparent);
  mix-blend-mode: color;
  pointer-events: none;
}
.about-photo:hover img { filter: grayscale(0) contrast(1.1); transform: scale(1.03); }

.about-body p {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  color: var(--paper-soft);
  margin-bottom: 1.2em;
}
.about-body p strong { color: var(--paper); font-weight: 600; }
.about-body p em { font-family: var(--f-display); font-style: italic; color: var(--yellow); font-weight: 500; }

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.credential .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.credential .value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--paper);
  line-height: 1.3;
}
.credential .value em { font-style: italic; color: var(--yellow); }

/* ============================================================
   SERVICES (02)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 20px 60px rgba(255, 45, 135, 0.15), 0 0 0 1px var(--pink);
}
.service:hover::before { opacity: 1; }

.service .num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--pink);
  margin-bottom: 22px;
  display: block;
}
.service h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
}
.service h3 em { font-style: italic; color: var(--yellow); }
.service p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ============================================================
   LISTEN / SOUND (03)
   ============================================================ */
.listen { background: var(--ink); position: relative; }
.listen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 45, 135, 0.1), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(248, 255, 45, 0.05), transparent 50%);
  pointer-events: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.video-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: block;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.5), rgba(20, 20, 30, 0.15) 60%, rgba(0,0,0,0.6) 100%);
  mix-blend-mode: normal;
  z-index: 1;
  transition: opacity 0.4s var(--ease);
}
.video-card::after {
  content: '▶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(248, 255, 45, 0);
  transition: all 0.4s var(--ease);
  z-index: 3;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 45, 135, 0.35);
}
.video-card:hover img { transform: scale(1.08); filter: grayscale(0) contrast(1.1) brightness(1); }
.video-card:hover::before { opacity: 0.55; }
.video-card:hover::after {
  box-shadow: 0 0 0 8px rgba(248, 255, 45, 0.2), 0 0 40px var(--yellow);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card .caption {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.2;
}
.video-card .caption small {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
  font-weight: 500;
}

.listen-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.listen-socials .lbl {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 4px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.social-btn:hover {
  border-color: var(--pink);
  color: var(--pink-bright);
  background: rgba(255, 45, 135, 0.08);
  transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }

/* ============================================================
   BAND FEATURE — The Unspeakable
   ============================================================ */
.band {
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.band-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.band-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.band-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.55), rgba(248, 255, 45, 0.2) 60%);
  mix-blend-mode: color;
}
.band-photo:hover img { filter: grayscale(0.2) contrast(1.1); transform: scale(1.03); }

.band-content .tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 20px;
}
.band-content h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 20px;
}
.band-content h2 em { font-style: italic; color: var(--pink); }
.band-content p {
  color: var(--paper-soft);
  font-size: 1.03rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* ============================================================
   BOOK (04)
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.book-intro p {
  color: var(--paper-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.book-intro .contact-details {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
}
.book-intro .contact-item .lbl {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.book-intro .contact-item .val {
  font-family: var(--f-display);
  font-size: 1.08rem;
  color: var(--paper);
  line-height: 1.3;
}
.book-intro .contact-item .val em { font-style: italic; color: var(--yellow); }

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--pink));
  background-size: 200% 100%;
  animation: gradient-sweep 6s linear infinite;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--ink);
  border: 1px solid var(--line-2);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 0.96rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--pink);
  color: var(--paper);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--pink-bright);
  box-shadow: 0 10px 40px rgba(255, 45, 135, 0.45);
  transform: translateY(-2px);
}
.form-submit::after { content: '→'; transition: transform 0.3s var(--ease); }
.form-submit:hover::after { transform: translateX(4px); }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(248, 255, 45, 0.1);
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
.form-status.error {
  background: rgba(255, 45, 135, 0.1);
  border: 1px solid var(--pink);
  color: var(--pink-bright);
}

/* ============================================================
   FAQ (05)
   ============================================================ */
.faq-list { max-width: 840px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink-bright); }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--yellow); }
.faq-item[open] summary { color: var(--yellow); }
.faq-item .answer {
  padding: 0 0 24px;
  color: var(--paper-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 68ch;
}

/* ============================================================
   TINTED SECTIONS (pink / yellow backgrounds)
   Contrast notes:
     ink (#0A0A0F) on pink (#FF2D87)     ≈ 5.7:1  — AA normal
     ink (#0A0A0F) on yellow (#F8FF2D)   ≈ 18:1   — AAA
     pink-deep (#D41E6E) on yellow       ≈ 6.0:1  — AA normal
     white on pink                        ≈ 3:1    — FAIL normal, do not use for body
     yellow on pink                       ≈ 2.6:1  — FAIL, do not use for text
   ============================================================ */
section.on-pink {
  background: var(--pink);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
section.on-pink::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right,   rgba(248, 255, 45, 0.22), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 30, 110, 0.35),  transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.on-pink .container { position: relative; z-index: 1; }

.on-pink .eyebrow { color: var(--ink); }
.on-pink .eyebrow .rule { background: var(--ink); }
.on-pink .eyebrow .num {
  color: var(--ink);
  background: var(--yellow);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.on-pink .section-head h2 { color: var(--ink); }
.on-pink .section-head h2 em {
  color: var(--ink);
  font-style: italic;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.on-pink .section-head h2 em::before {
  content: '';
  position: absolute;
  inset: 0.12em -0.1em;
  background: var(--yellow);
  border-radius: 8px;
  transform: skew(-5deg);
  z-index: -1;
}
.on-pink .section-head .kicker { color: rgba(10, 10, 15, 0.78); }

/* Service cards on pink: cards go dark so the pink lights them up */
.on-pink .service {
  background: var(--ink);
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--paper-soft);
}
.on-pink .service::before {
  background: linear-gradient(135deg, rgba(248, 255, 45, 0.12) 0%, transparent 70%);
}
.on-pink .service:hover {
  border-color: var(--yellow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--yellow);
}
.on-pink .service .num { color: var(--yellow); }
.on-pink .service h3 { color: var(--paper); }
.on-pink .service h3 em { color: var(--yellow); }
.on-pink .service p { color: var(--paper-soft); }

/* ---- ON YELLOW ---- */
section.on-yellow {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
section.on-yellow::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left,     rgba(255, 45, 135, 0.18),  transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(255, 221, 0, 0.4),    transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.on-yellow .container { position: relative; z-index: 1; }

.on-yellow .eyebrow { color: var(--pink-deep); }
.on-yellow .eyebrow .rule { background: var(--pink-deep); }
.on-yellow .eyebrow .num { color: var(--ink); font-weight: 700; }
.on-yellow .section-head h2 { color: var(--ink); }
.on-yellow .section-head h2 em { color: var(--pink-deep); font-style: italic; }
.on-yellow .section-head .kicker { color: rgba(10, 10, 15, 0.78); }

/* FAQ items on yellow */
.on-yellow .faq-item { border-bottom: 1px solid rgba(10, 10, 15, 0.18); }
.on-yellow .faq-item:first-of-type { border-top: 1px solid rgba(10, 10, 15, 0.18); }
.on-yellow .faq-item summary { color: var(--ink); }
.on-yellow .faq-item summary:hover { color: var(--pink-deep); }
.on-yellow .faq-item summary::after { color: var(--pink-deep); }
.on-yellow .faq-item[open] summary { color: var(--pink-deep); }
.on-yellow .faq-item[open] summary::after { color: var(--ink); }
.on-yellow .faq-item .answer { color: rgba(10, 10, 15, 0.82); }

/* Visible focus rings on tinted sections for keyboard nav */
.on-pink a:focus-visible,
.on-pink button:focus-visible,
.on-pink summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-yellow a:focus-visible,
.on-yellow button:focus-visible,
.on-yellow summary:focus-visible {
  outline: 2px solid var(--pink-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LINKS (04)
   ============================================================ */
.links-section {
  background: var(--ink);
  position: relative;
}
.links-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 20%, rgba(255, 45, 135, 0.08), transparent 55%),
    radial-gradient(ellipse 500px 300px at 100% 80%, rgba(248, 255, 45, 0.05), transparent 60%);
  pointer-events: none;
}
.links-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  position: relative;
}
.links-col-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.links-col-tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--pink);
  border-radius: 100px;
  flex-shrink: 0;
}
.links-col-head h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.15;
}
.links-col-head h3 em {
  font-style: italic;
  color: var(--yellow);
}

.link-stack { display: flex; flex-direction: column; }
.link-stack li {
  border-bottom: 1px solid var(--line);
}
.link-stack a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 2px;
  position: relative;
  color: var(--paper-soft);
  transition: padding-left 0.35s var(--ease), color 0.25s var(--ease);
}
.link-stack a::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--pink), var(--yellow));
  transition: width 0.3s var(--ease);
}
.link-stack a:hover {
  color: var(--paper);
  padding-left: 16px;
}
.link-stack a:hover::before { width: 3px; }

.link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-soft);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.link-icon svg { width: 18px; height: 18px; }
.link-stack a:hover .link-icon {
  border-color: var(--pink);
  background: rgba(255, 45, 135, 0.1);
  color: var(--pink-bright);
  transform: rotate(-4deg);
}

.link-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.link-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.link-handle {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}
.link-stack a:hover .link-arrow {
  color: var(--yellow);
  transform: translateX(6px);
}

/* Featured link (new single) */
.link-stack a.is-featured {
  background: linear-gradient(90deg, rgba(255, 45, 135, 0.08), transparent);
  padding-left: 18px;
  padding-right: 18px;
  margin: 8px -18px 0;
  border-radius: 14px;
}
.link-stack a.is-featured::before { display: none; }
.link-stack a.is-featured .link-icon {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--ink);
}
.link-stack a.is-featured .link-name { color: var(--paper); }
.link-stack a.is-featured .link-handle { color: var(--yellow); }
.link-stack a.is-featured:hover {
  background: linear-gradient(90deg, rgba(255, 45, 135, 0.16), rgba(248, 255, 45, 0.04));
}
.link-stack a.is-featured:hover .link-icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(-4deg) scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 14px rgba(255, 45, 135, 0.45));
}
.footer-brand h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer-brand h3 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p {
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.65;
  font-size: 0.95rem;
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--paper-soft);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col ul a:hover { color: var(--yellow); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 45, 135, 0.35);
}
.socials a svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: var(--paper-soft); transition: color 0.2s var(--ease); }
.footer-bottom a:hover { color: var(--pink-bright); }
.footer-bottom .credit { font-family: var(--f-mono); letter-spacing: 0.04em; }

/* ============================================================
   PUNK BACKGROUND SHAPES
   Decorative — sit behind content, above section background.
   Each shape is a masked <span> filled with currentColor.
   ============================================================ */
.bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
section > .container { position: relative; z-index: 1; }

[class*='shape-'] {
  position: absolute;
  display: block;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  will-change: transform;
}

.shape-star {
  mask-image:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.8 6.7 7.2.6-5.5 4.7 1.7 7L12 17.2 5.8 21l1.7-7L2 9.3l7.2-.6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.8 6.7 7.2.6-5.5 4.7 1.7 7L12 17.2 5.8 21l1.7-7L2 9.3l7.2-.6z'/%3E%3C/svg%3E");
}
.shape-plus {
  mask-image:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2h6v7h7v6h-7v7H9v-7H2V9h7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 2h6v7h7v6h-7v7H9v-7H2V9h7z'/%3E%3C/svg%3E");
}
.shape-tri {
  mask-image:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l10 18H2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l10 18H2z'/%3E%3C/svg%3E");
}
.shape-ring {
  mask-image:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a11 11 0 100 22 11 11 0 000-22zm0 5a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a11 11 0 100 22 11 11 0 000-22zm0 5a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E");
}
.shape-wave {
  mask-image:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 12'%3E%3Cpath d='M1 6q4-6 8 0t8 0 8 0 8 0 8 0 8 0v2q-4 6-8 0t-8 0-8 0-8 0-8 0-8 0z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 12'%3E%3Cpath d='M1 6q4-6 8 0t8 0 8 0 8 0 8 0 8 0v2q-4 6-8 0t-8 0-8 0-8 0-8 0-8 0z'/%3E%3C/svg%3E");
}

/* Sizes */
.sz-sm { width: 28px;  height: 28px;  }
.sz-md { width: 48px;  height: 48px;  }
.sz-lg { width: 80px;  height: 80px;  }
.sz-xl { width: 140px; height: 140px; }

.shape-wave.sz-sm { width: 56px;  height: 14px; }
.shape-wave.sz-md { width: 96px;  height: 24px; }
.shape-wave.sz-lg { width: 160px; height: 40px; }
.shape-wave.sz-xl { width: 260px; height: 65px; }

/* Colours */
.sc-pink   { color: var(--pink); }
.sc-yellow { color: var(--yellow); }
.sc-ink    { color: #0A0A0F; }

/* Opacity */
.op-60 { opacity: 0.6; }
.op-40 { opacity: 0.4; }
.op-25 { opacity: 0.25; }
.op-15 { opacity: 0.15; }

/* Animations — single-transform only, so they compose well */
.anim-spin      { animation: sh-spin 26s linear infinite; }
.anim-spin-rev  { animation: sh-spin 32s linear infinite reverse; }
.anim-wobble    { animation: sh-wobble 6s ease-in-out infinite; }
.anim-pulse     { animation: sh-pulse 5s ease-in-out infinite; }
.anim-float     { animation: sh-float 9s ease-in-out infinite; }
.anim-orbit     { animation: sh-orbit 20s ease-in-out infinite; }
.anim-orbit-rev { animation: sh-orbit 24s ease-in-out infinite reverse; }
@keyframes sh-spin   { to { transform: rotate(360deg); } }
@keyframes sh-wobble { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }
@keyframes sh-pulse  { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes sh-float  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes sh-orbit  {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-14px, -18px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Shape behaviour overrides (user-spec):
   - stars: always spin
   - squiggles: irregular, random-looking movement + colour cycle
   - plus + rings: no CSS animation, driven by JS (scroll parallax / mouse follow)
*/
.bg-shapes .shape-star { animation: sh-spin 28s linear infinite; }
.bg-shapes .shape-wave {
  animation: sh-squiggle 7.3s cubic-bezier(0.6, 0, 0.4, 1) infinite,
             sh-squiggle-color 11s linear infinite;
}
.bg-shapes .shape-plus,
.bg-shapes .shape-ring { animation: none; transition: transform 0.12s linear; }

@keyframes sh-squiggle {
  0%   { transform: translate(0, 0) rotate(0deg)  scale(1); }
  13%  { transform: translate(8px, -4px) rotate(-14deg) scale(1.15); }
  27%  { transform: translate(-6px, 10px) rotate(10deg) scale(0.9); }
  41%  { transform: translate(14px, 2px) rotate(-22deg) scale(1.05); }
  58%  { transform: translate(-12px, -8px) rotate(18deg) scale(1.22); }
  73%  { transform: translate(4px, 12px) rotate(-6deg) scale(0.92); }
  89%  { transform: translate(-10px, 2px) rotate(12deg) scale(1.1); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}
@keyframes sh-squiggle-color {
  0%, 100% { color: var(--yellow); }
  50%      { color: var(--pink); }
}

/* Hide noisier shapes on mobile */
@media (max-width: 720px) {
  .bg-shapes .hide-sm { display: none; }
}

/* Shared muse keyframes (used by .brand-muse) */
@keyframes muse-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-3px) rotate(5deg); }
}
@keyframes muse-pop {
  0%   { transform: scale(0.3) rotate(-40deg); opacity: 0; }
  55%  { transform: scale(1.45) rotate(14deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg);    opacity: 1; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤1000px) */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-photo   { position: relative; top: 0; max-width: 560px; margin: 0 auto; }
  .band-grid     { grid-template-columns: 1fr; }
  .book-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
  .hero-grid     { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo    { max-width: 420px; margin: 0 auto; order: -1; }
  .hero h1       { max-width: 100%; }
  .hero p.lede   { max-width: 100%; }
  .links-columns { grid-template-columns: 1fr; gap: 48px; }
}

/* Mobile (≤680px) */
@media (max-width: 680px) {
  .site-header { position: sticky; }
  .nav         { padding: 14px 0; }
  .nav-brand   { font-size: 1.2rem; }
  .nav-brand-logo { height: 28px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }
  .nav-cta     { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero-meta   { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-meta > div:last-child { grid-column: 1 / -1; }
  .credentials { grid-template-columns: 1fr; }
  .field-row   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cta-row .btn { flex: 1 1 100%; justify-content: center; }
  .videos-grid  { gap: 12px; }

  .strip-track { gap: 30px; }
  .strip-track > span { gap: 30px; padding-right: 30px; }

  .announce-track { font-size: 0.72rem; }

  .link-stack a { gap: 14px; padding: 18px 2px; }
  .link-icon { width: 40px; height: 40px; border-radius: 10px; }
  .link-arrow { font-size: 1.1rem; }
  .link-stack a.is-featured { margin: 6px -14px 0; padding-left: 14px; padding-right: 14px; }
}

/* Small mobile (≤420px) */
@media (max-width: 420px) {
  .container        { padding: 0 16px; }
  .hero             { padding: 48px 0 64px; }
  .hero h1          { font-size: clamp(2.1rem, 10vw, 3rem); }
  .pill             { font-size: 0.7rem; padding: 7px 14px; }
  .hero-meta        { grid-template-columns: 1fr; }
  .hero-meta > div:last-child { grid-column: auto; }
  .listen-socials   { gap: 10px; }
  .social-btn       { padding: 9px 14px; font-size: 0.8rem; }
  .faq-item summary { font-size: 1rem; }
  .btn              { padding: 14px 22px; font-size: 0.9rem; }
  .videos-grid      { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
}

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