/* ============ TOKENS ============ */
  :root {
    /* Brand constants — sampled from the MSBB poster; identical in both themes */
    --navy: #07182d;
    --navy-deep: #030d1a;
    --brass: #c8a256;
    --brass-bright: #e2c073;
    --on-navy: #eef1f6;
    --on-navy-soft: #a9b6ca;
    --navy-border: #203a57;

    /* Light theme (default / system-light / no stamp) */
    --bg: #eceff4;
    --surface: #ffffff;
    --surface-2: #f4f7fa;
    --text: #0f2138;
    --text-soft: #526078;
    --border: #d7dde7;
    --accent-text: #8a6320;

    --maxw: 1160px;
    --pad: clamp(1.25rem, 5vw, 4rem);
    --radius: 5px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --bg: #06111f;
      --surface: #0c1c31;
      --surface-2: #102540;
      --text: #eef1f6;
      --text-soft: #a9b6ca;
      --border: #22405f;
      --accent-text: #d8b869;
    }
  }
  :root[data-theme="dark"] {
    --bg: #06111f;
    --surface: #0c1c31;
    --surface-2: #102540;
    --text: #eef1f6;
    --text-soft: #a9b6ca;
    --border: #22405f;
    --accent-text: #d8b869;
  }

  /* ============ BASE ============ */
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.06rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3 { text-wrap: balance; margin: 0; }
  p { margin: 0; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }

  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  .display {
    font-family: "Anton", "Barlow", system-ui, sans-serif;
    font-weight: 400; text-transform: uppercase;
    letter-spacing: 0.01em; line-height: 0.92;
  }
  .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

  .eyebrow {
    font-family: "Barlow", sans-serif; font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent-text);
    display: inline-flex; align-items: center; gap: 0.7em;
  }
  .eyebrow::before { content: ""; width: 2rem; height: 2px; background: var(--brass); display: inline-block; }

  a.btn, button.btn {
    font-family: "Barlow", sans-serif; font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
    padding: 0.85em 1.8em; border-radius: var(--radius);
    display: inline-flex; align-items: center; gap: 0.6em; cursor: pointer;
    border: 1.5px solid transparent;
    transition: background 0.25s var(--ease), color 0.25s var(--ease),
                border-color 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .btn-brass { background: var(--brass); color: var(--navy-deep); }
  .btn-brass:hover { background: var(--brass-bright); transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: var(--on-navy); border-color: var(--navy-border); }
  .btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); transform: translateY(-2px); }

  :focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

  /* ============ NAV ============ */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--navy) 90%, transparent);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-border);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.7rem; }
  .mark { display: inline-flex; align-items: baseline; gap: 0.05em; text-decoration: none; color: var(--on-navy); }
  .mark .mark-letters { font-family: "Anton", sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1; }
  .mark .mark-letters b { color: var(--on-navy); font-weight: 400; }
  .mark .mark-sub {
    font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--on-navy-soft); font-weight: 600; margin-left: 0.6em; white-space: nowrap;
  }
  nav.links { display: flex; align-items: center; gap: 1.6rem; }
  nav.links a {
    color: var(--on-navy); text-decoration: none; font-weight: 500; font-size: 0.9rem;
    letter-spacing: 0.06em; text-transform: uppercase; position: relative; padding-block: 0.3rem;
    transition: color 0.2s var(--ease);
  }
  nav.links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
    background: var(--brass); transform: scaleX(0); transform-origin: left;
    transition: transform 0.28s var(--ease);
  }
  nav.links a:hover { color: var(--brass-bright); }
  nav.links a:hover::after { transform: scaleX(1); }
  nav.links a.nav-cta { border: 1.5px solid var(--navy-border); border-radius: var(--radius); padding: 0.5rem 1.1rem; color: var(--brass); }
  nav.links a.nav-cta::after { display: none; }
  nav.links a.nav-cta:hover { border-color: var(--brass); background: color-mix(in srgb, var(--brass) 14%, transparent); }

  .menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; padding: 8px; }
  .menu-toggle span { display: block; height: 2px; background: var(--on-navy); margin: 5px 0; transition: 0.3s var(--ease); }

  /* ============ HERO (always navy) ============ */
  .hero {
    position: relative; color: var(--on-navy); overflow: hidden; isolation: isolate;
    background:
      linear-gradient(rgba(7,24,45,0.82), rgba(3,13,26,0.93)),
      url("../images/band-photo.jpg") center 28% / cover no-repeat, var(--navy);
  }
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(60% 60% at 12% 6%, rgba(200,162,86,0.12), transparent 60%),
      radial-gradient(55% 75% at 88% 55%, rgba(3,13,26,0.55), transparent 62%);
  }
  .hero::after {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 2;
    background: linear-gradient(90deg, transparent, var(--brass), transparent); opacity: 0.5;
  }
  .hero-inner { position: relative; z-index: 1; }
  .hero-inner {
    min-height: min(92vh, 880px);
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
    padding-block: clamp(4rem, 11vh, 8rem);
  }
  .hero .location {
    font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.8rem;
    color: var(--brass); display: flex; align-items: center; gap: 0.7em;
  }
  .hero .location span { width: 2.2rem; height: 1px; background: var(--brass); display: inline-block; }
  .hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); margin: 1.2rem 0 0; color: var(--on-navy); }
  .hero h1 .accent { color: var(--brass); }
  .hero .tagline { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 40ch; color: var(--on-navy-soft); margin-top: 1.4rem; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.9rem; }
  .hero .director-by { margin-top: 1.7rem; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-navy-soft); }
  .hero .director-by b { color: var(--on-navy); font-weight: 600; }
  .hero-logo { display: flex; justify-content: center; position: relative; }
  .hero-logo img {
    max-height: clamp(230px, 42vh, 400px); width: auto;
  }
  .scroll-cue {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: var(--on-navy-soft); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  }
  .scroll-cue::after { content: ""; width: 1px; height: 32px; background: linear-gradient(var(--brass), transparent); animation: cue 2.2s var(--ease) infinite; }
  @keyframes cue { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top; } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

  /* ============ SECTIONS ============ */
  section { padding-block: clamp(4rem, 9vw, 7.5rem); scroll-margin-top: 70px; }
  .sec-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
  .sec-head h2 { font-size: clamp(2.2rem, 6vw, 4rem); margin-top: 0.7rem; color: var(--text); }
  .sec-head h2 .accent { color: var(--accent-text); }
  .lead { font-size: 1.2rem; color: var(--text-soft); max-width: 62ch; }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .scroll-cue::after { animation: none; }
  }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  .about-copy p + p { margin-top: 1.1rem; }
  .about-copy .lead { margin-bottom: 1.3rem; }
  .about-copy .body { color: var(--text); }
  .stat-row { display: flex; gap: 2.6rem; margin-top: 2.4rem; flex-wrap: wrap; }
  .stat b { font-family: "Anton", sans-serif; font-size: 2.6rem; color: var(--accent-text); display: block; line-height: 1; }
  .stat span { font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
  .about-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(3,13,26,0.55); }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
  .about-photo figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.3rem 1.1rem;
    background: linear-gradient(transparent, rgba(3,13,26,0.82)); color: var(--on-navy);
    font-size: 0.82rem; letter-spacing: 0.04em;
  }

  /* GIGS */
  .gig-feature { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: stretch; }
  .gig-poster { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(3,13,26,0.55); transition: transform 0.35s var(--ease); }
  .gig-poster:hover { transform: translateY(-4px); }
  .gig-poster img { width: 100%; }
  .gig-detail { display: flex; flex-direction: column; justify-content: center; }
  .gig-presented { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); font-weight: 700; }
  .gig-detail h3 { font-family: "Barlow", sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 0.6rem 0 0.2rem; letter-spacing: 0; text-transform: none; }
  .gig-detail .special { color: var(--text-soft); font-style: italic; margin-bottom: 1.5rem; }
  .gig-detail .special b { color: var(--accent-text); font-style: normal; font-weight: 700; }
  .gig-facts { list-style: none; margin: 0 0 1.8rem; padding: 0; border-top: 1px solid var(--border); }
  .gig-facts li { display: flex; gap: 1rem; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .gig-facts .k { flex: none; width: 6.5rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--text-soft); }
  .gig-facts .v { font-weight: 500; font-variant-numeric: tabular-nums; }
  .gig-facts .v strong { font-weight: 700; }
  .gig-buttons { display: flex; flex-wrap: wrap; gap: 0.9rem; }
  .gig-buttons .btn-ghost { color: var(--accent-text); border-color: color-mix(in srgb, var(--brass) 50%, var(--border)); }
  .gig-buttons .btn-ghost:hover { border-color: var(--brass); color: var(--accent-text); }

  /* MUSICIANS */
  .band-note { margin-bottom: 2.4rem; font-size: 0.92rem; color: var(--text-soft); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
  .band-note b { color: var(--accent-text); }
  .sections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2rem); }
  .horn { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.7rem 1.8rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
  .horn:hover { border-color: color-mix(in srgb, var(--brass) 55%, var(--border)); transform: translateY(-3px); }
  .horn h3 { font-family: "Anton", sans-serif; font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; }
  .horn h3 em { font-family: "Barlow", sans-serif; font-style: normal; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.16em; color: var(--accent-text); }
  .horn ul { list-style: none; margin: 0; padding: 0; }
  .horn li { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 0.5rem 0; border-top: 1px solid var(--border); font-size: 0.98rem; }
  .horn li:first-child { border-top: 0; }
  .horn li .seat { color: var(--text-soft); font-weight: 500; }
  .horn li .who { font-weight: 600; color: var(--text); text-align: right; }
  .badge { font-family: "Barlow", sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-deep); background: var(--brass); padding: 0.15em 0.55em; border-radius: 100px; margin-left: 0.55em; vertical-align: middle; }
  .horn.vocals { grid-column: 1 / -1; }
  .horn.vocals ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.4rem; }
  @media (max-width: 540px) { .horn.vocals ul { grid-template-columns: 1fr; } }

  /* VIDEO */
  .video-feature {
    position: relative; display: block; aspect-ratio: 16 / 9; max-height: 620px;
    border-radius: var(--radius); overflow: hidden; text-decoration: none;
    border: 1px solid var(--border); color: var(--on-navy);
    background: linear-gradient(rgba(7,24,45,0.35), rgba(3,13,26,0.72)), url("../images/band-photo.jpg") center 32% / cover no-repeat, var(--navy);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .video-feature:hover { transform: translateY(-4px); border-color: var(--brass); }
  .video-feature .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 84px; height: 84px; border-radius: 50%; background: color-mix(in srgb, var(--brass) 94%, transparent);
    display: grid; place-items: center; box-shadow: 0 12px 40px rgba(3,13,26,0.5);
    transition: transform 0.4s var(--ease);
  }
  .video-feature:hover .play { transform: translate(-50%,-50%) scale(1.08); }
  .video-feature .play svg { width: 32px; height: 32px; fill: var(--navy-deep); margin-left: 4px; }
  .video-feature .vlabel { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.7rem; background: linear-gradient(transparent, rgba(3,13,26,0.9)); }
  .video-feature .vlabel small { display: block; color: var(--brass-bright); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.35rem; }
  .video-feature .vlabel span { font-family: "Anton", sans-serif; font-size: clamp(1.3rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: 0.02em; }

  /* BOOKING (always navy) */
  .booking { background: var(--navy-deep); color: var(--on-navy); position: relative; overflow: hidden; }
  .booking::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 85% 0%, rgba(200,162,86,0.18), transparent 55%); }
  .booking .wrap { position: relative; }
  .booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
  .booking h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); color: var(--on-navy); }
  .booking h2 .accent { color: var(--brass); }
  .booking .lead { color: var(--on-navy-soft); margin-top: 1.2rem; }
  .booking-card { background: color-mix(in srgb, var(--on-navy) 5%, transparent); border: 1px solid var(--navy-border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); }
  .booking-card .label { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
  .booking-card .email { font-family: "Anton", sans-serif; font-size: clamp(1.2rem, 3vw, 1.75rem); margin: 0.4rem 0 0.2rem; text-transform: none; word-break: break-word; }
  .booking-card .email a { color: var(--on-navy); text-decoration: none; }
  .booking-card .email a:hover { color: var(--brass-bright); }
  .booking-card .phone { color: var(--on-navy-soft); margin-bottom: 1.6rem; font-variant-numeric: tabular-nums; }
  .booking-card .phone a { color: var(--on-navy-soft); text-decoration: none; }
  .booking-card .phone a:hover { color: var(--brass-bright); }
  .booking-card .btn { width: 100%; justify-content: center; }

  /* FOOTER (always navy) */
  footer.site { background: var(--navy); color: var(--on-navy); border-top: 1px solid var(--navy-border); padding-block: clamp(3rem, 6vw, 4.5rem); }
  .foot-grid { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; align-items: flex-start; }
  .foot-mono .display { font-size: 3.4rem; line-height: 0.85; color: var(--on-navy); }
  .foot-mono .display b { color: var(--on-navy); font-weight: 400; }
  .foot-mono p { color: var(--on-navy-soft); font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.7rem; }
  .socials { display: flex; gap: 0.8rem; margin-top: 1.1rem; }
  .socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--navy-border); display: grid; place-items: center; color: var(--on-navy); transition: 0.25s var(--ease); }
  .socials a:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-3px); }
  .socials svg { width: 18px; height: 18px; fill: currentColor; }
  .foot-nav { display: flex; flex-direction: column; gap: 0.6rem; }
  .foot-nav a { color: var(--on-navy-soft); text-decoration: none; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
  .foot-nav a:hover { color: var(--brass-bright); }
  .foot-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--navy-border); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--on-navy-soft); font-size: 0.82rem; }

  .theme-toggle { background: none; border: 1px solid var(--navy-border); color: var(--on-navy); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: 0.25s var(--ease); flex: none; }
  .theme-toggle:hover { border-color: var(--brass); color: var(--brass); }
  .theme-toggle svg { width: 18px; height: 18px; fill: currentColor; }

  /* AUDITION */
  .audition-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); max-width: 760px; box-shadow: 0 30px 60px -34px rgba(3,13,26,0.5); }
  .audition-card h3 { font-family: "Anton", sans-serif; font-weight: 400; font-size: clamp(1.3rem, 3vw, 1.9rem); text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); }
  .audition-card p { color: var(--text-soft); font-size: 1.08rem; }
  .audition-card p + p { margin-top: 1rem; }
  .audition-card p strong { color: var(--text); font-weight: 700; }

  /* ============ PREMIUM POLISH (colours + motion) ============ */
  :root { --brass-grad: linear-gradient(135deg, #e9cd86 0%, #c8a256 48%, #a8792d 100%); }

  /* Warmer, deeper grounds */
  body {
    background:
      radial-gradient(130% 80% at 50% -12%, color-mix(in srgb, var(--brass) 5%, var(--bg)), transparent 55%),
      var(--bg);
    background-attachment: fixed;
  }

  /* Metallic brass on primary buttons + sheen sweep */
  .btn-brass {
    background: var(--brass-grad);
    color: #23190a;
    position: relative; overflow: hidden;
    box-shadow: 0 10px 30px -12px rgba(200,162,86,0.55);
  }
  .btn-brass:hover { background: var(--brass-grad); filter: brightness(1.06); transform: translateY(-2px); }
  .btn-brass::after {
    content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-18deg);
  }
  .btn-brass:hover::after { animation: sheen 0.85s var(--ease); }
  @keyframes sheen { to { left: 150%; } }

  /* Metallic gradient on display accents */
  .hero h1 .accent, .sec-head h2 .accent, .booking h2 .accent {
    background: var(--brass-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }

  /* Scroll progress bar */
  #scrollbar {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, #c8a256, #e9cd86); z-index: 100;
    box-shadow: 0 0 12px rgba(200,162,86,0.6);
    transition: width 0.12s linear;
  }

  /* Nav lift on scroll */
  header.nav { transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease); }
  header.nav.scrolled { box-shadow: 0 14px 34px -14px rgba(3,13,26,0.7); background: color-mix(in srgb, var(--navy) 96%, transparent); }

  /* Hero: orchestrated entrance */
  @keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
  @keyframes heroLogoIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: none; } }
  .hero .location   { animation: heroRise 0.85s var(--ease) both 0.10s; }
  .hero h1          { animation: heroRise 0.95s var(--ease) both 0.24s; }
  .hero .tagline    { animation: heroRise 0.95s var(--ease) both 0.40s; }
  .hero-cta         { animation: heroRise 0.95s var(--ease) both 0.56s; }
  .hero .director-by{ animation: heroRise 0.95s var(--ease) both 0.72s; }
  .hero-logo        { animation: heroLogoIn 1.1s var(--ease) both 0.34s; position: relative; z-index: 1; }

  /* Hero: floating logo + breathing brass glow */
  .hero-logo img { position: relative; z-index: 1; animation: floaty 6.5s ease-in-out 1.5s infinite; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
  .hero-logo::before {
    content: ""; position: absolute; left: 50%; top: 50%; width: 82%; aspect-ratio: 1;
    transform: translate(-50%,-50%); border-radius: 50%; z-index: 0;
    background: radial-gradient(circle, rgba(200,162,86,0.24), transparent 62%);
    filter: blur(18px); animation: glowPulse 5.5s ease-in-out infinite;
  }
  @keyframes glowPulse { 0%,100% { opacity: 0.45; transform: translate(-50%,-50%) scale(0.94); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.09); } }

  /* Hero: slow ambient drift of the background glow */
  .hero::before { animation: heroAmbient 18s ease-in-out infinite alternate; }
  @keyframes heroAmbient { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(2%, -2%, 0) scale(1.07); } }

  /* Reveal stagger for card grids */
  .sections-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
  .sections-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
  .sections-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
  .sections-grid .reveal:nth-child(5) { transition-delay: 0.32s; }

  /* Premium hover glows on cards */
  .horn:hover { box-shadow: 0 22px 44px -26px rgba(3,13,26,0.55), 0 0 0 1px color-mix(in srgb, var(--brass) 40%, transparent); }
  .gig-poster:hover { box-shadow: 0 40px 70px -34px rgba(3,13,26,0.7), 0 0 0 1px color-mix(in srgb, var(--brass) 45%, transparent); }
  .video-feature:hover { box-shadow: 0 30px 60px -30px rgba(3,13,26,0.7); }
  .booking-card { transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
  .booking-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brass) 55%, var(--navy-border)); box-shadow: 0 26px 50px -30px rgba(0,0,0,0.6); }
  .stat b { transition: transform 0.3s var(--ease); }

  @media (prefers-reduced-motion: reduce) {
    .hero .location, .hero h1, .hero .tagline, .hero-cta, .hero .director-by,
    .hero-logo, .hero-logo img, .hero-logo::before, .hero::before { animation: none !important; }
    .btn-brass:hover::after { animation: none; }
    #scrollbar { transition: none; }
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: left; }
    .hero-logo { justify-content: flex-start; order: -1; margin-bottom: 0.5rem; }
    .hero-logo img { max-height: clamp(160px, 26vh, 230px); }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 440px; }
    .gig-feature { grid-template-columns: 1fr; }
    .gig-poster { max-width: 460px; margin-inline: auto; }
    .booking-grid { grid-template-columns: 1fr; }
    .sections-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .menu-toggle { display: block; }
    nav.links {
      position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
      background: var(--navy-deep); flex-direction: column; align-items: flex-start;
      justify-content: flex-start; gap: 0.4rem; padding: 5rem 2rem 2rem;
      transform: translateX(100%); transition: transform 0.35s var(--ease);
      border-left: 1px solid var(--navy-border); z-index: 40;
    }
    nav.links.open { transform: none; }
    nav.links a { font-size: 1.05rem; padding-block: 0.6rem; }
    nav.links a.nav-cta { margin-top: 0.6rem; }
    .mark .mark-sub { display: none; }
    .stat-row { gap: 1.6rem; }
  }
