:root {
  --bg: #080808;
  --bg-elevated: #111111;
  --bg-panel: #141414;
  --text: #f5f0e8;
  --text-secondary: #d4cec4;
  --text-muted: #b8b2a8;
  --gold: #d4b76a;
  --gold-bright: #e8cc82;
  --gold-soft: rgba(212, 183, 106, 0.16);
  --gold-glow: rgba(212, 183, 106, 0.42);
  --emerald: #1f4a3d;
  --overlay: rgba(4, 4, 4, 0.58);
  --border: rgba(212, 183, 106, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-height: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section-shell {
  max-width: 72rem;
  margin: 0 auto;
}

.section-shell h2,
.booking-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.lead {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 183, 106, 0.1);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a:not(.btn-cta) {
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.site-nav a:not(.btn-cta):hover {
  color: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 2rem;
  border: 0;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.btn-cta {
  position: relative;
  overflow: hidden;
  min-height: 3.35rem;
  padding: 0 2.35rem;
  margin-top: 2.25rem;
  background: var(--bg);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.35s ease;
}

.site-nav .btn-cta {
  margin-top: 0;
  min-height: 2.65rem;
  padding: 0 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-cta:hover {
  background: var(--bg);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-cta:hover::after {
  transform: translateX(120%);
}

.btn-full {
  width: 100%;
  margin-top: 0.75rem;
}

.contact-rates-link {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(212, 183, 106, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-rates-link:hover {
  background: rgba(212, 183, 106, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Disco ball cursor */
body { cursor: none; }

.disco-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  will-change: left, top;
  animation: disco-glow 3s linear infinite;
}

@keyframes disco-glow {
  0%   { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(255,80,180,0.8)); }
  16%  { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(80,180,255,0.8)); }
  33%  { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(80,255,160,0.8)); }
  50%  { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(255,240,80,0.8)); }
  66%  { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(255,140,40,0.8)); }
  83%  { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(180,80,255,0.8)); }
  100% { filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 14px rgba(255,80,180,0.8)); }
}

.disco-cursor-inner {
  width: 100%;
  height: 100%;
  animation: disco-spin 4s linear infinite;
  transform-origin: center;
}

@keyframes disco-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes disco-shake {
  0%,100% { transform: translate(-50%,-50%); }
  14%  { transform: translate(calc(-50% + 9px),  calc(-50% - 5px)); }
  28%  { transform: translate(calc(-50% - 9px),  calc(-50% + 4px)); }
  42%  { transform: translate(calc(-50% + 7px),  calc(-50% - 3px)); }
  57%  { transform: translate(calc(-50% - 5px),  calc(-50% + 3px)); }
  71%  { transform: translate(calc(-50% + 3px),  calc(-50% - 1px)); }
  86%  { transform: translate(calc(-50% - 2px),  calc(-50%)); }
}

.disco-cursor.is-shaking {
  animation: disco-shake 0.55s ease, disco-glow 3s linear infinite;
}


.disco-light {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.hero {
  position: relative;
  min-height: 100svh;
}

.carousel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.slide.is-active img,
.slide.is-active video {
  transform: scale(1);
}

.slide video {
  cursor: pointer;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

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

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 5rem;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(212, 183, 106, 0.15);
}

.hero-divider {
  width: min(12rem, 40vw);
  height: 1px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline,
.hero-subtagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-subtagline {
  margin-top: 0.35rem;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.75rem;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 2.5rem;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(245, 240, 232, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.is-active {
  background: var(--gold-bright);
  transform: scaleX(1.15);
}

.carousel-playback {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1.75rem;
  z-index: 5;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(212, 183, 106, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-secondary);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

.about-section {
  padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 4rem);
}

.about-secondary {
  margin-top: 1.25rem;
  color: var(--text-muted) !important;
}

.services {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 5vw, 4rem) clamp(5rem, 12vw, 8rem);
}


.services-sound {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.service-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}

.service-icon {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-note {
  margin-top: auto !important;
}

.service-note + .service-card-cta {
  margin-top: 0;
}

.service-card-cta {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.service-card-cta:hover {
  color: var(--gold-bright);
  letter-spacing: 0.22em;
}

.service-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list li + li {
  margin-top: 0.35rem;
}

.service-note {
  margin: 0.75rem 0 0 !important;
  font-size: 0.82rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
}

.service-sound {
  margin: 1rem 0 0 !important;
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  line-height: 1.65;
  font-style: italic;
}


.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0 0.35rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.gallery-item--tall {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.why-section {
  padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}

.why-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.why-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.why-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.why-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .why-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.logo-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.logo-section--labels {
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.logo-section .section-shell {
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.logo-marquee {
  margin-top: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-right: clamp(2.5rem, 6vw, 5rem);
}

.logo-marquee__group img {
  height: 2.2rem;
  width: auto;
  opacity: 0.72;
  filter: grayscale(1) brightness(1.15);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-marquee__group img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 2rem auto 0;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.label-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.label-card img {
  max-height: 3.5rem;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.label-card:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.venues-section {
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(5rem, 12vw, 8rem);
}

.venue-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
}

.venue-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.venue-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}

.venue-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: right;
}

.booking {
  padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background:
    radial-gradient(circle at top right, rgba(31, 74, 61, 0.18), transparent 40%),
    linear-gradient(to bottom, var(--bg), #0d0d0d);
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 72rem;
  margin: 0 auto;
  align-items: start;
}

.form-panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(212, 183, 106, 0.18);
  background: rgba(20, 20, 20, 0.92);
}

.booking-form {
  display: grid;
  gap: 1.75rem;
}

.form-fields {
  display: grid;
  gap: 1.5rem;
}

.flow-block {
  display: grid;
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.flow-block[hidden] {
  display: none;
}

.flow-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-bright);
}

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

.prod-service-options {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.prod-service-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.prod-service-btn:hover {
  border-color: rgba(201, 59, 30, 0.35);
  background: rgba(201, 59, 30, 0.05);
  color: var(--text);
}

.prod-service-btn.is-selected {
  border-color: #c93b1e;
  background: rgba(201, 59, 30, 0.1);
  color: var(--text);
}

.prod-other-field {
  margin-top: 0.75rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 183, 106, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}


.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.form-success h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
}

.form-success p {
  margin: 0;
  color: var(--text-secondary);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 3rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(212, 183, 106, 0.45);
  background: rgba(8, 8, 8, 0.88);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(212, 183, 106, 0.1);
  border-color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

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

/* ── Tablet & below ──────────────────────────────── */
@media (max-width: 900px) {
  .site-nav a:not(.btn-cta) {
    display: none;
  }

  .service-cards,
  .booking-shell,
  .service-options {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item,
  .gallery-item--tall {
    aspect-ratio: 4 / 3;
  }

  .gallery-strip .gallery-item:last-child {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .field-row,
  .venue-list li {
    grid-template-columns: 1fr;
  }

  .venue-location {
    text-align: left;
  }

  .label-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ── Large mobile ────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --header-height: 3.75rem;
  }

  .logo {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
  }

  .site-nav .btn-cta {
    font-size: 0.62rem;
    padding: 0 0.9rem;
    min-height: 2.35rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 4.5rem);
    letter-spacing: 0.14em;
  }

  .hero-tagline {
    font-size: clamp(0.95rem, 3.5vw, 1.3rem);
  }

  .hero-subtagline {
    font-size: clamp(0.82rem, 2.8vw, 1rem);
  }

  .btn-cta {
    padding: 0 1.6rem;
    min-height: 3rem;
    font-size: 0.72rem;
  }

  .about-section,
  .services,
  .why-section,
  .venues-section,
  .booking {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .section-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .services-sound {
    font-size: 0.88rem;
  }

  .service-cards {
    gap: 0.75rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0;
  }

  .gallery-strip .gallery-item:last-child {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }

  .gallery-item,
  .gallery-item--tall {
    aspect-ratio: 16 / 9;
  }

  .logo-section {
    padding-left: 0;
    padding-right: 0;
  }

  .logo-section .section-shell {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .label-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .venue-list li {
    grid-template-columns: 1fr;
  }

  .booking-shell {
    gap: 2rem;
  }

  .form-panel {
    padding: 1.25rem 1rem;
  }
}

/* ── Small mobile ────────────────────────────────── */
@media (max-width: 400px) {
  .logo {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .site-nav .btn-cta {
    font-size: 0.58rem;
    padding: 0 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(1.9rem, 12vw, 3rem);
    letter-spacing: 0.1em;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide,
  .slide img,
  .slide video,
  .reveal,
  .btn,
  .gallery-item img,
  .logo-marquee__track,
  .btn-cta {
    animation: none;
    transition: none;
  }
}
