:root {
  --blue: #1b75bc;
  --blue-bright: #39a5ff;
  --black: #05070a;
  --panel: #0b0f14;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #aeb7c2;
  --white: #ffffff;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  position: relative;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--blue); color: white; }

/* One continuous frozen-wave background for the entire page below the video hero. */
body::before {
  content: "";
  position: absolute;
  top: 100svh;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #05070a;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(27,117,188,.11), transparent 28%),
    radial-gradient(circle at 84% 42%, rgba(27,117,188,.08), transparent 24%),
    linear-gradient(180deg, rgba(5,7,10,.02), rgba(8,11,16,.5)),
    url('assets/images/frozen-wave.svg');
  background-position:
    center top,
    center center,
    center top,
    center top;
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    min(1680px, 132vw) 630px;
  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    repeat-y;
}

.site-header,
main,
.site-footer,
dialog {
  position: relative;
  z-index: 1;
}

.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;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--blue);
  padding: .75rem 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,7,10,.9);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.header-brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.header-brand img {
  width: clamp(118px, 10vw, 164px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.08));
}
.footer-brand img {
  width: 145px;
  height: auto;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-nav a, .nav-booking {
  border: 0;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  font-size: .86rem;
  text-transform: lowercase;
  opacity: .8;
}
.site-nav a:hover, .nav-booking:hover { color: var(--blue-bright); opacity: 1; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #000 url('assets/images/hero-poster.jpg') center / cover no-repeat;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.88) contrast(1.06) brightness(.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,.06) 30%, rgba(0,0,0,.18) 68%, rgba(5,7,10,.82) 100%),
    radial-gradient(circle at center, transparent 28%, rgba(0,0,0,.24) 100%);
}
.hero-content {
  width: min(1120px, calc(100% - 2.5rem));
  padding-top: var(--header-h);
  text-align: center;
}
.hero-logo {
  width: min(720px, 82vw);
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(27,117,188,.42));
}
.genres {
  max-width: 980px;
  margin: 1.3rem auto 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(.68rem, 1.25vw, .98rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.genres span { color: var(--blue-bright); margin: 0 .45em; }
.hero-actions, .booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
}
.button {
  min-width: 145px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(5,7,10,.55);
  text-decoration: none;
  text-transform: lowercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  backdrop-filter: blur(8px);
}
.button:hover { transform: translateY(-2px); border-color: var(--blue-bright); }
.button-primary { background: var(--blue); border-color: var(--blue); }
.button-primary:hover { background: #2487d5; }
.button-secondary { background: rgba(5,7,10,.6); }
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 99px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,18px); } }

.section { padding: clamp(5.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem); }
.section-heading { max-width: 1280px; margin: 0 auto 3rem; }
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--blue-bright);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h2 { margin: 0; font-size: clamp(2.6rem, 7vw, 7rem); line-height: .92; letter-spacing: -.08em; text-transform: lowercase; }
h3 { margin: 0; font-size: clamp(1.35rem, 2.7vw, 2.3rem); line-height: 1.12; letter-spacing: -.04em; }

.music-section { background: transparent; }
.music-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.music-card {
  min-height: 290px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: rgba(11,15,20,.90);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .25s ease;
}
.music-card:hover { background: #101620; }
.music-card.featured { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: minmax(260px,.75fr) 1.25fr; gap: 2rem; align-items: center; }
.music-card iframe { width: 100%; height: 166px; border: 0; }
.music-card-copy { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.music-card-copy p { margin: 0; color: var(--muted); }
.music-card-copy a { margin-top: 1rem; color: var(--blue-bright); text-underline-offset: 5px; }
.platform { color: var(--blue-bright) !important; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.all-platforms { max-width: 1280px; margin: 2.25rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.platform-link {
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  background: rgba(11,15,20,.66);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.platform-link img { width: 30px; height: 30px; object-fit: contain; opacity: .92; }
.platform-link:hover { color: var(--white); border-color: var(--blue-bright); transform: translateY(-2px); }

.about-section {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(27,117,188,.5);
  z-index: -1;
}
.about-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.about-copy h2 { margin-bottom: 2rem; }
.about-copy > p { color: #c9d0d8; max-width: 760px; }
.facts { margin: 2.3rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.facts div { background: rgba(11,15,20,.90); backdrop-filter: blur(3px); padding: 1.25rem; }
.facts dt { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.facts dd { margin: .35rem 0 0; }

.gallery-section { background: transparent; }
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: .7rem;
}
.gallery-item {
  grid-column: span 4;
  grid-row: span 2;
  border: 0;
  padding: 0;
  background: #111;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; filter: saturate(.82); }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1); }

.booking-section { padding-top: clamp(4rem, 7vw, 7rem); }
.booking-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 6rem);
  border: 1px solid rgba(27,117,188,.55);
  background:
    radial-gradient(circle at 80% 30%, rgba(27,117,188,.22), transparent 34%),
    var(--panel);
  text-align: center;
}
.booking-panel p:not(.eyebrow) { color: var(--muted); margin: 1.5rem auto 0; max-width: 620px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.social-links a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  background: rgba(11,15,20,.58);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-links a img { width: 32px; height: 32px; object-fit: contain; opacity: .9; }
.social-links a span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.social-links a:hover { border-color: var(--blue-bright); background: rgba(27,117,188,.13); transform: translateY(-2px); }
.social-links a:hover img { opacity: 1; }
.site-footer p { margin: 0; color: var(--muted); font-size: .75rem; }

.booking-dialog, .lightbox {
  width: min(680px, calc(100% - 2rem));
  border: 1px solid rgba(27,117,188,.6);
  background: #080b10;
  color: white;
  padding: clamp(1.6rem, 5vw, 3rem);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.booking-dialog::backdrop, .lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(7px); }
.booking-dialog h2 { font-size: clamp(2.2rem, 7vw, 4.5rem); margin-bottom: 2rem; }
.dialog-close {
  position: absolute;
  right: 1rem;
  top: .8rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}
.dialog-actions { display: grid; gap: .75rem; }
.dialog-actions a { display: flex; flex-direction: column; padding: 1.1rem 1.25rem; border: 1px solid var(--line); text-decoration: none; }
.dialog-actions a:hover { border-color: var(--blue-bright); background: rgba(27,117,188,.1); }
.dialog-actions span { color: var(--blue-bright); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.dialog-actions strong { font-size: clamp(.9rem, 3vw, 1.2rem); overflow-wrap: anywhere; }
.lightbox { width: min(1100px, calc(100% - 2rem)); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox img { max-height: 88vh; margin: auto; object-fit: contain; }
.lightbox .dialog-close { background: rgba(0,0,0,.78); right: 0; top: 0; z-index: 2; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .menu-toggle {
    display: block;
    border: 1px solid var(--line);
    background: rgba(5,7,10,.75);
    color: white;
    padding: .55rem .75rem;
    cursor: pointer;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
    background: rgba(5,7,10,.97);
    border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-booking { padding: .8rem; text-align: left; }
  .music-card.featured { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 680px; }
  .gallery-grid { grid-auto-rows: 150px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 1rem; }
  .header-brand img { width: 122px; max-height: 48px; }
  .hero-media { inset: 0; }
  .hero-video { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center 48%; }
  .hero-content { width: calc(100% - 1.5rem); }
  .hero-logo { width: min(91vw, 620px); }
  .genres { max-width: 360px; line-height: 2; letter-spacing: .08em; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .section { padding-inline: 1rem; }
  .music-grid { grid-template-columns: 1fr; }
  .music-card.featured { grid-column: auto; }
  .facts { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; gap: .45rem; }
  .gallery-item, .gallery-item.wide { grid-column: span 1; grid-row: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item:first-child { grid-column: 1 / -1; }
  .booking-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .scroll-cue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


.button-with-icon { gap: .65rem; }
.button-with-icon img { width: 20px; height: 20px; }
.dialog-action-with-icon {
  display: grid !important;
  grid-template-columns: 30px 1fr;
  column-gap: .85rem;
  align-items: center;
}
.dialog-action-with-icon img { width: 25px; height: 25px; grid-row: 1 / 3; }
.dialog-action-with-icon span,
.dialog-action-with-icon strong { grid-column: 2; }


/* The frozen-wave pattern is now continuous across the full page below the hero. */

.header-brand:focus-visible,
.footer-brand:focus-visible,
.social-links a:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 5px;
}

@media (max-width: 620px) {
  .social-links { gap: .75rem; }
  .social-links a { width: 54px; height: 54px; }
  .social-links a img { width: 28px; height: 28px; }
  .platform-link { min-width: 100%; }
}


/* V8: make the Press Kit clearly visible in the hero, navigation and footer. */
.button-presskit {
  background: rgba(27,117,188,.16);
  border-color: rgba(85,166,221,.88);
  box-shadow: inset 0 0 0 1px rgba(27,117,188,.12);
}
.button-presskit:hover {
  background: rgba(27,117,188,.3);
  border-color: var(--blue-bright);
}
.nav-presskit {
  color: var(--blue-bright) !important;
  opacity: 1 !important;
}
.footer-presskit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid rgba(85,166,221,.62);
  background: rgba(27,117,188,.1);
  color: var(--white);
  text-decoration: none;
  text-transform: lowercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-presskit:hover {
  transform: translateY(-2px);
  background: rgba(27,117,188,.22);
  border-color: var(--blue-bright);
}
