:root {
  --ink: #10110f;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d8;
  --lime: #c9ff3d;
  --lime-dark: #9ed51a;
  --purple: #5d35ff;
  --line: rgba(16, 17, 15, 0.17);
  --muted: #686961;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 0 rgba(11, 9, 11, 0.22));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
}

.main-nav a:not(.nav-cta) {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px 7vw 80px;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 45%, rgba(93, 53, 255, 0.34), transparent 27%),
    linear-gradient(120deg, #11130f 0%, #171914 60%, #10110f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 6px;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 58vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: #55574f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime-dark);
}

.hero .eyebrow,
.eyebrow.light {
  color: rgba(244, 241, 233, 0.55);
}

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

h1,
h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(68px, 8.5vw, 144px);
  font-weight: 800;
}

h1 em,
h2 em {
  color: var(--lime);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.hero-intro {
  width: min(470px, 100%);
  margin-bottom: 32px;
  color: rgba(244, 241, 233, 0.65);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: #d5ff66;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 241, 233, 0.25);
  font-size: 12px;
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -2vw;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  transform: translateY(-49%);
}

.record {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 8px, rgba(255, 255, 255, 0.04) 9px 10px),
    radial-gradient(circle, #282b23 0 32%, #141512 32.3% 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  animation: spin 22s linear infinite;
}

.record-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 30%;
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  text-align: center;
  transform: translate(-50%, -50%);
}

.record-center span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.record-center small {
  margin-top: 7px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.record-line {
  position: absolute;
  border: 1px solid rgba(201, 255, 61, 0.18);
  border-radius: 50%;
}

.line-one {
  inset: 20%;
}

.line-two {
  inset: 39%;
}

.event-ticket {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8%;
  left: 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(20, 21, 18, 0.65);
  backdrop-filter: blur(14px);
}

.event-ticket div {
  display: grid;
}

.event-ticket span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-ticket strong {
  margin-top: 4px;
  font-size: 14px;
}

.event-ticket p {
  margin: 0;
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
}

.hero-footer {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 24px;
  left: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 241, 233, 0.35);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-footer p {
  margin: 0;
}

.scroll-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-note span {
  width: 32px;
  height: 1px;
  background: rgba(244, 241, 233, 0.25);
}

.hero-rings {
  position: absolute;
  z-index: 1;
  inset: -20%;
  overflow: hidden;
  pointer-events: none;
}

.hero-ring-disc {
  position: absolute;
  top: 54%;
  left: 47%;
  width: 128vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 9px,
    rgba(106, 0, 69, 0.105) 10px 10.8px,
    transparent 11px 18px,
    rgba(255, 255, 255, 0.065) 19px 19.6px,
    transparent 20px 28px
  );
  filter: blur(0.15px);
  opacity: 0.82;
  will-change: transform;
}

.hero-ring-disc::before {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at 48% 52%,
    transparent 0 23px,
    rgba(103, 0, 67, 0.1) 24px 25px,
    transparent 26px 48px
  );
  content: "";
  transform: scaleX(1.025) skewX(-1deg);
  animation: groove-wave-one 6s ease-in-out infinite alternate;
  opacity: 0.6;
}

.hero-ring-disc::after {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at 52% 48%,
    transparent 0 37px,
    rgba(255, 255, 255, 0.08) 38px 38.7px,
    transparent 39px 67px
  );
  content: "";
  transform: scaleX(0.99) skewX(1deg);
  animation: groove-wave-two 8s ease-in-out infinite alternate;
  opacity: 0.55;
}

.ring-disc-one {
  animation: vinyl-rings-one 44s linear infinite;
}

html[data-theme="dark"] .hero-ring-disc {
  background: repeating-radial-gradient(
    circle,
    transparent 0 9px,
    rgba(65, 0, 42, 0.14) 10px 10.8px,
    transparent 11px 18px,
    rgba(255, 255, 255, 0.08) 19px 19.6px,
    transparent 20px 28px
  );
}

.section {
  padding: 110px 7vw;
}

.section-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.7fr 2.4fr 1.1fr;
  gap: 6vw;
}

.intro-copy h2,
.section-heading h2,
.contact-intro h2 {
  margin-bottom: 34px;
  font-size: clamp(52px, 6vw, 95px);
  font-weight: 800;
}

.intro-copy h2 em,
.pricing-section h2 em,
.contact-section h2 em {
  color: var(--purple);
}

.large-copy {
  max-width: 650px;
  color: #575950;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.stats {
  display: flex;
  gap: 60px;
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.stats div {
  display: grid;
}

.stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  letter-spacing: -0.06em;
}

.stats span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.manifesto-card {
  align-self: end;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--purple);
  transform: rotate(2deg);
}

.manifesto-card > span {
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.65;
}

.manifesto-card p {
  margin: 45px 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.waveform {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 4px;
}

.waveform i {
  width: 3px;
  height: 50%;
  border-radius: 4px;
  background: var(--lime);
}

.waveform i:nth-child(3n) {
  height: 100%;
}

.waveform i:nth-child(4n) {
  height: 25%;
}

.waveform i:nth-child(5n) {
  height: 75%;
}

.agenda-section,
.gallery-section {
  color: var(--paper);
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tabs button {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-tabs button.active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.event-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-row {
  display: grid;
  grid-template-columns: 100px 76px 1.1fr 2.1fr 0.9fr 40px;
  align-items: center;
  gap: 30px;
  min-height: 130px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.event-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.event-row.hidden {
  display: none;
}

.event-image {
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  overflow: hidden;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  background: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.05em;
  transform: rotate(-3deg);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.event-date strong {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.event-date span,
.event-type,
.event-time {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-name h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.04em;
}

.event-name p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.event-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.event-socials a {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.event-socials a:hover {
  border-color: #ff64cf;
  color: var(--ink);
  background: #ff64cf;
}

.event-row > a {
  display: grid;
  width: 36px;
  height: 36px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 12px;
}

.pricing-section {
  background: var(--paper-deep);
}

.section-heading.compact {
  align-items: end;
}

.section-heading.compact > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.32);
}

.price-card.featured {
  color: var(--paper);
  background: var(--ink);
}

.recommended {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 12px;
  border-radius: 0 0 6px 6px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-top span {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.price-top p {
  max-width: 240px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.featured .price-top p {
  color: rgba(255, 255, 255, 0.45);
}

.price {
  display: grid;
  margin: 58px 0 32px;
}

.price strong {
  font-family: "Manrope", sans-serif;
  font-size: 66px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
  font-size: 11px;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--purple);
  content: "✓";
}

.featured li {
  color: rgba(255, 255, 255, 0.55);
}

.featured li::before {
  color: var(--lime);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.gallery-section .section-heading {
  margin-bottom: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: #222;
}

.gallery-main {
  grid-row: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65));
  content: "";
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: transform 600ms ease, filter 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: grayscale(0%) contrast(1);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-item figcaption span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-item figcaption strong {
  color: var(--lime);
  font-size: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: start;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.song-request-logo {
  width: min(100%, 390px);
  height: auto;
  margin: -46px 0 -48px;
  filter: drop-shadow(10px 12px 0 rgba(255, 47, 186, 0.16));
  transform: rotate(-1.5deg);
  transform-origin: center;
  transition:
    filter 500ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .contact-section:hover .song-request-logo {
    filter: drop-shadow(14px 16px 0 rgba(255, 47, 186, 0.24));
    transform: translateY(-4px) rotate(-2.5deg) scale(1.025);
  }
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 50px;
  font-size: 12px;
}

.contact-details a {
  font-weight: 600;
}

.contact-details strong {
  color: #ff2fba;
  font-size: 12px;
  font-weight: 700;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 26px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.song-request-form label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.song-request-form label > span small {
  padding: 4px 6px;
  border: 1px solid currentColor;
  color: #ff2fba;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  background: transparent;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
}

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

.contact-delivery-note {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--purple);
  font-size: 11px;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  color: #8b004c;
  font-weight: 700;
}

footer {
  display: grid;
  gap: 42px;
  padding: 72px 7vw 30px;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 47, 186, 0.2), transparent 25%),
    var(--ink);
}

.footer-contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-contact-heading > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact-heading > p span {
  width: 30px;
  height: 2px;
  background: #ff64cf;
}

.footer-contact-heading > a {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 65px);
}

.footer-contact-heading strong {
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 7vw, 110px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.footer-arrows {
  display: flex;
  gap: 2px;
  color: #ff64cf;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
}

.footer-arrows i {
  font-style: normal;
  animation: footer-arrow-run 1.4s ease-in-out infinite;
}

.footer-arrows i:nth-child(2) {
  animation-delay: 120ms;
}

.footer-arrows i:nth-child(3) {
  animation-delay: 240ms;
}

.footer-contact-heading > a:hover strong {
  color: #ff64cf;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-links a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.footer-links a:hover {
  border-color: #ff64cf;
  background: rgba(255, 100, 207, 0.1);
  transform: translateY(-5px);
}

.footer-links svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(255, 100, 207, 0.5);
  color: #ff64cf;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-brand-icon {
  display: block;
  object-fit: contain;
}

.footer-links .social-brand-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.footer-links span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.footer-links small {
  color: #ff64cf;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 500;
}

.footer-links a > i {
  color: #ff64cf;
  font-size: 17px;
  font-style: normal;
  transition: transform 250ms ease;
}

.footer-links a:hover > i {
  transform: translate(3px, -3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes footer-arrow-run {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-5px);
  }

  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

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

@media (max-width: 980px) {
  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: 82%;
  }

  .hero-visual {
    top: auto;
    right: -8%;
    bottom: 20px;
    width: 58vw;
    transform: none;
  }

  .intro-section {
    grid-template-columns: 1fr 2.5fr;
  }

  .manifesto-card {
    grid-column: 2;
    max-width: 400px;
  }

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

  .price-card.featured {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    padding: 17px 20px;
    background: rgba(16, 17, 15, 0.85);
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 60px 12vw;
    background: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    transform: translateX(100%);
    transition: transform 250ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .nav-cta {
    margin-top: 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
  }

  .hero {
    min-height: 840px;
    padding: 135px 20px 60px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(55px, 18vw, 85px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    right: -20%;
    bottom: 15px;
    width: 85vw;
  }

  .event-ticket {
    right: 12%;
    left: -4%;
  }

  .hero-footer {
    display: none;
  }

  .section {
    padding: 75px 20px;
  }

  .intro-section {
    display: block;
  }

  .section-label {
    margin-bottom: 35px;
  }

  .intro-copy h2,
  .section-heading h2,
  .contact-intro h2 {
    font-size: clamp(47px, 14vw, 70px);
  }

  .large-copy {
    font-size: 17px;
  }

  .stats {
    justify-content: space-between;
    gap: 15px;
    margin: 45px 0;
  }

  .stats strong {
    font-size: 27px;
  }

  .manifesto-card {
    transform: none;
  }

  .section-heading {
    display: block;
  }

  .filter-tabs {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .event-row {
    grid-template-columns: 70px 60px 1fr 35px;
    gap: 14px;
    min-height: 110px;
  }

  .event-image {
    width: 56px;
  }

  .event-type,
  .event-time {
    display: none;
  }

  .event-date strong {
    font-size: 34px;
  }

  .pricing-grid {
    display: block;
  }

  .price-card {
    min-height: 430px;
    margin-top: 14px;
  }

  .section-heading.compact > p {
    margin-top: 25px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 230px;
  }

  .gallery-main {
    grid-column: span 2;
    grid-row: auto;
  }

  .contact-section {
    display: block;
  }

  .contact-form {
    margin-top: 50px;
    padding: 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding: 35px 20px;
  }
}

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

/* BPM pink identity */
:root {
  --ink: #0b090b;
  --paper: #fff9fc;
  --paper-deep: #ffd9ef;
  --lime: #ff2fba;
  --lime-dark: #e10091;
  --purple: #ff2fba;
  --line: rgba(11, 9, 11, 0.18);
  --muted: #695c65;
}

::selection {
  color: #fff;
  background: var(--ink);
}

.site-header {
  color: var(--ink);
}

.nav-cta {
  border-color: rgba(11, 9, 11, 0.38);
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  color: var(--ink);
  background: #ff64cf;
}

.hero::before {
  background: none;
}

.hero-content {
  width: min(700px, 55vw);
}

.hero .eyebrow {
  color: rgba(11, 9, 11, 0.65);
}

.eyebrow span {
  background: var(--ink);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(76px, 9vw, 150px);
  line-height: 0.87;
  text-transform: uppercase;
}

h1 em {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-shadow: 5px 5px 0 #fff;
}

.hero-intro {
  color: rgba(11, 9, 11, 0.66);
  font-weight: 500;
}

.hero .button-primary {
  color: #fff;
  background: var(--ink);
}

.hero .button-primary:hover {
  color: var(--ink);
  background: #fff;
}

.hero .text-link {
  border-color: rgba(11, 9, 11, 0.32);
}

.hero-visual {
  top: 53%;
  right: 2vw;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.album-stack {
  position: absolute;
  z-index: 2;
  top: 7%;
  left: 3%;
  width: 75%;
  aspect-ratio: 1;
  isolation: isolate;
}

.album-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  color: #fff;
  background: var(--ink);
  box-shadow: 14px 15px 0 rgba(11, 9, 11, 0.92);
  backface-visibility: hidden;
  transform-origin: center;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.album-cover > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: translateZ(0);
}

.bpm-vinyl {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 42%;
  width: 88%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.bpm-vinyl-disc {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle, #080708 0 2.2%, #fff 2.4% 3.3%, #ff2fba 3.6% 15%, #0b090b 15.4% 18%, transparent 18.4%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px 6px),
    conic-gradient(from 18deg, #050405, #21151e 11%, #070607 23%, #28101f 37%, #050505 51%, #1e1019 65%, #060506 81%, #21141d);
  box-shadow: 12px 14px 0 rgba(11, 9, 11, 0.9), 0 28px 45px rgba(11, 9, 11, 0.25);
  animation: bpm-vinyl-spin 32s linear infinite;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.bpm-vinyl-disc::after {
  content: "";
  position: absolute;
  inset: 3%;
  border-radius: inherit;
  background: conic-gradient(from 120deg, transparent 0 34%, rgba(255, 255, 255, 0.14) 40%, transparent 47% 100%);
  opacity: 0.62;
  pointer-events: none;
}

.bpm-vinyl-label {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 24%;
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: #ff64cf;
  font-size: clamp(9px, 1vw, 15px);
  line-height: 0.9;
  text-align: center;
  transform: translate(-50%, -50%);
}

.bpm-vinyl-label strong,
.bpm-vinyl-label small {
  display: block;
}

.bpm-vinyl-label strong {
  font-weight: 900;
  letter-spacing: -0.08em;
}

.bpm-vinyl-label small {
  margin-top: 4px;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.identity-frame {
  z-index: 2;
  aspect-ratio: 1;
  background: #fa53c7;
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(2.5deg);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.identity-frame:hover {
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(2.5deg);
}

.identity-frame img {
  height: 100%;
  object-fit: cover;
}

.parental-advisory {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 18px;
  display: grid;
  width: clamp(78px, 24%, 112px);
  aspect-ratio: 1.58;
  grid-template-rows: 28% 44% 28%;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font-family: Impact, "Arial Narrow", sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.parental-advisory span {
  display: grid;
  place-items: center;
  padding-left: 0.24em;
  font-weight: 900;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.parental-advisory span:first-child {
  font-size: clamp(7px, 0.7vw, 10px);
}

.parental-advisory span:last-child {
  font-size: clamp(6px, 0.62vw, 9px);
}

.parental-advisory strong {
  display: grid;
  place-items: center;
  padding-left: 0.1em;
  border-block: 2px solid var(--ink);
  color: var(--ink);
  background: #fff;
  font-size: clamp(15px, 1.55vw, 24px);
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .album-stack:hover .bpm-vinyl {
    transform: translate(2.5%, -50%);
  }

  .album-stack:hover .album-bpm {
    box-shadow: 18px 18px 0 var(--ink);
    transform: translate(0.75%, 0.5%) rotate(2.75deg);
  }
}

@keyframes bpm-vinyl-spin {
  to {
    transform: translateZ(0) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpm-vinyl .bpm-vinyl-disc {
    animation-duration: 32s !important;
    animation-iteration-count: infinite !important;
  }

  .album-stack .bpm-vinyl {
    transition-duration: 820ms !important;
  }

  .album-stack .album-bpm {
    transition-duration: 720ms !important;
  }
}

.event-ticket {
  z-index: 10;
  right: -3%;
  bottom: 3%;
  left: 20%;
  border: 3px solid var(--ink);
  border-radius: 0;
  color: #fff;
  background: var(--ink);
  box-shadow: 7px 7px 0 #fff;
  backdrop-filter: none;
  transform: rotate(-2deg);
}

.event-ticket span {
  color: rgba(255, 255, 255, 0.55);
}

.event-ticket p {
  color: #ff64cf;
}

.hero-footer {
  color: rgba(11, 9, 11, 0.55);
}

.scroll-note span {
  background: rgba(11, 9, 11, 0.45);
}

.sound-ticker {
  overflow: hidden;
  border-block: 3px solid var(--ink);
  color: #fff;
  background: var(--ink);
  transform: rotate(-1deg) scale(1.02);
}

.sound-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 11px 0;
  animation: ticker 34s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.sound-ticker-group {
  display: flex;
  box-sizing: border-box;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  padding-right: 28px;
}

.sound-ticker span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sound-ticker i {
  color: #ff64cf;
  font-style: normal;
}

.sound-ticker .ticker-partner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ticker-partner b {
  color: #ff64cf;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.sound-ticker .ticker-logo {
  display: inline-grid;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}

.ticker-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sound-ticker .ticker-logo-redbull {
  width: 72px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
}

.ticker-logo-redbull img {
  width: 70px;
  height: 38px;
}

.sound-ticker .ticker-logo-quies {
  width: 78px;
}

.ticker-logo-quies img {
  width: 76px;
  height: 28px;
  filter: grayscale(1) brightness(0) invert(1);
}

.intro-section {
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 47, 186, 0.09) 0 18%, transparent 18.4%),
    var(--paper);
}

.intro-copy h2 em,
.pricing-section h2 em,
.contact-section h2 em {
  color: var(--lime);
}

.stats {
  border-color: rgba(255, 47, 186, 0.42);
}

.stats strong {
  color: var(--lime);
}

.manifesto-card {
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: #ff64cf;
  box-shadow: 10px 10px 0 var(--ink);
}

.waveform i {
  background: #fff;
}

.agenda-section {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 47, 186, 0.18) 0 18%, transparent 18.5%),
    var(--ink);
}

.agenda-section h2 em,
.gallery-section h2 em {
  color: #ff64cf;
}

.filter-tabs button.active {
  border-color: #ff64cf;
  color: var(--ink);
  background: #ff64cf;
}

.event-date strong {
  color: #ff64cf;
}

.event-row > a {
  border-color: #ff64cf;
  color: #ff64cf;
}

.event-row:hover {
  background: rgba(255, 47, 186, 0.08);
}

.pricing-section {
  background:
    radial-gradient(circle at 10% 80%, transparent 0 10%, rgba(255, 47, 186, 0.12) 10.5% 11.5%, transparent 12% 20%, rgba(255, 47, 186, 0.09) 20.5% 21.5%, transparent 22%),
    #ffd9ef;
}

.price-card {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 7px 7px 0 rgba(11, 9, 11, 0.16);
}

.price-card.featured {
  background: var(--ink);
  box-shadow: 9px 9px 0 #ff2fba;
  transform: translateY(-14px);
}

.recommended {
  border-radius: 0;
  color: var(--ink);
  background: #ff64cf;
}

.price-card li::before {
  color: var(--lime);
}

.featured li::before {
  color: #ff64cf;
}

.featured .button-primary {
  color: var(--ink);
  background: #ff64cf;
}

.gallery-section {
  background:
    linear-gradient(rgba(11, 9, 11, 0.87), rgba(11, 9, 11, 0.87)),
    url("assets/bpm-identity.png") center / cover fixed,
    var(--ink);
}

.gallery-item {
  border: 2px solid #ff64cf;
  border-radius: 0;
}

.gallery-item::after {
  background: linear-gradient(180deg, rgba(255, 47, 186, 0.08), rgba(11, 9, 11, 0.8));
}

.gallery-item figcaption strong {
  color: #ff64cf;
}

.contact-section {
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 47, 186, 0.1) 0 13%, transparent 13.5%),
    var(--paper);
}

.contact-form {
  border: 3px solid var(--ink);
  border-radius: 0;
  background: #ff64cf;
  box-shadow: 10px 10px 0 var(--ink);
}

.contact-form label span,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(11, 9, 11, 0.55);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(11, 9, 11, 0.35);
}

.contact-form .button-primary {
  color: #fff;
  background: var(--ink);
}

footer {
  border-top: 3px solid #ff64cf;
}

.footer-brand .brand-logo {
  filter: drop-shadow(2px 2px 0 #ff2fba);
}

@keyframes ticker {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sound-ticker-track {
    animation-duration: 34s !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 980px) {
  .hero-content {
    width: 72%;
  }

  .hero-visual {
    right: 0;
    bottom: 15px;
    width: 60vw;
  }
}

@media (max-width: 760px) {
  .site-header {
    color: #fff;
    background: rgba(11, 9, 11, 0.9);
  }

  .site-header .brand-logo {
    filter: drop-shadow(2px 2px 0 #ff2fba);
  }

  .hero {
    min-height: 880px;
    padding-top: 125px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(55px, 18vw, 80px);
  }

  h1 em {
    text-shadow: 3px 3px 0 #fff;
  }

  .hero-visual {
    right: -4%;
    bottom: 22px;
    width: 78vw;
  }

  .identity-frame {
    box-shadow: 10px 10px 0 var(--ink);
  }

  .album-cover {
    border-width: 2px;
    box-shadow: 8px 9px 0 rgba(11, 9, 11, 0.9);
  }

  .bpm-vinyl-disc {
    border-width: 2px;
    box-shadow: 8px 9px 0 rgba(11, 9, 11, 0.9), 0 18px 28px rgba(11, 9, 11, 0.2);
  }

  .parental-advisory {
    bottom: 14px;
    left: 12px;
    width: 78px;
  }

  .event-ticket {
    right: 7%;
    left: -10%;
    padding: 12px 14px;
  }

  .sound-ticker-track {
    padding: 10px 0;
  }

  .sound-ticker-group {
    gap: 20px;
    padding-right: 20px;
  }

  .price-card.featured {
    transform: none;
  }
}

body.modal-open {
  overflow: hidden;
}

/* Keep the Admin GPU-light: the public page is fully covered while the panel is open. */
body.modal-open > .site-header,
body.modal-open > main,
body.modal-open > footer {
  visibility: hidden;
  pointer-events: none;
}

body.modal-open > .site-header *,
body.modal-open > main *,
body.modal-open > footer * {
  animation-play-state: paused !important;
}

/* One lightweight glare wave, painted only on independent text segments. */
h1,
h2,
h1 em,
h2 em {
  --wave-base: var(--ink);
  --wave-color: #ff2fba;
  --wave-highlight: #fff;
  color: var(--wave-base);
}

.title-wave-segment {
  display: inline-block;
  max-width: 100%;
  color: transparent;
  background-image: linear-gradient(
    105deg,
    var(--wave-base) 0%,
    var(--wave-base) 38%,
    var(--wave-color) 46%,
    var(--wave-highlight) 50%,
    var(--wave-color) 54%,
    var(--wave-base) 62%,
    var(--wave-base) 100%
  );
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-clip: text;
  box-decoration-break: clone;
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-text-fill-color: transparent;
}

h1 em,
h2 em {
  --wave-base: #ff2fba;
  --wave-color: #ff9ade;
  --wave-highlight: #e10091;
}

.hero h1 em {
  --wave-base: var(--ink);
  --wave-color: #ff2fba;
  --wave-highlight: #fff;
}

.agenda-section h2,
.gallery-section h2 {
  --wave-base: var(--paper);
  --wave-color: #ff2fba;
}

.agenda-section h2 em,
.gallery-section h2 em {
  --wave-base: #ff64cf;
}

.admin-login h2 em {
  --wave-base: var(--ink);
  --wave-color: #ff2fba;
  --wave-highlight: #fff;
}

h1.title-glare-active > .title-wave-segment,
h2.title-glare-active > .title-wave-segment {
  animation: title-glare-wave 900ms cubic-bezier(0.35, 0, 0.2, 1) 140ms 1 both;
}

.bpm-title {
  color: var(--ink) !important;
  background-image: none !important;
  -webkit-text-fill-color: var(--ink) !important;
}

@keyframes title-glare-wave {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}

/* Keep only this requested wave when the system reduces other animations. */
@media (prefers-reduced-motion: reduce) {
  h1.title-glare-active > .title-wave-segment,
  h2.title-glare-active > .title-wave-segment {
    animation-duration: 900ms !important;
    animation-delay: 140ms !important;
    animation-iteration-count: 1 !important;
  }
}

[hidden] {
  display: none !important;
}

.admin-nav-button {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #ff64cf;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.admin-nav-button:hover {
  color: #fff;
  background: var(--ink);
}

.main-nav a > span,
.admin-nav-button > span {
  --nav-wave-base: currentColor;
  --nav-wave-color: #fff;
  display: inline-block;
  background-image: linear-gradient(
    105deg,
    var(--nav-wave-base) 0%,
    var(--nav-wave-base) 37%,
    var(--nav-wave-color) 46%,
    #ff2fba 50%,
    var(--nav-wave-color) 54%,
    var(--nav-wave-base) 63%,
    var(--nav-wave-base) 100%
  );
  background-position: 100% 50%;
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav a:not(.nav-cta) > span {
  --nav-wave-color: #fff;
}

.nav-cta > span,
.admin-nav-button > span {
  --nav-wave-color: #ff2fba;
}

.main-nav a:hover > span,
.admin-nav-button:hover > span {
  animation: nav-color-wave 700ms cubic-bezier(0.5, 0, 0.25, 1);
}

@keyframes nav-color-wave {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}

/* Selected interactive moments */
@media (hover: hover) and (pointer: fine) {
  .manifesto-card {
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
  }

  .manifesto-card:hover {
    box-shadow: 16px 16px 0 var(--ink);
    transform: rotate(-1deg) translateY(-7px);
  }

  .manifesto-card:hover .waveform i {
    animation: waveform-dance 520ms ease-in-out infinite alternate;
  }

  .manifesto-card:hover .waveform i:nth-child(2n) {
    animation-delay: -160ms;
  }

  .manifesto-card:hover .waveform i:nth-child(3n) {
    animation-delay: -320ms;
  }

  .manifesto-card:hover .waveform i:nth-child(5n) {
    animation-delay: -430ms;
  }

  .event-row {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .menu-open .site-header {
    background: rgba(12, 8, 11, 0.22);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .event-row::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 47, 186, 0.03),
      rgba(255, 47, 186, 0.2) 48%,
      rgba(255, 100, 207, 0.05)
    );
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .event-row > * {
    position: relative;
    z-index: 1;
  }

  .event-row:hover::before {
    transform: scaleX(1);
  }

  .event-row .event-date,
  .event-row .event-image,
  .event-row .event-name,
  .event-row > a {
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .event-row:hover .event-date {
    transform: translateX(7px) scale(1.06);
  }

  .event-row:hover .event-name {
    transform: translateX(12px);
  }

  .event-row:hover .event-image {
    transform: rotate(2deg) scale(1.06);
  }

  .event-row:hover > a {
    color: var(--ink);
    background: #ff64cf;
    box-shadow: 0 0 0 7px rgba(255, 47, 186, 0.12);
    transform: rotate(45deg) scale(1.08);
  }

  .price-card {
    overflow: hidden;
    isolation: isolate;
    transition: transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 380ms ease;
  }

  .price-card::after {
    position: absolute;
    z-index: 0;
    width: 170%;
    height: 75%;
    border: 2px solid rgba(255, 47, 186, 0.26);
    border-radius: 50%;
    background: radial-gradient(
      ellipse,
      rgba(255, 47, 186, 0.14) 0 18%,
      transparent 19% 29%,
      rgba(255, 47, 186, 0.1) 30% 31%,
      transparent 32% 100%
    );
    content: "";
    pointer-events: none;
    right: -145%;
    bottom: -45%;
    transform: rotate(-12deg);
    transition: right 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .price-card > * {
    position: relative;
    z-index: 1;
  }

  .price-card:hover {
    box-shadow: 14px 16px 0 rgba(11, 9, 11, 0.22);
    transform: translateY(-12px) rotate(-0.5deg);
  }

  .price-card.featured:hover {
    box-shadow: 15px 17px 0 #ff2fba;
    transform: translateY(-25px) rotate(0.5deg);
  }

  .price-card:hover::after {
    right: -25%;
  }

  .price-card .price strong,
  .price-card .button {
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .price-card:hover .price strong {
    transform: translateX(6px) scale(1.03);
  }

  .price-card:hover .button {
    transform: translateY(-3px);
  }
}

@keyframes waveform-dance {
  0% {
    height: 18%;
    transform: translateY(2px);
  }

  100% {
    height: 100%;
    transform: translateY(-2px);
  }
}

@keyframes vinyl-rings-one {
  from {
    transform: translate(-50%, -50%) rotateX(73deg) rotateY(-4deg) rotateZ(0deg) scale(1.04);
  }

  50% {
    transform: translate(-49.5%, -50.5%) rotateX(71deg) rotateY(3deg) rotateZ(180deg) scale(1.06);
  }

  to {
    transform: translate(-50%, -50%) rotateX(73deg) rotateY(-4deg) rotateZ(360deg) scale(1.04);
  }
}

@keyframes groove-wave-one {
  from {
    border-radius: 47% 53% 49% 51%;
    transform: scaleX(1.015) scaleY(0.995) skewX(-0.8deg);
  }

  to {
    border-radius: 53% 47% 51% 49%;
    transform: scaleX(1.035) scaleY(1.008) skewX(0.8deg);
  }
}

@keyframes groove-wave-two {
  from {
    border-radius: 52% 48% 46% 54%;
    transform: scaleX(1.01) scaleY(1.004) skewX(0.6deg);
  }

  to {
    border-radius: 48% 52% 54% 46%;
    transform: scaleX(0.985) scaleY(0.994) skewX(-0.6deg);
  }
}

.empty-events {
  margin: 0;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.gallery-item:nth-child(1) img {
  object-position: center 52%;
}

.gallery-item:nth-child(2) img {
  object-position: center 42%;
}

.gallery-item:nth-child(3) img {
  object-position: center 50%;
}

.admin-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  pointer-events: none;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: visibility 220ms ease, opacity 220ms ease;
}

.admin-modal.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 9, 11, 0.97);
}

.admin-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 #ff2fba;
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.admin-modal.open .admin-panel {
  transform: translateY(0);
}

.admin-close {
  position: sticky;
  z-index: 3;
  top: 16px;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 16px 16px -58px 0;
  place-content: center;
  border: 2px solid var(--ink);
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.admin-login {
  position: relative;
  max-width: 520px;
  min-height: 680px;
  padding: 70px 65px;
  background:
    radial-gradient(circle at 100% 100%, rgba(225, 0, 145, 0.35) 0 24%, transparent 24.5%),
    #ff64cf;
}

.admin-login::after {
  position: absolute;
  top: 0;
  left: 100%;
  width: min(597px, calc(1120px - 520px));
  height: 100%;
  background:
    linear-gradient(rgba(11, 9, 11, 0.22), rgba(11, 9, 11, 0.22)),
    url("assets/gallery-dj.jpg") center / cover;
  content: "";
}

.admin-logo {
  width: 75px;
  height: 100px;
  margin-bottom: 40px;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0 var(--ink));
}

.admin-login h2,
.admin-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
}

.admin-login h2 em {
  color: var(--ink);
  font-style: normal;
  text-shadow: 3px 3px 0 #fff;
}

.admin-helper {
  color: rgba(11, 9, 11, 0.62);
  font-size: 13px;
}

.admin-form,
.event-editor {
  display: grid;
  gap: 20px;
}

.admin-form {
  margin-top: 35px;
}

.admin-form label,
.event-editor label {
  display: grid;
  gap: 7px;
}

.admin-form label > span,
.event-editor label > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admin-form input,
.event-editor input,
.event-editor select {
  min-width: 0;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
}

.event-image-field small {
  color: var(--muted);
  font-size: 9px;
}

.event-image-preview {
  width: min(180px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 5px 5px 0 rgba(11, 9, 11, 0.22);
}

.event-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-form input:focus,
.event-editor input:focus,
.event-editor select:focus {
  box-shadow: 4px 4px 0 var(--ink);
}

.admin-form .button {
  margin-top: 8px;
  color: #fff;
  background: var(--ink);
}

.login-error {
  min-height: 18px;
  margin: 0;
  color: #8b004c;
  font-size: 11px;
  font-weight: 700;
}

.demo-credentials {
  margin: 22px 0 0;
  font-size: 10px;
}

.admin-dashboard {
  min-height: 680px;
  padding: 55px;
  background: #fff9fc;
}

.admin-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  padding-right: 55px;
}

.admin-heading h2 {
  color: var(--wave-base, var(--ink));
}

.admin-heading .eyebrow {
  margin-bottom: 18px;
}

.admin-logout {
  padding: 10px 13px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-heading-actions {
  display: flex;
  gap: 8px;
}

.admin-exit,
.admin-logout {
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-exit {
  color: #fff;
  background: var(--ink);
}

.event-editor {
  padding: 25px;
  border: 3px solid var(--ink);
  background: #ff64cf;
  box-shadow: 8px 8px 0 var(--ink);
}

.event-media-status {
  display: none;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.event-media-status.warning,
.event-media-status.ready {
  display: block;
}

.event-media-status.warning {
  color: #fff;
  background: #8b004c;
}

.event-media-status.ready {
  color: var(--ink);
  background: var(--lime);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.editor-wide {
  grid-column: span 2;
}

.editor-actions {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.event-editor .button-primary {
  color: #fff;
  background: var(--ink);
}

.event-editor .button-secondary {
  background: rgba(255, 255, 255, 0.35);
}

.admin-event-list {
  display: grid;
  gap: 10px;
  margin-top: 45px;
}

.admin-messages {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.admin-messages-heading {
  align-items: center;
  margin-bottom: 24px;
}

.admin-message-heading-actions {
  display: flex;
  gap: 8px;
}

.admin-refresh-messages {
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-message-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.admin-message-tabs button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-message-tabs button.active {
  color: #fff;
  background: var(--ink);
}

.admin-message-feature-status {
  display: none;
  margin: 0 0 14px;
  padding: 11px 13px;
  color: #fff;
  background: #8b004c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.admin-message-feature-status.warning {
  display: block;
}

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

.admin-message-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) auto;
  gap: 12px 24px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  content-visibility: auto;
  contain-intrinsic-size: 0 170px;
}

.admin-message-card.is-starred {
  border-color: #ff2fba;
  background: rgba(255, 100, 207, 0.13);
  box-shadow: inset 5px 0 0 #ff2fba;
}

.admin-message-card.is-trashed {
  opacity: 0.74;
}

.admin-message-sender {
  display: grid;
  gap: 4px;
}

.admin-message-kind {
  width: fit-content;
  padding: 4px 7px;
  color: var(--ink);
  background: #ff64cf;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.admin-message-card.is-song-request {
  box-shadow: inset 4px 0 0 #ff2fba;
}

.admin-message-card .admin-song-request {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  white-space: normal;
}

.admin-song-request span {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid var(--line);
}

.admin-song-request small {
  color: #ff2fba;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-song-request strong {
  font-size: 14px;
  line-height: 1.35;
}

.admin-message-card a,
.admin-message-card time,
.admin-message-status {
  color: var(--muted);
}

.admin-message-card time {
  font-size: 0.78rem;
  text-align: right;
}

.admin-message-card p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  line-height: 1.65;
  white-space: pre-wrap;
}

.admin-message-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 4px;
}

.admin-message-actions button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-message-actions .message-star.active {
  border-color: #ff2fba;
  color: var(--ink);
  background: #ff64cf;
}

.admin-message-actions .message-trash {
  margin-left: auto;
  color: #fff;
  background: var(--ink);
}

.admin-message-actions .message-restore {
  color: #fff;
  background: var(--ink);
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.admin-event-card {
  display: grid;
  grid-template-columns: 75px 64px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 0 100px;
}

.admin-event-image {
  display: grid;
  width: 60px;
  aspect-ratio: 1;
  overflow: hidden;
  place-content: center;
  color: #fff;
  background: #ff2fba;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.admin-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-event-date {
  display: grid;
  padding: 10px;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.admin-event-date strong {
  color: #ff64cf;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.admin-event-date span,
.admin-event-copy > span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-event-date span {
  color: #fff;
}

.admin-event-card h3 {
  margin: 3px 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.admin-event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.admin-event-actions {
  display: flex;
  gap: 7px;
}

.admin-event-actions button {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-event-actions button:last-child {
  color: #fff;
  background: var(--ink);
}

@media (max-width: 900px) {
  .admin-login {
    max-width: none;
  }

  .admin-login::after {
    display: none;
  }

  .editor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .admin-nav-button {
    margin-top: 5px;
    border-color: #ff64cf;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
  }

  .main-nav a > span,
  .admin-nav-button > span {
    --nav-wave-base: #fff;
    --nav-wave-color: #ff2fba;
  }

  .admin-modal {
    padding: 10px;
  }

  .admin-panel {
    max-height: calc(100svh - 20px);
    box-shadow: 7px 7px 0 #ff2fba;
  }

  .admin-login,
  .admin-dashboard {
    min-height: 0;
    padding: 70px 22px 30px;
  }

  .admin-login h2,
  .admin-heading h2 {
    font-size: 48px;
  }

  .admin-heading {
    display: block;
    padding-right: 45px;
  }

  .admin-heading-actions {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }

  .admin-heading-actions button {
    flex: 1 1 120px;
  }

  .admin-logout {
    margin-bottom: 0;
  }

  .event-editor {
    padding: 18px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .editor-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .editor-wide {
    grid-column: auto;
  }

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

  .admin-event-card {
    grid-template-columns: 60px 54px 1fr;
    gap: 12px;
  }

  .admin-event-image {
    width: 50px;
  }

  .admin-event-actions {
    grid-column: span 3;
  }
}

/* Theme switcher */
.theme-toggle {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background-color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.theme-toggle:hover {
  background: #fff;
  transform: rotate(12deg) scale(1.06);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  isolation: isolate;
}

.theme-toggle-icon i {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-sun {
  width: 8px;
  height: 8px;
  background: #ff2fba;
  box-shadow:
    0 -8px 0 -2.5px #ff2fba,
    0 8px 0 -2.5px #ff2fba,
    8px 0 0 -2.5px #ff2fba,
    -8px 0 0 -2.5px #ff2fba,
    5.7px 5.7px 0 -2.5px #ff2fba,
    -5.7px -5.7px 0 -2.5px #ff2fba,
    5.7px -5.7px 0 -2.5px #ff2fba,
    -5.7px 5.7px 0 -2.5px #ff2fba;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-130deg) scale(0.25);
}

.theme-toggle-moon {
  width: 19px;
  height: 19px;
  background: #ff2fba;
  -webkit-mask: radial-gradient(circle at 68% 34%, transparent 0 38%, #000 40%);
  mask: radial-gradient(circle at 68% 34%, transparent 0 38%, #000 40%);
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

.theme-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="dark"] .theme-toggle-sun {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

html[data-theme="dark"] .theme-toggle-moon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(130deg) scale(0.25);
}

.theme-toggle-icon::after {
  position: absolute;
  inset: -5px;
  border: 1px solid #ff2fba;
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.theme-toggle.is-theme-changing {
  animation: theme-toggle-button-switch 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle.is-theme-changing .theme-toggle-icon {
  animation: theme-toggle-orbit-switch 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle.is-theme-changing .theme-toggle-icon::after {
  animation: theme-toggle-pulse 760ms ease-out;
}

@keyframes theme-toggle-button-switch {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  38% {
    transform: translateY(1px) scale(0.9);
  }

  68% {
    transform: translateY(-2px) scale(1.07);
  }
}

@keyframes theme-toggle-orbit-switch {
  0% {
    transform: rotate(0deg);
  }

  52% {
    transform: rotate(205deg) scale(0.78);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes theme-toggle-pulse {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }

  38% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle.is-theme-changing,
  .theme-toggle.is-theme-changing .theme-toggle-icon,
  .theme-toggle.is-theme-changing .theme-toggle-icon::after {
    animation-duration: 360ms !important;
  }

  .theme-toggle-icon i {
    transition-duration: 260ms;
  }
}

html[data-theme="dark"] body {
  color: var(--paper);
  background: var(--ink);
}

body,
.intro-section,
.pricing-section,
.contact-section,
.price-card,
.contact-form,
.admin-panel,
.admin-dashboard {
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

html[data-theme="dark"] .intro-section,
html[data-theme="dark"] .contact-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 47, 186, 0.13) 0 16%, transparent 16.5%),
    #0b090b;
}

html[data-theme="dark"] .pricing-section {
  background:
    radial-gradient(circle at 10% 80%, transparent 0 10%, rgba(255, 47, 186, 0.15) 10.5% 11.5%, transparent 12% 20%, rgba(255, 47, 186, 0.1) 20.5% 21.5%, transparent 22%),
    #160f14;
}

html[data-theme="dark"] .intro-copy h2,
html[data-theme="dark"] .pricing-section h2,
html[data-theme="dark"] .contact-section h2,
html[data-theme="dark"] .admin-dashboard h2 {
  --wave-base: var(--paper);
  --wave-color: #ff2fba;
}

html[data-theme="dark"] .large-copy,
html[data-theme="dark"] .section-heading.compact > p,
html[data-theme="dark"] .contact-intro > p:not(.eyebrow),
html[data-theme="dark"] .contact-details span,
html[data-theme="dark"] .section-label,
html[data-theme="dark"] .stats span {
  color: rgba(255, 249, 252, 0.55);
}

html[data-theme="dark"] .stats {
  border-color: rgba(255, 47, 186, 0.35);
}

html[data-theme="dark"] .price-card {
  border-color: rgba(255, 100, 207, 0.55);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 7px 7px 0 rgba(255, 47, 186, 0.22);
}

html[data-theme="dark"] .price-card.featured {
  border-color: #ff2fba;
  background: #050405;
  box-shadow: 9px 9px 0 #ff2fba;
}

html[data-theme="dark"] .price-top p,
html[data-theme="dark"] .price span,
html[data-theme="dark"] .price-card li {
  color: rgba(255, 249, 252, 0.55);
}

html[data-theme="dark"] .button-secondary {
  border-color: rgba(255, 249, 252, 0.28);
  color: var(--paper);
}

html[data-theme="dark"] .contact-details a {
  color: #ff64cf;
}

html[data-theme="dark"] .contact-form {
  border-color: #ff2fba;
  color: var(--paper);
  background: #191216;
  box-shadow: 10px 10px 0 #ff2fba;
}

html[data-theme="dark"] .contact-form label span,
html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
  color: rgba(255, 249, 252, 0.48);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  border-color: rgba(255, 100, 207, 0.38);
  color: var(--paper);
}

html[data-theme="dark"] .contact-form .button-primary {
  color: var(--ink);
  background: #ff64cf;
}

html[data-theme="dark"] .admin-panel,
html[data-theme="dark"] .admin-dashboard {
  color: var(--paper);
  background: #100c0f;
}

html[data-theme="dark"] .admin-dashboard {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 47, 186, 0.12), transparent 25%),
    #100c0f;
}

html[data-theme="dark"] .admin-logout {
  border-color: rgba(255, 249, 252, 0.45);
  color: var(--paper);
}

html[data-theme="dark"] .admin-event-card {
  border-color: rgba(255, 249, 252, 0.15);
}

html[data-theme="dark"] .admin-event-copy > span,
html[data-theme="dark"] .admin-event-card p {
  color: rgba(255, 249, 252, 0.5);
}

html[data-theme="dark"] .admin-event-actions button {
  border-color: #ff64cf;
  color: #ff64cf;
}

html[data-theme="dark"] .admin-event-actions button:last-child {
  color: var(--ink);
  background: #ff64cf;
}

html[data-theme="dark"] .admin-message-card {
  border-color: rgba(255, 249, 252, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .admin-message-card.is-starred {
  border-color: #ff64cf;
  background: rgba(255, 100, 207, 0.1);
}

html[data-theme="dark"] .admin-message-tabs button,
html[data-theme="dark"] .admin-message-actions button {
  border-color: rgba(255, 249, 252, 0.35);
  color: var(--paper);
}

html[data-theme="dark"] .admin-message-tabs button.active,
html[data-theme="dark"] .admin-message-actions .message-trash,
html[data-theme="dark"] .admin-message-actions .message-restore,
html[data-theme="dark"] .admin-refresh-messages {
  border-color: #ff64cf;
  color: var(--ink);
  background: #ff64cf;
}

@media (max-width: 760px) {
  .theme-toggle {
    width: auto;
    height: auto;
    grid-auto-flow: column;
    gap: 12px;
    padding: 10px 14px;
    border-color: #ff64cf;
    border-radius: 0;
    color: #fff;
    background: transparent;
  }

  .theme-toggle-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .theme-toggle-icon {
    flex: 0 0 22px;
  }
}

/* Mobile-first ergonomic overrides */
body {
  overflow-x: clip;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

section[id],
footer[id] {
  scroll-margin-top: 82px;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    width: auto;
    height: calc(72px + env(safe-area-inset-top));
    min-height: calc(72px + env(safe-area-inset-top));
    overflow: visible;
    padding:
      max(8px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      8px
      max(16px, env(safe-area-inset-left));
    background: rgba(11, 9, 11, 0.98);
    backdrop-filter: none;
    isolation: isolate;
  }

  .site-header .brand {
    position: relative;
    z-index: 4;
  }

  .brand-logo {
    width: 36px;
    height: 50px;
  }

  .menu-toggle {
    z-index: 4;
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .menu-toggle span {
    width: 19px;
  }

  .main-nav {
    z-index: 2;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.1), transparent 26%),
      radial-gradient(circle at 88% 80%, rgba(255, 47, 186, 0.1), transparent 35%),
      linear-gradient(145deg, rgba(15, 9, 13, 0.16), rgba(8, 5, 7, 0.08));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(255, 47, 186, 0.08);
    backdrop-filter: blur(14px) saturate(135%) brightness(0.82);
    -webkit-backdrop-filter: blur(14px) saturate(135%) brightness(0.82);
    padding:
      calc(88px + env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      calc(30px + env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    font-size: clamp(25px, 8vw, 34px);
    transition:
      transform 250ms ease,
      opacity 180ms ease,
      visibility 250ms ease;
  }

  .main-nav::before,
  .main-nav::after {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    filter: blur(2px);
  }

  .main-nav::before {
    top: -12%;
    right: -25%;
    width: 72vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.08), rgba(255, 47, 186, 0.035) 42%, transparent 68%);
    box-shadow: inset 15px 18px 35px rgba(255, 255, 255, 0.025);
  }

  .main-nav::after {
    bottom: -20%;
    left: -28%;
    width: 82vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 100, 207, 0.1);
    background: radial-gradient(circle at 65% 30%, rgba(255, 47, 186, 0.06), rgba(255, 255, 255, 0.018) 46%, transparent 68%);
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    padding-inline: 14px;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: transparent;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  }

  .main-nav > a:active,
  .main-nav > a:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .main-nav .nav-cta,
  .admin-nav-button,
  .theme-toggle {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    justify-content: center;
  }

  .admin-nav-button,
  .theme-toggle {
    border-color: rgba(255, 100, 207, 0.48);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  }

  .main-nav .nav-cta {
    border: 1px solid rgba(255, 100, 207, 0.62);
    background: rgba(255, 47, 186, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }

  .hero {
    display: block;
    min-height: 0;
    padding:
      calc(112px + env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      46px
      max(18px, env(safe-area-inset-left));
  }

  .hero-content {
    position: relative;
    z-index: 5;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(51px, 16vw, 70px);
    line-height: 0.9;
  }

  .hero-intro {
    max-width: 34rem;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    width: min(100%, 390px);
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions .text-link {
    min-height: 44px;
    align-items: center;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(calc(100vw - 24px), 430px);
    margin: 54px -8px 28px auto;
    transform: none;
  }

  .album-stack {
    top: 8%;
    left: 3%;
    width: 75%;
  }

  .event-ticket {
    right: -2%;
    bottom: -2%;
    left: -8%;
    min-height: 62px;
    gap: 10px;
    padding: 12px;
  }

  .event-ticket strong {
    max-width: 145px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding:
      68px
      max(18px, env(safe-area-inset-right))
      68px
      max(18px, env(safe-area-inset-left));
  }

  .intro-copy h2,
  .section-heading h2,
  .contact-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(43px, 13vw, 62px);
    line-height: 0.98;
  }

  .large-copy {
    font-size: 17px;
    line-height: 1.55;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stats div {
    min-width: 0;
  }

  .stats strong {
    font-size: clamp(23px, 8vw, 31px);
  }

  .stats span {
    font-size: 7px;
    line-height: 1.35;
  }

  .manifesto-card {
    padding: 24px;
  }

  .manifesto-card p {
    margin: 36px 0;
    font-size: 18px;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs button {
    min-width: max-content;
    min-height: 44px;
    padding-inline: 18px;
  }

  .event-row {
    grid-template-columns: 52px 58px minmax(0, 1fr) 44px;
    gap: 12px;
    min-height: 118px;
  }

  .event-image {
    width: 54px;
  }

  .event-date {
    display: grid;
    gap: 0;
  }

  .event-date strong {
    font-size: 31px;
    line-height: 1;
  }

  .event-name {
    min-width: 0;
  }

  .event-name h3 {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.15;
    text-overflow: ellipsis;
  }

  .event-name p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .event-socials {
    margin-top: 7px;
  }

  .event-row > a {
    width: 44px;
    height: 44px;
  }

  .price-card,
  .price-card.featured {
    min-height: 0;
    padding: 24px;
    transform: none;
  }

  .price {
    margin: 42px 0 28px;
  }

  .price strong {
    font-size: 58px;
  }

  .price-card .button {
    min-height: 50px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
    gap: 12px;
  }

  .gallery-main {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form {
    margin-top: 38px;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .contact-form input,
  .contact-form textarea,
  .admin-form input,
  .event-editor input,
  .event-editor select {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form .button {
    min-height: 52px;
  }

  footer {
    padding:
      34px
      max(18px, env(safe-area-inset-right))
      calc(34px + env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-links a {
    display: grid;
    min-height: 44px;
    min-width: 0;
    flex: 1 1 180px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .admin-modal {
    padding: 0;
  }

  .admin-panel {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    border: 0;
    box-shadow: none;
  }

  .admin-close {
    top: calc(10px + env(safe-area-inset-top));
    width: 48px;
    height: 48px;
  }

  .admin-login,
  .admin-dashboard {
    min-height: 100svh;
    padding:
      calc(78px + env(safe-area-inset-top))
      18px
      calc(28px + env(safe-area-inset-bottom));
  }

  .event-editor {
    padding: 16px;
  }

  .admin-event-actions button,
  .admin-exit,
  .admin-logout {
    min-height: 44px;
    padding-inline: 14px;
  }

  .main-nav a:hover > span,
  .admin-nav-button:hover > span {
    animation: none;
  }

  .album-stack.is-scroll-active .bpm-vinyl {
    transform: translate(2.5%, -50%);
  }

  .album-stack.is-scroll-active .album-bpm {
    box-shadow: 12px 13px 0 var(--ink);
    transform: translate(1%, 0.5%) rotate(3deg);
  }

  .manifesto-card {
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
  }

  .manifesto-card.is-scroll-active {
    box-shadow: 13px 14px 0 var(--ink);
    transform: translateY(-5px) rotate(-0.5deg);
  }

  .manifesto-card.is-scroll-active .waveform i {
    animation: waveform-dance 520ms ease-in-out infinite alternate;
  }

  .manifesto-card.is-scroll-active .waveform i:nth-child(2n) {
    animation-delay: -160ms;
  }

  .manifesto-card.is-scroll-active .waveform i:nth-child(3n) {
    animation-delay: -320ms;
  }

  .manifesto-card.is-scroll-active .waveform i:nth-child(5n) {
    animation-delay: -430ms;
  }

  .event-row {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .event-row::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 47, 186, 0.03),
      rgba(255, 47, 186, 0.2) 48%,
      rgba(255, 100, 207, 0.05)
    );
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .event-row > * {
    position: relative;
    z-index: 1;
  }

  .event-row .event-date,
  .event-row .event-image,
  .event-row .event-name,
  .event-row > a {
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .event-row.is-scroll-active::before {
    transform: scaleX(1);
  }

  .event-row.is-scroll-active .event-date {
    transform: translateX(3px) scale(1.04);
  }

  .event-row.is-scroll-active .event-name {
    transform: translateX(5px);
  }

  .event-row.is-scroll-active .event-image {
    transform: rotate(1deg) scale(1.04);
  }

  .event-row.is-scroll-active > a {
    color: var(--ink);
    background: #ff64cf;
    box-shadow: 0 0 0 5px rgba(255, 47, 186, 0.12);
    transform: rotate(45deg) scale(1.05);
  }

  .price-card {
    overflow: hidden;
    isolation: isolate;
    transition: transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 380ms ease;
  }

  .price-card::after {
    position: absolute;
    z-index: 0;
    right: -145%;
    bottom: -45%;
    width: 170%;
    height: 75%;
    border: 2px solid rgba(255, 47, 186, 0.26);
    border-radius: 50%;
    background: radial-gradient(
      ellipse,
      rgba(255, 47, 186, 0.14) 0 18%,
      transparent 19% 29%,
      rgba(255, 47, 186, 0.1) 30% 31%,
      transparent 32% 100%
    );
    content: "";
    pointer-events: none;
    transform: rotate(-12deg);
    transition: right 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .price-card > * {
    position: relative;
    z-index: 1;
  }

  .price-card .price strong,
  .price-card .button {
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .price-card.is-scroll-active {
    box-shadow: 10px 11px 0 rgba(11, 9, 11, 0.22);
    transform: translateY(-6px);
  }

  .price-card.featured.is-scroll-active {
    box-shadow: 11px 12px 0 #ff2fba;
  }

  .price-card.is-scroll-active::after {
    right: -25%;
  }

  .price-card.is-scroll-active .price strong {
    transform: translateX(4px) scale(1.02);
  }

  .price-card.is-scroll-active .button {
    transform: translateY(-2px);
  }

  .gallery-item.is-scroll-active img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.035);
  }
}

@media (max-width: 620px) {
  .admin-message-heading-actions,
  .admin-message-tabs {
    width: 100%;
  }

  .admin-message-tabs button,
  .admin-refresh-messages {
    flex: 1;
    min-height: 44px;
  }

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

  .admin-message-card .admin-song-request {
    grid-template-columns: 1fr;
  }

  .admin-message-card time,
  .admin-message-card p {
    grid-column: 1;
    text-align: left;
  }

  .admin-message-actions button {
    min-height: 44px;
    flex: 1 1 120px;
  }

  .admin-message-actions .message-trash {
    margin-left: 0;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 0;
  }

  h1 {
    font-size: clamp(47px, 15vw, 59px);
  }

  .hero-visual {
    right: auto;
    width: min(calc(100vw - 24px), 390px);
    margin-top: 46px;
  }

  .event-ticket {
    left: -12%;
  }

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

  .stats div {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .stats span {
    font-size: 8px;
  }

  .gallery-grid {
    grid-template-rows: repeat(3, 230px);
  }

  .admin-event-card {
    grid-template-columns: 52px 48px minmax(0, 1fr);
  }

  .admin-event-image {
    width: 46px;
  }

}

/* Booking journey and professional DJ rates */
.booking-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(48px, 8vw, 130px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 4% 100%, rgba(255, 47, 186, 0.34), transparent 28%),
    linear-gradient(135deg, #090709 0%, #160b13 100%);
}

.booking-section::before {
  position: absolute;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 100, 207, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  right: -15%;
  bottom: -70%;
  box-shadow:
    0 0 0 45px rgba(255, 100, 207, 0.04),
    0 0 0 95px rgba(255, 100, 207, 0.025);
}

.booking-intro,
.booking-steps {
  position: relative;
  z-index: 1;
}

.booking-intro h2 {
  --wave-base: var(--paper);
  --wave-color: #ff2fba;
  margin: 18px 0 24px;
  color: var(--paper);
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.92;
}

.booking-intro h2 em {
  --wave-base: #ff64cf;
  --wave-color: #fff;
  color: #ff64cf;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0 0 34px;
  color: rgba(255, 249, 252, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.booking-intro .button {
  min-width: min(100%, 260px);
  background: #ff64cf;
}

.booking-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.booking-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding 350ms ease, background-color 350ms ease;
}

.booking-step::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 47, 186, 0.18), transparent 78%);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left center;
  transition: opacity 350ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.booking-step > * {
  position: relative;
  z-index: 1;
}

.booking-step > strong {
  color: #ff64cf;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.booking-step h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -0.04em;
}

.booking-step p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 249, 252, 0.5);
  font-size: 11px;
  line-height: 1.65;
}

.service-rates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rate-card {
  --rate-accent: #ff2fba;
  position: relative;
  display: flex;
  min-height: 265px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 6px 6px 0 rgba(11, 9, 11, 0.15);
  transition:
    border-color 700ms ease,
    color 700ms ease,
    background-color 700ms ease,
    box-shadow 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rate-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--rate-accent);
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1150ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.rate-card::after {
  position: absolute;
  z-index: 0;
  right: -48px;
  bottom: -48px;
  width: 92px;
  height: 92px;
  background: var(--rate-accent);
  content: "";
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(45deg) translate(30px, 30px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rate-card > * {
  position: relative;
  z-index: 1;
}

.rate-card-featured {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 8px 8px 0 #ff2fba;
}

.rate-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rate-card-top span,
.rate-card-top small,
.rate-price span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rate-card-top span {
  color: #ff2fba;
}

.rate-card-top small {
  padding: 7px 10px;
  border: 1px solid rgba(11, 9, 11, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.rate-card h3 {
  margin: 40px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 2.5vw, 34px);
  letter-spacing: -0.06em;
}

.rate-card-top,
.rate-card h3,
.rate-price {
  transition:
    color 600ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rate-card h3 {
  transition-delay: 80ms;
}

.rate-price {
  transition-delay: 130ms;
}

.rate-price {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.rate-price strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 4.5vw, 68px);
  letter-spacing: -0.08em;
  line-height: 0.95;
  transition: color 600ms ease;
}

.rate-price strong i {
  font-size: 0.42em;
  font-style: normal;
  letter-spacing: -0.02em;
}

.rate-card-featured .rate-card-top small,
.rate-card-featured .rate-price span {
  color: rgba(255, 249, 252, 0.48);
}

.rate-card-featured .rate-card-top small {
  border-color: rgba(255, 100, 207, 0.42);
  color: #fff;
  background: rgba(255, 47, 186, 0.13);
}

.rates-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid rgba(11, 9, 11, 0.22);
}

.rates-footer p {
  display: grid;
  gap: 5px;
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.rates-footer p strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.rates-footer .button {
  min-width: 230px;
}

html[data-theme="dark"] .booking-section {
  background:
    radial-gradient(circle at 4% 100%, rgba(255, 47, 186, 0.34), transparent 28%),
    linear-gradient(135deg, #090709 0%, #160b13 100%);
}

html[data-theme="dark"] .rate-card {
  border-color: rgba(255, 100, 207, 0.5);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 6px 6px 0 rgba(255, 47, 186, 0.2);
}

html[data-theme="dark"] .rate-card-featured {
  border-color: #ff2fba;
  background: #050405;
  box-shadow: 8px 8px 0 #ff2fba;
}

html[data-theme="dark"] .rate-card-top small,
html[data-theme="dark"] .rate-price span {
  color: rgba(255, 249, 252, 0.48);
}

html[data-theme="dark"] .rate-card-top small {
  border-color: rgba(255, 100, 207, 0.35);
  color: var(--paper);
  background: rgba(255, 100, 207, 0.09);
}

html[data-theme="dark"] .rates-footer {
  border-color: rgba(255, 100, 207, 0.25);
}

html[data-theme="dark"] .rates-footer p strong {
  color: var(--paper);
}

@media (hover: hover) and (pointer: fine) {
  /* Desktop pricing motion: deliberately slower than the scroll-driven phone state. */
  .rate-card {
    transition:
      border-color 950ms cubic-bezier(0.4, 0, 0.2, 1),
      color 950ms cubic-bezier(0.4, 0, 0.2, 1),
      background-color 950ms cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 1000ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .rate-card::before {
    transition: transform 1800ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .rate-card::after {
    transition:
      opacity 900ms ease,
      transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .rate-card-top,
  .rate-card h3,
  .rate-price {
    transition-duration: 850ms, 1000ms;
    transition-timing-function: ease, cubic-bezier(0.16, 1, 0.3, 1);
  }

  .rate-price strong {
    transition-duration: 850ms;
  }

  .booking-step:hover {
    padding-left: 24px;
  }

  .booking-step:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .rate-card:hover {
    border-color: var(--rate-accent);
    box-shadow: 9px 10px 0 rgba(11, 9, 11, 0.18);
    transform: translateY(-6px);
  }

  .rate-card-featured:hover {
    box-shadow: 10px 11px 0 #ff2fba;
  }

  .rate-card:hover::before {
    transform: scaleX(1);
  }

  .rate-card:hover::after {
    opacity: 0.88;
    transform: rotate(45deg) translate(0, 0);
  }

  .rate-card:hover .rate-card-top {
    transform: translateX(2px);
  }

  .rate-card:hover h3 {
    transform: translateX(5px);
  }

  .rate-card:hover .rate-price {
    transform: translateX(3px);
  }

  .rate-card:hover .rate-price strong {
    color: var(--rate-accent);
  }

  html[data-theme="dark"] .rate-card:hover {
    box-shadow: 9px 10px 0 rgba(255, 47, 186, 0.24);
  }

  html[data-theme="dark"] .rate-card-featured:hover {
    box-shadow: 10px 11px 0 #ff2fba;
  }
}

@media (max-width: 980px) {
  .booking-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .footer-contact-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact-heading > a {
    justify-content: space-between;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .booking-section {
    gap: 42px;
  }

  .booking-intro h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .booking-intro .button {
    width: 100%;
    min-height: 52px;
  }

  .booking-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 4px;
  }

  .service-rates {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rate-card {
    min-height: 210px;
    padding: 22px;
  }

  .rate-card h3 {
    margin-top: 30px;
  }

  .rate-card-top small {
    padding: 7px 9px;
    font-size: 9px;
  }

  .rates-footer {
    display: grid;
    gap: 22px;
  }

  .rates-footer .button {
    width: 100%;
    min-height: 52px;
  }

  .booking-step.is-scroll-active {
    padding-left: 14px;
  }

  .booking-step.is-scroll-active::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .rate-card.is-scroll-active {
    border-color: var(--rate-accent);
    box-shadow: 8px 9px 0 rgba(11, 9, 11, 0.18);
    transform: translateY(-4px);
  }

  .rate-card-featured.is-scroll-active {
    box-shadow: 9px 10px 0 #ff2fba;
  }

  .rate-card.is-scroll-active::before {
    transform: scaleX(1);
  }

  .rate-card.is-scroll-active::after {
    opacity: 0.82;
    transform: rotate(45deg) translate(0, 0);
  }

  .rate-card.is-scroll-active .rate-card-top {
    transform: translateX(2px);
  }

  .rate-card.is-scroll-active h3 {
    transform: translateX(5px);
  }

  .rate-card.is-scroll-active .rate-price {
    transform: translateX(3px);
  }

  .rate-card.is-scroll-active .rate-price strong {
    color: var(--rate-accent);
  }

  html[data-theme="dark"] .rate-card.is-scroll-active {
    box-shadow: 8px 9px 0 rgba(255, 47, 186, 0.24);
  }

  html[data-theme="dark"] .rate-card-featured.is-scroll-active {
    box-shadow: 9px 10px 0 #ff2fba;
  }

  footer {
    gap: 28px;
    padding-top: 52px;
  }

  .footer-contact-heading {
    gap: 22px;
    padding-bottom: 25px;
  }

  .footer-contact-heading strong {
    font-size: clamp(39px, 14vw, 60px);
  }

  .footer-arrows {
    gap: 0;
  }

  .footer-links {
    width: 100%;
    gap: 10px;
  }

  .footer-links a {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 15px;
    place-content: initial;
  }

  .footer-links svg {
    width: 32px;
    height: 32px;
  }

  .footer-links .social-brand-icon {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    padding-top: 8px;
  }
}

/* Editorial photo stack in the association section */
.intro-section {
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2.05fr) minmax(280px, 1fr);
  grid-template-areas:
    "label copy media"
    "side copy mission";
  align-items: start;
}

.intro-section > .section-label {
  grid-area: label;
}

.intro-copy {
  grid-area: copy;
}

.intro-side-photo {
  position: relative;
  grid-area: side;
  align-self: center;
  overflow: hidden;
  width: min(100%, 235px);
  aspect-ratio: 0.68;
  margin: 70px 0 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 #ff2fba;
  transform: rotate(-4deg);
  transition: box-shadow 450ms ease, transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.intro-side-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 9, 11, 0.82));
  content: "";
  pointer-events: none;
}

.intro-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.intro-side-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  left: 13px;
  display: grid;
  gap: 4px;
  color: #fff;
  text-transform: uppercase;
}

.intro-side-photo figcaption span {
  color: #ff64cf;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.intro-side-photo figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: -0.02em;
}

.intro-media {
  position: relative;
  grid-area: media;
  width: 100%;
  height: clamp(390px, 35vw, 520px);
  isolation: isolate;
}

.intro-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 9px 9px 0 #ff2fba;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 450ms ease;
}

.intro-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 9, 11, 0.72));
  content: "";
  pointer-events: none;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.intro-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-photo figcaption span {
  color: #ff64cf;
}

.intro-photo-red {
  z-index: 2;
  inset: 4% 5% 4% 8%;
  transform: rotate(3deg);
}

.intro-media-sticker {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 9%;
  display: grid;
  width: 70px;
  height: 70px;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: #ff64cf;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.intro-section .manifesto-card {
  grid-area: mission;
  width: 100%;
  margin-top: 45px;
}

html[data-theme="dark"] .intro-photo {
  border-color: #ff64cf;
  box-shadow: 9px 9px 0 rgba(255, 47, 186, 0.28);
}

html[data-theme="dark"] .intro-side-photo {
  border-color: #ff64cf;
  box-shadow: 8px 8px 0 rgba(255, 47, 186, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .intro-side-photo:hover {
    box-shadow: 13px 14px 0 #ff2fba;
    transform: translate(-4px, -6px) rotate(-6deg);
  }

  .intro-side-photo:hover img {
    filter: contrast(1.08) saturate(1.12);
    transform: scale(1.045);
  }

  .intro-media:hover .intro-photo-red {
    box-shadow: 14px 15px 0 #ff2fba;
    transform: translate(5px, -5px) rotate(1deg);
  }

  .intro-media:hover .intro-photo img {
    filter: contrast(1.08) saturate(1.12);
    transform: scale(1.045);
  }
}

@media (max-width: 980px) {
  .intro-section {
    grid-template-columns: 0.45fr minmax(0, 2.5fr);
    grid-template-areas:
      "label copy"
      "side media"
      ". mission";
  }

  .intro-side-photo {
    width: min(100%, 190px);
    margin-top: 50px;
  }

  .intro-media {
    width: min(100%, 590px);
    height: 440px;
    margin-top: 50px;
  }

  .intro-section .manifesto-card {
    max-width: 430px;
  }
}

@media (max-width: 760px) {
  .intro-section {
    display: block;
  }

  .intro-media {
    width: 100%;
    height: min(105vw, 420px);
    margin: 18px 0 55px;
  }

  .intro-side-photo {
    width: min(58vw, 215px);
    margin: 18px 0 48px 5px;
    transform: rotate(-3deg);
  }

  .intro-photo-red {
    inset: 3% 5% 3% 4%;
  }

  .intro-media-sticker {
    right: 0;
    bottom: 8%;
    width: 62px;
    height: 62px;
    font-size: 8px;
  }

  .intro-section .manifesto-card {
    width: auto;
    max-width: none;
    margin-top: 0;
  }

  .intro-media.is-scroll-active .intro-photo-red {
    box-shadow: 12px 13px 0 #ff2fba;
    transform: translate(3px, -3px) rotate(1deg);
  }

  .intro-media.is-scroll-active .intro-photo img {
    filter: contrast(1.08) saturate(1.12);
    transform: scale(1.035);
  }

  .intro-side-photo.is-scroll-active {
    box-shadow: 11px 12px 0 #ff2fba;
    transform: translate(-2px, -3px) rotate(-5deg);
  }

  .intro-side-photo.is-scroll-active img {
    filter: contrast(1.08) saturate(1.12);
    transform: scale(1.035);
  }
}

/* Event social actions */
.event-row {
  grid-template-columns: 100px 76px 1.1fr 2.1fr 0.9fr minmax(48px, auto);
}

.event-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.event-action {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid #ff64cf;
  border-radius: 50%;
  color: var(--ink);
  background: #ff64cf;
  box-shadow: 0 0 0 6px rgba(255, 47, 186, 0.1);
  transition: color 250ms ease, background-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.event-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.event-action-instagram,
.event-action-facebook {
  border-color: transparent;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
}

.event-action .social-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  transition: filter 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.event-action-calendar {
  color: #ff64cf;
  background: transparent;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .event-row .event-actions {
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .event-action:hover {
    color: #ff64cf;
    background: var(--ink);
    box-shadow: 0 0 0 9px rgba(255, 47, 186, 0.16);
    transform: translateY(-4px) scale(1.08);
  }

  .event-action-calendar:hover {
    color: var(--ink);
    background: #ff64cf;
  }

  .event-action-instagram:hover,
  .event-action-facebook:hover {
    background: transparent;
    box-shadow: none;
  }

  .event-action-instagram:hover .social-brand-icon,
  .event-action-facebook:hover .social-brand-icon {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.08);
  }

  .event-row:hover .event-actions {
    transform: translateX(-5px);
  }
}

@media (max-width: 760px) {
  .event-row {
    grid-template-columns: 52px 58px minmax(0, 1fr) minmax(46px, auto);
  }

  .event-actions {
    display: flex;
    max-width: 94px;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: end;
  }

  .event-action {
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 4px rgba(255, 47, 186, 0.1);
  }

  .event-action svg {
    width: 19px;
    height: 19px;
  }

  .event-row.is-scroll-active .event-actions {
    transform: translateX(-3px);
  }

  .event-row.is-scroll-active .event-action {
    box-shadow: 0 0 0 6px rgba(255, 47, 186, 0.14);
    transform: scale(1.04);
  }

  .event-row.is-scroll-active .event-action-calendar {
    color: var(--ink);
    background: #ff64cf;
  }

  .event-row.is-scroll-active .event-action-instagram,
  .event-row.is-scroll-active .event-action-facebook {
    background: transparent;
    box-shadow: none;
  }

  .event-row.is-scroll-active .event-action-instagram .social-brand-icon,
  .event-row.is-scroll-active .event-action-facebook .social-brand-icon {
    transform: scale(1.06);
  }

}

/* Keep the full-width mobile theme switch stable after touch */
@media (max-width: 760px) {
  .main-nav .theme-toggle,
  .main-nav .theme-toggle:hover,
  .main-nav .theme-toggle:active,
  .main-nav .theme-toggle:focus-visible {
    box-sizing: border-box;
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 100, 207, 0.55);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 47, 186, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: none;
  }

  .main-nav .theme-toggle:active {
    background: rgba(255, 47, 186, 0.18);
  }

  .main-nav .theme-toggle-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: #fff;
    white-space: nowrap;
  }

  .main-nav .theme-toggle-icon {
    flex: 0 0 auto;
  }
}

/* Clean admin scrolling without visible native scrollbars */
.admin-modal {
  overflow: hidden;
}

/* The back office stays deliberately static; public-site motion is untouched. */
#admin-modal,
#admin-modal *,
#admin-modal *::before,
#admin-modal *::after {
  animation: none !important;
  transition: none !important;
}

#admin-modal .admin-panel {
  scroll-behavior: auto;
  transform: none;
}

#admin-modal button:hover,
#admin-modal a:hover,
#admin-modal .button:hover {
  transform: none !important;
}

.admin-panel {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-panel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.admin-dashboard {
  max-width: 100%;
  overflow-x: hidden;
}

/* Footer email copied confirmation */
.footer-links [data-copy-email] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-links [data-copy-email]::before {
  position: absolute;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff64cf;
  content: "";
  pointer-events: none;
  right: 24px;
  transform: scale(0);
  opacity: 0;
}

.footer-links [data-copy-email].email-copied {
  border-color: #ff64cf;
  background: rgba(255, 47, 186, 0.12);
  animation: email-card-confirm 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.footer-links [data-copy-email].email-copied::before {
  animation: email-confirm-wave 700ms ease-out;
}

.footer-links [data-copy-email].email-copied svg {
  color: var(--ink);
  background: #ff64cf;
  animation: email-icon-confirm 520ms ease;
}

.footer-links [data-copy-email].email-copied [data-email-label] {
  color: #fff;
  animation: email-label-confirm 450ms ease;
}

.footer-links [data-copy-email].email-copied [data-email-action] {
  color: #ff64cf;
  font-size: 22px;
  animation: email-check-confirm 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes email-card-confirm {
  0% {
    transform: scale(1);
  }

  45% {
    transform: translateY(-4px) scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes email-confirm-wave {
  0% {
    opacity: 0.45;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(22);
  }
}

@keyframes email-icon-confirm {
  50% {
    transform: rotate(-8deg) scale(1.12);
  }
}

@keyframes email-label-confirm {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

@keyframes email-check-confirm {
  from {
    opacity: 0;
    transform: rotate(-20deg) scale(0.4);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* True full-screen admin layout on phones */
@media (max-width: 760px) {
  .admin-modal,
  .admin-modal.open {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .admin-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    min-height: 100svh;
    max-height: none;
    margin: 0;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .admin-modal.open .admin-panel {
    transform: none;
  }

  .admin-login,
  .admin-dashboard {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .admin-dashboard *,
  .admin-login * {
    min-width: 0;
  }

  .admin-messages,
  .admin-message-list,
  .admin-message-card,
  .admin-message-heading-actions,
  .admin-message-tabs {
    width: 100%;
    max-width: 100%;
  }

  .admin-message-card a,
  .admin-message-card p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .admin-message-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .admin-message-actions button,
  .admin-message-actions .message-trash {
    width: 100%;
    margin-left: 0;
  }
}

/* Lock phone navigation to the vertical axis */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }

  body,
  main,
  header,
  footer,
  section,
  .site-header,
  .main-nav,
  .admin-modal,
  .admin-panel {
    max-width: 100vw;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }

  .filter-tabs {
    flex-wrap: wrap;
    overflow-x: hidden;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    touch-action: pan-y pinch-zoom;
  }

  .event-row.is-scroll-active .event-date,
  .event-row.is-scroll-active .event-name,
  .event-row.is-scroll-active .event-actions {
    transform: none;
  }

  .intro-side-photo.is-scroll-active {
    transform: rotate(-5deg);
  }

  .intro-media.is-scroll-active .intro-photo-red {
    transform: rotate(1deg);
  }
}

/* Extend desktop interaction feedback to scroll-driven mobile states. */
@media (max-width: 760px) {
  .hero-actions,
  .filter-tabs,
  .rates-footer,
  .contact-form,
  .footer-contact-heading,
  .footer-links a {
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-actions.is-scroll-active,
  .filter-tabs.is-scroll-active {
    transform: translateY(-4px);
  }

  .rates-footer.is-scroll-active .button {
    transform: translateY(-3px);
  }

  .contact-form.is-scroll-active {
    transform: translateY(-5px);
  }

  .footer-contact-heading strong {
    transition: color 320ms ease;
  }

  .footer-contact-heading.is-scroll-active strong {
    color: #ff64cf;
  }

  .footer-links a.is-scroll-active {
    border-color: #ff64cf;
    background: rgba(255, 100, 207, 0.1);
    transform: translateY(-5px);
  }

  .footer-links a.is-scroll-active > i {
    transform: translate(3px, -3px);
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .mobile-scroll-motion,
  .mobile-scroll-motion::before,
  .mobile-scroll-motion::after,
  .mobile-scroll-motion * {
    transition-duration: 360ms !important;
  }

  .manifesto-card.mobile-scroll-motion .waveform i {
    animation-duration: 520ms !important;
    animation-iteration-count: infinite !important;
  }
}

/* Final portrait-phone alignment pass. Keep the page visually centred without
   changing the readable, left-aligned content inside cards and forms. */
@media (max-width: 760px) and (orientation: portrait) {
  .hero,
  .section,
  footer {
    width: 100%;
    margin-inline: auto;
  }

  .hero-content,
  .intro-copy,
  .section-heading,
  .event-list,
  .booking-intro,
  .booking-steps,
  .service-rates,
  .rates-footer,
  .gallery-grid,
  .contact-intro,
  .contact-form,
  .footer-contact-heading,
  .footer-links,
  .footer-bottom {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-content,
  .intro-copy,
  .section-heading,
  .booking-intro,
  .contact-intro {
    text-align: center;
  }

  .hero .eyebrow,
  .intro-copy .eyebrow,
  .section-heading .eyebrow,
  .booking-intro .eyebrow,
  .contact-intro .eyebrow {
    justify-content: center;
  }

  h1,
  .intro-copy h2,
  .section-heading h2,
  .booking-intro h2,
  .contact-intro h2 {
    margin-inline: auto;
    text-wrap: balance;
  }

  .hero-intro,
  .large-copy,
  .booking-intro > p:not(.eyebrow),
  .section-heading.compact > p,
  .contact-intro > p:not(.eyebrow) {
    max-width: 36rem;
    margin-inline: auto;
    text-wrap: pretty;
  }

  .hero-actions {
    margin-inline: auto;
    align-items: stretch;
  }

  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    right: auto;
    left: auto;
    width: min(calc(100vw - 36px), 390px);
    margin: 48px auto 38px;
  }

  .album-stack {
    left: 2%;
  }

  .event-ticket {
    right: 2%;
    left: 2%;
  }

  .section-label {
    text-align: center;
  }

  .stats {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
  }

  .stats div {
    text-align: center;
  }

  .intro-side-photo {
    margin: 28px auto 52px;
  }

  .intro-media,
  .intro-section .manifesto-card {
    width: 100%;
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
  }

  .intro-section .manifesto-card {
    text-align: left;
  }

  .section-heading {
    display: grid;
    justify-items: center;
  }

  .section-heading > div:first-child {
    width: 100%;
  }

  .filter-tabs {
    width: 100%;
    justify-content: center;
  }

  .event-row {
    grid-template-columns: 44px 50px minmax(0, 1fr) 44px;
    gap: 10px;
    text-align: left;
  }

  .event-image {
    width: 50px;
    height: 50px;
  }

  .event-actions {
    width: 44px;
    max-width: 44px;
    flex-direction: column;
    justify-self: end;
  }

  .booking-steps,
  .service-rates,
  .gallery-grid,
  .contact-form,
  .footer-links {
    text-align: left;
  }

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

  .rates-footer {
    justify-items: center;
    text-align: center;
  }

  .rates-footer p {
    max-width: 34rem;
    margin-inline: auto;
  }

  .contact-details {
    justify-items: center;
  }

  .footer-contact-heading {
    justify-items: center;
    text-align: center;
  }

  .footer-contact-heading > p,
  .footer-contact-heading > a {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 390px) and (orientation: portrait) {
  .hero-visual {
    width: min(calc(100vw - 28px), 362px);
  }

  .stats {
    max-width: 270px;
  }

  .stats div {
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    gap: 2px;
  }

  .event-row {
    grid-template-columns: 40px 46px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .event-image {
    width: 46px;
    height: 46px;
  }

  .event-actions,
  .event-action {
    width: 40px;
    max-width: 40px;
  }

  .event-action {
    height: 40px;
  }
}

/* Unified header controls: one compact visual language instead of a pill,
   a rigid rectangle and a separate circle. */
@media (min-width: 761px) {
  .main-nav {
    gap: clamp(14px, 1.5vw, 24px);
  }

  .main-nav .nav-cta,
  .main-nav .admin-nav-button,
  .main-nav .theme-toggle {
    min-height: 44px;
    border: 2px solid var(--ink);
    border-radius: 7px;
    transition:
      color 300ms ease,
      border-color 300ms ease,
      background-color 300ms ease,
      box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 17px;
    color: var(--paper);
    background: var(--ink);
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.34);
    opacity: 1;
  }

  .main-nav .nav-cta::after {
    content: "↗";
    font-size: 13px;
    line-height: 1;
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav .admin-nav-button {
    display: inline-flex;
    min-width: 76px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.3);
    font-size: 8px;
  }

  .main-nav .theme-toggle {
    width: 44px;
    height: 44px;
    color: var(--paper);
    background: var(--ink);
  }

  .main-nav .nav-cta:hover,
  .main-nav .admin-nav-button:hover,
  .main-nav .theme-toggle:hover {
    color: var(--ink);
    border-color: var(--ink);
    background: #fff;
    box-shadow: 3px 4px 0 rgba(11, 9, 11, 0.2);
    transform: translateY(-2px);
  }

  .main-nav .nav-cta:hover::after {
    transform: translate(2px, -2px);
  }

  .main-nav .nav-cta:hover,
  .main-nav .theme-toggle:hover {
    border-color: var(--ink);
    color: var(--paper);
    background: var(--ink);
  }

  .main-nav .nav-cta:active,
  .main-nav .admin-nav-button:active,
  .main-nav .theme-toggle:active {
    box-shadow: 1px 1px 0 rgba(11, 9, 11, 0.22);
    transform: translateY(0) scale(0.98);
  }

  .main-nav .nav-cta:focus-visible,
  .main-nav .admin-nav-button:focus-visible,
  .main-nav .theme-toggle:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
  }

  html[data-theme="dark"] .main-nav .nav-cta {
    border-color: var(--ink);
    color: var(--paper);
    background: var(--ink);
    box-shadow: 4px 4px 0 rgba(11, 9, 11, 0.22);
  }

  html[data-theme="dark"] .main-nav .admin-nav-button {
    border-color: var(--ink);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.42);
  }

  html[data-theme="dark"] .main-nav .theme-toggle {
    border-color: var(--ink);
    color: var(--paper);
    background: var(--ink);
  }
}

@media (max-width: 760px) {
  .main-nav .nav-cta,
  .main-nav .admin-nav-button,
  .main-nav .theme-toggle {
    min-height: 54px;
    border-width: 2px;
    border-radius: 12px;
  }

  .main-nav .nav-cta {
    justify-content: flex-start;
    gap: 14px;
    padding-inline: 16px;
    color: #fff;
    background: rgba(255, 47, 186, 0.13);
  }

  .main-nav .nav-cta::after {
    margin-left: auto;
    content: "↗";
    color: #ff64cf;
  }

  .main-nav .admin-nav-button,
  .main-nav .theme-toggle {
    justify-content: flex-start;
    padding-inline: 16px;
    color: #fff;
  }
}

/* Mobile navigation: opaque, compact and GPU-animated. */
@media (max-width: 760px) {
  .site-header,
  .menu-open .site-header {
    height: calc(72px + env(safe-area-inset-top));
    min-height: calc(72px + env(safe-area-inset-top));
    border-bottom: 1px solid rgba(255, 100, 207, 0.32);
    background: #0b090b;
    box-shadow: 0 8px 28px rgba(11, 9, 11, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 249, 252, 0.34);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
      border-color 320ms ease,
      background-color 320ms ease,
      box-shadow 320ms ease,
      transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff9fc;
    transition:
      background-color 280ms ease,
      transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .menu-open .menu-toggle {
    border-color: #ff64cf;
    background: #ff64cf;
    box-shadow: 4px 4px 0 rgba(255, 100, 207, 0.18);
    transform: rotate(90deg);
  }

  .menu-open .menu-toggle span {
    background: #0b090b;
  }

  .main-nav {
    z-index: 2;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-auto-rows: min-content;
    align-content: start;
    align-items: stretch;
    gap: 8px 10px;
    overflow-x: hidden;
    overflow-y: auto;
    padding:
      calc(94px + env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      calc(24px + env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
    border: 0;
    color: #fff9fc;
    background: linear-gradient(160deg, #171014 0%, #0b090b 56%, #160c13 100%);
    box-shadow: inset 3px 0 0 #ff2fba;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition:
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 320ms ease,
      visibility 0s linear 520ms;
    will-change: transform;
    overscroll-behavior: contain;
    counter-reset: mobile-nav-link;
  }

  .main-nav::before {
    position: static;
    z-index: auto;
    display: block;
    width: auto;
    margin: 0 0 10px;
    padding: 0 2px 12px;
    grid-column: 1 / -1;
    aspect-ratio: auto;
    border: 0;
    border-bottom: 1px solid rgba(255, 100, 207, 0.38);
    border-radius: 0;
    color: #ff64cf;
    background: none;
    box-shadow: none;
    content: "MENU BPM / PARIS";
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    filter: none;
  }

  .main-nav::after {
    display: none;
    content: none;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .main-nav > a {
    grid-column: 1 / -1;
  }

  .main-nav > a:not(.nav-cta) {
    display: grid;
    min-height: 55px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 249, 252, 0.14);
    border-radius: 0;
    color: #fff9fc;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    text-shadow: none;
    counter-increment: mobile-nav-link;
  }

  .main-nav > a:not(.nav-cta)::before {
    color: #ff64cf;
    content: "0" counter(mobile-nav-link);
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .main-nav > a:not(.nav-cta) > span {
    font-size: clamp(20px, 6.4vw, 27px);
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .main-nav > a:not(.nav-cta):active,
  .main-nav > a:not(.nav-cta):focus-visible {
    border-bottom-color: #ff64cf;
    color: #fff;
    background: rgba(255, 100, 207, 0.08);
    box-shadow: inset 3px 0 0 #ff64cf;
  }

  .main-nav .nav-cta {
    display: flex;
    min-height: 56px;
    margin-top: 14px;
    padding: 0 17px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #ff91dc;
    border-radius: 10px;
    color: #0b090b;
    background: #ff64cf;
    box-shadow: 4px 4px 0 rgba(255, 100, 207, 0.2);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .main-nav .nav-cta::after {
    margin-left: auto;
    color: #0b090b;
  }

  .main-nav .admin-nav-button,
  .main-nav .theme-toggle,
  .main-nav .theme-toggle:hover,
  .main-nav .theme-toggle:active,
  .main-nav .theme-toggle:focus-visible {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 2px;
    padding: 0 14px;
    border: 1px solid rgba(255, 249, 252, 0.3);
    border-radius: 10px;
    color: #fff9fc;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: none;
  }

  .main-nav .admin-nav-button {
    grid-column: 1;
    justify-content: center;
    font-size: 9px;
  }

  .main-nav .theme-toggle,
  .main-nav .theme-toggle:hover,
  .main-nav .theme-toggle:active,
  .main-nav .theme-toggle:focus-visible {
    grid-column: 2;
    justify-content: center;
  }

  .main-nav .theme-toggle-text {
    color: #fff9fc;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .main-nav > a,
  .main-nav > button {
    opacity: 0;
    transform: translate3d(26px, 0, 0);
    transition:
      opacity 360ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .menu-open .main-nav > a,
  .menu-open .main-nav > button {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .menu-open .main-nav > a:nth-of-type(1) { transition-delay: 70ms; }
  .menu-open .main-nav > a:nth-of-type(2) { transition-delay: 105ms; }
  .menu-open .main-nav > a:nth-of-type(3) { transition-delay: 140ms; }
  .menu-open .main-nav > a:nth-of-type(4) { transition-delay: 175ms; }
  .menu-open .main-nav > a:nth-of-type(5) { transition-delay: 210ms; }
  .menu-open .main-nav > a:nth-of-type(6) { transition-delay: 245ms; }
  .menu-open .main-nav > .admin-nav-button { transition-delay: 280ms; }
  .menu-open .main-nav > .theme-toggle { transition-delay: 315ms; }
}

@media (max-width: 380px), (max-height: 660px) and (max-width: 760px) {
  .main-nav {
    gap: 5px 8px;
    padding-top: calc(84px + env(safe-area-inset-top));
  }

  .main-nav::before {
    margin-bottom: 3px;
    padding-bottom: 8px;
  }

  .main-nav > a:not(.nav-cta) {
    min-height: 47px;
  }

  .main-nav > a:not(.nav-cta) > span {
    font-size: clamp(18px, 5.8vw, 23px);
  }

  .main-nav .nav-cta {
    min-height: 50px;
    margin-top: 8px;
  }

  .main-nav .admin-nav-button,
  .main-nav .theme-toggle,
  .main-nav .theme-toggle:hover,
  .main-nav .theme-toggle:active,
  .main-nav .theme-toggle:focus-visible {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .main-nav,
  .main-nav > a,
  .main-nav > button,
  .menu-toggle,
  .menu-toggle span {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}

/* Footer partners sit naturally beside the BPM signature. */
.footer-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
}

.footer-partners {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding-left: clamp(16px, 2vw, 26px);
  border-left: 1px solid rgba(255, 100, 207, 0.48);
}

.footer-partners > span {
  color: rgba(255, 249, 252, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-partner-logos {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 13px;
}

.footer-partner-logos img {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.9;
}

.footer-partner-quies {
  height: 25px;
}

.footer-partner-redbull {
  height: 29px;
}

.footer-partner-logos i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff64cf;
  opacity: 0.75;
}

@media (max-width: 760px) {
  .footer-identity {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .footer-partners {
    padding-left: 14px;
    text-align: left;
  }

  .footer-partners > span {
    font-size: 6.5px;
  }

  .footer-partner-logos {
    gap: 9px;
  }

  .footer-partner-quies {
    height: 21px;
  }

  .footer-partner-redbull {
    height: 25px;
  }
}

@media (max-width: 360px) {
  .footer-identity {
    gap: 10px;
  }

  .footer-partners {
    padding-left: 10px;
  }

  .footer-partner-quies {
    height: 19px;
  }

  .footer-partner-redbull {
    height: 22px;
  }
}

/* BPM calendar signature reused at three event touchpoints. */
.bpm-calendar-button,
.agenda-calendar-mark,
.event-ticket-calendar {
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.hero-event-button {
  justify-content: flex-start;
  gap: 12px;
}

.bpm-calendar-button {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.18));
  transform: rotate(-4deg);
}

.hero-event-button-label {
  min-width: 0;
}

.hero-event-button .button-arrow {
  margin-left: auto;
}

.agenda-heading-copy {
  position: relative;
  isolation: isolate;
}

.agenda-heading-copy > .eyebrow,
.agenda-heading-copy > h2 {
  position: relative;
  z-index: 1;
}

.agenda-calendar-mark {
  position: absolute;
  z-index: 0;
  top: clamp(-46px, -3vw, -28px);
  right: clamp(-112px, -7vw, -64px);
  width: clamp(88px, 9vw, 138px);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(7px 8px 0 rgba(255, 47, 186, 0.12));
  transform: rotate(7deg);
}

.event-ticket {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
}

.event-ticket-calendar {
  width: 46px;
  height: 46px;
  align-self: center;
  filter: drop-shadow(3px 3px 0 rgba(255, 100, 207, 0.18));
  transform: rotate(-5deg);
}

.event-ticket > p {
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .bpm-calendar-button {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .agenda-heading-copy {
    width: 100%;
  }

  .agenda-calendar-mark {
    top: -38px;
    right: 2px;
    width: clamp(70px, 20vw, 88px);
    filter: drop-shadow(5px 6px 0 rgba(255, 47, 186, 0.12));
    transform: rotate(6deg);
  }

  .event-ticket {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 10px 12px;
  }

  .event-ticket-calendar {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 360px) {
  .hero-event-button {
    gap: 9px;
  }

  .bpm-calendar-button {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .agenda-calendar-mark {
    right: -4px;
    width: 68px;
  }

  .event-ticket {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 7px;
    padding-inline: 9px;
  }

  .event-ticket-calendar {
    width: 31px;
    height: 31px;
  }
}

/* Statistics now belong to the gallery rather than the association copy. */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: 0 0 46px;
  padding: 0;
  border-top: 1px solid rgba(255, 100, 207, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-stats div {
  display: grid;
  gap: 4px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-stats div:first-child {
  padding-left: 0;
}

.gallery-stats div:last-child {
  border-right: 0;
}

.gallery-stats strong {
  color: #ff64cf;
  font-size: clamp(34px, 3.5vw, 52px);
  font-variant-numeric: tabular-nums;
}

.gallery-stats span,
html[data-theme="dark"] .gallery-stats span {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 760px) {
  .gallery-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 0 34px;
  }

  .gallery-stats div,
  .gallery-stats div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
  }

  .gallery-stats div:last-child {
    border-bottom: 0;
  }

  .gallery-stats strong {
    font-size: 31px;
  }

  .gallery-stats span {
    text-align: right;
  }

  .song-request-logo {
    width: min(88vw, 330px);
    margin: -38px auto -42px;
    filter: drop-shadow(7px 9px 0 rgba(255, 47, 186, 0.17));
  }
}
