:root {
  --bg: #07080d;
  --bg-soft: #0d0f17;
  --panel: rgba(17, 19, 29, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f3ec;
  --muted: #aaa9b4;
  --acid: #b3ff59;
  --violet: #8c5bff;
  --cyan: #00e7d9;
  --display: "Cinzel", serif;
  --body: "Inter", sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(140, 91, 255, 0.12), transparent 27rem),
    radial-gradient(circle at 85% 35%, rgba(0, 231, 217, 0.08), transparent 30rem),
    var(--bg);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(179, 255, 89, 0.07);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: 250ms ease;
}

.site-header.scrolled {
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 0.75rem; font-family: var(--display); letter-spacing: 0.16em; }
.brand-mark {
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50% 50% 48% 52%;
  color: var(--acid);
  box-shadow: 0 0 28px rgba(179, 255, 89, 0.2);
}
.brand-name { font-size: 0.92rem; font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.6vw, 2.4rem); }
.site-nav a { position: relative; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -0.4rem; width: 0; height: 1px; background: var(--acid); transition: 220ms ease; }
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { width: 100%; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 1.7rem; height: 1px; margin: 0.35rem; background: var(--text); transition: 220ms ease; }

.section { position: relative; padding: clamp(5.5rem, 10vw, 9rem) clamp(1.2rem, 6vw, 7rem); }
.eyebrow { margin: 0 0 1rem; color: var(--acid); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em; }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.06; }
h1 { font-size: clamp(3.2rem, 8vw, 8.2rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); letter-spacing: -0.035em; }

.hero { min-height: 100svh; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 3rem; padding-top: 8rem; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-copy { max-width: 650px; margin: 1.6rem 0 2.2rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 3.2rem; padding: 0.8rem 1.35rem; border: 1px solid var(--line); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #071006; background: var(--acid); border-color: var(--acid); box-shadow: 0 0 30px rgba(179, 255, 89, 0.18); }
.button-ghost { background: rgba(255,255,255,0.02); }
.button-ghost:hover { border-color: var(--violet); }

.sigil-wrap { position: relative; display: grid; place-items: center; min-height: 520px; }
.sigil { width: min(90%, 520px); filter: drop-shadow(0 0 32px rgba(140,91,255,0.23)); animation: rotateSigil 28s linear infinite; }
.sigil-label { position: absolute; bottom: 9%; font-size: 0.67rem; letter-spacing: 0.38em; color: var(--muted); }
@keyframes rotateSigil { to { transform: rotate(360deg); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .75; }
.orb-one { width: 18rem; height: 18rem; right: 17%; top: 18%; border: 1px solid rgba(140,91,255,.35); box-shadow: inset 0 0 80px rgba(140,91,255,.12); }
.orb-two { width: 7rem; height: 7rem; left: 40%; bottom: 14%; background: rgba(0,231,217,.08); box-shadow: 0 0 80px rgba(0,231,217,.25); }
.scroll-hint { position: absolute; left: clamp(1.2rem, 6vw, 7rem); bottom: 2rem; display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }
.scroll-hint span { width: 2.5rem; height: 1px; background: var(--acid); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 2rem; padding: .9rem 0; animation: marquee 22s linear infinite; font-family: var(--display); letter-spacing: .25em; color: var(--muted); }
.marquee-track i { color: var(--acid); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; margin-bottom: 3.5rem; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -.3rem; }
.section-heading p:last-child { max-width: 520px; margin: 0; color: var(--muted); justify-self: end; }

.show-list { border-top: 1px solid var(--line); }
.show-card { display: grid; grid-template-columns: 150px 1fr auto auto; gap: 2rem; align-items: center; padding: 1.65rem 0; border-bottom: 1px solid var(--line); transition: padding 200ms ease, background 200ms ease; }
.show-card:hover { padding-inline: 1rem; background: linear-gradient(90deg, rgba(140,91,255,.09), transparent); }
.show-date { display: flex; align-items: baseline; gap: .6rem; }
.show-date strong { font-family: var(--display); font-size: 2.6rem; color: var(--acid); }
.show-date span, .show-type { color: var(--muted); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.show-info h3 { font-size: clamp(1.3rem, 2.2vw, 2rem); }
.show-info p { margin: .35rem 0 0; color: var(--muted); }
.text-link { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }

.artists {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(140, 91, 255, 0.045),
      transparent
    );
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.artist-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(179, 255, 89, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.artist-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.artist-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      transparent,
      rgba(7, 8, 13, 0.92)
    );
  pointer-events: none;
}

.artist-frame {
  position: relative;
  z-index: 1;
  width: 58%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(8deg);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 40px rgba(255, 255, 255, 0.015);
  transition:
    transform 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.artist-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(7, 8, 13, 0.1) 65%,
      rgba(7, 8, 13, 0.5) 100%
    );
  pointer-events: none;
}

.artist-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08) rotate(-8deg);
  filter:
    grayscale(100%)
    contrast(1.12)
    brightness(0.82)
    saturate(0.7);
  transition:
    transform 650ms ease,
    filter 650ms ease;
}

.artist-card:hover .artist-frame {
  transform: rotate(4deg) scale(1.035);
  border-color: rgba(179, 255, 89, 0.45);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(179, 255, 89, 0.09);
}

.artist-card:hover .artist-frame img {
  transform: scale(1.14) rotate(-4deg);
  filter:
    grayscale(25%)
    contrast(1.08)
    brightness(0.95)
    saturate(0.9);
}

.artist-visual span {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  color: var(--acid);
  font-family: var(--display);
}

.artist-one {
  background:
    radial-gradient(
      circle at 45% 30%,
      rgba(179, 255, 89, 0.3),
      transparent 18%
    ),
    linear-gradient(
      140deg,
      #232632,
      #07080d 75%
    );
}

.artist-two {
  background:
    radial-gradient(
      circle at 60% 25%,
      rgba(140, 91, 255, 0.45),
      transparent 20%
    ),
    linear-gradient(
      150deg,
      #171327,
      #07080d 75%
    );
}

.artist-three {
  background:
    radial-gradient(
      circle at 40% 30%,
      rgba(0, 231, 217, 0.32),
      transparent 18%
    ),
    linear-gradient(
      135deg,
      #102426,
      #07080d 75%
    );
}

.artist-four {
  background:
    radial-gradient(
      circle at 55% 32%,
      rgba(255, 255, 255, 0.2),
      transparent 18%
    ),
    linear-gradient(
      150deg,
      #282329,
      #07080d 75%
    );
}

.artist-copy {
  padding: 1.25rem;
}

.artist-copy p {
  margin: 0 0 0.35rem;
  color: var(--acid);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
}

.artist-copy h3 {
  font-size: 1.6rem;
}

.artist-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.story { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; align-items: center; min-height: 75svh; }
.story-symbol { display: grid; place-items: center; aspect-ratio: 1; max-width: 430px; border: 1px solid var(--line); border-radius: 50%; font-size: clamp(5rem, 12vw, 10rem); color: var(--violet); box-shadow: inset 0 0 90px rgba(140,91,255,.08), 0 0 80px rgba(0,231,217,.05); }
.story-content { max-width: 850px; }
.story-content > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.04rem; }
.story-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.story-tags span { padding: .45rem .8rem; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.booking-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; padding: clamp(2rem, 5vw, 5rem); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(140,91,255,.09), rgba(0,231,217,.035)); box-shadow: var(--shadow); }
.booking-panel > div > p:not(.eyebrow) { color: var(--muted); max-width: 520px; }
.booking-mail { display: inline-block; margin-top: 1.3rem; color: var(--acid); font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.5rem); }
.booking-form { display: grid; gap: 1rem; }
.booking-form label { color: var(--muted); font-size: .78rem; letter-spacing: .08em; }
.booking-form input, .booking-form textarea { width: 100%; margin-top: .35rem; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 0; outline: none; color: var(--text); background: rgba(7,8,13,.7); }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(179,255,89,.08); }
.booking-form .button { width: fit-content; border-radius: 0; }
.form-status { min-height: 1.5rem; margin: 0; color: var(--acid); font-size: .82rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 3rem clamp(1.2rem, 6vw, 7rem); border-top: 1px solid var(--line); background: #05060a; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand strong { font-family: var(--display); letter-spacing: .18em; }
.footer-brand p, .copyright { margin: .25rem 0 0; color: var(--muted); font-size: .78rem; }
.footer-links { display: flex; gap: 1.4rem; align-items: center; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.imprint { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.imprint summary { cursor: pointer; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; }
.imprint p { color: var(--muted); font-size: .85rem; }
.copyright { grid-column: 1 / -1; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .sigil-wrap { position: absolute; right: -14%; width: 55%; opacity: .55; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-panel { gap: 2.5rem; }
}

@media (max-width: 760px) {
  .site-header { padding-block: .95rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: grid; place-content: center; gap: 1.6rem; text-align: center; background: rgba(7,8,13,.96); transform: translateY(-100%); transition: 280ms ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: 1.35rem; color: var(--text); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand-name { display: none; }
  .hero { min-height: 92svh; }
  .sigil-wrap { right: -32%; width: 90%; }
  .section-heading, .story, .booking-panel { grid-template-columns: 1fr; }
  .section-heading p:last-child { justify-self: start; }
  .show-card { grid-template-columns: 90px 1fr; gap: 1rem; }
  .show-type { grid-column: 1; }
  .show-card .text-link { grid-column: 2; }
  .artist-grid { grid-template-columns: 1fr; }
  .artist-visual { min-height: 300px; }
  .story-symbol { max-width: 260px; margin-inline: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

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

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

.booking-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.booking-form button.is-loading span::after {
  content: "";
  display: inline-block;
  width: .8em;
  height: .8em;
  margin-left: .7em;
  border: 1px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -.08em;
  animation: booking-spin .7s linear infinite;
}

.form-status.success { color: var(--acid); }
.form-status.error { color: #ff8f9a; }
.form-status.sending { color: var(--cyan); }

@keyframes booking-spin { to { transform: rotate(360deg); } }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-span-two { grid-column: 1 / -1; }

.booking-form select {
  width: 100%;
  margin-top: .35rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--text);
  background: rgba(7,8,13,.92);
  font: inherit;
}

.booking-form select:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(179,255,89,.08);
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-span-two { grid-column: auto; }
}

/* =========================================
   Responsive mobile refinements
   ========================================= */
img,
svg {
  max-width: 100%;
}

select {
  font: inherit;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  body {
    min-width: 0;
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .site-header.scrolled {
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.45rem;
    touch-action: manipulation;
  }

  .menu-toggle span {
    margin-inline: auto;
  }

  .site-nav {
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
  }

  .site-nav a {
    padding: 0.45rem 1rem;
  }

  .section {
    padding: 4.5rem 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
    line-height: 1.08;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }

  .hero-content {
    width: 100%;
  }

  .hero-copy {
    margin: 1.25rem 0 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .sigil-wrap {
    position: relative;
    inset: auto;
    width: min(82vw, 340px);
    min-height: 0;
    margin: 0 auto;
    opacity: 0.42;
    order: 2;
    pointer-events: none;
  }

  .sigil {
    width: 100%;
  }

  .sigil-label {
    bottom: 3%;
    width: 100%;
    text-align: center;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }

  .orb-one {
    width: 12rem;
    height: 12rem;
    right: -4rem;
    top: 8rem;
  }

  .orb-two {
    width: 5rem;
    height: 5rem;
    left: 8%;
    bottom: 18%;
  }

  .scroll-hint {
    display: none;
  }

  .marquee-track {
    gap: 1.25rem;
    padding-block: 0.75rem;
    font-size: 0.78rem;
  }

  .section-heading {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .show-card {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    padding: 1.25rem 0;
  }

  .show-card:hover {
    padding-inline: 0;
  }

  .show-date,
  .show-info {
    grid-column: 1 / -1;
  }

  .show-date strong {
    font-size: 2.2rem;
  }

  .show-type {
    grid-column: 1;
    align-self: center;
  }

  .show-card .text-link {
    grid-column: 2;
    justify-self: end;
    padding: 0.55rem 0;
  }

  .artist-grid {
    gap: 1.25rem;
  }

  .artist-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .artist-frame {
    width: min(55%, 210px);
  }

  .artist-card:hover,
  .artist-card:focus-within {
    transform: none;
  }

  .artist-copy {
    padding: 1rem;
  }

  .artist-copy h3 {
    font-size: 1.4rem;
  }

  .story {
    gap: 2.5rem;
    min-height: auto;
  }

  .story-symbol {
    width: min(65vw, 230px);
  }

  .story-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .booking-panel {
    gap: 2rem;
    padding: 1.25rem;
  }

  .booking-mail {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .booking-form input,
  .booking-form textarea,
  .booking-form select {
    min-height: 3rem;
    font-size: 16px;
  }

  .booking-form textarea {
    min-height: 9rem;
    resize: vertical;
  }

  .booking-form .button {
    width: 100%;
  }

  .site-footer {
    gap: 1.5rem;
    padding: 2.5rem 1rem;
  }

  .footer-links {
    gap: 0.75rem 1.25rem;
  }
}

@media (max-width: 390px) {
  .section {
    padding-inline: 0.85rem;
  }

  h1 {
    font-size: clamp(2.05rem, 11.5vw, 2.8rem);
  }

  .button {
    padding-inline: 0.9rem;
    letter-spacing: 0.1em;
  }

  .booking-panel {
    padding: 1rem;
  }

  .artist-frame {
    width: 62%;
  }
}

@media (hover: none) {
  .button:hover,
  .artist-card:hover,
  .artist-card:hover .artist-frame {
    transform: none;
  }

  .artist-card:hover .artist-frame img {
    transform: scale(1.08) rotate(-8deg);
    filter: grayscale(100%) contrast(1.12) brightness(0.82) saturate(0.7);
  }
}
