/* DJ Maskit — elegant dark theme */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #12121a;
  --surface: #181822;
  --text: #e8e6e3;
  --muted: #8a8793;
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 169, 98, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(80, 60, 120, 0.06), transparent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  z-index: 100;
}
.skip-link:focus {
  left: 0.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ——— Header (inner pages: transparent bar) ——— */
.site-header--bare {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-header__inner--overlay {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 40;
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.site-logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-logo--image {
  line-height: 0;
}
.site-logo--image img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}
.site-logo--image:hover img {
  opacity: 0.92;
}

.site-logo--on-hero img {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.65));
}

.site-logo--header-bare img {
  filter: none;
}

/* ——— Mobile menu toggle ——— */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.45);
  cursor: pointer;
  z-index: 80;
  transition: background 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
}
.menu-toggle:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.45);
}
.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
body.nav-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Below .site-header__inner--overlay (z-index:40) so links receive clicks; above hero slides (~2). */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(5, 5, 8, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.nav-open .nav-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* When the drawer is open, lift the whole header layer above fixed page UI (e.g. home audio player z-index:140). */
body.nav-open .hero-carousel__chrome {
  z-index: 200;
}
body.nav-open .site-header--bare {
  z-index: 200;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  background: #12121a;
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  z-index: 120;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  align-items: center;
}
.site-nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: none;
  pointer-events: auto;
  width: 100%;
}
.site-nav a:hover {
  color: var(--accent);
}
body.nav-open .site-nav {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .site-nav a {
  color: #fff !important;
  opacity: 1;
  text-shadow: none;
}

/* Hero overlay: light links on imagery */
.hero-carousel .site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hero-carousel .site-nav a:hover {
  color: var(--accent);
}


.site-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.site-main--after-hero {
  padding-top: 2.5rem;
}

.home-showcase {
  margin-bottom: 1.5rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: center;
}
.home-showcase--burst {
  background:
    radial-gradient(circle at 5% 8%, rgba(255, 60, 140, 0.32), transparent 36%),
    radial-gradient(circle at 95% 22%, rgba(88, 103, 255, 0.35), transparent 42%),
    linear-gradient(140deg, rgba(18, 14, 30, 0.95), rgba(10, 10, 16, 0.95));
}
.home-showcase__eyebrow {
  margin: 0 0 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(201, 169, 98, 0.95);
}
.home-showcase h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.home-showcase p {
  margin: 0;
}
.home-showcase__content {
  max-width: 62ch;
}
.home-showcase__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  justify-self: end;
  width: min(100%, 540px);
}
.home-showcase__image {
  width: 100%;
  height: auto;
  display: block;
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-highlight {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.home-highlight h3 {
  margin: 0 0 0.45rem;
}
.home-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.home-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.home-highlight--violet {
  background: linear-gradient(155deg, rgba(108, 74, 255, 0.65), rgba(48, 30, 120, 0.88));
}
.home-highlight--gold {
  background: linear-gradient(155deg, rgba(235, 166, 35, 0.72), rgba(112, 74, 16, 0.88));
}
.home-highlight--teal {
  background: linear-gradient(155deg, rgba(19, 203, 193, 0.65), rgba(15, 91, 99, 0.88));
}

.home-genre-spectrum {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.home-genre-spectrum .section-title {
  margin-bottom: 0.9rem;
}
.home-genre-spectrum__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.home-genre-spectrum__chips span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(120deg, rgba(255, 61, 159, 0.85), rgba(126, 87, 255, 0.9));
}
.home-genre-spectrum__video {
  margin-top: 1rem;
}

.home-neon-quote {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(105, 232, 255, 0.3);
  background: linear-gradient(95deg, rgba(13, 73, 86, 0.52), rgba(45, 28, 94, 0.45));
  text-align: center;
}
.home-neon-quote p {
  margin: 0;
  font-size: clamp(1.1rem, 2.3vw, 1.55rem);
  font-family: var(--font-display);
  color: #f0feff;
}

.home-booking-cta {
  margin-bottom: 2.3rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  padding: 1.15rem 1.2rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 169, 98, 0.24), transparent 42%),
    linear-gradient(140deg, rgba(20, 15, 35, 0.94), rgba(9, 8, 18, 0.94));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.home-booking-cta h2 {
  margin: 0 0 0.4rem;
}
.home-booking-cta p {
  margin: 0;
  color: var(--muted);
}

.home-audio-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(92vw, 360px);
  z-index: 140;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 14px;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 169, 98, 0.22), transparent 40%),
    rgba(10, 10, 15, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}
.home-audio-player__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.home-audio-player__head-text {
  min-width: 0;
  flex: 1;
}
.home-audio-player__cover {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.home-audio-player__cover.is-hidden {
  display: none;
}
.home-audio-player__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-audio-player__label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 169, 98, 0.9);
}
.home-audio-player__title {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  line-height: 1.2;
}
.home-audio-player__embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.home-audio-player__embed iframe {
  width: 100%;
  height: 116px;
  border: 0;
  display: block;
}
.home-audio-player__embed audio {
  width: 100%;
  display: block;
}
.home-audio-player__embed .is-hidden {
  display: none !important;
}
.home-audio-player__controls {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.55rem;
}
.home-audio-player__controls .btn {
  padding: 0.45rem 0.85rem;
}
.home-audio-player__meta {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.site-footer a {
  color: var(--muted);
}

/* ——— Home hero carousel ——— */
.hero-carousel {
  position: relative;
  min-height: min(88vh, 900px);
  overflow: hidden;
  background: var(--bg);
}

.hero-carousel__chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.hero-carousel__chrome a,
.hero-carousel__chrome button,
.hero-carousel__chrome nav {
  pointer-events: auto;
}

.hero-carousel__slides {
  position: relative;
  min-height: inherit;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.15s cubic-bezier(0.45, 0, 0.2, 1),
    visibility 0s linear 1.2s;
}

.hero-carousel__slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.15s cubic-bezier(0.45, 0, 0.2, 1),
    visibility 0s;
}

.hero-carousel__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.09);
  transition: transform 14s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-carousel__slide.is-active .hero-carousel__media img {
  transform: scale(1);
}

.hero-carousel__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(5, 5, 10, 0.75) 0%,
    rgba(10, 8, 18, 0.35) 45%,
    rgba(5, 5, 12, 0.55) 100%
  );
  pointer-events: none;
}

.hero-carousel__slide-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6.25rem;
  z-index: 5;
  padding: 0 1.5rem 1rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
}

.hero-carousel__slide-inner a {
  pointer-events: auto;
}

.hero-carousel__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.95);
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-carousel__word {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 14vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.25rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  perspective: 900px;
}

.hero-carousel__word-text {
  display: inline-block;
}

.hero-carousel__slide.is-active .hero-carousel__eyebrow {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-carousel__slide.is-active .hero-carousel__word-text {
  animation: heroWordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-carousel__slide.is-active .hero-carousel__cta {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

@keyframes heroWordReveal {
  from {
    opacity: 0;
    transform: translateY(108%) rotateX(-12deg);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn--hero {
  border-color: rgba(201, 169, 98, 0.65);
  background: rgba(10, 10, 14, 0.35);
  color: #f5f0e8;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn--hero:hover {
  background: rgba(201, 169, 98, 0.22);
  color: #fff;
  text-decoration: none;
}

.hero-carousel__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 1.5rem 1.75rem;
  pointer-events: none;
}

.hero-carousel__bottom > * {
  pointer-events: auto;
}

.hero-carousel__dots {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}

.hero-carousel__dot:hover {
  transform: scale(1.15);
  border-color: var(--accent);
}

.hero-carousel__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.55);
}

.hero-carousel__arrows {
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 12, 0.4);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.25s ease;
  backdrop-filter: blur(6px);
}

.hero-carousel__arrow:hover {
  background: rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.55);
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .hero-carousel__bottom {
    flex-direction: column-reverse;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero-carousel__slide-inner {
    bottom: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition: opacity 0.35s ease;
  }

  .hero-carousel__media img {
    transform: scale(1) !important;
    transition: none;
  }

  .hero-carousel__slide.is-active .hero-carousel__eyebrow,
  .hero-carousel__slide.is-active .hero-carousel__word-text,
  .hero-carousel__slide.is-active .hero-carousel__cta {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-carousel__dot {
    transition: background 0.2s ease;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.25);
}
.card__media {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  padding: 1.25rem;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.card__meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.track-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.track-row__cover {
  flex-shrink: 0;
}
.track-row__cover img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.track-row audio {
  flex: 1;
  min-width: 0;
  height: 36px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.event-item:last-child {
  border-bottom: 0;
}
.event-item__date {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 4ch;
}
.event-item__place {
  font-weight: 500;
}
.event-item__loc {
  font-size: 0.9rem;
  color: var(--muted);
}

.prose {
  max-width: 65ch;
}
.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 480px;
}
.form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}
.contact-feedback {
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.contact-feedback p {
  margin: 0;
}
.contact-feedback--success {
  border: 1px solid rgba(92, 193, 120, 0.45);
  background: rgba(92, 193, 120, 0.12);
}
.contact-feedback--error {
  border: 1px solid rgba(196, 92, 92, 0.45);
  background: rgba(196, 92, 92, 0.12);
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
  font: inherit;
}
.btn:hover {
  background: rgba(201, 169, 98, 0.28);
  text-decoration: none;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .home-showcase {
    grid-template-columns: 1fr;
  }
  .home-showcase__image-wrap {
    justify-self: stretch;
    width: 100%;
  }
  .home-audio-player {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    bottom: 0.75rem;
  }
  .home-booking-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-item {
    grid-template-columns: 1fr;
  }
}
