@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --bg: #050506;
  --surface: #0d0d10;
  --surface-2: #15151a;
  --text: #f7f7f8;
  --muted: #b4b4bd;
  --orange: #ff8a00;
  --pink: #ff1478;
  --purple: #a316ff;
  --border: rgba(255,255,255,.13);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  min-height: 82px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,6,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand img {
  width: 168px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active { color: white; }

.menu-toggle {
  display: none;
  border: 0;
  color: white;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  min-height: 86vh;
  padding: 7rem 5%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,138,0,.08), transparent 35%),
    linear-gradient(225deg, rgba(163,22,255,.12), transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Montserrat, sans-serif;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
  letter-spacing: -.06em;
  margin-bottom: 1.4rem;
}

h1 span {
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.045em;
  margin-bottom: 1.2rem;
}

h3 { font-size: 1.2rem; }

.hero-copy,
.section-lead,
.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  padding: .85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(90deg, var(--orange), var(--pink));
  color: white;
}

.button.secondary {
  border-color: var(--border);
  background: rgba(255,255,255,.04);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2.4rem;
}

.hero-proof span {
  padding: .55rem .8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .82rem;
  background: rgba(255,255,255,.03);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  z-index: 2;
}

.dj-booth {
  position: absolute;
  width: 76%;
  height: 165px;
  left: 12%;
  bottom: 45px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 18px 18px 6px 6px;
  background:
    linear-gradient(90deg, rgba(255,138,0,.65), rgba(255,20,120,.65), rgba(163,22,255,.7)),
    #121216;
  box-shadow: 0 0 35px rgba(255,20,120,.25);
  display: grid;
  place-items: center;
}

.booth-logo {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.1;
  border: 1px solid var(--orange);
  background: #08080a;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
}

.booth-logo small {
  font-size: .55rem;
  letter-spacing: .3em;
}

.truss {
  position: absolute;
  bottom: 85px;
  width: 28px;
  height: 360px;
  border: 2px solid rgba(255,255,255,.25);
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.15) 13px 15px);
}

.truss-left { left: 8%; }
.truss-right { right: 8%; }

.truss::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  box-shadow: 0 0 35px var(--pink);
}

.light-beam {
  position: absolute;
  top: 25px;
  width: 220px;
  height: 400px;
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  opacity: .24;
  filter: blur(3px);
}

.beam-one {
  left: 0;
  background: linear-gradient(var(--orange), transparent);
  transform: rotate(15deg);
}

.beam-two {
  right: 0;
  background: linear-gradient(var(--purple), transparent);
  transform: rotate(-15deg);
}

.section {
  padding: 7rem 5%;
}

.section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.centered { text-align: center; }
.centered .section-lead { margin-left: auto; margin-right: auto; }

.feature-grid,
.package-grid,
.value-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.package-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid { grid-template-columns: repeat(2, 1fr); }

.feature-card,
.package-card,
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2rem;
}

.feature-card p,
.package-card p,
.package-card li,
.value-card p {
  color: var(--muted);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,138,0,.15), rgba(255,20,120,.15));
  color: var(--orange);
  margin: 0 auto 1.4rem;
  font-weight: 800;
}

.packages-preview {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.text-link {
  color: var(--pink);
  font-weight: 800;
}

.package-card {
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid transparent;
}

.package-card.orange { border-color: rgba(255,138,0,.65); }
.package-card.pink { border-color: rgba(255,20,120,.65); }
.package-card.purple { border-color: rgba(163,22,255,.7); }

.package-kicker {
  color: white !important;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.starting {
  margin-bottom: 0;
  font-size: .85rem;
}

.price {
  color: white !important;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin: .2rem 0 1rem;
}

.orange .price { color: var(--orange) !important; }
.pink .price { color: var(--pink) !important; }
.purple .price { color: var(--purple) !important; }

.package-card ul,
.policy-grid ul {
  padding-left: 1.15rem;
}

.package-card li,
.policy-grid li {
  margin-bottom: .5rem;
}

.featured {
  transform: translateY(-12px);
  background: linear-gradient(180deg, rgba(255,20,120,.08), var(--surface));
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: .45rem .75rem;
  background: var(--pink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom-left-radius: .8rem;
}

.includes {
  color: var(--pink) !important;
  font-weight: 700;
}

.why-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(255,138,0,.12), transparent 25%),
    radial-gradient(circle at 85% 70%, rgba(163,22,255,.14), transparent 25%);
}

.why-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

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

.why-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.why-list span {
  color: var(--pink);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

.why-list p { margin: 0; }

.cta {
  max-width: var(--max-width);
  margin: 0 auto 7rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
}

.cta .eyebrow { color: rgba(255,255,255,.75); }
.cta h2 { margin: 0; }
.dark-button { background: #08080a; color: white; white-space: nowrap; }

.page-hero {
  padding: 7rem 5% 5rem;
  max-width: var(--max-width);
  margin: auto;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.value-card span {
  color: var(--orange);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

.statement {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,138,0,.08), transparent),
    linear-gradient(225deg, rgba(163,22,255,.12), transparent);
}

.statement h2 { max-width: 900px; margin-left: auto; margin-right: auto; }

.package-grid.detailed .package-card { min-height: 100%; }

.add-ons-section { background: var(--surface); }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem 2rem;
  margin-top: 2rem;
}

.addon-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dotted rgba(255,255,255,.22);
}

.addon-grid strong {
  color: var(--orange);
  white-space: nowrap;
}

.bundle-note {
  margin-top: 2rem !important;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--pink);
  border-radius: 1rem;
  color: white;
  text-align: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.policy-grid article {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.3rem;
  background: var(--surface);
}

.policy-grid li { color: var(--muted); }

.legal-note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 1.5rem !important;
}

.contact-layout {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-methods a {
  display: grid;
  gap: .15rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.contact-methods span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: .45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: #09090b;
  color: white;
}

textarea { resize: vertical; }
.form-status { margin: 0; color: var(--pink); }

footer {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-brand img {
  width: 180px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: .75rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: white; }

.copyright {
  grid-column: 1 / -1;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    background: #08080a;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-stage { min-height: 430px; }

  .feature-grid,
  .package-grid,
  .value-grid,
  .why-layout,
  .policy-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured { transform: none; }

  .section-heading,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    margin-left: 5%;
    margin-right: 5%;
  }

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

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

  .copyright { grid-column: auto; }
}

@media (max-width: 600px) {
  h1 { font-size: 3rem; }
  .section { padding: 5rem 5%; }
  .hero { min-height: auto; }
  .hero-stage { min-height: 340px; }
  .truss { height: 250px; }
  .dj-booth { height: 130px; }
  .booth-logo { width: 95px; height: 95px; font-size: .8rem; }
  .form-row { grid-template-columns: 1fr; }
  .brand img { width: 145px; height: 50px; }
}


/* --- Homepage V2 motion and cinematic effects --- */

.cinematic-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,138,0,.16), transparent 26%),
    radial-gradient(circle at 82% 25%, rgba(255,20,120,.18), transparent 28%),
    radial-gradient(circle at 60% 85%, rgba(163,22,255,.16), transparent 30%),
    linear-gradient(135deg, #030304, #0a0810 48%, #030304);
}

.cinema-haze {
  position: absolute;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .13;
  z-index: 0;
  animation: hazeDrift 13s ease-in-out infinite alternate;
}

.haze-one {
  left: -18vw;
  top: -16vw;
  background: var(--orange);
}

.haze-two {
  right: -20vw;
  bottom: -24vw;
  background: var(--purple);
  animation-delay: -5s;
}

.moving-beam {
  position: absolute;
  top: -20%;
  width: 11vw;
  height: 140%;
  transform-origin: top center;
  opacity: .12;
  filter: blur(8px);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.moving-beam-one {
  left: 18%;
  background: linear-gradient(var(--orange), transparent 82%);
  animation: sweepBeamOne 9s ease-in-out infinite alternate;
}

.moving-beam-two {
  left: 48%;
  background: linear-gradient(var(--pink), transparent 82%);
  animation: sweepBeamTwo 11s ease-in-out infinite alternate;
}

.moving-beam-three {
  right: 12%;
  background: linear-gradient(var(--purple), transparent 82%);
  animation: sweepBeamThree 10s ease-in-out infinite alternate;
}

@keyframes hazeDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(.95); }
  to { transform: translate3d(7%, 5%, 0) scale(1.08); }
}

@keyframes sweepBeamOne {
  from { transform: rotate(-22deg) translateX(-5vw); }
  to { transform: rotate(18deg) translateX(8vw); }
}

@keyframes sweepBeamTwo {
  from { transform: rotate(14deg) translateX(5vw); }
  to { transform: rotate(-18deg) translateX(-6vw); }
}

@keyframes sweepBeamThree {
  from { transform: rotate(-12deg) translateX(1vw); }
  to { transform: rotate(24deg) translateX(-8vw); }
}

.event-types {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent),
    var(--bg);
}

.event-grid {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.event-card {
  min-height: 230px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent),
    var(--surface);
  position: relative;
  overflow: hidden;
}

.event-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -75px;
  bottom: -85px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  opacity: .1;
  filter: blur(2px);
}

.event-card span {
  color: var(--pink);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

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

.pulse-card {
  animation: cardPulse 5.5s ease-in-out infinite;
}

.pulse-card:nth-child(2) {
  animation-delay: -1.7s;
}

.pulse-card:nth-child(3) {
  animation-delay: -3.4s;
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255,20,120,0);
  }
  50% {
    box-shadow: 0 0 30px rgba(255,20,120,.11);
  }
}

.crown-shimmer {
  position: relative;
  overflow: hidden;
}

.crown-shimmer::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  width: 30%;
  left: -45%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,110,.55),
    transparent
  );
  animation: crownSweep 7s ease-in-out infinite;
}

@keyframes crownSweep {
  0%, 68% { left: -45%; opacity: 0; }
  72% { opacity: 1; }
  84% { left: 115%; opacity: 1; }
  88%, 100% { left: 115%; opacity: 0; }
}

.glow-button {
  position: relative;
  box-shadow: 0 0 0 rgba(255,20,120,0);
  animation: buttonGlow 3.2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255,20,120,0);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255,20,120,.35),
      0 0 34px rgba(163,22,255,.18);
  }
}

.booking-cta {
  position: relative;
  overflow: hidden;
}

.booking-cta::after {
  content: "";
  position: absolute;
  inset: -100% -30%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255,255,255,.18) 48%,
    transparent 62%
  );
  animation: ctaSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes ctaSweep {
  from { transform: translateX(-30%); }
  to { transform: translateX(30%); }
}

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .moving-beam {
    opacity: .08;
    width: 18vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-haze,
  .moving-beam,
  .pulse-card,
  .crown-shimmer::after,
  .glow-button,
  .booking-cta::after {
    animation: none !important;
  }
}


/* === V3: supplied Malcala logo treatment === */
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
}

.brand img {
  width: 190px !important;
  height: 66px !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  border-radius: 14px !important;
  filter: brightness(.96) contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,.92) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 55%, rgba(0,0,0,.92) 72%, transparent 100%);
}

.brand::after {
  content: "";
  position: absolute;
  inset: -14px -20px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 44%, rgba(5,5,6,.22) 64%, rgba(5,5,6,.94) 92%);
  z-index: 2;
}

.brand::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 3px;
  bottom: 3px;
  width: 28px;
  left: -45px;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,214,95,.38), transparent);
  animation: headerLogoShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerLogoShimmer {
  0%, 72% { left: -45px; opacity: 0; }
  76% { opacity: 1; }
  88% { left: 205px; opacity: .9; }
  92%, 100% { left: 205px; opacity: 0; }
}

.footer-brand img {
  width: 225px !important;
  height: 170px !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  margin-bottom: .5rem !important;
  border-radius: 22px !important;
  filter: brightness(.94) contrast(1.05);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0,0,0,.9) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0,0,0,.9) 78%, transparent 100%);
}

@media (max-width: 600px) {
  .brand img {
    width: 158px !important;
    height: 56px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand::before {
    animation: none !important;
  }
}


/* === V4 logo fixes: show full logo without cropping === */
.brand {
  width: 205px;
  height: 72px;
  overflow: visible !important;
  border-radius: 0 !important;
}

.brand img {
  width: 205px !important;
  height: 72px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  filter: brightness(.98) contrast(1.03);
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.brand::after {
  display: none !important;
}

.brand::before {
  top: 2px;
  bottom: 2px;
}

.footer-brand img {
  width: 230px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (max-width: 600px) {
  .brand {
    width: 172px;
    height: 62px;
  }

  .brand img {
    width: 172px !important;
    height: 62px !important;
  }
}


/* === V5: actual Malcala logo in DJ booth === */
.booth-logo-image {
  overflow: hidden;
  padding: 0;
  background: #08080a;
}

.booth-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 50%;
  filter: brightness(1.02) contrast(1.05);
}

.booth-logo-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0,0,0,.55);
  pointer-events: none;
  z-index: 2;
}


/* === V7: replace placeholder booth with custom Michael booth artwork === */
.hero-stage.hero-stage-image {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-booth-art {
  width: min(100%, 760px);
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
}

/* Old CSS booth elements are no longer used on the homepage, but kept in file for fallback. */

@media (max-width: 900px) {
  .hero-stage.hero-stage-image {
    margin-top: 1rem;
  }

  .hero-booth-art {
    width: 100%;
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .hero-booth-art {
    border-radius: 16px;
  }
}


/* === V8: larger hero artwork + centered header branding === */

/* Desktop header becomes a centered brand row with navigation beneath it. */
.site-header {
  min-height: 132px;
  padding: 10px 5% 12px;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 78px auto;
  align-items: center;
  justify-items: center;
  gap: 0;
}

.site-header .brand {
  grid-column: 2;
  grid-row: 1;
  width: 245px !important;
  height: 78px !important;
  justify-self: center;
}

.site-header .brand img {
  width: 245px !important;
  height: 78px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.site-header .site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: center;
  gap: 2.35rem;
}

.site-header .menu-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

/* Give the custom Michael artwork more visual weight than the text column. */
.hero {
  grid-template-columns: .82fr 1.18fr !important;
  gap: 1.5rem !important;
  padding-left: 4%;
  padding-right: 3%;
}

.hero-content {
  max-width: 650px;
}

.hero-stage.hero-stage-image {
  width: 100%;
  justify-content: flex-end;
}

.hero-booth-art {
  width: min(112%, 940px) !important;
  max-width: none !important;
  margin-right: -4%;
}

/* Keep the larger art visually integrated with the animated background. */
.hero-stage-image::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 46%;
  right: 3%;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(163,22,255,.16);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
    padding: 0 5%;
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: 82px;
    justify-items: stretch;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 185px !important;
    height: 64px !important;
  }

  .site-header .brand img {
    width: 185px !important;
    height: 64px !important;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header .site-nav {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-stage.hero-stage-image {
    justify-content: center;
  }

  .hero-booth-art {
    width: min(100%, 760px) !important;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .site-header .brand {
    width: 165px !important;
    height: 58px !important;
  }

  .site-header .brand img {
    width: 165px !important;
    height: 58px !important;
  }

  .hero-booth-art {
    width: 108% !important;
    max-width: 108% !important;
    margin-left: -4%;
  }
}


/* === V9: stronger header branding + tighter hero-to-content spacing === */

/* Bigger centered desktop logo, now using a much tighter source crop. */
.site-header {
  min-height: 158px;
  grid-template-rows: 104px auto;
  padding-top: 6px;
  padding-bottom: 10px;
}

.site-header .brand {
  width: 320px !important;
  height: 102px !important;
}

.site-header .brand img {
  width: 320px !important;
  height: 102px !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Let the hero finish closer to the booth artwork. */
.hero {
  min-height: 76vh !important;
  padding-top: 5.2rem !important;
  padding-bottom: 3rem !important;
}

/* Pull the next section upward so the booth and Event Types feel connected. */
.event-types {
  padding-top: 3.4rem !important;
  padding-bottom: 6rem !important;
}

/* Keep the booth itself visually prominent without adding extra empty vertical space. */
.hero-stage.hero-stage-image {
  align-self: center;
  margin-bottom: -0.4rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 92px;
    grid-template-rows: 92px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header .brand {
    width: 225px !important;
    height: 78px !important;
  }

  .site-header .brand img {
    width: 225px !important;
    height: 78px !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: 4rem !important;
    padding-bottom: 2.2rem !important;
  }

  .event-types {
    padding-top: 2.6rem !important;
  }
}

@media (max-width: 600px) {
  .site-header .brand {
    width: 195px !important;
    height: 68px !important;
  }

  .site-header .brand img {
    width: 195px !important;
    height: 68px !important;
  }

  .hero {
    padding-top: 3rem !important;
    padding-bottom: 1.8rem !important;
  }

  .event-types {
    padding-top: 2.2rem !important;
  }
}


/* === V10: 25% tighter hero transition + larger centered logo === */

/* Make the desktop logo clearly more dominant. */
.site-header {
  min-height: 184px;
  grid-template-rows: 128px auto;
  padding-top: 4px;
  padding-bottom: 8px;
}

.site-header .brand {
  width: 410px !important;
  height: 126px !important;
}

.site-header .brand img {
  width: 410px !important;
  height: 126px !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Reduce the vertical gap between hero artwork and Event Types by ~25%. */
.hero {
  padding-bottom: 2.25rem !important;
}

.event-types {
  padding-top: 2.55rem !important;
}

/* Nudge the artwork slightly closer to the section boundary. */
.hero-stage.hero-stage-image {
  margin-bottom: -0.7rem !important;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 108px;
    grid-template-rows: 108px;
  }

  .site-header .brand {
    width: 270px !important;
    height: 92px !important;
  }

  .site-header .brand img {
    width: 270px !important;
    height: 92px !important;
  }

  .hero {
    padding-bottom: 1.7rem !important;
  }

  .event-types {
    padding-top: 1.95rem !important;
  }
}

@media (max-width: 600px) {
  .site-header .brand {
    width: 225px !important;
    height: 78px !important;
  }

  .site-header .brand img {
    width: 225px !important;
    height: 78px !important;
  }

  .hero {
    padding-bottom: 1.35rem !important;
  }

  .event-types {
    padding-top: 1.65rem !important;
  }
}


/* === V11: corrected full MALCALA logo + ~30% larger visible mark === */

/*
  The supplied logo is close to square. Previous versions placed it inside a
  shallow rectangle, which made the visible logo look much smaller than the CSS
  width suggested. This version gives the mark enough vertical room to render
  at its intended visual size.
*/
.site-header {
  min-height: 224px !important;
  grid-template-rows: 172px auto !important;
  padding-top: 4px !important;
  padding-bottom: 10px !important;
}

.site-header .brand {
  width: 535px !important;
  height: 168px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 535px !important;
  height: 168px !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Disable the old shimmer sweep from masking any letters at the edges. */
.site-header .brand::before,
.site-header .brand::after {
  display: none !important;
}

/* Keep mobile practical while still increasing the visible logo. */
@media (max-width: 900px) {
  .site-header {
    min-height: 126px !important;
    grid-template-rows: 126px !important;
  }

  .site-header .brand {
    width: 310px !important;
    height: 112px !important;
  }

  .site-header .brand img {
    width: 310px !important;
    height: 112px !important;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 112px !important;
    grid-template-rows: 112px !important;
  }

  .site-header .brand {
    width: 265px !important;
    height: 98px !important;
  }

  .site-header .brand img {
    width: 265px !important;
    height: 98px !important;
  }
}
