/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  background: var(--oxblood);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav__logo { text-decoration: none; line-height: 1; }
.nav__logo img { height: 34px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(238,231,212,0.5);
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.nav__cta:hover { background: rgba(238,231,212,0.1); border-color: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4.5rem;
  overflow: hidden;
  margin-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/weddings/w-hero-hairflip.jpg') center 35% / cover no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,18,18,0.25) 0%, rgba(18,18,18,0.5) 45%, rgba(18,18,18,0.9) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.8);
  margin-bottom: 1.1rem;
  display: block;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: var(--cream);
  line-height: 1.05;
  margin: 0 0 1.3rem;
}
.hero__proof {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding: 0.55rem 1.1rem;
  background: rgba(18,18,18,0.45);
  border: 1px solid rgba(238,231,212,0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__proof-g { width: 18px; height: 18px; flex-shrink: 0; }
.hero__proof-rating { font-size: 0.95rem; font-weight: 600; color: var(--cream); letter-spacing: 0.02em; }
.hero__stars { display: flex; gap: 2px; }
.hero__stars svg { width: 15px; height: 15px; fill: #f4c542; }
.hero__proof-text { font-size: 0.95rem; color: rgba(238,231,212,0.85); font-weight: 400; letter-spacing: 0.03em; }
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(238,231,212,0.9);
  margin: 0;
  font-weight: 300;
  max-width: 46ch;
}

/* ── INTRO ── */
.intro { background: var(--white); }
.intro p { margin-left: auto; margin-right: auto; text-align: center; max-width: 58ch; }
.intro__lead {
  font-family: var(--font-display-italic);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.4rem !important;
}
.intro__proof {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin: 2rem auto 0;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(18,18,18,0.15);
  border-radius: 999px;
}
.intro__proof-g { width: 18px; height: 18px; flex-shrink: 0; }
.intro__proof-rating { font-size: 0.95rem; font-weight: 600; color: var(--dark); letter-spacing: 0.02em; }
.intro__stars { display: flex; gap: 2px; }
.intro__stars svg { width: 15px; height: 15px; fill: #f4c542; }
.intro__proof-text { font-size: 0.95rem; color: rgba(18,18,18,0.7); font-weight: 400; letter-spacing: 0.03em; }

/* ── WHY MTTG ── */
.why { background: var(--white); }
.why__header { text-align: center; margin-bottom: 1.2rem; }
.why__header .label, .why__header h2 { max-width: none; text-align: center; }
.why__lead {
  text-align: center;
  max-width: 76ch;
  margin: 0 auto 3rem;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.6rem;
  border: 1px solid rgba(18,18,18,0.1);
}
.why-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.92rem; color: rgba(18,18,18,0.7); line-height: 1.7; max-width: 100%; }

/* ── VENUES STRIP ── */
.venues {
  background: var(--dark);
  padding: 2rem 0 2.4rem;
}
.venues__header { text-align: center; margin-bottom: 1.25rem; }
.venues__header .label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.45);
  margin: 0;
}
.venues__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.venues__logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.venues__logo:hover { opacity: 0.85; }

/* ── HOW IT WORKS ── */
.how { background: var(--white); }
.how__header { text-align: center; margin-bottom: 3rem; }
.how__header .label, .how__header h2 { max-width: none; text-align: center; }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.how-card {
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(18,18,18,0.1);
}
.how-card__head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.how-card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--oxblood);
  line-height: 1;
}
.how-card h3 { font-size: 1.4rem; margin: 0; }
.how-card p { font-size: 0.92rem; color: rgba(18,18,18,0.7); line-height: 1.7; max-width: 100%; }

/* ── INCLUDED (image bg) ── */
.included {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.included__bg {
  position: absolute;
  inset: 0;
  background: url('../images/setup_booth.jpg') center 65% / cover no-repeat;
  z-index: 0;
}
.included__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.55);
  z-index: 1;
}
.included__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 2rem 4.5rem;
  width: 100%;
}
.included__content .label { color: rgba(238,231,212,0.55); }
.included__content h2 { color: var(--cream); max-width: 620px; margin-bottom: 1.5rem; }
.included__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.included__list li {
  font-size: 0.95rem;
  color: rgba(238,231,212,0.9);
  padding-left: 1.25rem;
  position: relative;
}
.included__list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(238,231,212,0.4);
  font-size: 0.85rem;
}
.included__note {
  font-size: 0.95rem;
  color: var(--cream);
  font-family: var(--font-display-italic);
  font-size: 1.2rem;
  max-width: 44ch;
}

/* ── DJS ── */
.djs { background: var(--white); padding-top: 0; }
.djs__header { text-align: center; margin-bottom: 3rem; }
.djs__header .label, .djs__header h2 { max-width: none; text-align: center; }
.djs__header p { margin: 0 auto; text-align: center; }

/* Josh feature card */
.dj-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--oxblood);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.dj-feature__media {
  position: relative;
  min-height: 480px;
}
.dj-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.dj-feature__body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dj-feature__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.55);
  margin-bottom: 0.8rem;
}
.dj-feature__name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--cream);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.dj-feature__bio {
  font-size: 0.95rem;
  color: rgba(238,231,212,0.85);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 52ch;
}
.dj-feature__badges { margin-bottom: 1.4rem; }
.dj-feature .dj-price { border-color: rgba(238,231,212,0.18); }
.dj-feature .dj-price__row { color: rgba(238,231,212,0.85); }
.dj-feature .dj-price__amount { color: var(--cream); }
.dj-feature__minspend {
  font-size: 0.78rem;
  color: rgba(238,231,212,0.6);
  margin-top: 0.9rem;
  line-height: 1.6;
}

.djs__subheading {
  font-size: 1.8rem;
  text-align: center;
  margin: 3rem 0 1.5rem;
}

/* Associate cards */
.djs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dj-card {
  border: 1px solid rgba(18,18,18,0.1);
  display: flex;
  flex-direction: column;
}
.dj-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #2a1215 0%, var(--dark) 100%);
  overflow: hidden;
}
.dj-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: grayscale(1); }
.dj-card__body { padding: 1rem 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.dj-card__service {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.dj-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: var(--dark);
}
.dj-card__bio {
  font-size: 0.88rem;
  color: rgba(18,18,18,0.7);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 100%;
}
.dj-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-right: 0.4rem;
}
.dj-badge--mc {
  color: var(--oxblood);
  border: 1px solid rgba(82,0,0,0.35);
}
.dj-feature .dj-badge--mc {
  color: var(--cream);
  border-color: rgba(238,231,212,0.4);
}
.dj-card__badges { margin-bottom: 1.1rem; min-height: 1.6rem; }
.dj-price {
  padding-top: 0.5rem;
  margin-top: auto;
}
.dj-price__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(18,18,18,0.7);
  padding: 0.3rem 0;
}
.dj-price__amount {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark);
  white-space: nowrap;
}
/* Mix player */
.dj-mix {
  margin-top: 1.2rem;
}
.dj-mix__facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
  overflow: hidden;
}
.dj-mix__facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dj-mix__play {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.dj-mix__play svg {
  width: 44px;
  height: 44px;
  fill: var(--cream);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}
.dj-mix__facade:hover .dj-mix__play {
  transform: scale(1.12);
}


/* ── OPTION A: dark band ── */
.djs-a { background: var(--dark); padding-top: 4rem; }
.djs-a__header { text-align: center; margin-bottom: 2.5rem; }
.djs-a__heading {
  font-size: 1.8rem;
  color: var(--cream);
  margin: 0;
}
.djs-a__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
}
.dj-card-a__body { padding: 1rem 0.2rem 0; }
.dj-card-a .dj-card__service { color: rgba(238,231,212,0.75); }
.dj-price-a { margin-top: 0.4rem; }
.dj-price-a .dj-price__row { color: rgba(238,231,212,0.65); }
.dj-price-a__amount {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--cream);
  white-space: nowrap;
}

/* ── OPTION C: editorial rows ── */
.djs-c { background: var(--white); }
.djs-c__header { text-align: center; margin-bottom: 2.5rem; }
.djs-c__heading { font-size: 1.8rem; margin: 0; }
.djs-c__list { max-width: 980px; margin: 0 auto; }
.dj-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(18,18,18,0.1);
}
.dj-row:first-child { border-top: 1px solid rgba(18,18,18,0.1); }
.dj-row__info { display: flex; flex-direction: column; gap: 0.9rem; }
.dj-row__prices { display: flex; gap: 3.5rem; }
.dj-row__price { display: flex; flex-direction: column; gap: 0.15rem; }
.dj-row__price-label { font-size: 0.82rem; color: rgba(18,18,18,0.55); }
.dj-row__price-amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--dark);
}

/* ── PACKAGES ── */
.packages { background: var(--white); }
.packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.packages__header { text-align: center; margin-bottom: 3rem; }
.packages__header .label, .packages__header h2 { max-width: none; text-align: center; }
.packages__header p { margin: 0 auto; text-align: center; }
.package-card {
  border: 1px solid rgba(18,18,18,0.1);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}
.package-card--accent { border-top: 3px solid var(--oxblood); }
.package-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.package-card__hours {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.45);
  margin-bottom: 1.3rem;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.package-card li {
  font-size: 0.9rem;
  color: rgba(18,18,18,0.75);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.package-card li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--oxblood);
  opacity: 0.5;
  font-size: 0.8rem;
}
.package-card__price {
  border-top: 1px solid rgba(18,18,18,0.1);
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(18,18,18,0.6);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.package-card__price strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--dark);
  margin-top: 0.2rem;
}

/* ── EXTRAS ── */
.extras { background: var(--dark); }
.extras__header { text-align: center; margin-bottom: 3rem; }
.extras__header .label { color: rgba(238,231,212,0.5); }
.extras__header h2 { color: var(--cream); max-width: none; text-align: center; }
.extras__header p { color: rgba(238,231,212,0.75); margin: 0 auto; text-align: center; }
.extras__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.extras__table { width: 100%; border-collapse: collapse; }
.extras__table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.5);
  padding: 0 0 0.8rem;
  border-bottom: 1px solid rgba(238,231,212,0.15);
}
.extras__table th:last-child { text-align: right; }
.extras__table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(238,231,212,0.1);
  font-size: 0.95rem;
  color: rgba(238,231,212,0.9);
  vertical-align: top;
}
.extras__table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  white-space: nowrap;
}
.extras__table small {
  display: block;
  font-size: 0.78rem;
  color: rgba(238,231,212,0.55);
  margin-top: 0.2rem;
  line-height: 1.5;
}
.ladder {
  border: 1px solid rgba(238,231,212,0.2);
  padding: 1.8rem 1.6rem;
}
.ladder h3 {
  color: var(--cream);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}
.ladder > p {
  font-size: 0.88rem;
  color: rgba(238,231,212,0.75);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 100%;
}
.ladder__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.ladder__steps li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(238,231,212,0.1);
  font-size: 0.9rem;
  color: rgba(238,231,212,0.85);
}
.ladder__steps li span:last-child {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}
.ladder__save {
  font-size: 0.75rem;
  color: rgba(238,231,212,0.5);
  margin-left: 0.5rem;
}
.ladder__example {
  background: rgba(238,231,212,0.06);
  border: 1px solid rgba(238,231,212,0.12);
  padding: 1.2rem 1.3rem;
  font-size: 0.85rem;
  color: rgba(238,231,212,0.85);
  line-height: 1.7;
}
.ladder__example strong { color: var(--cream); font-weight: 600; }

/* ── JOURNEY ── */
.journey { background: var(--white); }
.journey__header { text-align: center; margin-bottom: 3.5rem; }
.journey__header .label, .journey__header h2 { max-width: none; text-align: center; }
.journey__header p { margin: 0 auto; text-align: center; }
.journey__list {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.2rem;
}
.journey__list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(18,18,18,0.15);
}
.journey__step { position: relative; padding-bottom: 2.4rem; }
.journey__step:last-child { padding-bottom: 0; }
.journey__step::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--oxblood);
}
.journey__when {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 0.3rem;
}
.journey__step h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.journey__step p {
  font-size: 0.92rem;
  color: rgba(18,18,18,0.7);
  line-height: 1.7;
  max-width: 54ch;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials__header { text-align: center; margin-bottom: 3rem; }
.testimonials__header .label, .testimonials__header h2 { max-width: none; text-align: center; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid rgba(18,18,18,0.09);
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.review-card__stars svg { width: 13px; height: 13px; fill: #f4c542; }
.review-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.2rem;
  max-width: 100%;
}
.review-card__author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.45);
}
.review-card__role {
  font-size: 0.7rem;
  color: rgba(18,18,18,0.35);
  margin-top: 0.15rem;
}
.testimonials__cta { text-align: center; margin-top: 2.5rem; }
.testimonials__cta a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.testimonials__cta a:hover { opacity: 0.7; }

/* ── FAQ ── */
.faq { background: var(--white); padding-top: 0; }
.faq__header { text-align: center; margin-bottom: 3rem; }
.faq__header .label, .faq__header h2 { max-width: none; text-align: center; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(18,18,18,0.1); }
.faq__item:first-child { border-top: 1px solid rgba(18,18,18,0.1); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.faq__q:hover { color: var(--oxblood); }
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  color: var(--oxblood);
  transition: transform 0.3s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__a-inner {
  padding: 0 0 1.4rem;
  font-size: 0.93rem;
  color: rgba(18,18,18,0.7);
  line-height: 1.75;
  max-width: 60ch;
}

/* ── BOOK / CTA ── */
.book {
  background:
    linear-gradient(rgba(18,18,18,0.68), rgba(18,18,18,0.68)),
    url('../images/weddings/w-dusk-silhouette.jpg') center 30% / cover no-repeat;
}
.book__header { text-align: center; margin-bottom: 3rem; }
.book__header .label { color: rgba(238,231,212,0.6); }
.book__header h2 { color: var(--cream); max-width: none; text-align: center; }
.book__header p { color: rgba(238,231,212,0.85); margin: 0 auto; text-align: center; max-width: 52ch; }
.book__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.book-card {
  border: 1px solid rgba(238,231,212,0.25);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.book-card__step {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.55);
  margin-bottom: 0.9rem;
}
.book-card h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 0.6rem; }
.book-card p {
  font-size: 0.88rem;
  color: rgba(238,231,212,0.8);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 100%;
}
.book-card .btn { margin-top: auto; justify-content: center; }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(238,231,212,0.5);
}
.btn--outline:hover { background: rgba(238,231,212,0.1); }

/* ── FOOTER ── */
footer { background: var(--burgundy); padding: 2.5rem 2rem; }
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo { text-decoration: none; opacity: 0.85; }
.footer__logo img { height: 30px; width: auto; display: block; }
.footer__copy {
  font-size: 0.72rem;
  color: rgba(238,231,212,0.35);
  letter-spacing: 0.05em;
}

/* ── IMAGE BREAK ── */
.image-break {
  height: 78vh;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ── REAL NIGHTS GALLERY (matches LP gallery) ── */
.nights { background: var(--dark); padding-top: 0; padding-bottom: 0; }
.nights__header { text-align: center; padding: 5rem 2rem 3rem; margin-bottom: 0; }
.nights__header .label { color: rgba(238,231,212,0.5); }
.nights__header h2 { color: var(--cream); max-width: none; text-align: center; }
.nights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.nights__item {
  overflow: hidden;
  height: 380px;
}
.nights__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.nights__item:hover img { transform: scale(1.04); }

/* ── PLACEHOLDER MARKERS (removed at content-swap time) ── */
.ph {
  outline: 1px dashed rgba(138,0,19,0.5);
  outline-offset: 2px;
}
.ph--media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.ph--media span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .djs__grid { grid-template-columns: repeat(2, 1fr); }
  .djs-a__grid { grid-template-columns: repeat(2, 1fr); }
  .dj-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .dj-feature { grid-template-columns: 1fr; }
  .dj-feature__media { min-height: 340px; }
  .packages__grid { grid-template-columns: 1fr; }
  .extras__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .book__grid { grid-template-columns: 1fr; }
  .nights__grid { grid-template-columns: repeat(2, 1fr); }
  .nights__item { height: 280px; }
}
@media (max-width: 600px) {
  .nav { padding: 0 1rem; height: 60px; gap: 0.75rem; }
  .nav__logo img { height: 28px; }
  .nav__links { gap: 0.9rem; }
  .nav__links a { font-size: 0.66rem; letter-spacing: 0.1em; }
  .nav__cta { font-size: 0.72rem; padding: 0.45rem 0.8rem; white-space: nowrap; }
  .hero { min-height: 64svh; margin-top: 60px; padding-bottom: 2.5rem; }
  .hero__content { padding: 0 1.25rem; }
  .hero__headline { font-size: 2.3rem; }
  .hero__proof {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding: 0.55rem 1.1rem;
  background: rgba(18,18,18,0.45);
  border: 1px solid rgba(238,231,212,0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__proof-g { width: 18px; height: 18px; flex-shrink: 0; }
.hero__proof-rating { font-size: 0.95rem; font-weight: 600; color: var(--cream); letter-spacing: 0.02em; }
.hero__stars { display: flex; gap: 2px; }
.hero__stars svg { width: 15px; height: 15px; fill: #f4c542; }
.hero__proof-text { font-size: 0.95rem; color: rgba(238,231,212,0.85); font-weight: 400; letter-spacing: 0.03em; }
.hero__sub { font-size: 1.05rem; }
  .intro__lead { font-size: 1.2rem; }
  .djs__grid { grid-template-columns: 1fr; }
  .djs-a__grid { grid-template-columns: 1fr; }
  .dj-row__prices { gap: 2rem; }
  .why__grid { grid-template-columns: 1fr; }
  .dj-feature__body { padding: 2.2rem 1.4rem; }
  .included { min-height: 0; }
  .included__content { padding: 3rem 1.25rem; }
  .extras__table td:last-child { font-size: 1.05rem; }
  .testimonials__grid { display: flex; flex-direction: column; gap: 1rem; }
  .faq__q { font-size: 0.95rem; }
  .image-break { height: 45vh; padding: 0; }
  .book { background: var(--oxblood); }
  .nights__item { height: 200px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .btn { white-space: nowrap; }
}

/* ════ MULTI-PAGE GUIDE COMPONENTS ════ */

/* Nav active state */
.nav__links a.active { opacity: 1; border-bottom: 1px solid rgba(238,231,212,0.65); padding-bottom: 3px; }

/* Interior page header band */
.pagehero {
  background: var(--oxblood);
  margin-top: 72px;
  padding: 4.5rem 2rem 4rem;
}
.pagehero__inner { max-width: var(--container-max); margin: 0 auto; }
.pagehero__label {
  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.55);
  display: block;
  margin-bottom: 0.9rem;
}
.pagehero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--cream);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.pagehero__sub {
  font-size: 1.1rem;
  color: rgba(238,231,212,0.85);
  font-weight: 300;
  max-width: 52ch;
  margin: 0;
}

/* Page-turn footer */
.pageturn {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(238,231,212,0.08);
}
.pageturn__cell {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: background 0.25s;
}
.pageturn__cell:hover { background: rgba(238,231,212,0.05); }
.pageturn__cell--next {
  order: 1;
  align-items: center;
  text-align: center;
  padding: 4.5rem 2rem;
}
.pageturn__cell--prev {
  order: 2;
  align-items: center;
  text-align: center;
  padding: 1.1rem 2rem 1.3rem;
  border-top: 1px solid rgba(238,231,212,0.08);
  flex-direction: row;
  justify-content: center;
  gap: 0.8rem;
}
.pageturn__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238,231,212,0.45);
}
.pageturn__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--cream);
  line-height: 1.1;
}
.pageturn__cell--next:hover .pageturn__title { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; }
.pageturn__cell--prev .pageturn__title {
  color: rgba(238,231,212,0.6);
  font-size: 1.1rem;
}
.pageturn__cell--prev .pageturn__label { color: rgba(238,231,212,0.3); }

/* Slim CTA strip (interior pages) */
.cta-strip {
  background: var(--white);
  border-top: 1px solid rgba(18,18,18,0.08);
  padding: 3.5rem 2rem;
  text-align: center;
}
.cta-strip h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.cta-strip p { margin: 0 auto 1.5rem; font-size: 0.95rem; color: rgba(18,18,18,0.65); max-width: 52ch; }
.cta-strip__buttons { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.btn--dark-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(18,18,18,0.35);
}
.btn--dark-outline:hover { border-color: var(--dark); background: rgba(18,18,18,0.04); }

/* Setup split section (equipment, text + media) */
.setup-split { background: var(--white); }
.setup-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.setup-split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, #2a1215 0%, var(--dark) 100%);
}
.setup-split__media img { width: 100%; height: 100%; object-fit: cover; }
.setup-split__body .label { margin-bottom: 0.6rem; }
.setup-split__body h2 { margin-bottom: 1.1rem; }
.setup-split__body > p { font-size: 0.95rem; color: rgba(18,18,18,0.72); line-height: 1.75; margin-bottom: 1.3rem; }
.setup-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.setup-list li {
  font-size: 0.93rem;
  color: rgba(18,18,18,0.75);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.setup-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--oxblood);
  opacity: 0.5;
  font-size: 0.85rem;
}
.setup-split__note {
  font-family: var(--font-display-italic);
  font-size: 1.15rem;
  color: var(--dark);
  margin-top: 1.4rem;
}

/* Associate profile rows */
.assoc { background: var(--white); }
.assoc__list { max-width: 1000px; margin: 0 auto; }
.assoc-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.8rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(18,18,18,0.1);
}
.assoc-row:first-child { border-top: 1px solid rgba(18,18,18,0.1); }
.assoc-row__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #2a1215 0%, var(--dark) 100%);
}
.assoc-row__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: grayscale(1); }
.assoc-row__info { display: flex; flex-direction: column; gap: 0.85rem; }
.assoc-row__name {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.05;
}
.assoc-row__bio {
  font-size: 0.93rem;
  color: rgba(18,18,18,0.72);
  line-height: 1.75;
  max-width: 58ch;
  margin: 0;
}
.assoc-row__quote {
  border-left: 2px solid rgba(82,0,0,0.3);
  padding-left: 1rem;
  font-size: 0.85rem;
  color: rgba(18,18,18,0.6);
  line-height: 1.65;
  font-style: italic;
  max-width: 54ch;
}
.assoc-row__quote cite { display: block; font-style: normal; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; color: rgba(18,18,18,0.45); }
.assoc-row__meta { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.assoc-row .dj-mix__facade { max-width: 400px; }

@media (max-width: 900px) {
  .setup-split__grid { grid-template-columns: 1fr; gap: 2rem; }
  .assoc-row { grid-template-columns: 240px 1fr; gap: 1.8rem; }
}
@media (max-width: 600px) {
  .pagehero { margin-top: 60px; padding: 3rem 1.25rem 2.6rem; }
  .pageturn__cell--next { padding: 3rem 1.5rem; }
  .assoc-row { grid-template-columns: 1fr; }
  .assoc-row__photo { max-width: 280px; }
  .assoc-row__meta { gap: 1.5rem; }
  .nav__links .nav-home { display: none; }
}

/* ── MIX BUTTON + POPUP ── */
.mix-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  border: 1px solid rgba(18,18,18,0.35);
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.mix-btn:hover { border-color: var(--dark); background: rgba(18,18,18,0.04); }
.mix-btn svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }
.mix-btn--cream { color: var(--cream); border-color: rgba(238,231,212,0.5); }
.mix-btn--cream:hover { border-color: var(--cream); background: rgba(238,231,212,0.1); }

.mix-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(18,18,18,0.88);
}
.mix-modal__box {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}
.mix-modal__box iframe { width: 100%; height: 100%; border: 0; }
.mix-modal__close {
  position: absolute;
  top: -3rem;
  right: -0.4rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
}
.mix-modal__close:hover { opacity: 0.7; }
body.mix-open { overflow: hidden; }
@media (max-width: 600px) {
  .mix-modal { padding: 1rem; }
  .mix-modal__close { right: 0; }
}

/* ── JOSH INTRO (photo + paragraph, replaces feature card) ── */
.josh-intro { background: var(--white); }
.josh-intro__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.josh-intro__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.josh-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.josh-intro__body .label { margin-bottom: 0.6rem; }
.josh-intro__body h2 { margin-bottom: 1.1rem; }
.josh-intro__body > p {
  font-size: 0.98rem;
  color: rgba(18,18,18,0.75);
  line-height: 1.8;
  margin-bottom: 1.6rem;
  max-width: 58ch;
}
.packages__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(18,18,18,0.55);
  max-width: 60ch;
  margin: 2rem auto 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .josh-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .josh-intro__media { max-width: 420px; }
}


/* ── LIGHTING VIDEO ── */
.lighting__video {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 460px;
  justify-self: center;
  overflow: hidden;
  background: var(--dark);
}
.lighting__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── COMMON PACKAGES / BUNDLES ── */
.packages__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}
.package-card__save {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid rgba(82,0,0,0.35);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}
@media (max-width: 900px) {
  .packages__grid--three { grid-template-columns: 1fr; }
}
