/* ============================================================
   WAISTLINE ENTERTAINMENT — site.css  (v2 redesign)
   Brand palette from the logo:
   violet #7a3ff2 · blue #3d63f0 · magenta #c731b9
   Fonts: Bricolage Grotesque (display) · Space Grotesk (body)
   ============================================================ */

:root {
  --bg: #0b0714;
  --bg-2: #120a1e;
  --bg-3: #1a1029;
  --ink: #f4f0fa;
  --ink-dim: #b9aecf;
  --ink-faint: #7e7295;
  --violet: #7a3ff2;
  --blue: #3d63f0;
  --magenta: #c731b9;
  --gold: #f5c65d;
  --grad: linear-gradient(100deg, #3d63f0 0%, #7a3ff2 48%, #c731b9 100%);
  --grad-soft: linear-gradient(100deg, rgba(61, 99, 240, .16), rgba(122, 63, 242, .16), rgba(199, 49, 185, .16));
  --line: rgba(185, 174, 207, .14);
  --card: rgba(255, 255, 255, .03);
  --card-hover: rgba(255, 255, 255, .055);
  --radius: 18px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --nav-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: rgba(122, 63, 242, .45); color: #fff; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- typography ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: .005em; }

h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.08rem; line-height: 1.35; }

.lede { color: var(--ink-dim); font-size: clamp(1.02rem, 1.5vw, 1.19rem); max-width: 46em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .08em; /* keep descenders inside the clip box */
}

/* ---------- nav ---------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(11, 7, 20, .66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(61,99,240,.55), rgba(122,63,242,.55), rgba(199,49,185,.55), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.nav.scrolled { background: rgba(11, 7, 20, .9); }
.nav.scrolled::after { opacity: 1; }

.nav-inner { display: flex; align-items: center; gap: 28px; width: min(1180px, 92vw); margin: 0 auto; }

.nav-brand { display: flex; align-items: center; gap: 13px; font-family: var(--font-display); font-size: .98rem; font-weight: 700; letter-spacing: .05em; }
.nav-brand img { width: 48px; height: 48px; animation: logoBeat 1.9s ease-in-out infinite; }
.nav-brand span em { font-style: normal; color: var(--ink-dim); font-weight: 400; }

/* gentle two-hit beat: boom, boom, rest */
@keyframes logoBeat {
  0%   { transform: scale(1); }
  9%   { transform: scale(1.055); }
  18%  { transform: scale(1); }
  27%  { transform: scale(1.04); }
  38%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; position: relative; }
.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-dim);
  padding: 10px 13px;
  transition: color .22s ease;
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-links a.active { color: #fff; }

/* sliding underline — positioned by js, glides between links */
.nav-underline {
  position: absolute; bottom: 2px; height: 3px; border-radius: 3px;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(122, 63, 242, .6);
  transition: left .35s cubic-bezier(.65, 0, .35, 1), width .35s cubic-bezier(.65, 0, .35, 1), opacity .25s ease;
  pointer-events: none;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .1em;
  border: 1px solid transparent; cursor: pointer;
  border-radius: 8px;
  transform: skewX(-8deg);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn > span { display: inline-block; transform: skewX(8deg); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(122, 63, 242, .4); }
.btn-grad:hover { transform: skewX(-8deg) translateY(-3px); box-shadow: 0 16px 40px rgba(199, 49, 185, .5); }
.btn-ghost { border-color: rgba(185, 174, 207, .35); color: var(--ink); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: #7a3ff2; background: rgba(122, 63, 242, .12); transform: skewX(-8deg) translateY(-3px); }
.nav .btn { padding: 11px 22px; font-size: .8rem; margin-left: 10px; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(13, 8, 23, .98);
    border-bottom: 1px solid var(--line);
    padding: 10px 5vw 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 15px 4px; font-size: .95rem; border-bottom: 1px solid rgba(185, 174, 207, .08); }
  .nav-underline { display: none; }
  .nav-links .btn { margin: 18px 0 0; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero (home) ---------- */

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 76px;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/hero-bg.jpg") center 38% / cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(11, 7, 20, .96) 8%, rgba(11, 7, 20, .82) 40%, rgba(18, 10, 30, .55) 70%, rgba(30, 12, 46, .55) 100%),
    linear-gradient(to top, var(--bg) 0%, rgba(11, 7, 20, .25) 22%, transparent 45%),
    linear-gradient(to bottom, rgba(11, 7, 20, .8) 0%, transparent 22%);
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; }

.hero h1 { margin: 0 0 20px; text-wrap: balance; }
.hero .lede { margin-bottom: 30px; max-width: 34em; }
.hero .lede b { color: var(--ink); }

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-ctas .btn { padding: 18px 36px; font-size: 1.02rem; }

.hero-social { display: flex; gap: 14px; margin-top: 30px; }
.hero-social a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid rgba(185, 174, 207, .3);
  background: rgba(11, 7, 20, .5);
  font-size: .85rem; font-weight: 600; letter-spacing: .05em;
  color: var(--ink-dim);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.hero-social a:hover { color: #fff; border-color: #c731b9; background: rgba(199, 49, 185, .15); }
.hero-social svg { width: 17px; height: 17px; fill: currentColor; }

/* roster logo strip */
.hero-roster { margin: 34px 0 0; }
.hero-roster .label { font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
/* one neat centered row: proportional widths so all five logos always fit side by side */
.roster-strip { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 1.8vw, 22px); flex-wrap: nowrap; }
.roster-strip a { min-width: 0; display: flex; align-items: center; justify-content: center; }
.roster-strip img, .roster-strip img.tall {
  width: 100%; height: auto; object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .6));
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}
.roster-strip img:hover { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 4px 18px rgba(122, 63, 242, .8)); }
.roster-strip a:nth-child(1) { flex: 0 1 16.5%; }  /* Trevy Trev */
.roster-strip a:nth-child(2) { flex: 0 1 30%; }    /* Spinstar (wide banner) */
.roster-strip a:nth-child(3) { flex: 0 1 11%; }    /* Rahh */
.roster-strip a:nth-child(4) { flex: 0 1 10.5%; }  /* Syke */
.roster-strip a:nth-child(5) { flex: 0 1 15.5%; }  /* Twin Beats */

/* animated hero logo — headphones pound the beat */
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-logo-wrap { position: relative; animation: logoDrift 7s ease-in-out infinite; }
.hero-logo-wrap::before {
  content: ""; position: absolute; inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 63, 242, .45), rgba(199, 49, 185, .18) 55%, transparent 72%);
  animation: glowPulse 1.5s cubic-bezier(.36, .07, .19, .97) infinite;
  z-index: -1;
}
.hero-logo-wrap img {
  width: min(360px, 66vw);
  animation: logoPound 1.5s cubic-bezier(.36, .07, .19, .97) infinite;
  filter: drop-shadow(0 26px 70px rgba(11, 7, 20, .8));
}
/* subwoofer cone: hard kick out, rebound past rest, settle — twice per bar */
@keyframes logoPound {
  0%   { transform: scale(1); }
  4%   { transform: scale(1.115); }
  9%   { transform: scale(.968); }
  13%  { transform: scale(1.035); }
  17%  { transform: scale(.992); }
  21%  { transform: scale(1); }
  27%  { transform: scale(1.075); }
  32%  { transform: scale(.978); }
  36%  { transform: scale(1.02); }
  40%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@keyframes glowPulse {
  0%, 21%, 40%, 100% { opacity: .5; transform: scale(1); }
  4%  { opacity: 1; transform: scale(1.09); }
  27% { opacity: .85; transform: scale(1.06); }
}
@keyframes logoDrift {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50% { transform: translateY(-16px) rotate(1.4deg); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-art { order: -1; }
  .hero-logo-wrap img { width: min(220px, 55vw); }
  .hero { padding-top: calc(var(--nav-h) + 20px); min-height: auto; }
  .hero-photo { background-position: 62% 38%; }
  .roster-strip { gap: 10px; }
}

/* ---------- page hero (subpages) ---------- */

.page-hero {
  position: relative; padding: calc(var(--nav-h) + 84px) 0 64px;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lede { margin-bottom: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.orb-1 { width: 560px; height: 560px; background: rgba(122, 63, 242, .34); top: -180px; right: -120px; }
.orb-2 { width: 480px; height: 480px; background: rgba(61, 99, 240, .26); bottom: -200px; left: -140px; }
.orb-3 { width: 340px; height: 340px; background: rgba(199, 49, 185, .22); top: 40%; left: 55%; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* ---------- sections ---------- */

section.block { padding: 92px 0; position: relative; }
section.block.tint { background: var(--bg-2); }

.sec-head { margin-bottom: 48px; max-width: 760px; }
.sec-head h2 { margin-bottom: 14px; }

.keyline { height: 1px; border: 0; background: linear-gradient(90deg, transparent, rgba(122, 63, 242, .5), rgba(199, 49, 185, .5), transparent); }

/* ---------- cards & grids ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  /* gradient ring: opaque body in padding-box, brand gradient in border-box */
  border: 1px solid transparent;
  background:
    linear-gradient(#151022, #151022) padding-box,
    linear-gradient(130deg, rgba(61, 99, 240, .34), rgba(122, 63, 242, .38), rgba(199, 49, 185, .34)) border-box;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 0 22px rgba(122, 63, 242, .09), 0 0 44px rgba(199, 49, 185, .05);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(#1a1430, #1a1430) padding-box,
    linear-gradient(130deg, rgba(61, 99, 240, .6), rgba(122, 63, 242, .65), rgba(199, 49, 185, .6)) border-box;
  box-shadow: 0 0 28px rgba(122, 63, 242, .18), 0 0 56px rgba(199, 49, 185, .1);
}
.card h3 { margin: 18px 0 10px; }
.card p { color: var(--ink-dim); font-size: .97rem; }

.card-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  border: 1px solid rgba(122, 63, 242, .3);
}
.card-icon svg { width: 24px; height: 24px; stroke: url(#gradStroke); }

/* cards with a photo header */
.card-media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-photo { aspect-ratio: 8 / 5; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-media:hover .card-photo img { transform: scale(1.05); }
.card-media .card-body { padding: 0 24px 28px; }
.card-media .card-icon {
  position: relative; margin-top: -24px;
  background: var(--bg-3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
}
.card-media h3 { margin: 14px 0 10px; }
.card-media p { color: var(--ink-dim); font-size: .97rem; }

/* feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row + .feature-row { margin-top: 88px; }
.feature-row h2 { margin-bottom: 16px; }
.feature-row p { color: var(--ink-dim); margin-bottom: 14px; }
.feature-row ul { list-style: none; margin-top: 8px; }
.feature-row li { padding: 9px 0 9px 34px; position: relative; color: var(--ink-dim); }
.feature-row li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid rgba(122, 63, 242, .45);
}
.feature-row li::after {
  content: ""; position: absolute; left: 5px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid #b78cff; border-bottom: 2px solid #b78cff;
  transform: rotate(-45deg);
}
.feature-row li b { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row + .feature-row { margin-top: 64px; }
}

.feature-visual {
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

/* ---------- reviews ---------- */

.rating-banner {
  display: flex; align-items: center; gap: 34px; flex-wrap: wrap;
  padding: 30px 36px; margin-bottom: 40px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(#151022, #151022) padding-box,
    linear-gradient(130deg, rgba(61, 99, 240, .34), rgba(122, 63, 242, .38), rgba(199, 49, 185, .34)) border-box;
  box-shadow: 0 0 22px rgba(122, 63, 242, .09), 0 0 44px rgba(199, 49, 185, .05);
}
.rating-banner .score { font-family: var(--font-display); font-size: 4rem; font-weight: 800; line-height: 1; }
.rating-banner .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: .18em; }
.rating-banner .meta { color: var(--ink-dim); font-size: .95rem; }
.rating-banner .meta b { color: var(--ink); }
.rating-banner .src { margin-left: auto; text-align: right; color: var(--ink-faint); font-size: .85rem; }
.rating-banner .src a { color: #b78cff; font-weight: 600; }
.rating-banner .src a:hover { text-decoration: underline; }
@media (max-width: 720px) { .rating-banner .src { margin-left: 0; text-align: left; } }

.review-card { display: flex; flex-direction: column; }
.review-card .stars { color: var(--gold); letter-spacing: .15em; font-size: .95rem; margin-bottom: 12px; }
.review-card h3 { margin: 0 0 10px; }
.review-card blockquote { color: var(--ink-dim); font-size: .95rem; border: 0; flex: 1; }
.review-card .who { margin-top: 18px; color: var(--ink-faint); font-size: .85rem; letter-spacing: .04em; }
.review-card .who b { color: var(--ink-dim); }

.award-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(245, 198, 93, .35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  max-width: 340px;
}

/* ---------- events gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery a, .gallery figure {
  position: relative; display: block; margin: 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img, .gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(11, 7, 20, .88), transparent);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim);
}
.gallery .tall { grid-row: span 2; aspect-ratio: auto; }
.gallery .wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 560px) { .gallery .wide { grid-column: span 1; aspect-ratio: 4 / 3; } }

/* ---------- team / about ---------- */

.team-card { text-align: center; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.team-visual {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(122, 63, 242, .22), rgba(18, 10, 30, .0) 70%), var(--bg-3);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.team-visual img.photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-visual img.logo { max-width: 78%; max-height: 62%; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6)); }
.team-body { padding: 24px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.team-body img.badge { height: 34px; width: auto; object-fit: contain; margin: 0 auto 12px; }
.team-card h3 { margin: 0 0 4px; }
.team-card .role { color: #b78cff; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 12px; }
.team-card p.bio { color: var(--ink-dim); font-size: .92rem; flex: 1; }
.team-links { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.team-links a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 100px;
  border: 1px solid rgba(185, 174, 207, .25);
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  color: var(--ink-dim);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.team-links a:hover { color: #fff; border-color: #c731b9; background: rgba(199, 49, 185, .15); }
.team-links svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- mixes ---------- */

.mix-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .mix-grid { grid-template-columns: 1fr; } }
.mix-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#151022, #151022) padding-box,
    linear-gradient(130deg, rgba(61, 99, 240, .34), rgba(122, 63, 242, .38), rgba(199, 49, 185, .34)) border-box;
  box-shadow: 0 0 22px rgba(122, 63, 242, .09), 0 0 44px rgba(199, 49, 185, .05);
}
.mix-card iframe { display: block; width: 100%; height: 166px; border: 0; }
.mix-card .mix-meta { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mix-card .mix-meta strong { font-size: .95rem; font-weight: 600; }
.mix-card .mix-meta span { color: var(--ink-faint); font-size: .84rem; white-space: nowrap; }

/* ---------- commitments ---------- */

.commit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .commit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .commit-grid { grid-template-columns: 1fr; } }
.commit {
  padding: 26px 24px; border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(#151022, #151022) padding-box,
    linear-gradient(130deg, rgba(61, 99, 240, .34), rgba(122, 63, 242, .38), rgba(199, 49, 185, .34)) border-box;
  box-shadow: 0 0 22px rgba(122, 63, 242, .09), 0 0 44px rgba(199, 49, 185, .05);
}
.commit h3 { font-size: 1rem; margin-bottom: 8px; }
.commit p { color: var(--ink-dim); font-size: .92rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative; overflow: hidden;
  border-radius: 26px;
  padding: 68px 40px;
  text-align: center;
  background: var(--bg-3);
  border: 1px solid rgba(122, 63, 242, .3);
}
.cta-band::before {
  content: ""; position: absolute; inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(61, 99, 240, .28), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(199, 49, 185, .26), transparent 45%),
    radial-gradient(circle at 55% 20%, rgba(122, 63, 242, .3), transparent 40%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--ink-dim); margin-bottom: 30px; max-width: 40em; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- eq bars (services page visual) ---------- */

.eq { display: flex; align-items: flex-end; gap: 5px; height: 42px; }
.eq i {
  display: block; width: 5px; height: 100%; border-radius: 3px; background: var(--grad);
  animation: eqbounce 1.1s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes eqbounce {
  0%, 100% { transform: scaleY(.25); }
  50% { transform: scaleY(1); }
}

/* ---------- packages (services) ---------- */

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card { display: flex; flex-direction: column; padding: 28px 24px; position: relative; }
.pkg-num { font-size: .7rem; letter-spacing: .22em; color: var(--ink-faint); text-transform: uppercase; font-weight: 700; }
.pkg-card h3 { font-size: 1.4rem; margin: 6px 0 2px; }
.pkg-tagline { color: #b78cff; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.pkg-pop-label {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
}
.pkg-card.pkg-pop {
  background:
    linear-gradient(#1a1130, #171027) padding-box,
    var(--grad) border-box;
  box-shadow: 0 0 30px rgba(122, 63, 242, .22), 0 0 60px rgba(199, 49, 185, .12);
}

.pkg-list { list-style: none; margin: 0 0 24px; flex: 1; }
.pkg-list li {
  position: relative; padding: 8px 0 8px 30px;
  color: var(--ink-dim); font-size: .93rem;
  border-bottom: 1px solid rgba(185, 174, 207, .08);
}
.pkg-list li:last-child { border-bottom: 0; }
.pkg-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-soft); border: 1px solid rgba(122, 63, 242, .45);
}
.pkg-list li::after {
  content: ""; position: absolute; left: 4px; top: 17px;
  width: 8px; height: 4px;
  border-left: 2px solid #b78cff; border-bottom: 2px solid #b78cff;
  transform: rotate(-45deg);
}
.pkg-list li.carry { color: var(--ink); font-weight: 600; }
.pkg-card .btn { width: 100%; }

.pkg-note {
  margin-top: 26px; padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid rgba(122, 63, 242, .25);
  background: rgba(122, 63, 242, .07);
  color: var(--ink-dim); font-size: .93rem;
}
.pkg-note b { color: var(--ink); }

/* add-on booths */
.addon-card { display: flex; gap: 0; padding: 0; overflow: hidden; }
.addon-card .addon-photo { flex: 0 0 44%; }
.addon-card .addon-photo img { width: 100%; height: 100%; object-fit: cover; }
.addon-card .addon-body { padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; }
.addon-card h3 { margin: 0 0 10px; }
.addon-card p { color: var(--ink-dim); font-size: .93rem; }
@media (max-width: 620px) {
  .addon-card { flex-direction: column; }
  .addon-card .addon-photo { flex: none; aspect-ratio: 16 / 9; }
}

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-line { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .card-icon { flex: 0 0 auto; }
.contact-line .label { font-size: .78rem; color: var(--ink-faint); letter-spacing: .1em; text-transform: uppercase; }
.contact-line a.value, .contact-line .value { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.contact-line a.value:hover { color: #c9a8ff; }

form.booking { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label.field { display: grid; gap: 7px; font-size: .86rem; color: var(--ink-dim); font-weight: 500; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); font-family: var(--font-body); font-size: .97rem;
  transition: border-color .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(122, 63, 242, .6); background: rgba(255, 255, 255, .055); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b9aecf' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select option { background: var(--bg-3); color: var(--ink); }
textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */

footer { border-top: 1px solid var(--line); padding: 60px 0 40px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .05em; margin-bottom: 14px; }
.foot-brand img { width: 46px; height: 46px; }
footer p { color: var(--ink-faint); font-size: .92rem; }
footer h3 { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.foot-links { display: grid; gap: 10px; }
.foot-links a { color: var(--ink-faint); font-size: .95rem; transition: color .2s ease; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--ink-faint); font-size: .85rem; }

/* ---------- reveal animations ---------- */

.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }

/* ---------- small-screen spacing pass ---------- */

@media (max-width: 620px) {
  body { font-size: 16px; }
  section.block { padding: 58px 0; }
  .sec-head { margin-bottom: 34px; }
  .page-hero { padding: calc(var(--nav-h) + 52px) 0 46px; }
  .hero { padding-bottom: 52px; }
  .hero .lede { margin-bottom: 26px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-social { flex-wrap: wrap; }
  .cta-band { padding: 46px 22px; border-radius: 20px; }
  .card { padding: 26px 22px; }
  .card-media { padding: 0; }
  .card-media .card-body { padding: 0 22px 26px; }
  .commit { padding: 22px 20px; }
  .grid, .mix-grid, .commit-grid { gap: 16px; }
  .feature-row { gap: 24px; }
  .feature-row + .feature-row { margin-top: 52px; }
  .feature-visual { min-height: 240px; }
  .contact-grid { gap: 28px; }
  .contact-grid .card { padding: 26px 20px; }
  .rating-banner { padding: 24px 22px; gap: 20px; }
  .rating-banner .score { font-size: 3rem; }
  footer { padding: 44px 0 32px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-logo-wrap, .hero-logo-wrap img, .hero-logo-wrap::before,
  .nav-brand img, .eq i { animation: none; }
  .hero-video { display: none; }
  html { scroll-behavior: auto; }
}
