/* =========================================================
   Primo Lighting and Sound — Elegant Black & White
   Refined, editorial luxury. Plain CSS, no frameworks.
   Light base (ivory/white) with inverted black bands.
   ========================================================= */

:root {
    --ink:      #0e0e0e;   /* near-black */
    --ink-2:    #161616;
    --ink-3:    #1f1f1f;
    --paper:    #ffffff;
    --paper-2:  #f6f4ef;   /* warm ivory for light bands */
    --paper-3:  #efece5;

    /* text on light */
    --text:      #141414;
    --text-dim:  #5c5a55;
    --text-mute: #8a877f;
    /* text on dark */
    --on-dark:      #f4f2ec;
    --on-dark-dim:  #b6b3aa;
    --on-dark-mute: #86837b;

    --line:      rgba(0, 0, 0, 0.12);
    --line-soft: rgba(0, 0, 0, 0.07);
    --line-dark: rgba(255, 255, 255, 0.16);
    --line-dark-soft: rgba(255, 255, 255, 0.09);

    --radius: 2px;         /* elegant = minimal rounding */
    --maxw: 1180px;
    --maxw-narrow: 820px;
    --header-h: 77px;

    --font-head: 'Anton', 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    --font-sub:  'Oswald', 'Impact', sans-serif;
    --font-body: 'Jost', system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2 { font-family: var(--font-head); font-weight: 400; line-height: 0.98; letter-spacing: 1px; text-transform: uppercase; }
h3 { font-family: var(--font-sub); font-weight: 500; line-height: 1.15; letter-spacing: .5px; text-transform: uppercase; }
h4 { font-family: var(--font-body); }

/* accent word inside a headline (Barr-style two-tone) */
.gradient-text { font-style: normal; color: var(--text-mute); }
.invert .gradient-text, .hero .gradient-text, .page-hero .gradient-text, .cta-band .gradient-text { color: var(--on-dark-mute); }

/* inline text link */
.ilink { border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity .2s ease; }
.ilink:hover { opacity: .6; }

/* content headings inside prose */
.section-inner h3 { font-size: 1.6rem; font-weight: 500; }

.container { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Feather icons ---------- */
.ico svg { width: 22px; height: 22px; stroke-width: 1.3; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-body); font-weight: 500;
    font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase;
    padding: 1.05rem 2.1rem; border-radius: var(--radius);
    border: 1px solid var(--ink); cursor: pointer;
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn-sm { padding: .7rem 1.3rem; font-size: .68rem; letter-spacing: 2px; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* buttons inside dark contexts (inverted bands + hero + page heroes) */
.invert .btn-primary, .hero .btn-primary, .page-hero .btn-primary, .btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.invert .btn-primary:hover, .hero .btn-primary:hover, .page-hero .btn-primary:hover, .btn-light:hover { background: transparent; color: var(--paper); }
.invert .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost { color: var(--on-dark); border-color: rgba(255,255,255,0.55); }
.invert .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Top banner ---------- */
.top-banner {
    background: var(--ink); color: var(--on-dark);
    text-align: center; font-weight: 400; font-size: .68rem;
    letter-spacing: 3px; padding: .6rem 1rem; text-transform: uppercase;
    border-bottom: 1px solid var(--line-dark-soft);
}

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
/* Header floats transparent over the hero, then fills in once the page scrolls. */
.site-header.scrolled {
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--line-dark-soft);
    box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}
/* Pull the page up so the (dark) hero sits behind the transparent header. */
#main { margin-top: calc(-1 * var(--header-h)); }
.header-inner {
    width: min(100% - 3rem, var(--maxw)); margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 76px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo--light { filter: none; }
.site-footer .brand-logo { height: 96px; }
@media (max-width: 560px) { .brand-logo { height: 52px; } }
.brand-mark {
    font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; letter-spacing: 2px;
    border: 1px solid var(--ink); border-radius: var(--radius); padding: .15rem .55rem; color: var(--ink);
}
.brand-text { font-family: var(--font-sub); font-weight: 500; font-size: 1rem; letter-spacing: 2.5px; text-transform: uppercase; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: .1rem; }
.main-nav a {
    display: inline-block; padding: .6rem .8rem; border-radius: var(--radius);
    font-weight: 400; font-size: .72rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--on-dark-dim);
    transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--on-dark); }
.main-nav a.active { position: relative; }
.main-nav > ul > li > a.active::after {
    content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem; height: 1px; background: var(--on-dark);
}
.main-nav .caret { font-size: .55rem; opacity: .6; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
    padding: .4rem; box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { width: 100%; }
.dropdown a { display: block; width: 100%; }

.nav-cta { margin-left: .8rem; }
.nav-cta .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav-cta .btn-primary:hover { background: transparent; color: var(--paper); border-color: var(--paper); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { width: 26px; height: 1px; background: var(--on-dark); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Section scaffolding ---------- */
section { padding: 6.5rem 0; }
.section-inner { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
    display: inline-block; font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
    font-size: .72rem; color: var(--text-mute); margin-bottom: 1.4rem; position: relative;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor; vertical-align: middle; margin-right: .9rem; opacity: .6; }
.section-title { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 500; }
.section-lead { color: var(--text-dim); max-width: 62ch; margin-top: 1.3rem; font-size: 1.05rem; font-weight: 300; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow::after { content: ""; display: block; width: 42px; height: 1px; background: currentColor; margin: 1rem auto 0; opacity: .5; }
.center .section-lead, .section-lead.center { margin-inline: auto; }

/* dark inverted band */
.invert { background: var(--ink); color: var(--on-dark); }
.invert .section-title, .invert h1, .invert h2, .invert h3 { color: var(--on-dark); }
.invert .section-lead { color: var(--on-dark-dim); }
.invert .eyebrow { color: var(--on-dark-mute); }
.invert .text-dim { color: var(--on-dark-dim); }

/* light ivory band (.stats kept as an alias for existing markup) */
.tint, .stats { background: var(--paper-2); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    padding: 7rem 0; background: var(--ink); color: var(--on-dark); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0; opacity: .5;
    background:
        radial-gradient(80vw 60vw at 78% 15%, rgba(255,255,255,0.06), transparent 60%),
        radial-gradient(60vw 60vw at 10% 90%, rgba(255,255,255,0.04), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-logo { display: flex; justify-content: center; }
.hero-logo img { width: 100%; max-width: 380px; height: auto; }
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-logo { order: -1; }
    .hero-logo img { max-width: 230px; }
}
.hero .eyebrow { color: var(--on-dark-mute); }
.hero h1 {
    font-size: clamp(3.2rem, 9vw, 7rem); line-height: .98; font-weight: 500; color: var(--on-dark);
    letter-spacing: 1px;
    /* keeps the type crisp when a bright frame of the video passes behind it */
    text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.hero .sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--on-dark-dim); margin: 1.8rem 0 2.6rem; max-width: 48ch; font-weight: 300; text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.hero .hash { color: var(--on-dark); font-style: italic; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Hero scroll cue ---------- */
.scroll-cue {
    position: absolute; z-index: 3; left: 50%; bottom: 2rem; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .7rem;
    color: var(--on-dark-dim); text-decoration: none;
    font-family: var(--font-sub); font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase;
    transition: color .25s var(--ease);
    animation: cueIn 1s var(--ease) 1.2s both;
}
.scroll-cue:hover { color: var(--on-dark); }
.scroll-cue-label { text-shadow: 0 1px 8px rgba(0,0,0,.8); }
/* a thin chevron drawn in CSS — no icon dependency */
.scroll-cue-arrow {
    width: 13px; height: 13px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); margin-top: -2px;
    animation: cueBob 2s var(--ease) infinite;
}
.scroll-cue:hover .scroll-cue-arrow { animation-play-state: paused; }
@keyframes cueBob {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .75; }
    50%      { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}
@keyframes cueIn { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; } }
/* clears the sticky header when the anchor lands */
#what-we-do { scroll-margin-top: 90px; }
@media (max-width: 900px) { .scroll-cue { bottom: 1.2rem; } }
@media (prefers-reduced-motion: reduce) {
    .scroll-cue, .scroll-cue-arrow { animation: none; }
}

/* animated equalizer motif (matches the Party Mode button) */
.eq { display: flex; align-items: center; gap: 4px; height: 28px; margin-bottom: 2rem; }
.eq span { width: 3px; height: 24px; background: var(--on-dark); border-radius: 2px; transform-origin: center;
    animation: eqbar 1.1s ease-in-out infinite; }
.eq span:nth-child(1){ animation-delay: -.2s; } .eq span:nth-child(2){ animation-delay: -.6s; }
.eq span:nth-child(3){ animation-delay: -.1s; } .eq span:nth-child(4){ animation-delay: -.8s; }
.eq span:nth-child(5){ animation-delay: -.4s; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2.6rem 2.2rem; transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.card:hover { border-color: var(--ink); transform: translateY(-4px); }
.card--media { padding-top: 0; overflow: hidden; }
.card-media { margin: 0 -2.2rem 1.6rem; height: 240px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.card--media:hover .card-media img { transform: scale(1.04); }
.card-media img { transition: transform .5s var(--ease); }
.card .icon, .card .ico {
    width: 46px; height: 46px; display: grid; place-items: center;
    margin-bottom: 1.5rem; color: var(--ink); border: 1px solid var(--line); border-radius: 50%;
}
.card .icon { font-size: 1.2rem; }
.card h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: .6rem; }
.card p { color: var(--text-dim); font-weight: 300; }
.card .learn {
    display: inline-block; margin-top: 1.3rem; color: var(--ink); font-family: var(--font-body);
    font-weight: 500; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}
.card .learn:hover { color: var(--text-dim); border-color: var(--text-dim); }
a.card { color: inherit; }

/* cards inside dark bands */
.invert .card { background: transparent; border-color: var(--line-dark); }
.invert .card:hover { border-color: var(--paper); }
.invert .card h3 { color: var(--on-dark); }
.invert .card p { color: var(--on-dark-dim); }
.invert .card .icon, .invert .card .ico { color: var(--on-dark); border-color: var(--line-dark); }
.invert .card .learn { color: var(--on-dark); border-color: var(--on-dark); }

/* ---------- Stats (numbers) ---------- */
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 500; font-size: clamp(3.2rem, 8vw, 5.2rem); line-height: 1; }
.stat .label { color: var(--text-mute); text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; margin-top: .8rem; }
.invert .stat .num { color: var(--on-dark); }
.invert .stat .label { color: var(--on-dark-mute); }

/* ---------- Split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
/* gives the media roughly 62% of the row — for wide video that needs to be seen */
.split--wide-media { grid-template-columns: 1.65fr 1fr; gap: 3.5rem; }
@media (max-width: 900px) { .split--wide-media { grid-template-columns: 1fr; } }

/* Centered proof figure — a single photo with a caption under it */
.figure { max-width: 760px; margin: 2.6rem auto 0; }
/* flush = no top margin / no width cap, for use inside a grid of figures */
.figure--flush { margin-top: 0; max-width: none; }
.figure--3x4 .figure-media { aspect-ratio: 3/4; }

/* Two equal, matched figures side by side — identical width AND height */
.figure-pair {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
    align-items: start; max-width: 860px; margin: 2.6rem auto 0;
}
.figure-pair figure { margin: 0; max-width: none; }
.figure-pair .figure-media { aspect-ratio: 3/4; }
@media (max-width: 640px) { .figure-pair { grid-template-columns: 1fr; max-width: 420px; } }
/* wide variant for two landscape 4:3 videos side by side */
.figure-pair--wide { max-width: 1060px; }
.figure-pair--wide .figure-media { aspect-ratio: 4/3; }
@media (max-width: 640px) { .figure-pair--wide { max-width: 520px; } }
/* 4:5 pair — used for the age 12 vs today before/after */
.figure-pair--tall .figure-media { aspect-ratio: 4/5; }
.figure-cap .cap-when {
    display: block; font-family: var(--font-head); font-size: 1.15rem;
    letter-spacing: 1px; color: var(--ink); margin-bottom: .15rem;
}
.invert .figure-cap .cap-when { color: var(--on-dark); }
.figure-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; position: relative; background: var(--paper-2); }
.invert .figure-media { border-color: var(--line-dark); background: var(--ink-3); }
.figure-media img, .figure-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.figure-cap {
    margin-top: .8rem; text-align: center;
    font-family: var(--font-sub); font-size: .72rem; font-weight: 300;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mute);
}
.figure-cap em { font-style: normal; font-weight: 500; color: var(--text-dim); }
.invert .figure-cap { color: var(--on-dark-mute); }
.invert .figure-cap em { color: var(--on-dark-dim); }

/* Media column: an image/slideshow with a caption underneath it */
.media-col { display: grid; gap: .8rem; align-content: center; }
.split.reverse .media-col { order: 2; }
.media-caption {
    font-family: var(--font-sub); font-size: .72rem; font-weight: 300;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mute);
}
.media-caption em { font-style: normal; font-weight: 500; color: var(--text-dim); }
.invert .media-caption { color: var(--on-dark-mute); }
.invert .media-caption em { color: var(--on-dark-dim); }
.split-media {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    aspect-ratio: 4/5; background: var(--paper-2); position: relative; min-height: 320px;
}
.split-media--landscape { aspect-ratio: 3/2; min-height: 0; }
.split-media--landscape img { filter: none; }
/* match the slot to the source's own ratio so the whole frame shows with no crop */
.split-media--3x4 { aspect-ratio: 3/4; }
.split-media--4x3 { aspect-ratio: 4/3; min-height: 0; }
.split-media--16x9 { aspect-ratio: 16/9; min-height: 0; }
/* a looping video can fill a media slot the same way an image does */
.split-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* Photos render in full colour by default now. This modifier is kept as a harmless
   no-op so existing markup doesn't need touching. */
.split-media--color img { filter: none; }

/* Auto-crossfading photo slideshow inside a .split-media slot */
.photo-cycle img { opacity: 0; transition: opacity 1.1s var(--ease); }
.photo-cycle img.is-active { opacity: 1; }
.photo-cycle .pc-dots {
    position: absolute; z-index: 3; left: 0; right: 0; bottom: .9rem;
    display: flex; justify-content: center; gap: .45rem;
}
.photo-cycle .pc-dots button {
    width: 7px; height: 7px; padding: 0; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.85); background: transparent;
    cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease);
}
.photo-cycle .pc-dots button[aria-current="true"] { background: #fff; transform: scale(1.25); }
.photo-cycle .pc-dots button:hover { background: rgba(255,255,255,.6); }
/* subtle scrim so the dots stay visible over a bright frame */
.photo-cycle::after {
    content: ""; position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 70px;
    background: linear-gradient(0deg, rgba(0,0,0,.4), transparent); pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    .photo-cycle img { transition: none; }
}

/* Typical-spend anchor under a pricing grid */
.spend-note {
    max-width: 62ch; margin: 2.2rem auto 0; text-align: center;
    font-size: .95rem; font-weight: 300; line-height: 1.75; color: var(--text-dim);
    padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.spend-note strong {
    font-family: var(--font-head); font-size: 1.35rem; color: var(--ink);
    letter-spacing: .5px; vertical-align: baseline;
}
.invert .spend-note { color: var(--on-dark-dim); border-top-color: var(--line-dark); }
.invert .spend-note strong { color: var(--on-dark); }

/* Small qualifying note under a section's main copy */
.section-note {
    margin-top: 1.4rem; font-size: .82rem; font-weight: 300; line-height: 1.65;
    color: var(--text-mute);
}
.invert .section-note { color: var(--on-dark-mute); }

/* Italian-language copy sitting alongside its English equivalent */
.lang-it {
    font-style: italic; opacity: .85;
    padding-left: 1rem; border-left: 2px solid var(--line);
}
.invert .lang-it { border-left-color: var(--line-dark); }
.invert .split-media { background: var(--ink-3); border-color: var(--line-dark); }
.split-media .placeholder {
    position: absolute; inset: 0; display: grid; place-items: center; z-index: 0;
    font-family: var(--font-sub); font-style: normal; text-transform: uppercase; font-size: 1rem; font-weight: 400; color: var(--text-mute); letter-spacing: 3px; text-align: center; padding: 1rem;
}
.invert .split-media .placeholder { color: var(--on-dark-mute); }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* ---------- Image gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2);
}
.gallery-item .placeholder {
    position: absolute; inset: 0; display: grid; place-items: center; z-index: 0;
    font-family: var(--font-sub); font-style: normal; text-transform: uppercase; font-size: .8rem; color: var(--text-mute); letter-spacing: 2px;
}
.gallery-item img, .gallery-item video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .5s var(--ease); }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.05); }
/* four-across variant — used for the tap-to-start screens (8 tiles = 2 even rows) */
.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .gallery-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid--4 { grid-template-columns: 1fr; } }
/* tap-to-start screens are ~5:7 portrait — match the tile and show the whole screen (no crop) */
.gallery-grid--4 .gallery-item { aspect-ratio: 640 / 878; background: var(--ink); }
.gallery-grid--4 .gallery-item video { object-fit: contain; }

/* ---------- Auto-scrolling photo marquee ---------- */
.marquee { overflow: hidden; position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { flex: 0 0 auto; width: 220px; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.marquee-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.invert .marquee-item { border-color: var(--line-dark); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .marquee-item { width: 160px; } }
@media (prefers-reduced-motion: reduce) {
    .marquee { overflow-x: auto; }
    .marquee-track { animation: none; }
}

/* ---------- Timeline ---------- */
.timeline { max-width: 760px; margin: 3rem auto 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 2.6rem 2.4rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 0; top: .35rem; width: 13px; height: 13px; border-radius: 50%; background: var(--ink); border: 2px solid var(--paper); }
.tl-when { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: 2px; font-size: .72rem; color: var(--text-mute); }
.tl-item h3 { font-size: 1.35rem; margin: .2rem 0 .4rem; }
.tl-item p { color: var(--text-dim); font-weight: 300; }
.invert .timeline::before { background: var(--line-dark); }
.invert .tl-item::before { background: var(--paper); border-color: var(--ink); }
.invert .tl-when { color: var(--on-dark-mute); }
.invert .tl-item p { color: var(--on-dark-dim); }

/* ---------- Video embed (responsive 16:9) ---------- */
.video-wrap { max-width: 900px; margin: 2.5rem auto 0; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink); }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed video { object-fit: cover; background: var(--ink); }
.invert .video-embed { border-color: var(--line-dark); }

/* portrait (9:16) reel player */
.video-portrait { max-width: 340px; margin: 2.5rem auto 0; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #000; }
.video-duo { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.video-duo .video-portrait { margin: 2.5rem 0 0; flex: 0 1 320px; }
.invert .video-portrait { border-color: var(--line-dark); }
.video-portrait video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Hero background photo ---------- */
/* Hero media runs at full brightness and in full colour — legibility comes from the
   ::after scrim below rather than from dimming the footage. */
.hero-photo, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 1; filter: none; }
.hero-video { display: none; pointer-events: none; }
/* main.js adds .hero-video-on once the source is attached, which swaps the still out */
.hero.hero-video-on .hero-video { display: block; }
.hero.hero-video-on .hero-photo { display: none; }
/* Scrim: heavy behind the headline on the left, backing off to the right so the
   dance floor stays bright and colourful. Measured ~13:1 contrast for white text. */
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.5) 55%, rgba(14,14,14,0.25) 100%),
        linear-gradient(0deg, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0) 45%);
}
.hero .hero-inner { z-index: 2; }

/* ---------- Benefits list ---------- */
.benefits { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.benefits li {
    display: flex; align-items: center; gap: 1rem; font-weight: 300; letter-spacing: .3px;
    padding: 1.3rem .5rem; border-bottom: 1px solid var(--line);
}
.benefits .check { flex: 0 0 auto; font-family: var(--font-body); font-size: 1rem; color: var(--text-mute); }
.invert .benefits li { border-color: var(--line-dark); }
.invert .benefits .check { color: var(--on-dark-mute); }

/* ---------- Testimonials ---------- */
.quote { background: transparent; border-top: 1px solid var(--line); padding: 2.4rem 0 0; }
.quote p { font-family: var(--font-body); font-size: 1.1rem; font-style: normal; font-weight: 300; line-height: 1.7; color: var(--text); margin: 1rem 0 1.4rem; }
.quote .cite { font-family: var(--font-body); font-weight: 500; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.stars { color: var(--text-mute); letter-spacing: 4px; font-size: .8rem; }
.invert .quote { border-color: var(--line-dark); }
.invert .quote p { color: var(--on-dark); }
.invert .quote .cite { color: var(--on-dark-dim); }
.invert .stars { color: var(--on-dark-mute); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--on-dark); border-radius: var(--radius); padding: 5rem 3rem; text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--on-dark); font-weight: 500; }
.cta-band p { color: var(--on-dark-dim); max-width: 54ch; margin: 1.2rem auto 2.4rem; font-weight: 300; }
.cta-band .btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn-light:hover { background: transparent; color: var(--paper); }
.cta-band .btn-ghost { color: var(--on-dark); border-color: rgba(255,255,255,0.55); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
    padding: 8rem 0 5rem; text-align: center; background: var(--ink); color: var(--on-dark);
}
/* Optional photo cover for a page hero: drop an <img class="page-hero-img"> in as the
   first child and add .page-hero--media. The scrim keeps the centred text readable. */
.page-hero--media { position: relative; overflow: hidden; }
.page-hero--media .section-inner { position: relative; z-index: 2; }
.page-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 42%; z-index: 0;
}
/* Tuned so the mirror ball and beam stay visible while white text over the
   brightest part of the photo still measures ~3.9:1 (WCAG large-text needs 3:1). */
.page-hero--media::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(0deg, rgba(14,14,14,0.63) 0%, rgba(14,14,14,0.45) 45%, rgba(14,14,14,0.70) 100%),
        radial-gradient(70% 120% at 50% 50%, rgba(14,14,14,0.10), rgba(14,14,14,0.45) 100%);
}
/* Lighter scrim for photos whose centre is already dark (e.g. a crowd in dark
   clothing) — measured ~3.9:1 on the weddings shot. */
.page-hero--light::after {
    background:
        linear-gradient(0deg, rgba(14,14,14,0.50) 0%, rgba(14,14,14,0.32) 45%, rgba(14,14,14,0.55) 100%),
        radial-gradient(70% 120% at 50% 50%, rgba(14,14,14,0.05), rgba(14,14,14,0.35) 100%);
}
.page-hero--media h1 { text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.page-hero--media p, .page-hero--media .breadcrumb { text-shadow: 0 1px 10px rgba(0,0,0,.7); }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 500; color: var(--on-dark); }
.page-hero p { color: var(--on-dark-dim); max-width: 60ch; margin: 1.4rem auto 0; font-size: 1.1rem; font-weight: 300; }
.page-hero .hero-actions { justify-content: center; }
.breadcrumb { color: var(--on-dark-mute); font-size: .68rem; margin-bottom: 1.6rem; letter-spacing: 2.5px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--on-dark); }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text);
    font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .5px; font-size: 1.2rem; font-weight: 500; padding: 1.7rem 0;
    display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q .plus { font-family: var(--font-body); color: var(--text-mute); font-size: 1.4rem; font-weight: 300; transition: transform .3s var(--ease); flex: 0 0 auto; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 1.7rem; color: var(--text-dim); font-weight: 300; max-width: 70ch; }

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: 4rem; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.6rem; }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-weight: 500; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .55rem; color: var(--text-dim); }
.field input, .field select, .field textarea {
    width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--text); padding: .95rem 1rem; font-family: inherit; font-size: 1rem; font-weight: 300;
    transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-note { font-size: .8rem; color: var(--text-mute); margin-top: 1.2rem; font-weight: 300; }
.date-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: .8rem; }
.field small { display: block; margin-top: .4rem; font-weight: 400; }

/* form submit result message */
.form-result { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); margin-top: 1.2rem; font-size: .95rem; font-weight: 400; border: 1px solid var(--line); }
.form-result.show { display: block; }
.form-result.success { border-color: var(--ink); background: var(--paper-2); color: var(--ink); }
.form-result.error   { border-color: #b0453f; background: #faf0ef; color: #8f322d; }
.form-result.notice  { border-color: var(--text-mute); background: var(--paper-2); color: var(--text-dim); }

.info-block { margin-bottom: 2rem; }
.info-block h4 { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mute); margin-bottom: .5rem; font-weight: 500; }
.info-block a:hover { color: var(--text-dim); }

.alert { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 400; font-size: .95rem; border: 1px solid var(--line); }
.alert-success { border-color: var(--ink); background: var(--paper-2); color: var(--ink); }
.alert-error { border-color: #b0453f; background: #faf0ef; color: #8f322d; }

/* ---------- Pricing ---------- */
.price-tag { font-family: var(--font-head); font-size: 2.1rem; letter-spacing: 1px; color: var(--ink); margin-bottom: .3rem; }
.invert .price-tag { color: var(--on-dark); }

/* ---------- Package list ---------- */
.pkg-list { list-style: none; margin-top: 1.3rem; }
.pkg-list li { padding: .9rem 0; border-bottom: 1px solid var(--line); color: var(--text-dim); font-weight: 300; display: flex; gap: .8rem; }
.pkg-list li::before { content: "—"; color: var(--text-mute); }
.invert .pkg-list li { border-color: var(--line-dark); color: var(--on-dark-dim); }

/* Optional add-on called out at the foot of a package card */
.pkg-addon {
    margin-top: 1.2rem; padding: 1rem 1.1rem;
    border: 1px dashed var(--line); border-radius: 4px;
    background: var(--paper-2);
    font-size: .88rem; font-weight: 300; color: var(--text-dim); line-height: 1.6;
}
.pkg-addon strong { color: var(--ink); font-family: var(--font-sub); letter-spacing: .5px; font-weight: 500; }
.invert .pkg-addon { background: transparent; border-color: var(--line-dark); color: var(--on-dark-dim); }
.invert .pkg-addon strong { color: var(--on-dark); }

/* ---------- Chips / venue strip ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.4rem; font-weight: 300; color: var(--text-dim); font-size: .85rem; letter-spacing: .5px; background: transparent;
    transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease); }
/* pop out on hover */
.chip:hover { transform: translateY(-3px) scale(1.04); background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.chip svg { width: 15px; height: 15px; stroke-width: 2; }
.invert .chip { border-color: var(--line-dark); color: var(--on-dark-dim); }
.invert .chip:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); box-shadow: 0 10px 22px rgba(0,0,0,.45); }
@media (prefers-reduced-motion: reduce){ .chip:hover { transform: none; } }

.badge-caption { margin-top: 1rem; color: var(--text-dim); font-weight: 300; font-size: .9rem; letter-spacing: .5px; }
.narrow-lead { max-width: 68ch; margin-inline: auto; }

/* ---------- Cookie bar ---------- */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; display: flex; align-items: center; justify-content: center; gap: 1.3rem; flex-wrap: wrap; padding: 1rem 1.4rem; background: rgba(14,14,14,0.97); border-top: 1px solid var(--line-dark); color: var(--on-dark-dim); backdrop-filter: blur(6px); }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; font-size: .9rem; font-weight: 300; }
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-accept { background: #fff; color: #0e0e0e; border: none; border-radius: 999px; padding: .55rem 1.6rem; font-weight: 600; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: opacity .2s ease; }
.cookie-accept:hover { opacity: .82; }

/* ---------- Quick-contact launcher ---------- */
.chat-launcher { position: fixed; left: 0; bottom: 96px; z-index: 320; display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
/* Button lives tucked off the left edge; only an arrow tab peeks out */
.chat-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .62rem 1rem .62rem .9rem;
    border-radius: 0 999px 999px 0; border: 1px solid rgba(255,255,255,.14); border-left: none; cursor: pointer; color: var(--paper);
    font-family: var(--font-sub, sans-serif); font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    background: var(--ink); backdrop-filter: blur(8px); box-shadow: 0 8px 22px rgba(0,0,0,.42);
    transform: translateX(calc(-100% + 46px)); transition: transform .32s var(--ease), box-shadow .25s var(--ease); }
.chat-btn:hover, .chat-launcher.open .chat-btn, .chat-btn:focus-visible { transform: translateX(0); box-shadow: 0 10px 26px rgba(0,0,0,.5); }
/* flip to a light chip when the tab is over a dark section */
.chat-btn.on-dark { background: var(--paper); color: var(--ink); border-color: rgba(0,0,0,.12); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.chat-btn svg { width: 18px; height: 18px; flex: none; }
.chat-btn .chat-ico { animation: chatNudge 2.6s ease-in-out infinite; }
.chat-btn:hover .chat-ico, .chat-launcher.open .chat-ico { animation: none; }
@keyframes chatNudge { 0%,88%,100% { transform: none; } 92%,96% { transform: translateX(-3px); } }

.chat-panel { width: 250px; margin-left: 14px; background: rgba(20,20,22,.97); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: .5rem; box-shadow: 0 16px 40px rgba(0,0,0,.5); backdrop-filter: blur(10px);
    transform: translateY(8px) scale(.98); opacity: 0; transition: transform .2s var(--ease), opacity .2s var(--ease); transform-origin: bottom left; }
.chat-launcher.open .chat-panel { opacity: 1; transform: translateY(0) scale(1); }
.chat-panel[hidden] { display: none; }
.chat-panel-head { padding: .7rem .8rem .5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: .35rem; }
.chat-panel-head strong { display: block; color: #fff; font-family: var(--font-sub, sans-serif); letter-spacing: 1px; text-transform: uppercase; font-size: .8rem; }
.chat-panel-head span { display: block; color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 300; margin-top: .15rem; }
.chat-opt { display: flex; align-items: center; gap: .7rem; padding: .65rem .8rem; border-radius: 10px;
    color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 300; text-decoration: none; transition: background .15s ease; }
.chat-opt:hover { background: rgba(255,255,255,.08); color: #fff; }
.chat-opt svg { width: 17px; height: 17px; color: var(--on-dark); flex: none; }
@media (max-width: 620px){ .chat-launcher { bottom: 80px; } }

/* ---------- Party mode toggle + equalizer ---------- */
.party-toggle { position: fixed; right: 22px; bottom: 22px; z-index: 320; display: inline-flex; align-items: center; gap: .5rem;
    padding: .42rem .85rem .42rem .68rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.16);
    background: rgba(18,18,20,.92); color: #fff; font-family: var(--font-sub, sans-serif); font-size: .66rem; letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 600; cursor: pointer; backdrop-filter: blur(8px); box-shadow: 0 8px 22px rgba(0,0,0,.42);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); line-height: 1; }
.party-toggle:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.34); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.party-toggle-label { white-space: nowrap; }
/* flip to a light chip when floating over a dark section */
.party-toggle { transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.party-toggle.on-dark { background: rgba(246,244,239,.95); border-color: rgba(0,0,0,.12); color: var(--ink); box-shadow: 0 8px 22px rgba(0,0,0,.28); }
.party-toggle.on-dark .eq span { background: var(--ink); }
/* equalizer bars — small and vertically centered (reset the hero .eq margin) */
.party-toggle .eq { display: inline-flex; align-items: center; justify-content: center; gap: 2.5px; height: 14px; margin: 0; }
.party-toggle .eq span { width: 2.5px; height: 13px; background: #fff; border-radius: 2px; transform-origin: center;
    animation: eqbar 1.1s ease-in-out infinite; }
.party-toggle .eq span:nth-child(1){ animation-delay: -.2s; } .party-toggle .eq span:nth-child(2){ animation-delay: -.6s; }
.party-toggle .eq span:nth-child(3){ animation-delay: -.1s; } .party-toggle .eq span:nth-child(4){ animation-delay: -.8s; }
@keyframes eqbar { 0%,100%{ transform: scaleY(.3); } 50%{ transform: scaleY(1); } }

/* Party mode: flip the palette to color and light everything up */
body.party .gradient-text,
body.party .eyebrow { background: linear-gradient(90deg,#ff2d75,#ffb020,#22d3ee,#8b5cf6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; background-size: 300% 100%; animation: partyhue 6s linear infinite; }
body.party .scroll-progress { background: linear-gradient(90deg,#ff2d75,#ffb020,#22d3ee,#8b5cf6); background-size: 300% 100%; animation: partyhue 4s linear infinite; box-shadow: 0 0 12px rgba(255,45,117,.6); }
body.party .btn-primary, body.party .btn-light { background: linear-gradient(90deg,#ff2d75,#8b5cf6); background-size: 200% 100%; border-color: transparent; color: #fff; animation: partyhue 5s linear infinite; }
body.party .invert { background:
    radial-gradient(1200px 400px at 15% 0%, rgba(255,45,117,.16), transparent 60%),
    radial-gradient(1000px 400px at 85% 100%, rgba(34,211,238,.16), transparent 60%),
    var(--ink); }
body.party .card:hover { border-color: #ff2d75; box-shadow: 0 0 0 1px rgba(255,45,117,.4), 0 10px 30px rgba(139,92,246,.18); }
body.party .party-toggle { border-color: transparent; background: linear-gradient(135deg,#ff2d75,#8b5cf6); background-size: 200% 200%; animation: partyhue 5s linear infinite; box-shadow: 0 6px 20px rgba(139,92,246,.5); }
@keyframes partyhue { 0%{ background-position: 0% 50%; } 100%{ background-position: 300% 50%; } }
@media (prefers-reduced-motion: reduce){ .eq span, .party-toggle .eq span { animation: none; } body.party .gradient-text, body.party .eyebrow, body.party .scroll-progress, body.party .btn-primary, body.party .btn-light, body.party .party-toggle { animation: none; } }
@media (max-width: 620px){ .party-toggle { right: 14px; bottom: 14px; } }

/* ---------- Party mode: moving lights overlay ---------- */
.party-fx { position: fixed; inset: 0; z-index: 290; pointer-events: none; overflow: hidden; opacity: 0;
    transition: opacity .6s ease; }
body.party .party-fx { opacity: 1; }
.party-fx * { animation-play-state: paused; }
body.party .party-fx * { animation-play-state: running; }

/* Five colored spotlights that softly breathe and slowly drift around */
.party-fx .spot { position: absolute; width: 40vmax; height: 40vmax; border-radius: 50%;
    mix-blend-mode: screen; filter: blur(50px); opacity: 0; will-change: transform, opacity; }
.party-fx .spot-1 { top: 40%; left: 3%;  background: radial-gradient(circle, #ff2d75, transparent 62%); animation: spotPulse 14s ease-in-out infinite 0s,   spotDrift1 24s ease-in-out infinite -3s; }
.party-fx .spot-2 { top: 4%;  left: 55%; background: radial-gradient(circle, #22d3ee, transparent 62%); animation: spotPulse 14s ease-in-out infinite -4.6s, spotDrift2 27s ease-in-out infinite -8s; }
.party-fx .spot-3 { top: 56%; left: 60%; background: radial-gradient(circle, #8b5cf6, transparent 62%); animation: spotPulse 14s ease-in-out infinite -9.2s, spotDrift3 30s ease-in-out infinite -2s; }
.party-fx .spot-4 { top: 8%;  left: 12%; background: radial-gradient(circle, #ffb020, transparent 62%); animation: spotPulse 14s ease-in-out infinite -6.5s, spotDrift4 26s ease-in-out infinite -12s; }
.party-fx .spot-5 { top: 62%; left: 22%; background: radial-gradient(circle, #22ff88, transparent 62%); animation: spotPulse 14s ease-in-out infinite -11.5s, spotDrift5 29s ease-in-out infinite -5s; }
@keyframes spotPulse { 0%,100% { opacity: 0; } 50% { opacity: .22; } }
@keyframes spotDrift1 { 0%,100% { transform: translate(0, 0); }   50% { transform: translate(10vw, -6vh); } }
@keyframes spotDrift2 { 0%,100% { transform: translate(0, 0); }   50% { transform: translate(-8vw, 8vh); } }
@keyframes spotDrift3 { 0%,100% { transform: translate(0, 0); }   50% { transform: translate(-11vw, -5vh); } }
@keyframes spotDrift4 { 0%,100% { transform: translate(0, 0); }   50% { transform: translate(7vw, 9vh); } }
@keyframes spotDrift5 { 0%,100% { transform: translate(0, 0); }   50% { transform: translate(9vw, -8vh); } }

@media (prefers-reduced-motion: reduce){ .party-fx { display: none; } }

/* ---------- Before/After slider ---------- */
.ba-slider { position: relative; max-width: 820px; margin: 2.5rem auto 0; aspect-ratio: 3/2;
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); user-select: none; cursor: ew-resize; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; transform: translateX(-1px); box-shadow: 0 0 12px rgba(0,0,0,.5); pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%;
    background: #fff; color: #0e0e0e; display: grid; grid-auto-flow: column; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.ba-handle svg { width: 15px; height: 15px; }
.ba-label { position: absolute; bottom: 14px; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    color: #fff; background: rgba(14,14,14,.6); padding: .35rem .7rem; border-radius: 999px; backdrop-filter: blur(4px); pointer-events: none; }
.ba-label--before { left: 14px; }
.ba-label--after { right: 14px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

/* Photo-background band (Why Choose PLS) */
.why-bg { position: relative; background-color: #0e0e0e;
    background-image: linear-gradient(rgba(10,10,10,.78), rgba(10,10,10,.9)), url('../img/why-dancefloor.jpg');
    background-size: cover; background-position: center 40%; background-repeat: no-repeat; }
.why-bg .card { background: rgba(18,18,18,.5); border-color: rgba(255,255,255,.16); backdrop-filter: blur(3px); }
.why-bg .card:hover { border-color: rgba(255,255,255,.4); }
/* dark photo band for the photo-booth features (same treatment, different photo) */
.booth-bg { position: relative; background-color: #0e0e0e;
    background-image: linear-gradient(rgba(10,10,10,.80), rgba(10,10,10,.9)), url('../img/booth-crowd-bg.jpg');
    background-size: cover; background-position: center 42%; background-repeat: no-repeat; }
.booth-bg .card { background: rgba(18,18,18,.5); border-color: rgba(255,255,255,.16); backdrop-filter: blur(3px); }
.booth-bg .card:hover { border-color: rgba(255,255,255,.4); }

.pricing-note { margin: 0 0 1.6rem; padding: .9rem 1.1rem; border: 1px solid var(--line);
    border-left: 3px solid var(--ink); border-radius: 8px; background: var(--paper-2);
    color: var(--text-dim); font-size: .9rem; font-weight: 300; line-height: 1.5; }
.pricing-note strong { color: var(--ink); font-weight: 600; }

/* ---------- Rentals ---------- */
.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rental-cat { border: 1px solid var(--line); border-radius: 14px; padding: 1.8rem; text-align: left; }
.rental-cat h3 { margin: .3rem 0 .5rem; }
.rental-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.rental-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line); font-weight: 300; color: var(--text-dim); }
.rental-list li:last-child { border-bottom: none; }
.rental-list .qty { color: var(--ink); font-weight: 500; font-size: .8rem; letter-spacing: .5px; white-space: nowrap; }
@media (max-width: 900px) { .rental-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rental-grid { grid-template-columns: 1fr; } }

/* ---------- Vendors ---------- */
.vendor-cat { margin-bottom: 4rem; }
.vendor-cat-head { display: flex; align-items: baseline; gap: 1.2rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 2rem; }
.vendor-cat-head h2 { font-size: 2rem; font-weight: 500; }
.vendor-cat-head .count { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mute); }
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vendor {
    border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.vendor:hover { border-color: var(--ink); transform: translateY(-3px); }
.vendor .v-name { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: .5px; font-size: 1.25rem; font-weight: 500; }
.vendor .v-type { font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mute); margin: .3rem 0 .8rem; }
.vendor .v-desc { color: var(--text-dim); font-weight: 300; font-size: .95rem; }
.vendor .v-link { display: inline-block; margin-top: 1rem; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.vendor-note { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; color: var(--text-dim); font-weight: 300; font-size: .95rem; }
.vendor-cat-desc { color: var(--text-dim); font-weight: 300; font-size: 1.05rem; max-width: 74ch; margin: -0.6rem 0 0; }

/* ---------- Favorite venues (logo wall) ---------- */
.venue-wall {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
    margin-top: 2.5rem;
}
.venue-logo {
    position: relative; display: flex; align-items: center; justify-content: center;
    flex: 0 1 220px; max-width: 100%; min-height: 150px; padding: 2rem 1.6rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    text-align: center; text-decoration: none;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.venue-logo:hover { background: var(--paper-2); border-color: var(--ink); }
.venue-logo img {
    max-width: 100%; max-height: 100px; object-fit: contain;
    filter: grayscale(1); opacity: .7; transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.venue-logo:hover img { filter: none; opacity: 1; }
.venue-logo .venue-name { display: none; flex-direction: column; gap: .5rem; }
.venue-logo.is-text .venue-name { display: flex; }
.venue-name .vn-main {
    font-family: var(--font-head); font-size: 1.5rem; line-height: 1.02;
    letter-spacing: .01em; text-transform: uppercase; color: var(--ink);
}
.venue-name .vn-loc {
    font-family: var(--font-sub); font-size: .7rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text-mute);
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.text-dim { color: var(--text-dim); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }

/* ---------- Award badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; margin-top: 2.5rem; }
.badge-row img { height: 110px; width: auto; display: block; }
.footer-badges {
    width: min(100% - 3rem, var(--maxw)); margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: center;
    padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--line-dark-soft);
}
.footer-badges-label { font-family: var(--font-sub); text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; color: var(--on-dark-mute); margin-right: .5rem; }
.footer-badges img { height: 74px; width: auto; display: block; }
.award-feature { max-width: 440px; margin: 2.5rem auto 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.award-feature img { width: 100%; height: auto; display: block; }
@media (max-width: 560px) { .footer-badges img { height: 60px; } .badge-row img { height: 86px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding-top: 4rem; }
.footer-grid {
    width: min(100% - 3rem, var(--maxw)); margin-inline: auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 3.5rem;
}
.footer-col .brand-mark { color: var(--on-dark); border-color: var(--line-dark); }
.footer-col .brand-text { color: var(--on-dark); }
.footer-col h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: 3px; color: var(--on-dark-mute); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color: var(--on-dark-dim); font-weight: 300; font-size: .92rem; }
.footer-col a:hover { color: var(--on-dark); }
.footer-tag { color: var(--on-dark-dim); margin-top: 1.2rem; font-weight: 300; }
.footer-note { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.5rem; margin-top: .6rem; color: var(--on-dark); }
.social-row { display: flex; gap: 1.4rem; margin-top: 1rem; flex-wrap: wrap; }
.social-row a { color: var(--on-dark-dim); font-weight: 400; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; }
.social-row a:hover { color: var(--on-dark); }
.footer-bottom {
    border-top: 1px solid var(--line-dark-soft); padding: 1.8rem 0;
    width: min(100% - 3rem, var(--maxw)); margin-inline: auto;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    color: var(--on-dark-mute); font-size: .78rem; font-weight: 300;
}
.footer-bottom a:hover { color: var(--on-dark); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); filter: blur(6px);
    transition: opacity .9s var(--ease), transform 1s var(--ease), filter .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; filter: none; }
/* Directional variants */
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(.92); filter: blur(6px); }
.reveal--left.in, .reveal--right.in, .reveal--scale.in { transform: none; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 500;
    background: linear-gradient(90deg, #fff, #9a9a9a); box-shadow: 0 0 10px rgba(255,255,255,.4);
    transition: width .1s linear; pointer-events: none; }

/* Parallax media */
.parallax-wrap { overflow: hidden; }
.parallax-wrap img { will-change: transform; }

@media (prefers-reduced-motion: reduce){
    html { scroll-behavior: auto !important; }
    .reveal, .reveal--left, .reveal--right, .reveal--scale { opacity: 1; transform: none; filter: none; }
    .scroll-progress { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .grid-3, .grid-4, .vendor-grid { grid-template-columns: repeat(2, 1fr); }
    .split, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .split.reverse .split-media { order: 0; }
    /* Don't force one ratio on phones. This used to be 16/10, which overrode every
       --3x4 / --4x3 / --16x9 / --landscape modifier and squashed portrait photos
       into a wide strip, cropping the subject off-centre. Each slot now keeps its
       intended framing; min-height:0 lets aspect-ratio govern cleanly. */
    .split-media { min-height: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav-toggle { display: flex; position: relative; z-index: 1203; }
    /* Full-screen mobile menu — nothing gets clipped, big tap targets. */
    .main-nav {
        position: fixed; inset: 0; width: 100%; max-height: none; z-index: 1200;
        overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
        background: rgba(10,10,10,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border: 0; border-radius: 0; box-shadow: none;
        padding: calc(env(safe-area-inset-top, 0px) + 6.5rem) 1.6rem calc(env(safe-area-inset-bottom, 0px) + 2.5rem);
        opacity: 0; visibility: hidden; transform: none;
        transition: opacity .28s var(--ease), visibility .28s var(--ease);
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    /* keep the logo and the X above the overlay, with no header bar showing through */
    body.nav-open .site-header {
        z-index: 1202; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
        border-bottom-color: transparent; box-shadow: none;
    }
    body.nav-open { overflow: hidden; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav > ul > li { border-bottom: 1px solid var(--line-dark-soft); }
    .main-nav > ul > li:last-child { border-bottom: none; }
    .main-nav a {
        display: block; padding: 1.05rem .2rem; font-size: .95rem; letter-spacing: 3px;
        border-radius: 0; color: var(--on-dark);
    }
    .main-nav a:hover, .main-nav a:active { background: transparent; color: var(--on-dark-dim); }
    body.nav-open .party-toggle, body.nav-open .chat-launcher, body.nav-open .cookie-bar, body.nav-open .scroll-progress { display: none !important; }
    .main-nav > ul > li > a.active::after { display: none; }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        background: transparent; border: 0; padding: 0 0 .6rem 1rem; display: none;
    }
    .dropdown a { font-size: .8rem; letter-spacing: 2.4px; padding: .72rem .2rem; color: var(--on-dark-dim); }
    .has-dropdown.expanded .dropdown { display: block; }
    .nav-cta { margin: 1.7rem 0 0; border-bottom: none; }
    .nav-cta a { width: 100%; justify-content: center; padding: 1.05rem 1rem; font-size: .82rem; letter-spacing: 2.5px; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4, .grid-2, .vendor-grid { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 4.5rem 0; }
    .cta-band { padding: 3rem 1.6rem; }
    .brand-text { display: none; }
}

/* ============================================================
   RECORDED MIXES — audio player
   ============================================================ */
.mix-list { display: grid; gap: 1.2rem; max-width: 860px; margin-left: auto; margin-right: auto; }

.mix {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    align-items: start;
    text-align: left;
    padding: 1.6rem 1.8rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.mix:hover { border-color: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.mix.playing { border-color: var(--ink); box-shadow: 0 12px 34px rgba(0,0,0,.14); }

/* play / pause button */
.mix-play {
    width: 56px; height: 56px; flex: none;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--ink);
    background: var(--ink); color: var(--paper);
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.mix-play:hover { transform: scale(1.06); }
.mix-play svg { width: 22px; height: 22px; stroke-width: 2; }
.mix-play .ico-pause { display: none; }
.mix.playing .mix-play .ico-play { display: none; }
.mix.playing .mix-play .ico-pause { display: block; }
.mix-play--soon { background: transparent; color: var(--text-mute); border-color: var(--line); cursor: default; }
.mix-play--soon:hover { transform: none; }

.mix-body { min-width: 0; }
.mix-head { display: flex; align-items: center; gap: .8rem; }
.mix-head h3 { font-family: var(--font-sub); font-size: 1.25rem; letter-spacing: .5px; margin: 0; }
.mix-len {
    font-family: var(--font-sub); font-size: .75rem; letter-spacing: 1px;
    color: var(--text-mute); border: 1px solid var(--line);
    border-radius: 999px; padding: .15rem .6rem;
}
.mix-desc { color: var(--text-dim); font-size: .95rem; margin: .5rem 0 .9rem; }
.mix-tags { justify-content: flex-start; margin-bottom: 1rem; }
.mix-tags .chip { padding: .35rem 1rem; font-size: .75rem; }
.mix-soon-note { color: var(--text-mute); font-size: .85rem; font-style: italic; }

/* animated eq — only while playing */
.mix-eq { display: none; align-items: flex-end; gap: 3px; height: 16px; }
.mix.playing .mix-eq { display: flex; }
.mix-eq span { width: 3px; background: var(--ink); border-radius: 2px; animation: mixEq .9s ease-in-out infinite; }
.mix-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.mix-eq span:nth-child(2) { height: 90%; animation-delay: .15s; }
.mix-eq span:nth-child(3) { height: 60%; animation-delay: .3s; }
.mix-eq span:nth-child(4) { height: 80%; animation-delay: .45s; }
@keyframes mixEq { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

/* scrubber */
.mix-player { display: block; }
.mix-seek {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px; border-radius: 999px; cursor: pointer;
    background: linear-gradient(var(--ink), var(--ink)) 0/var(--pct, 0%) 100% no-repeat, var(--line);
}
.mix-seek::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--ink); border: 2px solid var(--paper);
    box-shadow: 0 1px 5px rgba(0,0,0,.35); cursor: pointer;
}
.mix-seek::-moz-range-thumb {
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--ink); border: 2px solid var(--paper); cursor: pointer;
}
.mix-time {
    display: flex; justify-content: space-between;
    font-family: var(--font-sub); font-size: .75rem; letter-spacing: 1px;
    color: var(--text-mute); margin-top: .5rem;
}

/* dark-band variant */
.invert .mix { background: transparent; border-color: var(--line-dark); }
.invert .mix:hover, .invert .mix.playing { border-color: var(--paper); box-shadow: 0 12px 34px rgba(0,0,0,.45); }
.invert .mix-play { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.invert .mix-head h3 { color: var(--on-dark); }
.invert .mix-desc { color: var(--on-dark-dim); }
.invert .mix-len { color: var(--on-dark-dim); border-color: var(--line-dark); }
.invert .mix-eq span { background: var(--paper); }
.invert .mix-seek { background: linear-gradient(var(--paper), var(--paper)) 0/var(--pct, 0%) 100% no-repeat, var(--line-dark); }
.invert .mix-seek::-webkit-slider-thumb { background: var(--paper); border-color: var(--ink); }
.invert .mix-seek::-moz-range-thumb { background: var(--paper); border-color: var(--ink); }

@media (max-width: 700px) {
    .mix { padding: 1.3rem 1.2rem; gap: 1rem; }
    .mix-play { width: 48px; height: 48px; }
    .mix-play svg { width: 18px; height: 18px; }
    .mix-head { flex-wrap: wrap; gap: .5rem; }
    .mix-head h3 { font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
    .mix-eq span { animation: none; }
    .mix-play:hover { transform: none; }
}
