/* ============================================================
   MTTG WEBSITE — additions on top of style.css + guide.css
   Nav burger, roster, pricing strip, CTA band, footer nav,
   duo extras table + duo ladder for the /pricing page.
   ============================================================ */

/* ── NAV: burger + mobile menu ── */
.nav__burger {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--oxblood);
  padding: 3rem 2.5rem;
  flex-direction: column;
  gap: 2rem;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  text-decoration: none;
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}

/* ── MIX GRID (/mixes) ── */
.mixgrid { padding: 5rem 0 6rem; background: var(--white); }
.mixgrid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.mix-card {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  cursor: pointer;
  color: var(--dark);
  font-family: var(--font-body);
}
.mix-card__photo {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.mix-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mix-card:hover .mix-card__photo img { transform: scale(1.04); }
.mix-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,18,18,0.25);
  transition: background 0.25s;
}
.mix-card:hover .mix-card__play { background: rgba(18,18,18,0.4); }
.mix-card__play svg {
  width: 52px; height: 52px;
  fill: var(--cream);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.mix-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
}
.mix-card__role {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.5);
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .mixgrid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mixgrid__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--oxblood);
  color: var(--cream);
  text-align: center;
  padding: 6rem 0;
}
.cta-band .label { color: rgba(238,231,212,0.55); }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 0.4rem 0 1rem;
}
.cta-band p {
  color: rgba(238,231,212,0.8);
  font-size: 0.98rem;
  max-width: 50ch;
  margin: 0 auto 1.8rem;
}

/* ── FOOTER NAV ── */
.footer__nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--cream); }

/* ── QUIET TEXT LINK (rates rows → artist pages) ── */
.textlink-quiet {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(18,18,18,0.25);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.textlink-quiet:hover { color: var(--dark); border-color: var(--dark); }

/* ── EXTRAS TABLE: duo price columns (/pricing) ── */
.extras__table--duo th:nth-child(2),
.extras__table--duo th:nth-child(3) { text-align: right; padding-left: 1.2rem; }
.extras__table--duo td:nth-child(2),
.extras__table--duo td:nth-child(3) {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  white-space: nowrap;
  padding-left: 1.2rem;
}

/* ── LADDER: two ladders side by side (/pricing) ── */
.ladder__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}
.ladder__duo-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.5);
  margin-bottom: 0.6rem;
}
@media (max-width: 560px) {
  .ladder__duo { grid-template-columns: 1fr; }
}

/* ── HOME: OPENING (guide-styled) ── */
.opening {
  padding: calc(72px + 9rem) 0 5rem;
  text-align: center;
  background: var(--white);
}
.opening h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 1.08;
  color: var(--dark);
  margin: 0 auto 1.6rem;
  max-width: 12ch;
}
.opening__sub {
  font-family: var(--font-display-italic);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(18,18,18,0.6);
  margin: 0 auto;
  max-width: 36ch;
}

/* ── HOME: COLLAGE (ported from v2, guide palette) ── */
.collage { padding: 3rem 0 4rem; background: var(--white); }
.collage__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.collage__item { position: relative; margin-bottom: 6rem; }
.collage__item img,
.collage__item video {
  width: 100%;
  height: auto;
  display: block;
}
.collage__caption {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.45);
  margin-top: 0.9rem;
}
.collage__item:nth-child(1)  { grid-column: 1 / 5;   margin-top: 0; }
.collage__item:nth-child(2)  { grid-column: 6 / 9;   margin-top: 7rem; }
.collage__item:nth-child(3)  { grid-column: 10 / 13; margin-top: 2.5rem; }
.collage__item:nth-child(4)  { grid-column: 2 / 5;   margin-top: 3rem; }
.collage__item:nth-child(5)  { grid-column: 6 / 11;  margin-top: -2rem; }
.collage__item:nth-child(6)  { grid-column: 11 / 13; margin-top: 6rem; }
.collage__item:nth-child(7)  { grid-column: 1 / 4;   margin-top: 1rem; }
.collage__item:nth-child(8)  { grid-column: 5 / 8;   margin-top: 5rem; }
.collage__item:nth-child(9)  { grid-column: 9 / 13;  margin-top: 0; }
.collage__item:nth-child(10) { grid-column: 3 / 7;   margin-top: 2rem; }
.collage__item:nth-child(11) { grid-column: 8 / 11;  margin-top: 6rem; }
@media (max-width: 760px) {
  .collage__grid { gap: 0 1rem; padding: 0 1.25rem; }
  .collage__item { margin-bottom: 3rem; }
  .collage__item:nth-child(odd)  { grid-column: 1 / 7 !important; margin-top: 0 !important; }
  .collage__item:nth-child(even) { grid-column: 7 / 13 !important; margin-top: 3.5rem !important; }
}

/* ── HOME: SHOWIT-STYLE COLLAGE ROWS ── */
.collage2 { padding: 2rem 0 4rem; background: var(--white); }
.crow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 2rem;
}
.crow + .crow { margin-top: 4.5rem; }
.ci { position: relative; }
.ci img, .ci video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* uniform portrait crop (Showit 242x337) */
.ci--p img { aspect-ratio: 242 / 337; }
/* larger squarish flank photos (Showit 363x387) */
.ci--sq img { aspect-ratio: 363 / 387; }
/* tall centre video (Showit 360x557) */
.ci--v video { aspect-ratio: 360 / 557; height: auto; }
/* row spacers: sparse rows keep edges via space-between */
@media (max-width: 760px) {
  .crow { flex-wrap: wrap; gap: 1rem; padding: 0 1.25rem; }
  .crow + .crow { margin-top: 1rem; }
  .ci { width: calc(50% - 0.5rem) !important; margin-top: 1rem !important; }
  .ci--v { width: 70% !important; margin: 1rem auto 0 !important; }
}

/* ── HOME: red canvas ── */
.home-red { background: var(--oxblood); }
.home-red .opening { background: var(--oxblood); }
.home-red .opening h1 { color: var(--cream); }
.home-red .opening__sub { color: rgba(238,231,212,0.7); }
.home-red .collage2 { background: var(--oxblood); }
.home-red .nav { box-shadow: none; }

/* ── HOME: video cluster (rows 2-3 of Showit draft: tall centre video
   spans down between the two lower edge photos) ── */
.crow--cluster {
  display: grid;
  grid-template-columns: 30.3% 30% 30.3%;
  justify-content: space-between;
  align-items: start;
  row-gap: 3.5rem;
}
.cl-l1 { grid-column: 1; grid-row: 1; margin-top: 1.5rem; }
.cl-vid { grid-column: 2; grid-row: 1 / span 2; }
.cl-vid iframe {
  width: 100%;
  aspect-ratio: 360 / 557;
  border: 0;
  display: block;
}
.cl-r1 { grid-column: 3; grid-row: 1; margin-top: 1.5rem; }
.cl-l2 { grid-column: 1; grid-row: 2; width: 70%; margin-left: 12%; }
.cl-r2 { grid-column: 3; grid-row: 2; width: 66%; justify-self: end; margin-right: 16%; }
@media (max-width: 760px) {
  .crow--cluster { display: flex; flex-wrap: wrap; }
  .cl-l2, .cl-r2 { margin-left: 0 !important; margin-right: 0 !important; }
}

/* ── ENQUIRE (/check-your-date) ── */
.enquire { padding: 3rem 0 8rem; background: var(--white); }
.enquire__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.enquire__grid h2 { margin: 0.4rem 0 0; }
.enquire__form iframe { width: 100%; border: 0; min-height: 700px; background: transparent; }
.enquire__points { list-style: none; margin: 2rem 0 0; padding: 0; }
.enquire__points li {
  position: relative;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  color: rgba(18,18,18,0.7);
  border-bottom: 1px solid rgba(18,18,18,0.1);
}
.enquire__points li:first-child { border-top: 1px solid rgba(18,18,18,0.1); }
@media (max-width: 820px) {
  .enquire__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── HOME: HERO COLLAGE (Silent Shout style — scattered images around
   a huge low-set headline, edges bleeding off the canvas) ── */
.hero2 {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--oxblood);
  overflow: hidden;
}
.hero2__img { position: absolute; z-index: 1; }
.hero2__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero2__i1 { left: 0;    top: 19%; width: 18%; height: 68%; }
.hero2__i2 { left: 27%;  top: 19%; width: 15%; height: 45%; }
.hero2__i3 { left: 50%;  top: 19%; width: 27%; height: 36%; }
.hero2__i4 { right: 0;   top: 25%; width: 18%; height: 71%; }
.hero2__title {
  position: absolute;
  left: 0; right: 0;
  bottom: 5%;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}
.hero2__title h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8.2vw, 8.5rem);
  line-height: 1;
  color: var(--cream);
  margin: 0;
  white-space: nowrap;
}
.hero2__title .opening__sub {
  color: rgba(238,231,212,0.7);
  margin-top: 1.2rem;
}
@media (max-width: 760px) {
  .hero2 { height: auto; min-height: 0; padding: calc(72px + 3rem) 0 3rem; }
  .hero2__img { position: static; width: calc(50% - 0.5rem) !important; height: auto !important; }
  .hero2__img img { aspect-ratio: 3 / 4; }
  .hero2__imgs {
    display: flex; flex-wrap: wrap; gap: 1rem;
    padding: 0 1.25rem; margin-top: 2.5rem;
  }
  .hero2__title { position: static; margin-top: 0; }
  .hero2__title h1 { white-space: normal; font-size: clamp(2.6rem, 12vw, 4rem); }
}

/* ── HOME HERO: flipped emphasis — h1 stays for SEO but renders small,
   the brand line carries the display size ── */
.hero2__title .hero2__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.75);
  margin: 0 0 1.4rem;
  white-space: normal;
  line-height: 1.4;
}
.hero2__title .hero2__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.6vw, 6.8rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
}
@media (max-width: 760px) {
  .hero2__title .hero2__big { font-size: clamp(2.2rem, 10vw, 3.4rem); }
}

/* ── PRICE GUIDE SUB-NAV (second layer under the main nav) ── */
.subnav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  background: var(--burgundy);
  padding: 0 1rem;
  overflow-x: auto;
  white-space: nowrap;
}
.subnav a {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.55);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.subnav a:hover { color: var(--cream); }
.subnav a.active { color: var(--cream); border-bottom: 1px solid rgba(238,231,212,0.7); }
.subnav .subnav__num { opacity: 0.5; margin-right: 0.35em; }
body.has-subnav .pagehero { margin-top: 116px; }
body.has-subnav .hero { margin-top: 44px; }

/* ── ENQUIRE: solo centred form (FAQ page) ── */
.enquire__form--solo { max-width: 640px; margin: 2.5rem auto 0; }
.enquire__alt {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(18,18,18,0.6);
  margin: 2rem auto 0;
}
.enquire__alt a { color: var(--oxblood); }

/* ── MIXES: YouTube playlist embed ── */
.mixplaylist { padding: 5rem 0 6rem; background: var(--white); }
.mixplaylist__frame {
  max-width: 1000px;
  margin: 0 auto;
}
.mixplaylist__frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.mixplaylist__note {
  text-align: center;
  font-size: 0.85rem;
  margin: 1.5rem auto 0;
}
.mixplaylist__note a { color: var(--oxblood); }

/* ── MIXES: YouTube-style video cards under the player ── */
.ytgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.2rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.ytcard {
  background: none; border: none; padding: 0;
  text-align: left; cursor: pointer;
  font-family: var(--font-body);
  color: var(--dark);
}
.ytcard__thumb {
  position: relative; display: block;
  aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 8px; background: #ddd;
  margin-bottom: 0.6rem;
}
.ytcard__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.ytcard:hover .ytcard__thumb img { transform: scale(1.04); }
.ytcard__dur {
  position: absolute; right: 6px; bottom: 6px;
  background: rgba(0,0,0,0.85); color: #fff;
  font-size: 0.68rem; font-weight: 600;
  padding: 1px 5px; border-radius: 4px;
}
.ytcard__title {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
}
.ytcard__ch {
  display: block;
  font-size: 0.72rem;
  color: rgba(18,18,18,0.55);
  margin-top: 0.25rem;
}
.ytcard.active .ytcard__thumb { outline: 2px solid var(--oxblood); outline-offset: 2px; }
.ytcard.active .ytcard__title { color: var(--oxblood); }
@media (max-width: 900px) { .ytgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ytgrid { grid-template-columns: 1fr; } }

/* ── ENQUIRE solo: let the SN resizer own the iframe height, no forced gap ── */
.enquire__form--solo iframe { min-height: 0; }
.enquire#enquire { padding-bottom: 4rem; }
.enquire__form--solo { margin-top: 2rem; }
.enquire__alt { margin-top: 1rem; }

/* ── SUBNAV: mobile fixes (nav is 60px tall under 600px; centre without cropping) ── */
.subnav a { flex-shrink: 0; }
.subnav a:first-child { margin-left: auto; }
.subnav a:last-child { margin-right: auto; }
.subnav { justify-content: flex-start; scrollbar-width: none; }
.subnav::-webkit-scrollbar { display: none; }
@media (max-width: 600px) {
  .subnav { top: 60px; height: 40px; gap: 1.1rem; padding: 0 1.25rem; }
  .subnav .subnav__num { display: none; }
  .subnav a { font-size: 0.6rem; letter-spacing: 0.14em; }
  body.has-subnav .pagehero { margin-top: 100px; }
  body.has-subnav .hero { margin-top: 40px; }
}

/* ── MIXES mobile: no top player, cards open the pop-up modal ── */
@media (max-width: 760px) {
  .mixplaylist__frame { display: none; }
  .mixplaylist { padding-top: 3rem; }
  .ytgrid { margin-top: 0; }
  .ytcard.active .ytcard__thumb { outline: none; }
  .ytcard.active .ytcard__title { color: var(--dark); }
}

/* ── ENQUIRE: form breathing room ── */
.enquire__grid { grid-template-columns: 4fr 8fr; gap: 3.5rem; }
@media (max-width: 820px) {
  .enquire__grid { grid-template-columns: 1fr; padding: 0 1.25rem; gap: 2rem; }
}

/* ── MOBILE MENU: smaller text, button CTA, social icons ── */
.mobile-menu { gap: 1.4rem; padding: 2.5rem; }
.mobile-menu a { font-size: 1.5rem; }
.mobile-menu__cta {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(238,231,212,0.6);
  padding: 0.8rem 1.6rem;
  align-self: flex-start;
  margin-top: 0.6rem;
}
.mobile-menu__social {
  margin-top: auto;
  padding-bottom: 2.5rem;
  display: flex;
  gap: 1.6rem;
}
.mobile-menu__social a { color: var(--cream); opacity: 0.85; }
.mobile-menu__social svg { width: 28px; height: 28px; display: block; }

/* ── FOOTER: social icons ── */
.footer__nav { align-items: center; }
.footer__nav .footer__social a { display: block; opacity: 0.75; transition: opacity 0.2s; }
.footer__nav .footer__social a:hover { opacity: 1; color: var(--cream); }
.footer__nav .footer__social svg { width: 20px; height: 20px; display: block; }

/* ── MOBILE MENU: tighter rhythm ── */
.mobile-menu { gap: 1rem; }
.mobile-menu a { font-size: 1.35rem; line-height: 1.3; }
.mobile-menu__cta { margin-top: 0.5rem; }

/* ── HERO sub on one line (desktop) ── */
@media (min-width: 761px) {
  .hero__sub--oneline { max-width: none; white-space: nowrap; }
}

/* ── REVIEW AVATARS (ported from LP) ── */
.review-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── PRICE GUIDE GATE ── */
html.guide-locked body { overflow: hidden; height: 100vh; }
.gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98; /* under nav (100) and subnav (99) so both stay usable */
  background: var(--oxblood);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: calc(72px + 44px + 2.5rem) 1.5rem 3rem;
}
html.guide-locked .gate { display: block; }
.gate__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}
.gate__inner .label { color: rgba(238,231,212,0.55); }
.gate__inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--cream);
  margin: 0.5rem 0 1rem;
}
.gate__inner > p {
  color: rgba(238,231,212,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto 2rem;
}
.gate__form {
  background: var(--white);
  padding: 1.2rem;
  text-align: left;
}
.gate__form iframe { width: 100%; border: 0; display: block; }
.gate__already {
  font-size: 0.75rem;
  color: rgba(238,231,212,0.5);
  margin-top: 1.4rem;
}
@media (max-width: 600px) {
  .gate { padding-top: calc(60px + 40px + 1.5rem); }
}

/* ── UNLOCKED CONFIRMATION BAR — pinned below nav+subnav so it's actually visible ── */
.unlock-bar {
  display: none;
  position: fixed;
  top: 116px;
  left: 0; right: 0;
  z-index: 98;
  background: var(--cream);
  color: var(--dark);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
}
html.guide-unlocked .unlock-bar { display: block; }
@media (max-width: 600px) {
  .unlock-bar { top: 100px; font-size: 0.7rem; padding: 0.55rem 0.8rem; }
}

/* ── LEAD NOTE (pricing overview numbers) ── */
.packages__note--lead {
  font-size: 1.05rem;
  color: rgba(18,18,18,0.8);
  max-width: 52ch;
  line-height: 1.7;
}

/* ── HERO 3: full-bleed photo hero (Showit-style) ── */
.hero3 {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--oxblood);
}
.hero3__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
}
.hero3__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,2,2,0.55) 0%, rgba(30,2,2,0.05) 45%, rgba(30,2,2,0.25) 100%);
}
.hero3__content {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(3rem, 9vh, 7rem);
  z-index: 2;
  color: var(--cream);
  max-width: 90%;
}
.hero3__kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.85);
  margin: 0 0 1rem;
}
.hero3__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.08;
  color: var(--cream);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero3__credit {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  z-index: 2;
  font-size: 0.7rem;
  color: rgba(238,231,212,0.65);
}
@media (max-width: 600px) {
  .hero3 { height: 92svh; }
  .hero3__img { object-position: 62% center; }
}

/* ── GRID2: two full-bleed rows of four, headline on the seam ── */
.grid2 {
  position: relative;
  background: var(--oxblood);
  padding: calc(72px + 2.5rem) 0 3rem;
  overflow: hidden;
}
.grid2__row {
  width: 111%;
  margin-left: -5.5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 3.3vw, 44px);
}
.grid2__row + .grid2__row { margin-top: clamp(16px, 2.75vw, 33px); }
.gi img {
  width: 100%;
  aspect-ratio: 300 / 380;
  object-fit: cover;
  display: block;
}
.grid2__title {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  pointer-events: none;
}
.grid2__kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.9);
  margin: 0 0 1rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.grid2__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
  color: var(--cream);
  margin: 0;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}
@media (max-width: 760px) {
  .grid2 { padding-top: calc(60px + 1.5rem); }
  .grid2__row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .grid2__row + .grid2__row { margin-top: 10px; }
  .grid2__title { position: static; transform: none; order: -1; margin-bottom: 1.6rem; pointer-events: auto; }
  .grid2 { display: flex; flex-direction: column; }
}

/* ── VBAND: mix video on the red canvas ── */
.vband { background: var(--oxblood); padding: 3rem 0 6rem; }
.vband__header { text-align: center; margin-bottom: 2.5rem; }
.vband__header h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 0.8rem;
}
.vband__header p { color: rgba(238,231,212,0.75); font-size: 0.95rem; margin: 0 auto; max-width: 60ch; }
.vband__embed {
  width: min(92%, calc((100svh - 6rem) * 16 / 9));
  margin: 0 auto;
}

/* ── VIDEO FACADE (ported from LP) ── */
.video-facade {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background:
    radial-gradient(ellipse 62% 62% at center, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.3) 55%, rgba(18,18,18,0.25) 100%),
    url('../images/video-poster-7192.jpg') center 55% / cover no-repeat;
}
.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-facade__sound {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.video-facade__sound:hover { background: #fff; }
.video-facade__sound svg { width: 18px; height: 18px; fill: currentColor; }

/* ── GRID2 v2: title sits IN the gap between the two rows ── */
.grid2__title {
  position: static;
  transform: none;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1rem;
  pointer-events: auto;
}
.grid2__big {
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  letter-spacing: 0.04em;
  text-shadow: none;
}
.grid2__kicker { text-shadow: none; }
.grid2__row + .grid2__row { margin-top: 0; }
@media (max-width: 760px) {
  .grid2__title { order: 0; margin-bottom: 0; padding: 2rem 1rem; }
}
.vband { padding-top: 0; }

/* ── GRID2 v3: small seam gap, three-line title floating over the rows —
   big line over row 1, kicker in the red gap, big line over row 2 ── */
.grid2__row + .grid2__row { margin-top: clamp(14px, 3.3vw, 44px) !important; }
.grid2__title {
  position: absolute !important;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%) !important;
  padding: 0 1rem !important;
  pointer-events: none;
}
.grid2__big {
  margin: 0;
  text-shadow: 0 2px 26px rgba(0,0,0,0.55);
}
.grid2__kicker {
  margin: 1.2rem 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
@media (max-width: 760px) {
  .grid2__title {
    position: static !important;
    transform: none !important;
    padding: 1.6rem 1rem !important;
  }
  .grid2__big { text-shadow: none; }
  .grid2__kicker { font-size: 0.58rem; letter-spacing: 0.24em; margin: 0.9rem 0; }
}

/* fix: the absolute title sits between the rows in the DOM, so the
   adjacent-sibling gap rule never matched — use general sibling */
.grid2__row ~ .grid2__row { margin-top: clamp(14px, 3.3vw, 44px) !important; }

/* seam alignment: section top padding (nav clearance 112px) vs bottom (48px)
   pushes the geometric centre 32px above the seam — offset the title down */
.grid2__title { top: calc(50% + 32px) !important; }
@media (max-width: 600px) {
  /* mobile nav clearance is 60px + 1.5rem = 84px -> offset (84-48)/2 = 18px, but title is static on mobile anyway */
}

/* ── REAL DANCEFLOOR MOMENTS (home, under the mix video) ── */
.moments {
  background: var(--oxblood);
  padding: 1rem 0 5rem;
}
.moments__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}
.moments__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.6);
  margin-bottom: 0.8rem;
}
.moments__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
}
.moments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.moments__item {
  position: relative;
  aspect-ratio: 904 / 1130;
  overflow: hidden;
  background: var(--dark);
}
.moments__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moments__sound {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(238,231,212,0.35);
  background: rgba(18,18,18,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.moments__sound svg { width: 20px; height: 20px; fill: var(--cream); }
.moments__icon-on { display: none; }
.moments__sound.is-on .moments__icon-on { display: block; }
.moments__sound.is-on .moments__icon-muted { display: none; }
.moments__item.needs-tap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(18,18,18,0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23EEE7D4'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") 55% center / 26px no-repeat;
  border: 1px solid rgba(238,231,212,0.55);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 600px) {
  .moments__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 0 2.2rem;
    max-width: 420px;
  }
}

/* ── PHOTOGRAPHER CREDITS — gradient strip on hover (desktop) / always (mobile) ── */
.gi { position: relative; overflow: hidden; }
.josh-intro__media { position: relative; overflow: hidden; }
/* grid-cell overlay: img and credit share one cell, so the credit's box IS the
   image's box — it cannot extend past the photo regardless of zoom/DPI rounding
   (an absolute overlay in an aspect-ratio container spilled below the photo in
   Josh's Chrome; unreproducible in clean Chrome, so anchor to the img directly) */
.josh-intro__media {
  aspect-ratio: auto;
  display: grid;
}
.josh-intro__media img {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.josh-intro__media .gi__credit {
  grid-area: 1 / 1;
  position: static;
  align-self: end;
  width: 100%;
}
.nights__item { position: relative; overflow: hidden; }
.gi__credit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 0.9rem 0.9rem 0.7rem;
  background: linear-gradient(transparent, rgba(18,18,18,0.72));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  line-height: 1.25;
  overflow-wrap: break-word;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gi__credit:hover { text-decoration: underline; }
@media (hover: hover) {
  .gi:hover .gi__credit,
  .josh-intro__media:hover .gi__credit,
  .nights__item:hover .gi__credit,
  .gi__credit:focus-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 761px) {
  /* top-row home credits sit at the top, away from the seam title */
  .grid2__row:first-of-type .gi__credit {
    bottom: auto;
    top: 0;
    padding: 0.7rem 0.9rem 0.9rem;
    background: linear-gradient(rgba(18,18,18,0.72), transparent);
  }
  /* home grid rows bleed 5.5% off-viewport — inset edge columns */
  .grid2__row .gi:first-child .gi__credit { padding-left: calc(6vw + 0.9rem); }
  .grid2__row .gi:last-child .gi__credit { padding-right: calc(6vw + 0.9rem); }
  /* pricing grid is edge-to-edge — breathing room on its outer columns */
  .nights__item:first-child .gi__credit { padding-left: 1.4rem; }
  .nights__item:last-child .gi__credit { padding-right: 1.4rem; }
}

/* Mobile / touch: always visible, smaller, bottom-right */
@media (max-width: 760px), (hover: none) {
  .gi__credit {
    opacity: 1;
    pointer-events: auto;
    font-size: 0.62rem;
    text-align: right;
    padding: 0.5rem 0.6rem 0.4rem;
  }
  /* home grid is 2x2 here: odd children bleed left, even children bleed right */
  .grid2__row .gi:nth-child(odd) .gi__credit { padding-left: calc(6vw + 0.6rem); }
  .grid2__row .gi:nth-child(even) .gi__credit { padding-right: calc(6vw + 0.6rem); }
  .nights__item .gi__credit { padding-right: 0.8rem; }
}
