:root {
  color-scheme: dark;
  --bg: #11100d;
  --panel: #1b1915;
  --text: #fff7e8;
  --muted: #c7bca7;
  --line: rgba(255, 247, 232, 0.16);
  --gold: #f2b84b;
  --cyan: #65d9f4;
  --rust: #ba5636;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  animation: pageFade 700ms ease both;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(17, 16, 13, 0.88), rgba(17, 16, 13, 0));
  animation: headerDrop 700ms ease 120ms both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.08);
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: rgba(255, 247, 232, 0.82);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.72);
  color: var(--text);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 6vw, 88px) 54px;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 52px;
}

.equalizer span {
  display: block;
  width: 7px;
  min-height: 10px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  opacity: 0.86;
  transform-origin: bottom;
  animation: signalPulse 920ms ease-in-out infinite alternate;
}

.equalizer span:nth-child(2) {
  animation-duration: 680ms;
}

.equalizer span:nth-child(3) {
  animation-duration: 1120ms;
}

.equalizer span:nth-child(4) {
  animation-duration: 760ms;
}

.equalizer span:nth-child(5) {
  animation-duration: 980ms;
}

.equalizer span:nth-child(6) {
  animation-duration: 620ms;
}

.equalizer span:nth-child(7) {
  animation-duration: 1240ms;
}

.equalizer span:nth-child(8) {
  animation-duration: 820ms;
}

.equalizer span:nth-child(9) {
  animation-duration: 1080ms;
}

.equalizer span:nth-child(10) {
  animation-duration: 720ms;
}

.hero-equalizer {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 44px;
  z-index: 1;
  padding: 14px;
  border: 1px solid rgba(255, 247, 232, 0.18);
  background: rgba(17, 16, 13, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.94) 0%, rgba(17, 16, 13, 0.76) 36%, rgba(17, 16, 13, 0.12) 74%),
    linear-gradient(180deg, rgba(17, 16, 13, 0.04) 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.hero-content > * {
  animation: riseIn 720ms ease both;
}

.hero-content > :nth-child(1) {
  animation-delay: 220ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 360ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 500ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 640ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 780ms;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 30px;
}

.hero-instruments span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 247, 232, 0.22);
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.18), rgba(101, 217, 244, 0.1)),
    rgba(17, 16, 13, 0.56);
  color: var(--text);
  font-weight: 850;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.button.primary {
  background: var(--gold);
  color: #18120a;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 247, 232, 0.08);
  color: var(--text);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intro-text {
  max-width: 970px;
}

.intro-text p,
.music-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.service {
  min-height: 360px;
  background: var(--panel);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.service img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 700ms ease, filter 700ms ease;
}

.service picture,
.equipment-showcase picture,
.music-image picture {
  display: block;
  overflow: hidden;
}

.service:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.service-body {
  padding: clamp(28px, 4vw, 44px);
}

.service-icon {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.service p {
  color: var(--muted);
}

.event-audio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(242, 184, 75, 0.08), rgba(101, 217, 244, 0.08)),
    #12110e;
  overflow: hidden;
}

.event-copy {
  max-width: 760px;
}

.event-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.event-copy .button {
  margin-top: 18px;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.event-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 184, 75, 0.48);
  background: rgba(255, 247, 232, 0.085);
}

.event-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-equalizer {
  position: absolute;
  left: clamp(20px, 6vw, 88px);
  bottom: clamp(22px, 4vw, 42px);
  height: 42px;
  opacity: 0.36;
}

.schedule {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.08), rgba(101, 217, 244, 0.08)),
    #100f0c;
}

.schedule-heading {
  position: sticky;
  top: 96px;
}

.schedule-heading p,
.schedule-card p {
  color: var(--muted);
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  min-height: 188px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.055);
  box-shadow: 0 22px 70px var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 184, 75, 0.5);
  background: rgba(255, 247, 232, 0.08);
}

.schedule-date {
  display: grid;
  place-items: center;
  align-self: start;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 232, 0.22);
  background:
    linear-gradient(160deg, rgba(242, 184, 75, 0.22), rgba(101, 217, 244, 0.1)),
    rgba(17, 16, 13, 0.72);
}

.schedule-date span,
.schedule-meta {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-date strong {
  margin-top: -18px;
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.schedule-card h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.schedule-location {
  margin-bottom: 10px;
  color: var(--gold) !important;
  font-weight: 850;
}

.schedule-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.055);
  color: var(--muted);
}

.process {
  border-bottom: 1px solid var(--line);
}

.process-heading {
  max-width: 850px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-steps article {
  min-height: 290px;
  padding: clamp(24px, 3vw, 34px);
  background: #15130f;
  transition: transform 220ms ease, background 220ms ease;
}

.process-steps article:hover {
  transform: translateY(-5px);
  background: #1b1812;
}

.process-steps span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--gold);
  font-weight: 900;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.equipment {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background: #100f0c;
}

.equipment-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.equipment-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.equipment-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 217, 244, 0.48);
  background: rgba(101, 217, 244, 0.1);
}

.equipment-showcase {
  display: grid;
  gap: 16px;
}

.equipment-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 24px 80px var(--shadow);
}

.equipment-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.equipment-groups article {
  min-height: 188px;
  padding: clamp(20px, 3vw, 28px);
  background: #171510;
  transition: transform 220ms ease, background 220ms ease;
}

.equipment-groups article:hover {
  transform: translateY(-4px);
  background: #1d1a13;
}

.equipment-groups span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.equipment-groups p {
  margin-bottom: 0;
  color: var(--muted);
}

.music {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.92fr) minmax(300px, 0.56fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.music-image {
  margin: 0;
}

.music-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 24px 80px var(--shadow);
  transition: transform 700ms ease, filter 700ms ease;
}

.music-image:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(186, 86, 54, 0.1), rgba(101, 217, 244, 0.08)),
    #12100d;
}

.video-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.youtube-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 247, 232, 0.2);
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.14), rgba(186, 86, 54, 0.16)),
    rgba(255, 247, 232, 0.055);
  box-shadow: 0 24px 80px var(--shadow);
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-direct-link {
  grid-column: 2;
  justify-self: start;
  color: var(--gold);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.video-direct-link:hover,
.video-direct-link:focus-visible {
  color: var(--cyan);
}

.instrument-grid {
  display: grid;
  gap: 14px;
}

.instrument {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(242, 184, 75, 0.18), rgba(101, 217, 244, 0.08));
  box-shadow: 0 20px 70px var(--shadow);
  transition: transform 220ms ease, background 220ms ease;
}

.instrument:hover {
  transform: translateX(8px);
  background: linear-gradient(90deg, rgba(242, 184, 75, 0.26), rgba(101, 217, 244, 0.12));
}

.instrument:nth-child(2) {
  border-color: var(--cyan);
}

.instrument:nth-child(3) {
  border-color: var(--rust);
}

.instrument span {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 850;
  line-height: 1.05;
}

.instrument small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-band {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 8vw, 128px);
  background:
    linear-gradient(90deg, rgba(101, 217, 244, 0.16), rgba(242, 184, 75, 0.16)),
    #161411;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-band p {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1.04;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.contact-panel {
  padding-top: 12px;
}

.contact-panel .button {
  margin-top: 18px;
  width: 100%;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 184, 75, 0.62);
  color: var(--gold);
}

.legal {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0f0e0c;
}

.legal + .legal {
  padding-top: clamp(52px, 7vw, 84px);
}

.legal h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.legal h3 {
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.legal h3:first-child {
  margin-top: 0;
}

.legal-content {
  max-width: 880px;
  color: var(--muted);
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--cyan);
  background: rgba(101, 217, 244, 0.08);
  color: var(--text);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  position: relative;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold);
}

.footer-admin a {
  color: var(--gold);
  font-weight: 850;
}

.privacy-banner {
  position: fixed;
  left: clamp(16px, 4vw, 40px);
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 247, 232, 0.22);
  background: rgba(17, 16, 13, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  animation: bannerIn 420ms ease both;
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner-text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.privacy-banner-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-banner-actions a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  white-space: nowrap;
}

.privacy-banner-actions .button {
  min-height: 44px;
  white-space: nowrap;
}

.admin-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(101, 217, 244, 0.12), transparent 34rem),
    var(--bg);
}

.admin-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.admin-hero {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.admin-hero h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.admin-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.admin-login {
  max-width: 520px;
}

.admin-dashboard {
  display: grid;
  gap: 24px;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-toolbar h2 {
  margin-bottom: 0;
}

.admin-toolbar-actions,
.admin-form-actions,
.admin-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-storage-status {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.06);
  color: var(--muted);
  font-weight: 800;
}

.admin-storage-status.is-ok {
  border-color: rgba(101, 217, 244, 0.42);
  background: rgba(101, 217, 244, 0.1);
  color: var(--text);
}

.admin-storage-status.is-error {
  border-color: rgba(186, 86, 54, 0.7);
  background: rgba(186, 86, 54, 0.16);
  color: #ffd7cc;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.06);
  box-shadow: 0 24px 80px var(--shadow);
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form h2,
.admin-form h3,
.admin-panel h3 {
  margin-bottom: 6px;
}

.admin-form p,
.admin-empty,
.admin-event-description {
  color: var(--muted);
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.18);
  background: rgba(17, 16, 13, 0.78);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: rgba(101, 217, 244, 0.62);
  box-shadow: 0 0 0 3px rgba(101, 217, 244, 0.12);
}

.admin-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 12px;
}

.admin-checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
}

.admin-message {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.admin-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-list-heading span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-events {
  display: grid;
  gap: 12px;
}

.admin-event-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.52);
}

.admin-event-card h4 {
  margin: 10px 0 6px;
  font-size: 1.25rem;
}

.admin-event-card p {
  margin-bottom: 10px;
}

.admin-event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-event-meta strong,
.admin-event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  background: rgba(255, 247, 232, 0.08);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-event-meta strong {
  color: var(--gold);
}

.admin-event-meta .status-public {
  color: #18120a;
  background: var(--gold);
}

.admin-event-meta .status-private {
  color: var(--text);
  background: rgba(186, 86, 54, 0.45);
}

.button.danger {
  border-color: rgba(186, 86, 54, 0.5);
  color: #ffc6b6;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(-0.4%);
  }

  to {
    transform: scale(1.07) translateX(0.8%);
  }
}

@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalPulse {
  from {
    transform: scaleY(0.28);
  }

  to {
    transform: scaleY(1);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
    background: rgba(17, 16, 13, 0.9);
    backdrop-filter: blur(12px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(17, 16, 13, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
    padding-top: 100px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 16, 13, 0.22) 0%, rgba(17, 16, 13, 0.72) 42%, rgba(17, 16, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(17, 16, 13, 0.52), rgba(17, 16, 13, 0.2));
  }

  .intro,
  .event-audio,
  .schedule,
  .equipment,
  .music,
  .video-section,
  .contact,
  .legal {
    grid-template-columns: 1fr;
  }

  .video-direct-link {
    grid-column: auto;
  }

  .schedule-heading {
    position: static;
  }

  .admin-hero,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-fields {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 280px;
  }

  .service-icon {
    margin-bottom: 48px;
  }

  .hero-equalizer {
    display: none;
  }

  .event-equalizer {
    position: static;
    margin-top: 24px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-groups {
    grid-template-columns: 1fr;
  }

  .music-image img {
    aspect-ratio: 16 / 10;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-banner-actions {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-date {
    width: 96px;
  }

  .process-steps article {
    min-height: 240px;
  }

  .process-steps span {
    margin-bottom: 34px;
  }

  .equipment-showcase img {
    aspect-ratio: 4 / 3;
  }

  .privacy-banner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-banner-actions a,
  .privacy-banner-actions .button {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image,
  .service:hover,
  .service:hover img,
  .event-list article:hover,
  .process-steps article:hover,
  .equipment-tags span:hover,
  .equipment-groups article:hover,
  .music-image:hover img,
  .instrument:hover {
    transform: none;
  }
}
