/* ==========================================================================
   DJ Jarryd Sunkel — jarrydsunkel.co.za
   Sister site to kznweddingdj.co.za. Same three colours, modern build.

   The page is a strip of alternating black and white bands. Red is a signal,
   never a surface: it lights buttons, glows cards and marks one line of the
   headline. Glass and glow do the lifting a fourth colour would otherwise do.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */

:root {
  /* Palette — the three from the brief, plus greys to separate surfaces. */
  --ink: #000000;
  --signal: #d30000;
  --paper: #ffffff;

  --panel: #0b0b0d;          /* raised surface on black */
  --panel-hi: #141417;       /* card on black */
  --paper-alt: #f4f4f5;      /* card on white */
  --graphite: #8a8a92;       /* muted text on black */
  --slate: #55555e;          /* muted text on white */

  --hair: rgba(255, 255, 255, 0.11);
  --hair-strong: rgba(255, 255, 255, 0.2);
  --hair-ink: rgba(0, 0, 0, 0.1);
  --gold: #fbbc04;           /* review stars only */

  /* Glow. Tight and directional — a lift off the page, never a halo. */
  --glow-card: 0 0 0 1px rgba(211, 0, 0, 0.26), 0 18px 48px -22px rgba(211, 0, 0, 0.42);
  --glow-card-hi: 0 0 0 1px rgba(211, 0, 0, 0.6), 0 26px 68px -18px rgba(211, 0, 0, 0.62);
  --glow-card-ink: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 18px 44px -26px rgba(211, 0, 0, 0.4);
  --glow-soft: 0 0 0 1px rgba(211, 0, 0, 0.3), 0 14px 34px -16px rgba(211, 0, 0, 0.42);
  --glow-btn: 0 10px 32px -10px rgba(211, 0, 0, 0.8);
  --glow-btn-hi: 0 14px 44px -10px rgba(211, 0, 0, 0.95);
  --glow-lightbox: 0 0 0 1px rgba(211, 0, 0, 0.55), 0 0 90px -12px rgba(211, 0, 0, 0.6),
    0 40px 90px -30px rgba(0, 0, 0, 0.9);

  /* Type — Poppins throughout. Bold for headings, normal for text. */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Geometry */
  --r-card: 18px;
  --r-pill: 999px;
  --wrap: 1240px;
  --nav-h: 86px;
  --nav-h-sm: 68px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --gap-section: clamp(3rem, 5.5vw, 5.25rem);

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

/* ---------------------------------------------------------------- 2. Reset */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img[height] { height: auto; }

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.85rem 1.4rem;
  background: var(--signal);
  color: #fff;
  font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

.sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------ 3. Typography */

h1, h2, h3, h4, .display {
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.85rem, 3.9vw, 3.05rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 700; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 1.1rem;
  line-height: 1.6;
}
.section--paper .eyebrow { color: var(--slate); }

.red { color: var(--signal); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}
.section--paper .lede { color: var(--slate); }

.muted { color: var(--graphite); }
.section--paper .muted { color: var(--slate); }

/* Short red rule under section headings. */
.rule {
  width: 62px;
  height: 3px;
  border-radius: 2px;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(211, 0, 0, 0.85);
  margin: 0 0 1.6rem;
}
.head--center .rule { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- 4. Layout */

.wrap {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--gap-section);
}

.section--ink { background: var(--ink); color: var(--paper); }
.section--panel { background: var(--panel); color: var(--paper); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }

/* A hairline of red marks every black/white switch. */
.section + .section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.55), transparent);
}

.head { max-width: 46rem; margin-bottom: clamp(1.75rem, 2.6vw, 2.5rem); }
.head--center { margin-inline: auto; text-align: center; }
.head p { margin-bottom: 0; }

.grid { display: grid; gap: clamp(1.25rem, 2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.actions--center { justify-content: center; }

/* Reveal on scroll. Gated on html.js so the page still reads without JS. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- 5. Buttons */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

/* The glass: a bright lip along the top edge, gone by the middle. */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 58%);
}

/* The sheen: a narrow highlight that sweeps across once on hover. */
.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 45%;
  transform: translateX(-220%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 0.75s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(340%) rotate(18deg); }
.btn:active { transform: translateY(0); }

.btn__arrow {
  transition: transform 0.35s var(--ease);
  font-size: 1em;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--signal {
  background: linear-gradient(180deg, #e60a0a, #ad0000);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: var(--glow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.btn--signal:hover {
  background: linear-gradient(180deg, #ff1414, #c00000);
  box-shadow: var(--glow-btn-hi), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--paper);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(211, 0, 0, 0.75);
  box-shadow: var(--glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--ink {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--ink);
  box-shadow: 0 10px 28px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn--ink::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%);
}
.btn--ink::after {
  background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.16), transparent);
}
.btn--ink:hover {
  border-color: rgba(211, 0, 0, 0.6);
  color: var(--signal);
  box-shadow: var(--glow-card-ink), 0 14px 34px -18px rgba(211, 0, 0, 0.55);
}

.btn--sm { padding: 0.75rem 1.35rem; font-size: 0.7rem; letter-spacing: 0.13em; }
.btn--wide { padding-inline: 2.6rem; }

/* Quiet text link with a red underline that draws in. */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--signal);
}
.tlink span { position: relative; padding-bottom: 3px; }
.tlink span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tlink:hover span::after { transform: scaleX(1); }
.tlink .btn__arrow { transition: transform 0.35s var(--ease); }
.tlink:hover .btn__arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------- 6. Nav */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55));
  transition: height 0.4s var(--ease), background 0.4s var(--ease),
    box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  height: var(--nav-h-sm);
  background: rgba(6, 6, 8, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--hair);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 1);
}

.nav__inner {
  width: min(100% - (var(--pad) * 2), 1440px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav__brand { flex: none; display: block; }
.nav__brand img {
  width: auto;
  height: 46px;
  transition: height 0.4s var(--ease);
}
.nav.is-stuck .nav__brand img { height: 38px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.5rem);
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.45rem 0.1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: #fff; }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  box-shadow: 0 0 14px rgba(211, 0, 0, 0.9);
}

/* ---------------------------------------------------------- Nav dropdown */

/* Opens on hover and on :focus-within, so the keyboard needs no JavaScript. */
.nav__has-sub { position: relative; }

.nav__caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.nav__has-sub:hover .nav__caret,
.nav__has-sub:focus-within .nav__caret { transform: translateY(0) rotate(225deg); }

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 5;
  min-width: 232px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  border-radius: 16px;
  background: rgba(8, 8, 10, 0.94);
  border: 1px solid rgba(211, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--glow-card), 0 26px 60px -30px rgba(0, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
/* A margin would break the hover path between link and panel; padding on a
   pseudo-element bridges the gap instead. */
.subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav__has-sub:hover .subnav,
.nav__has-sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 6px);
}

.subnav a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.subnav a:hover,
.subnav a:focus-visible {
  background: rgba(211, 0, 0, 0.16);
  color: #fff;
  padding-left: 1.15rem;
}
.subnav a[aria-current="page"] { color: var(--signal); }

.subnav__split {
  height: 1px;
  margin: 0.4rem 0.5rem;
  background: var(--hair);
}

.nav__cta { flex: none; margin-left: clamp(0.5rem, 1.5vw, 1.25rem); }

.nav__burger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__burger:hover { border-color: rgba(211, 0, 0, 0.7); box-shadow: var(--glow-soft); }
.nav__burger i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav.is-open .nav__burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger i:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — a panel on the right that fades down into place. */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 89;
  width: min(360px, 86vw);
  display: flex;
  flex-direction: column;
  /* Auto margins on the list centre it when there is room and collapse when
     there is not — unlike justify-content: center, which would push the first
     items up behind the nav on a short screen. */
  justify-content: flex-start;
  padding: calc(var(--nav-h) + 1.25rem) clamp(1.25rem, 5vw, 1.75rem) 1.75rem;
  background: rgba(6, 6, 9, 0.93);
  border-left: 1px solid rgba(211, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: -1px 0 0 rgba(211, 0, 0, 0.25), -28px 0 70px -30px rgba(211, 0, 0, 0.5),
    -40px 0 80px -40px rgba(0, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-22px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), visibility 0.42s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }

/* Dimmer behind the panel, so the page reads as inactive. */
.menu__veil {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s var(--ease), visibility 0.42s;
}
.menu__veil.is-open { opacity: 1; visibility: visible; }

/* Each row fades down in turn once the panel lands. */
.menu__list li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.menu.is-open .menu__list li { opacity: 1; transform: none; }
.menu.is-open .menu__list li:nth-child(1) { transition-delay: 0.08s; }
.menu.is-open .menu__list li:nth-child(2) { transition-delay: 0.12s; }
.menu.is-open .menu__list li:nth-child(3) { transition-delay: 0.16s; }
.menu.is-open .menu__list li:nth-child(4) { transition-delay: 0.2s; }
.menu.is-open .menu__list li:nth-child(5) { transition-delay: 0.24s; }
.menu.is-open .menu__list li:nth-child(6) { transition-delay: 0.28s; }
.menu.is-open .menu__list li:nth-child(7) { transition-delay: 0.32s; }
.menu.is-open .menu__list li:nth-child(8) { transition-delay: 0.36s; }

.menu__list { list-style: none; margin: auto 0 2rem; padding: 0; }
.menu__list li + li { border-top: 1px solid var(--hair); }
.menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.7rem, 1.8vh, 1.05rem) 0;
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.menu__link::after { content: "\2192"; color: var(--signal); opacity: 0; transition: opacity 0.3s var(--ease); }
.menu__link:hover { color: var(--signal); padding-left: 0.5rem; }
.menu__link:hover::after { opacity: 1; }
.menu__link[aria-current="page"] { color: var(--signal); }

.menu__foot { display: grid; gap: 0.7rem; }
.menu__foot .btn { width: 100%; }
.menu__contact {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hair);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}
.menu__contact a { text-decoration: none; }
.menu__contact a:hover { color: var(--signal); }

/* ------------------------------------------------------------------ 7. Hero */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  /* Bottom padding leaves the stat cards somewhere to sit without ever
     reaching the hero buttons. */
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(8rem, 15vh, 12rem);
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two scrims: a vertical one for text contrast, a red bloom for brand warmth. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.34) 40%, rgba(0, 0, 0, 0.84) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -30%;
  width: min(1100px, 130%);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(211, 0, 0, 0.28), transparent 65%);
  pointer-events: none;
}

.hero__inner { position: relative; max-width: 62rem; margin-inline: auto; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 7.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 0.5em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}
.hero h1 span { display: block; }
.hero h1 .red { text-shadow: 0 0 44px rgba(211, 0, 0, 0.55); }

/* Static brand line inside the H1. The typewriter only ever touches `.type`,
   so this paints on the first frame instead of arriving with the typed lines
   1.9s later — it is both the part of the heading that has to be readable
   immediately and the part search engines weigh most. Sized as a kicker so it
   sits above the typed lines rather than competing with them. */
.hero__brand {
  margin-bottom: 0.45em;
  font-size: clamp(0.8rem, 2.3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

.hero__tag {
  max-width: 46rem;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.1vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

/* Typewriter. The headline text ships in the HTML for crawlers and for the
   no-JS case; the script empties it, types it back, then drops the caret. */
.hero h1 .type,
.phero h1 .type { position: relative; display: block; }
.js .hero h1.is-typing .type::after,
.js .phero h1.is-typing .type::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 0.08em;
  vertical-align: -0.06em;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(211, 0, 0, 0.9);
  animation: caret 0.75s steps(1) infinite;
}
.js .hero h1.is-typing .type:not(.is-active)::after,
.js .phero h1.is-typing .type:not(.is-active)::after { display: none; }

@keyframes caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.hero__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 30rem;
  margin: 2rem auto 0;
  color: var(--signal);
}
.hero__divider::before,
.hero__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.hero .actions { justify-content: center; margin-top: 2.1rem; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }

/* ----------------------------------------------------------------- 8. Stats */

/* The cards straddle the bottom edge of the hero image — no white band behind
   them, so the photograph runs right up to the black section below. */
.stats {
  position: relative;
  z-index: 5;
  margin-top: clamp(-9rem, -13vh, -6.5rem);
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.stat {
  padding: clamp(1.25rem, 2vw, 1.85rem) 1.25rem;
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  text-align: center;
  box-shadow: var(--glow-card), 0 30px 60px -30px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-card-hi), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat__icon { color: var(--signal); margin: 0 auto 0.7rem; }
.stat__icon svg { width: 30px; height: 30px; }

.stat__value {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.5;
}

/* ------------------------------------------------------------ 9. Split bands */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.split--flip .split__media { order: 2; }

.split__media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--glow-card), 0 40px 80px -50px rgba(0, 0, 0, 0.9);
  transition: box-shadow 0.45s var(--ease);
}
.section--paper .split__media { box-shadow: var(--glow-card-ink), 0 40px 80px -55px rgba(0, 0, 0, 0.6); }
.split__media:hover { box-shadow: var(--glow-card-hi); }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.split__media:hover img { transform: scale(1.04); }

/* Portrait-format photograph in a split band: shown uncropped at its own 3:4,
   in a narrower column so it does not tower over the copy beside it. */
.split--portrait { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
.split__media--portrait { max-width: 460px; margin-inline: auto; }
.split__media--portrait img { aspect-ratio: 3 / 4; }

/* A stacked pair of images for the about band. */
.split__media--stack { box-shadow: none; overflow: visible; }
.split__media--stack:hover { box-shadow: none; }
.stack { position: relative; padding-bottom: 18%; padding-right: 14%; }
.stack__a, .stack__b {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--glow-card), 0 40px 80px -50px rgba(0, 0, 0, 0.9);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.stack__a img, .stack__b img { width: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.stack__a img { aspect-ratio: 4 / 5; }
.stack__b img { aspect-ratio: 4 / 3; }
.stack__b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  border: 4px solid var(--ink);
}
.section--paper .stack__b { border-color: var(--paper); }
.stack__a:hover, .stack__b:hover { transform: translateY(-4px); box-shadow: var(--glow-card-hi); }

.split__copy h2 { margin-bottom: 0.5em; }

.split__copy p a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 0, 0, 0.4);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.split__copy p a:hover { border-color: var(--signal); }

/* Bullet list with red ticks. */
.ticks { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.ticks li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.97rem;
  line-height: 1.6;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(211, 0, 0, 0.9);
}

/* --------------------------------------------------------------- 10. Cards */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-card);
  background: var(--panel-hi);
  box-shadow: var(--glow-card);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.section--paper .card { background: var(--paper); box-shadow: var(--glow-card-ink); }

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--glow-card-hi);
}

.card__media { position: relative; overflow: hidden; }
.card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.card:hover .card__media::after { opacity: 1; }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.4rem, 2vw, 1.85rem);
}
.card__body h3 { margin-bottom: 0.55rem; }
.card__body p { font-size: 0.95rem; line-height: 1.65; color: var(--graphite); }
.section--paper .card__body p { color: var(--slate); }
.card__body .tlink { margin-top: auto; padding-top: 1.2rem; }

.card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--signal);
  margin-bottom: 0.75rem;
}

/* Whole-card link: stretched hit area, keeps the heading as the a11y label. */
.card__link::after { content: ""; position: absolute; inset: 0; }

/* ------------------------------------------------------------ 11. Equipment */

.feature {
  text-align: center;
  padding: clamp(1.4rem, 2vw, 1.9rem) 1rem;
  border-radius: var(--r-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  background: var(--paper);
  box-shadow: var(--glow-card-hi);
}
.section--ink .feature:hover { background: var(--panel-hi); }

.feature__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  color: var(--signal);
  background: rgba(211, 0, 0, 0.07);
  border: 1px solid rgba(211, 0, 0, 0.22);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:hover .feature__icon { box-shadow: var(--glow-soft); transform: scale(1.06); }

.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature p { font-size: 0.88rem; line-height: 1.6; color: var(--slate); margin: 0; }
.section--ink .feature p { color: var(--graphite); }

/* Home page's "Professional gear" cards get the venue-slider treatment: a
   glass sheen and a rotating red ring on hover, no glow at rest. Scoped to
   this modifier rather than .feature itself, since .feature keeps its plain
   glow hover on wedding-dj.html and about.html. */
.feature--glass {
  position: relative;
  isolation: isolate;
}
.feature--glass::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--signal) 12%, transparent 26%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: venue-chase 2.4s linear infinite paused;
  transition: opacity 0.35s var(--ease);
}
.feature--glass:hover {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.35);
}
.feature--glass:hover::before,
.feature--glass:focus-visible::before { opacity: 1; animation-play-state: running; }
@media (prefers-reduced-motion: reduce) {
  .feature--glass::before { animation: none; }
}

/* Brand logos — greyscale at rest, true colour and a glow on hover. */
.logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.15rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--hair-ink);
  list-style: none;
  padding-inline: 0;
}
.section--ink .logos { border-top-color: var(--hair); }

.logo {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 1.8vw, 1.5rem) clamp(0.75rem, 1.4vw, 1.25rem);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.logo img {
  width: 100%;
  max-height: clamp(52px, 5.5vw, 78px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}
.logo:hover { transform: translateY(-3px); box-shadow: var(--glow-soft); }
.logo:hover img { filter: none; opacity: 1; }

/* ---------------------------------------------------- 11b. Venue strip */

/* A venue card is the room itself, with the name over a gradient at the foot
   of the photo. Four of these fill one `grid--4` row on the home page. */
.vslide {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  border-radius: var(--r-card);
  background: var(--panel-hi);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 14px 30px -22px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vslide img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

/* The gradient is a pseudo-element so it sits over the photo but under the
   name. It does not change on hover — the hover treatment is the border ring
   only, so the photograph is never washed over. */
.vslide::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 8%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
  pointer-events: none;
}

.vslide__name {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 0;
  padding: 0 0.95rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #fff;
  transition: color 0.35s var(--ease);
}

/* The whole hover effect: a red arc chasing around the card border. The ring
   is a rotating conic-gradient masked down to just the border strip, so the
   photograph underneath is left alone. */
.vslide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--signal) 12%, transparent 26%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: venue-chase 2.4s linear infinite paused;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.vslide:hover,
.vslide:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--glow-card-hi);
}
.vslide:hover::before,
.vslide:focus-visible::before { opacity: 1; animation-play-state: running; }

@keyframes venue-chase {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .vslide::before { animation: none; }
}

/* -------------------------------------------------------------- 12. Reviews */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-ink);
  background: var(--paper-alt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--slate);
}
.section--ink .rating { border-color: var(--hair-strong); background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.82); }
.rating b { color: var(--ink); font-weight: 800; }
.section--ink .rating b { color: #fff; }

.reviews { display: grid; gap: clamp(1.1rem, 1.8vw, 1.6rem); }
.reviews--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reviews--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Review cards stay white wherever they sit — on the black reviews page that
   inversion is the point, and it keeps the long text easy to read. */
.review {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border-radius: var(--r-card);
  background: var(--paper);
  text-align: left;
  box-shadow: var(--glow-card-ink);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.section--ink .review { box-shadow: var(--glow-card); }

/* Glass sheen sweeping across on hover, same language as the buttons. */
.review::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 40%;
  transform: translateX(-220%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.1), transparent);
  transition: transform 0.85s var(--ease);
}

.review:hover,
.review:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--glow-card-hi);
}
.review:hover::after,
.review:focus-visible::after { transform: translateX(340%) rotate(18deg); }

.review__top { display: flex; align-items: center; gap: 0.8rem; }

.review__avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e60a0a, #ad0000);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px -10px rgba(211, 0, 0, 0.9);
}

.review__who { min-width: 0; }
.review__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review__date { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--slate); }

.review__stars { color: var(--gold); display: flex; gap: 2px; }
.review__stars svg { width: 14px; height: 14px; fill: currentColor; }

.review__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--slate);
}

.review__more {
  margin-top: auto;
  padding-top: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.review:hover .review__more .btn__arrow { transform: translateX(4px); }
.review__more .btn__arrow { transition: transform 0.35s var(--ease); }

/* Review search */
.review-search {
  max-width: 520px;
  margin: 0 auto clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
}
.review-search__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 0.5rem;
}
.review-search__hint {
  font-size: 0.82rem;
  color: var(--graphite);
  margin: 0 0 1rem;
}
.review-search__box { position: relative; display: flex; align-items: center; }
.review-search__icon {
  position: absolute;
  left: 1.1rem;
  width: 17px;
  height: 17px;
  color: var(--graphite);
  pointer-events: none;
}
.review-search input[type="search"] {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 2.75rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  -webkit-appearance: none;
  appearance: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-search input[type="search"]::placeholder { color: var(--graphite); }
.review-search input[type="search"]:focus-visible {
  outline: none;
  border-color: rgba(211, 0, 0, 0.6);
  box-shadow: var(--glow-soft);
}
.review-search input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }
.review-search__status {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--graphite);
}

.reviews__empty {
  grid-column: 1 / -1;
  padding: clamp(2rem, 4vw, 3rem) 1rem;
  text-align: center;
  color: var(--graphite);
  font-size: 0.98rem;
}

/* Pager */
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.pager__btn {
  min-width: 44px;
  height: 44px;
  padding-inline: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--hair-ink);
  background: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
}
.section--ink .pager__btn { border-color: var(--hair-strong); background: rgba(255, 255, 255, 0.05); color: #fff; }
.pager__btn:hover:not(:disabled) { border-color: rgba(211, 0, 0, 0.6); box-shadow: var(--glow-soft); }
.pager__btn[aria-current="true"] {
  background: linear-gradient(180deg, #e60a0a, #ad0000);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-btn);
}
.pager__btn:disabled { opacity: 0.35; cursor: not-allowed; }

.pager__ellipsis {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding-inline: 0.15rem;
  color: var(--slate);
  font-weight: 700;
}
.section--ink .pager__ellipsis { color: var(--graphite); }

/* ------------------------------------------------------------ 13. Lightbox */

.lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(2, 2, 4, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lb.is-open { opacity: 1; visibility: visible; }

.lb__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(86vh, 780px);
  overflow-y: auto;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--glow-lightbox);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.45s var(--ease);
}
.lb.is-open .lb__panel { transform: none; }

.lb__panel--media {
  width: min(100%, 1100px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: var(--r-card);
}
.lb__panel--media img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-card);
  background: #000;
  box-shadow: var(--glow-lightbox);
}

.lb__close,
.lb__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.lb__close:hover,
.lb__nav:hover { border-color: rgba(211, 0, 0, 0.8); background: rgba(211, 0, 0, 0.25); box-shadow: var(--glow-soft); }
.lb__close svg, .lb__nav svg { width: 18px; height: 18px; }

/* The close button hangs off the overlay, not the panel, so it stays put while
   a long review scrolls underneath it. */
.lb__close {
  top: clamp(12px, 2.5vw, 26px);
  right: clamp(12px, 2.5vw, 26px);
  background: rgba(10, 10, 12, 0.8);
}
.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__nav--prev { left: clamp(-56px, -4vw, -14px); }
.lb__nav--next { right: clamp(-56px, -4vw, -14px); }

.lb__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.lb__head .review__avatar { width: 52px; height: 52px; font-size: 1.1rem; }
.lb__name { font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: #fff; }
.lb__meta { font-size: 0.76rem; letter-spacing: 0.06em; color: var(--graphite); }

.lb__body {
  padding-left: clamp(1rem, 2vw, 1.35rem);
  border-left: 3px solid var(--signal);
  box-shadow: -10px 0 30px -18px rgba(211, 0, 0, 0.95);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  white-space: pre-line;
}

.lb__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hair);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
}
.lb__count { white-space: nowrap; }

/* The image caption reads as a sentence, not a label. */
.lb__panel--media .lb__foot {
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.lb__steps { display: flex; gap: 0.5rem; }

/* ------------------------------------------------------- 13a. Venue pages */

/* Hero: the venue photograph, heavily scrimmed, with the identity card sitting
   on top of it rather than beside it. */
.vhero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(78vh, 780px);
  padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
}
.vhero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.vhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.92) 100%);
}

.vcard {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid var(--hair);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glow-card);
  transition: box-shadow 0.45s var(--ease);
}
.vcard:hover { box-shadow: var(--glow-card-hi); }

.vbadge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(211, 0, 0, 0.55);
  background: rgba(211, 0, 0, 0.14);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1;
}

.vhero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  text-transform: none;
  margin-bottom: 0.45rem;
}

.vplace {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
}
.vplace svg { width: 20px; height: 20px; flex: none; color: var(--signal); }

.vchips { display: flex; flex-wrap: wrap; gap: 0.7rem; list-style: none; margin: 0; padding: 0; }
.vchips li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vchips li:hover { border-color: rgba(211, 0, 0, 0.6); box-shadow: var(--glow-soft); }
.vchips svg { width: 18px; height: 18px; flex: none; color: var(--signal); }

/* The three-column row, in the sample's proportions. */
.vgrid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: clamp(1.1rem, 1.8vw, 1.6rem);
  align-items: start;
}
.vgrid > .vcard { height: 100%; }
.vgrid h2 { font-size: clamp(1.3rem, 2vw, 1.65rem); text-transform: none; margin-bottom: 1.1rem; }
.vgrid p { font-size: 0.95rem; line-height: 1.75; color: rgba(255, 255, 255, 0.78); }

/* Gallery tiles keep a small radius against the card's larger one. */
.vgallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}
.vshot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-hi);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vshot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s var(--ease); }
.vshot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.vshot:hover, .vshot:focus-visible { transform: translateY(-3px); box-shadow: var(--glow-soft); }
.vshot:hover img { transform: scale(1.06); }

.vgallery__more { display: flex; justify-content: center; margin-top: 1.1rem; }

/* Contact rows */
.vrows { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.2rem; }
.vrows a, .vrows span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  font-size: 0.97rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s var(--ease);
}
.vrows a:hover { color: var(--signal); }
.vrows svg { width: 20px; height: 20px; flex: none; color: var(--signal); }

.vsplit { height: 1px; background: var(--hair); margin: 1.35rem 0; }

.vsub {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--signal);
  margin: 0 0 0.7rem;
}
.vaddress {
  margin: 0 0 1.4rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

@media (max-width: 1024px) {
  .vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vgrid > .vcard:last-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .vgrid { grid-template-columns: minmax(0, 1fr); }
  .vhero { min-height: auto; padding-bottom: clamp(1.5rem, 5vw, 2.5rem); }
  .vchips li { font-size: 0.82rem; padding: 0.6rem 0.9rem; }
}

/* Venue index tiles: a real room rather than a logo, since the photograph is
   what a couple is actually choosing between. */
.vtile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-card);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hair);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: var(--glow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.vtile:hover,
.vtile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(211, 0, 0, 0.5);
  box-shadow: var(--glow-card-hi);
}

.vtile__media { position: relative; overflow: hidden; }
.vtile__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.vtile:hover .vtile__media img { transform: scale(1.06); }
.vtile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.65));
}

.vtile__body { padding: clamp(1rem, 1.8vw, 1.35rem); }
.vtile__name {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.vtile__where {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--graphite);
}
.vtile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}
.vtile:hover .vtile__cta .btn__arrow { transform: translateX(4px); }
.vtile__cta .btn__arrow { transition: transform 0.35s var(--ease); }

/* Photo credit closing every venue page. */
.vcredit {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--graphite);
}
.vcredit a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 0, 0, 0.4);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.vcredit a:hover { color: #fff; border-color: #fff; }

/* Two stacked buttons under the venue gallery. */
.vgallery__more { flex-direction: column; gap: 0.6rem; }
.vgallery__more .btn { width: 100%; }

/* ------------------------------------------------- 13b. Song suggestions */

.songs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.song {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border-radius: var(--r-card);
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hair);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: var(--glow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.song:hover,
.song:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(211, 0, 0, 0.5);
  box-shadow: var(--glow-card-hi);
}

/* Cover art comes live from Spotify, so it stays current when a playlist is
   re-ordered. The red wash underneath shows through if it ever fails to load. */
.song__art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(211, 0, 0, 0.35), rgba(10, 10, 12, 0.9));
}
.song__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s var(--ease);
}
.song:hover .song__art img { transform: scale(1.06); }
.song__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.7));
  opacity: 0.85;
}

.song__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e60a0a, #ad0000);
  color: #fff;
  box-shadow: var(--glow-btn);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.song__badge svg { width: 18px; height: 18px; fill: currentColor; margin-left: 2px; }
.song:hover .song__badge,
.song:focus-visible .song__badge { opacity: 1; transform: none; }

.song__body { padding: clamp(0.9rem, 1.6vw, 1.2rem); }
.song__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
}
.song__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

/* The Spotify embed brings its own dark chrome, so the panel just frames it. */
.lb__panel--player {
  width: min(100%, 560px);
  padding: 0;
  overflow: visible;
  background: transparent;
}
.lb__player {
  display: block;
  width: 100%;
  height: min(70vh, 560px);
  border: 0;
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--glow-lightbox);
}
.lb__playertitle {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--graphite);
}

@media (max-width: 1024px) {
  .songs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .songs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .song__badge { width: 38px; height: 38px; opacity: 1; transform: none; }
  .lb__player { height: min(66vh, 480px); }
}

/* ------------------------------------------------------------- 14. Gallery */

.gallery { columns: 4; column-gap: clamp(0.75rem, 1.2vw, 1.1rem); }
.gitem[hidden] { display: none !important; }
.gitem {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 clamp(0.75rem, 1.2vw, 1.1rem);
  padding: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  break-inside: avoid;
  background: var(--panel-hi);
  box-shadow: var(--glow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.section--paper .gitem { box-shadow: var(--glow-card-ink); }
.gitem img { width: 100%; transition: transform 0.7s var(--ease); }
.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gitem:hover, .gitem:focus-visible { transform: translateY(-5px); box-shadow: var(--glow-card-hi); }
.gitem:hover img { transform: scale(1.05); }
.gitem:hover::after { opacity: 1; }

.gitem__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(211, 0, 0, 0.9);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: var(--glow-btn);
}
.gitem__zoom svg { width: 17px; height: 17px; }
.gitem:hover .gitem__zoom, .gitem:focus-visible .gitem__zoom { opacity: 1; transform: none; }

/* -------------------------------------------------------------- 15. Venues */

.venues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.venues li {
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}
.venues li:hover { border-color: rgba(211, 0, 0, 0.7); box-shadow: var(--glow-soft); color: #fff; }
.section--paper .venues li { border-color: var(--hair-ink); background: var(--paper-alt); color: var(--slate); }
.section--paper .venues li:hover { color: var(--ink); }

/* ----------------------------------------------------------------- 16. CTA */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  background: var(--ink);
}
.cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(1200px, 140%);
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(211, 0, 0, 0.35), transparent 68%);
}
.cta h2 { margin-bottom: 0.45em; }
.cta .lede { max-width: 44rem; margin-inline: auto; }

.cta__note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(211, 0, 0, 0.55);
  border-radius: var(--r-pill);
  background: rgba(211, 0, 0, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.cta__note i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(211, 0, 0, 1);
}

/* ------------------------------------------------------------ 17. Page hero */

.phero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  overflow: hidden;
}

/* Nothing needs a full section of air straight after a full-height hero. */
.phero + .section { padding-top: clamp(2.25rem, 4vw, 3.5rem); }
.stats + .section { padding-top: clamp(1.75rem, 3vw, 2.75rem); }
.phero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.9) 100%);
}
.phero__inner { max-width: 52rem; }
.phero h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); margin-bottom: 0.4em; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite);
}
.crumbs a { text-decoration: none; transition: color 0.3s var(--ease); }
.crumbs a:hover { color: var(--signal); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: rgba(255, 255, 255, 0.3); }

/* ------------------------------------------------------------- 18. Contact */

.ccard {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hair);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  text-decoration: none;
  box-shadow: var(--glow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--glow-card-hi); border-color: rgba(211, 0, 0, 0.5); }

.ccard__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.5rem;
  border-radius: 15px;
  background: rgba(211, 0, 0, 0.14);
  border: 1px solid rgba(211, 0, 0, 0.35);
  color: var(--signal);
}
.ccard__icon svg { width: 24px; height: 24px; }
.ccard__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
}
.ccard__value { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700; color: #fff; line-height: 1.35; }
.ccard p { font-size: 0.9rem; color: var(--graphite); margin: 0; }

.infobox {
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border-radius: var(--r-card);
  background: var(--paper);
  box-shadow: var(--glow-card-ink);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.infobox:hover { transform: translateY(-4px); box-shadow: var(--glow-card-hi); }
.infobox h3 { margin-bottom: 0.9rem; }
.infobox dl { margin: 0; display: grid; gap: 0.55rem; }
.infobox .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--hair-ink);
  font-size: 0.92rem;
}
.infobox .row:last-child { border-bottom: 0; padding-bottom: 0; }
.infobox dt { color: var(--slate); }
.infobox dd { margin: 0; font-weight: 700; color: var(--ink); }

/* The contact page keeps its calls to action inside a card rather than loose
   on the band, so the page ends on an object instead of a gap. */
.ctacard {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  max-width: 46rem;
  margin: clamp(2rem, 3.5vw, 3rem) auto 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--r-card);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hair);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--glow-card);
  transition: box-shadow 0.45s var(--ease);
}
.section--paper .ctacard {
  background: var(--paper);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--glow-card-ink);
}
.ctacard:hover { box-shadow: var(--glow-card-hi); }
.ctacard h3 { margin: 0; }
.ctacard p { margin: 0; max-width: 34rem; }
.ctacard .actions { margin-top: 0.35rem; justify-content: center; }

/* ------------------------------------------------------- 18b. Nudge modal */

/* Shown once per session after a while on the page. Red glass, dismissible. */
.nudge {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(2, 2, 4, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.nudge.is-open { opacity: 1; visibility: visible; }

.nudge__panel {
  position: relative;
  width: min(100%, 500px);
  padding: clamp(1.9rem, 4vw, 2.9rem);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(28, 8, 10, 0.94), rgba(10, 10, 12, 0.96));
  border: 1px solid rgba(211, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--glow-lightbox);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s var(--ease);
}
.nudge.is-open .nudge__panel { transform: none; }

.nudge__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.2rem;
  border-radius: 18px;
  background: rgba(211, 0, 0, 0.16);
  border: 1px solid rgba(211, 0, 0, 0.45);
  color: var(--signal);
  box-shadow: var(--glow-soft);
}
.nudge__icon svg { width: 28px; height: 28px; }

.nudge h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 0.5rem; }
.nudge p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.6rem; }
.nudge .actions { justify-content: center; margin-top: 0; }

.nudge__dismiss {
  display: block;
  margin: 1.1rem auto 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  transition: color 0.3s var(--ease);
}
.nudge__dismiss:hover { color: #fff; }

.nudge__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  color: #fff;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nudge__close svg { width: 16px; height: 16px; }
.nudge__close:hover { border-color: rgba(211, 0, 0, 0.8); background: rgba(211, 0, 0, 0.25); }

/* ----------------------------------------------------------- 18b. Legal page */

/* Long-form prose for the privacy policy: one readable measure, centred, with
   the numbered headings carrying the red rule the rest of the site uses. */
.legal {
  max-width: 78ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  line-height: 1.75;
}
.legal__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
}
.legal__lede {
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  line-height: 1.68;
  color: #fff;
  padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--hair);
}
.legal h2 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  text-transform: none;
  letter-spacing: -0.005em;
  color: #fff;
  margin: clamp(2.2rem, 3.5vw, 3rem) 0 0.9rem;
}
.legal h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 0.6rem;
  border-radius: 2px;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(211, 0, 0, 0.8);
}
.legal p { margin: 0 0 1.05em; }
.legal b { color: #fff; }
.legal .ticks { margin: 1.1rem 0 1.5rem; }
.legal .ticks li { font-size: 0.94rem; }
.legal a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 0, 0, 0.4);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.legal a:hover { border-color: var(--signal); }
.legal--foot { margin-top: clamp(2.5rem, 4vw, 3.5rem); }

/* ------------------------------------------------------------ 18c. Accordion */

/* Native <details> on purpose: the terms page stays one screen of headings
   until you open something, and it still expands with JavaScript off — which
   matters more on a legal page than anywhere else on the site. */
.accordion {
  display: grid;
  gap: 12px;
  max-width: 78ch;
  margin-inline: auto;
}
.accordion details {
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: var(--r-card);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.accordion details[open] { background: var(--panel-hi); border-color: rgba(211, 0, 0, 0.4); }

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--signal); }

/* A red plus that rotates into a cross when the section opens. */
.accordion summary::after {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: linear-gradient(var(--signal), var(--signal)) center / 100% 2px no-repeat,
    linear-gradient(var(--signal), var(--signal)) center / 2px 100% no-repeat;
  transition: transform 0.35s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(135deg); }

.accordion__body {
  padding: 0 24px 22px;
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion__body .ticks { margin-top: 0; }
.accordion__body .ticks li { font-size: 0.93rem; }
.accordion__body b { color: #fff; }
.accordion__body a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 0, 0, 0.4);
}
.accordion__body a:hover { border-color: var(--signal); }

/* The accordion was built for dark --ink sections (terms, privacy). The home
   page FAQ sits on --paper, so the surfaces and text invert. Colours only —
   the layout, the plus/cross marker and the open state are shared. */
.section--paper .accordion details { background: var(--paper-alt); border-color: var(--hair-ink); }
.section--paper .accordion details[open] { background: var(--paper); border-color: rgba(211, 0, 0, 0.4); }
.section--paper .accordion summary { color: var(--ink); }
.section--paper .accordion summary:hover { color: var(--signal); }
.section--paper .accordion__body { color: var(--slate); }
.section--paper .accordion__body b { color: var(--ink); }

/* Cancellation tiers and similar nested lists sit inside a parent bullet. */
.subticks {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.subticks li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.subticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--signal);
}

.accordion__note {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hair);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .accordion summary::after,
  .accordion details { transition: none; }
}

/* --------------------------------------------------------------- 19. Socials */

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.social {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.social svg { width: 19px; height: 19px; fill: currentColor; }
.social:hover { color: #fff; border-color: rgba(211, 0, 0, 0.7); box-shadow: var(--glow-soft); transform: translateY(-3px); }

/* --------------------------------------------------------------- 20. Footer */

.footer {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--hair);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__brand img { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.92rem; color: var(--graphite); max-width: 26rem; }
.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__list a, .footer__list span {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--graphite);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer__list a:hover { color: var(--signal); padding-left: 4px; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair);
  font-size: 0.78rem;
  color: var(--graphite);
}
.footer__bar a { text-decoration: none; }
.footer__bar a:hover { color: var(--signal); }

/* Registration badges — full width so they sit on their own row, directly
   under the footer__bar divider and above the copyright line. */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.footer__badges img {
  display: block;
  height: 32px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.3s var(--ease);
}
.footer__badges img:hover { opacity: 1; }

/* -------------------------------------------------------- 21. Sticky mobile */

.dock {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 88;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(6, 6, 8, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--hair);
}
.dock .btn { flex: 1; padding-inline: 0.8rem; }

/* Back to top — round red-and-white glass button, bottom right, present on
   every page. Reuses the venue-slider's rotating conic-gradient ring trick. */
.totop {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 95;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(211, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.72);
  color: var(--signal);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s,
    box-shadow 0.35s var(--ease);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 22px; height: 22px; }
.totop:hover, .totop:focus-visible { box-shadow: var(--glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.6); }

.totop::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--signal) 12%, transparent 26%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: venue-chase 1.8s linear infinite paused;
  transition: opacity 0.3s var(--ease);
}
.totop:hover::before, .totop:focus-visible::before { opacity: 1; animation-play-state: running; }
@media (prefers-reduced-motion: reduce) {
  .totop::before { animation: none; }
}

/* ---------------------------------------------------------- 22. Responsive */

@media (max-width: 1180px) {
  .nav__links { gap: 0.75rem; }
  .nav__link { font-size: 0.68rem; letter-spacing: 0.08em; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 74px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews--4, .reviews--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { columns: 3; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--flip .split__media { order: 0; }
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .stack { padding-bottom: 0; padding-right: 0; }
  .stack__b { display: none; }
}

@media (max-width: 680px) {
  :root { --gap-section: clamp(3.5rem, 12vw, 4.75rem); }
  .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews--4, .reviews--3 { grid-template-columns: minmax(0, 1fr); }
  .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .gallery { columns: 2; }
  .hero { padding-bottom: clamp(7rem, 20vh, 9rem); }
  .stats { margin-top: clamp(-7rem, -11vh, -5rem); }
  .stat { padding: 1.1rem 0.7rem; }
  .stat__icon svg { width: 24px; height: 24px; }
  .actions .btn { flex: 1 1 100%; }
  .dock { display: flex; }
  body { padding-bottom: 74px; }
  .totop { bottom: calc(74px + env(safe-area-inset-bottom) + 0.75rem); }
  .lb__nav--prev { left: 6px; }
  .lb__nav--next { right: 6px; }
}

/* ----------------------------------------------------- 23. Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* ---------------------------------------------------------------- 24. Print */

@media print {
  .nav, .menu, .dock, .lb, .cta { display: none !important; }
  body { background: #fff; color: #000; }
}
