/* ============================================================
   CITY JAZZ CO. — stylesheet
   Palette: ink black / warm paper / champagne brass
   Type:    Playfair Display (display serif) + Space Grotesk (UI sans)
   Note: Fraunces was rejected — its variable-font rendering
   breaks J/F/S glyphs on Windows. Keep display faces static-safe.
   ============================================================ */

:root {
  --ink: #0b0b0c;
  --ink-2: #131315;
  --ink-3: #1c1c1f;
  --paper: #f3efe7;
  --paper-2: #e9e4d8;
  --brass: #c9a45c;
  --brass-bright: #e3c079;
  --brass-deep: #8f7238;
  --white: #f7f5f0;
  --muted: rgba(247, 245, 240, .55);
  --muted-ink: rgba(11, 11, 12, .6);
  --line: rgba(247, 245, 240, .14);
  --line-ink: rgba(11, 11, 12, .16);

  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--brass); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- custom cursor ---------- */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; position: fixed; inset: 0; z-index: 90; pointer-events: none; }
  .cursor__dot {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--brass-bright);
    transform: translate(-50%, -50%);
  }
  .cursor__ring {
    position: absolute; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(201, 164, 92, .65);
    transform: translate(-50%, -50%) scale(1);
    transition: width .25s var(--ease-out), height .25s var(--ease-out),
                background-color .25s, border-color .25s;
    display: grid; place-items: center;
  }
  .cursor__label {
    font-size: 9px; letter-spacing: .18em; font-weight: 500;
    color: var(--ink); opacity: 0; transition: opacity .2s;
  }
  .cursor--active .cursor__ring {
    width: 64px; height: 64px;
    background: var(--brass-bright);
    border-color: var(--brass-bright);
  }
  .cursor--active .cursor__label { opacity: 1; }
  .cursor--active .cursor__dot { opacity: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .35s var(--ease-out), background-color .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--primary {
  background: var(--brass);
  color: var(--ink);
}
.btn--primary:hover { background: var(--brass-bright); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-bright); }
.section--light .btn--ghost { border-color: var(--line-ink); color: var(--ink); }
.section--light .btn--ghost:hover { border-color: var(--brass-deep); color: var(--brass-deep); }
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover { background: var(--ink-3); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  transition: background-color .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 12, .72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: var(--nav-h);
  width: min(1360px, 100% - 48px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 600; font-size: 19px; letter-spacing: .12em;
  text-decoration: none;
}
.nav__links { display: flex; gap: 34px; }
.nav__link {
  font-size: 12px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
  transition: color .25s;
  position: relative;
}
.nav__link:hover { color: var(--brass-bright); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta { padding: 11px 22px; }
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(11, 11, 12, .96);
  backdrop-filter: blur(18px);
  display: grid; place-content: center; gap: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: grid; gap: 8px; text-align: center; }
.menu__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 9vw, 44px); font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  transition: color .25s, letter-spacing .4s var(--ease-out);
}
.menu__link:hover { color: var(--brass-bright); letter-spacing: .04em; }
.menu__link--accent { color: var(--brass); font-style: italic; }
.menu__meta { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .08em; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 75% 15%, rgba(201, 164, 92, .10), transparent 60%),
    radial-gradient(900px 600px at 15% 90%, rgba(201, 164, 92, .06), transparent 60%),
    var(--ink);
}
.hero__photo { position: absolute; inset: 0; overflow: hidden; }
.hero__photo img {
  position: absolute; right: -4%; top: -5%;
  height: 112%; width: 56%;
  object-fit: cover;
  opacity: .48;
  filter: grayscale(1) contrast(1.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 55%);
          mask-image: linear-gradient(90deg, transparent 2%, #000 55%);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, .5), transparent 38%, transparent 62%, var(--ink) 100%);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 28px;
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 10.5vw, 148px);
  line-height: .96;
  letter-spacing: .005em;
  text-transform: uppercase;
}
/* padding + negative margin: room for descenders (J) inside the reveal clip */
.title-line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.title-line > span { display: inline-block; }
.title-line--italic {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--brass-bright);
  font-size: .62em;
  line-height: 1.1;
}
.hero__sub {
  max-width: 470px;
  margin: 30px 0 44px;
  font-size: 16.5px;
  color: var(--muted);
}
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.playbtn {
  position: relative;
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, .55);
  display: grid; place-items: center;
  color: var(--brass-bright);
  transition: transform .35s var(--ease-out), background-color .3s, color .3s;
  flex: none;
}
.playbtn::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, .45);
  animation: pulse 2.6s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .9; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.playbtn:hover { background: var(--brass); color: var(--ink); transform: scale(1.05); }
.playbtn__icon { width: 26px; height: 26px; }
.playbtn__icon--pause { display: none; }
.playbtn.is-playing .playbtn__icon--play { display: none; }
.playbtn.is-playing .playbtn__icon--pause { display: block; }
.playbtn.is-playing::after { animation-duration: 1.3s; }
.hero__actionText { display: grid; gap: 3px; }
.hero__actionTitle {
  font-family: var(--font-display); font-style: italic;
  font-size: 21px; color: var(--white);
}
.hero__actionNote { font-size: 12px; letter-spacing: .04em; color: var(--muted); max-width: 300px; }
.hero__buildLink { margin-left: 10px; }
.hero__meta {
  position: relative; z-index: 2;
  margin-top: 70px;
  display: flex; gap: 34px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(247, 245, 240, .4);
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--brass);
  color: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.02);
  border-block: 1px solid rgba(11, 11, 12, .25);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; font-style: italic;
  white-space: nowrap;
  padding: 0 22px;
}
.marquee__star { font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections base ---------- */
.section { padding: 130px 0; position: relative; }
.section--light { background: var(--paper); color: var(--ink); }
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
}
.eyebrow--onBrass { color: rgba(11, 11, 12, .65); }
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 26px;
  letter-spacing: .002em;
}
.h2 em { font-style: italic; font-weight: 400; color: var(--brass-bright); }
.section--light .h2 em { color: var(--brass-deep); }
.lead {
  max-width: 560px;
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 40px;
}
.section--light .lead { color: var(--muted-ink); }
.finePrint { font-size: 12px; color: rgba(247, 245, 240, .38); letter-spacing: .03em; margin: 18px 0 0; }
.section--light .finePrint { color: rgba(11, 11, 12, .42); }

/* ---------- reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .42s; }
.title-line[data-reveal] { transform: none; }
.title-line[data-reveal] > span { transform: translateY(125%); transition: transform 1s var(--ease-out); display: inline-block; }
.title-line[data-reveal].is-in > span { transform: none; }
.title-line[data-reveal-delay="1"] > span { transition-delay: .08s; }
.title-line[data-reveal-delay="2"] > span { transition-delay: .16s; }

/* ---------- band builder ---------- */
.builder { padding-top: 150px; }
.vibes {
  display: inline-flex; gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 46px;
}
.vibe {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  color: var(--muted);
  transition: background-color .3s, color .3s;
}
.vibe:hover { color: var(--white); }
.vibe.is-active { background: var(--brass); color: var(--ink); }

.stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.musician {
  position: relative;
  text-align: left;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  display: grid; gap: 6px;
  transition: border-color .3s, transform .35s var(--ease-out), background-color .3s;
}
.musician:hover { transform: translateY(-4px); border-color: rgba(201, 164, 92, .5); }
.musician.is-active {
  border-color: var(--brass);
  background: linear-gradient(180deg, rgba(201, 164, 92, .12), rgba(201, 164, 92, .03)), var(--ink-2);
}
.musician__icon {
  width: 52px; height: 52px;
  color: var(--muted);
  margin-bottom: 14px;
  transition: color .3s, transform .12s ease-out;
}
.musician__icon svg { width: 100%; height: 100%; }
.musician.is-active .musician__icon { color: var(--brass-bright); }
.musician.beat .musician__icon { transform: scale(1.12) rotate(-2deg); }
.musician__name {
  font-family: var(--font-display);
  font-size: 23px; font-weight: 600;
}
.musician__role { font-size: 12.5px; color: var(--muted); letter-spacing: .03em; }
.switch {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  transition: background-color .3s, border-color .3s;
}
.switch__thumb {
  position: absolute; top: 2px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--muted);
  transition: transform .3s var(--ease-out), background-color .3s;
}
.musician.is-active .switch { background: var(--brass); border-color: var(--brass); }
.musician.is-active .switch__thumb { transform: translateX(17px); background: var(--ink); }

.lineup {
  border-top: 1px solid var(--line);
  padding-top: 44px;
  display: grid; gap: 6px;
  justify-items: start;
}
.lineup__label { margin: 0; font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.lineup__name {
  margin: 2px 0 4px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(40px, 6.5vw, 72px);
  color: var(--brass-bright);
  line-height: 1;
  transition: opacity .3s;
}
.lineup__caption { margin: 0 0 26px; color: var(--muted); font-size: 15.5px; }
.builder__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- quote ---------- */
.quote {
  padding: 150px 0;
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(201, 164, 92, .07), transparent 70%),
    var(--ink);
  text-align: center;
}
.quote__text {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.18;
}
.quote__text .word {
  opacity: .12;
  transition: opacity .5s ease;
}
.quote__text .word.is-lit { opacity: 1; }
.quote__cite {
  margin-top: 34px;
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass);
}

/* ---------- on stage filmstrip ---------- */
.strip {
  background: var(--ink);
  padding: 40px 0 120px;
  overflow: hidden;
}
.strip .eyebrow { margin-bottom: 36px; }
.strip__track {
  display: flex;
  width: max-content;
  animation: marquee 64s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__group { display: flex; gap: 22px; padding-right: 22px; }
.strip__item {
  position: relative;
  margin: 0;
  height: 360px; width: 250px;
  flex: none;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.strip__item--wide { width: 520px; }
.strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform .7s var(--ease-out), filter .4s;
}
.strip__item:hover img { transform: scale(1.045); filter: grayscale(.6) contrast(1.04); }
.strip__item figcaption {
  position: absolute; left: 14px; bottom: 13px;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 11, 12, .55);
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---------- services ---------- */
.services__list { border-top: 1px solid var(--line-ink); margin-top: 30px; }
.service-row {
  display: flex; align-items: baseline; gap: 34px;
  padding: 44px 10px;
  border-bottom: 1px solid var(--line-ink);
  text-decoration: none;
  position: relative;
  transition: background-color .35s, padding-left .35s var(--ease-out);
}
.service-row__img {
  position: absolute; right: 100px; top: 50%;
  width: 310px; aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(-50%) rotate(3deg) scale(.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .5s var(--ease-out);
  box-shadow: 0 26px 70px rgba(11, 11, 12, .4);
  z-index: 2;
}
.service-row__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); }
.service-row:hover .service-row__img {
  opacity: 1;
  transform: translateY(-50%) rotate(-1.5deg) scale(1);
}
.service-row:hover { background: rgba(201, 164, 92, .1); padding-left: 26px; }
.service-row__num {
  font-size: 13px; color: var(--brass-deep); letter-spacing: .1em;
  flex: none; width: 40px;
  font-weight: 500;
}
.service-row__body { display: grid; gap: 10px; flex: 1; }
.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1;
}
.service-row__desc { font-size: 15.5px; color: var(--muted-ink); max-width: 560px; }
.service-row__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tag {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 13px;
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  color: var(--muted-ink);
}
.service-row__arrow {
  font-size: 30px; color: var(--brass-deep);
  transition: transform .35s var(--ease-out);
  align-self: center;
}
.service-row:hover .service-row__arrow { transform: translateX(10px); }

/* ---------- reels ---------- */
.reels { background: var(--ink); }
.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 60px 0 70px;
}
.phone {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: transform .4s var(--ease-out), border-color .3s;
}
.phone:hover { transform: translateY(-8px) rotate(-.5deg); border-color: rgba(201, 164, 92, .55); }
.phone:nth-child(2):hover { transform: translateY(-8px) rotate(.5deg); }
.phone__screen {
  position: relative;
  aspect-ratio: 9 / 16.5;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.phone__viz { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone__screen--live { background: radial-gradient(500px 400px at 50% 100%, rgba(201,164,92,.16), transparent 70%), var(--ink); }
.phone__badge {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; letter-spacing: .2em; font-weight: 600;
  color: #ff6b5e;
  background: rgba(11,11,12,.55);
  padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.phone__caption {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  display: grid; gap: 4px;
  font-size: 12.5px;
  z-index: 2;
}
.phone__caption strong { font-weight: 600; letter-spacing: .03em; }
.phone__caption span { color: var(--muted); }
.phone__ui {
  display: flex; justify-content: space-around;
  padding: 13px 10px;
  font-size: 11.5px; letter-spacing: .06em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
/* POV reel */
.phone__screen--pov {
  background:
    linear-gradient(160deg, rgba(201,164,92,.24), transparent 55%),
    var(--ink-3);
  display: grid; place-content: center;
}
.phone__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(1);
}
.phone__screen--pov::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, .25), rgba(11, 11, 12, .78));
  z-index: 1;
}
.phone__screen--pov .pov-lines,
.phone__screen--pov .phone__caption { position: relative; z-index: 2; }
.pov-lines {
  display: grid; gap: 2px; text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}
.pov-lines span { opacity: 0; animation: povIn 6s ease infinite; }
.pov-lines span:nth-child(2) { animation-delay: .55s; }
.pov-lines span:nth-child(3) { animation-delay: 1.1s; }
.pov-lines em { color: var(--brass-bright); }
@keyframes povIn {
  0% { opacity: 0; transform: translateY(14px); }
  12%, 78% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; transform: translateY(-8px); }
}
/* reviews reel */
.phone__screen--reviews { background: var(--ink-3); }
.reviews-scroll {
  position: absolute; inset: 0;
  padding: 30px 26px 90px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 72%, transparent 92%);
          mask-image: linear-gradient(180deg, transparent, #000 15%, #000 72%, transparent 92%);
}
.reviews-scroll__inner { animation: reviewScroll 22s linear infinite; }
.reviews-scroll__inner p {
  font-family: var(--font-display); font-style: italic;
  font-size: 21px; font-weight: 500; line-height: 1.35;
  margin: 0 0 34px;
}
.reviews-scroll__inner p:nth-child(odd)::after,
.reviews-scroll__inner p:nth-child(even)::after {
  content: "✦"; display: block; margin-top: 30px;
  color: var(--brass); font-size: 11px; font-style: normal;
}
@keyframes reviewScroll { to { transform: translateY(-50%); } }

/* socials */
.socialRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.socialCard {
  display: grid; gap: 3px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, transform .35s var(--ease-out);
}
.socialCard:hover {
  border-color: var(--brass);
  background: rgba(201, 164, 92, .07);
  transform: translateY(-4px);
}
.socialCard svg { width: 24px; height: 24px; margin-bottom: 12px; color: var(--brass-bright); }
.socialCard__name { font-weight: 500; font-size: 15px; letter-spacing: .02em; }
.socialCard__handle { font-size: 12.5px; color: var(--muted); }

/* ---------- listen ---------- */
.listen {
  background: linear-gradient(180deg, var(--brass) 0%, #b8934f 100%);
  color: var(--ink);
  overflow: hidden;
}
.listen .h2 em { color: var(--ink); opacity: .75; }
.lead--onBrass { color: rgba(11, 11, 12, .62); }
.listen__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.listen__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(11, 11, 12, .3);
  box-shadow: 0 32px 90px rgba(11, 11, 12, .3);
}
.listen__media > img {
  display: block;
  width: 100%; height: 440px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
}
.listen__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 11, 12, .62));
}
.eq-big {
  position: absolute; left: 26px; right: 26px; bottom: 22px;
  height: 150px;
  display: flex; align-items: flex-end; gap: 9px;
  z-index: 2;
}
.eq-bar {
  flex: 1;
  background: var(--paper);
  border-radius: 5px 5px 0 0;
  height: 30%;
  animation: eqDance 1.15s ease-in-out infinite alternate;
  transform-origin: bottom;
  opacity: .92;
}
.eq-bar:nth-child(1) { animation-delay: 0s; height: 34%; }
.eq-bar:nth-child(2) { animation-delay: .12s; height: 58%; }
.eq-bar:nth-child(3) { animation-delay: .24s; height: 42%; }
.eq-bar:nth-child(4) { animation-delay: .06s; height: 74%; }
.eq-bar:nth-child(5) { animation-delay: .3s; height: 51%; }
.eq-bar:nth-child(6) { animation-delay: .18s; height: 88%; }
.eq-bar:nth-child(7) { animation-delay: .36s; height: 39%; }
.eq-bar:nth-child(8) { animation-delay: .09s; height: 66%; }
.eq-bar:nth-child(9) { animation-delay: .27s; height: 47%; }
.eq-bar:nth-child(10) { animation-delay: .15s; height: 79%; }
.eq-bar:nth-child(11) { animation-delay: .33s; height: 36%; }
.eq-bar:nth-child(12) { animation-delay: .21s; height: 60%; }
@keyframes eqDance { to { transform: scaleY(.45); } }

/* ---------- booking ---------- */
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.book__intro { position: sticky; top: calc(var(--nav-h) + 30px); }
.book__alt { font-size: 15px; color: var(--muted-ink); }
.book__alt a { color: var(--brass-deep); font-weight: 500; }
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}
.field { display: grid; gap: 8px; grid-column: span 2; }
.field--half { grid-column: span 1; }
.field__label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-ink); font-weight: 500;
}
.input {
  width: 100%;
  padding: 15px 16px;
  background: rgba(11, 11, 12, .03);
  border: 1px solid var(--line-ink);
  border-radius: 12px;
  font: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .25s, background-color .25s;
}
.input::placeholder { color: rgba(11, 11, 12, .32); }
.input:focus {
  outline: none;
  border-color: var(--brass-deep);
  background: #fff;
}
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238f7238' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.textarea { resize: vertical; min-height: 110px; }
.form__submit { grid-column: span 2; justify-self: start; margin-top: 6px; }
.form .finePrint { grid-column: span 2; margin-top: 4px; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__wordmark {
  margin: 0 0 70px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 10vw, 150px);
  line-height: .9;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, .5);
  white-space: nowrap;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__col { display: grid; gap: 10px; justify-items: start; align-content: start; }
.footer__heading {
  margin: 0 0 6px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass);
}
.footer__col a {
  text-decoration: none; color: var(--muted); font-size: 15px;
  transition: color .25s;
}
.footer__col a:hover { color: var(--brass-bright); }
.footer__cities { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.footer__legal {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: rgba(247, 245, 240, .4);
}
.footer__hint kbd {
  font-family: var(--font-ui);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 7px;
  color: var(--brass-bright);
}

/* ---------- now playing pill ---------- */
.nowplaying {
  position: fixed; left: 20px; bottom: 20px; z-index: 75;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px 11px 14px;
  background: rgba(19, 19, 21, .82);
  border: 1px solid rgba(201, 164, 92, .45);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 12.5px; letter-spacing: .04em;
  color: var(--white);
  transition: transform .35s var(--ease-out), opacity .35s;
}
.nowplaying[hidden] { display: none; }
.nowplaying:hover { transform: translateY(-3px); }
.nowplaying__text em { color: var(--brass-bright); font-style: normal; font-weight: 500; }
.nowplaying__pause { color: var(--brass); font-size: 10px; letter-spacing: 0; }
.np-bars { display: flex; align-items: flex-end; gap: 2.5px; height: 15px; }
.np-bars span {
  width: 3px; border-radius: 2px;
  background: var(--brass-bright);
  height: 100%;
  transform: scaleY(.3);
  transform-origin: bottom;
  transition: transform .09s linear;
}

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 85; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); backdrop-filter: blur(6px); }
.modal__card {
  position: relative;
  width: min(420px, calc(100% - 40px));
  max-height: calc(100svh - 60px);
  overflow: auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: grid; gap: 16px;
  justify-items: center;
  text-align: center;
  animation: modalIn .45s var(--ease-out);
}
@keyframes modalIn { from { transform: translateY(26px); opacity: 0; } }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color .25s, border-color .25s;
}
.modal__close:hover { color: var(--white); border-color: var(--brass); }
.modal__title { margin: 4px 0 0; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.share-preview {
  width: min(240px, 60%);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 95;
  transform: translate(-50%, 90px);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .02em;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s;
  pointer-events: none;
  max-width: calc(100vw - 48px);
  text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .stage { grid-template-columns: repeat(2, 1fr); }
  .listen__inner { grid-template-columns: 1fr; }
  .listen__media > img { height: 320px; }
  .eq-big { height: 110px; }
  .footer__row { grid-template-columns: 1fr 1fr; }
  .service-row__img { display: none; }
  .hero__photo img { width: 88%; right: -24%; opacity: .34; }
}
@media (max-width: 860px) {
  .strip__item { height: 250px; width: 175px; }
  .strip__item--wide { width: 360px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 96px 0; }
  .reels__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .socialRow { grid-template-columns: repeat(2, 1fr); }
  .book__grid { grid-template-columns: 1fr; gap: 44px; }
  .book__intro { position: static; }
  .service-row { flex-wrap: wrap; gap: 14px; }
  .service-row__arrow { display: none; }
  .hero__meta { gap: 16px; font-size: 10.5px; }
  .hero__buildLink { margin-left: 0; }
}
@media (max-width: 560px) {
  .stage { grid-template-columns: 1fr; }
  .field--half { grid-column: span 2; }
  .form__submit { justify-self: stretch; text-align: center; justify-content: center; }
  .marquee__item { font-size: 17px; }
  .nowplaying { left: 12px; bottom: 12px; }
  .nowplaying__text { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .title-line[data-reveal] > span { transform: none; }
  .quote__text .word { opacity: 1; }
  .grain { display: none; }
}
