  /* ── VIDEO HERO ── */
  .video-hero {
    position: relative;
    width: 100vw;
    left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-video {
    position: absolute;
    width: max(100vw, calc(100vh * 16 / 9));
    height: max(100vh, calc(100vw * 9 / 16));
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border: 0;
  }
  .video-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(5,3,2,0.42) 0%, rgba(5,3,2,0.18) 45%, rgba(5,3,2,0.78) 100%),
      linear-gradient(to right, rgba(5,3,2,0.42) 0%, rgba(5,3,2,0.04) 100%);
    z-index: 1;
  }
  .video-caption {
    position: relative; z-index: 5;
    text-align: center; padding: 0 24px; max-width: 920px;
    animation: heroFadeIn 1.8s ease both;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .video-eyebrow {
    font-size: 13px; letter-spacing: 0.55em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 30px;
  }
  .video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 9vw, 134px);
    font-weight: 300; line-height: 0.88; color: #fff;
    margin-bottom: 30px; letter-spacing: 0.01em;
  }
  .video-title em { font-style: italic; color: var(--gold-light); display: block; }
  .video-sub {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.48); margin-bottom: 52px; line-height: 2.2;
  }
  .scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scroll-hint span { font-size: 8px; letter-spacing: 0.45em; text-transform: uppercase; color: rgba(255,255,255,0.33); }
  .scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: scrollPulse 2.2s ease infinite;
  }
  @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* ── PAGE NAV ── */
  .page-nav {
    background: var(--white); border-bottom: 1px solid var(--border-soft);
    padding: 0 56px; display: flex; gap: 0; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    position: sticky; top: 92px; z-index: 100;
  }
  .page-nav::-webkit-scrollbar { display: none; }
  .page-nav-link {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink-muted); text-decoration: none; padding: 18px 24px;
    border-bottom: 2px solid transparent; white-space: nowrap;
    transition: color 0.25s, border-color 0.25s; flex-shrink: 0;
  }
  .page-nav-link:hover, .page-nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

  /* ── SECTIONS ── */
  .pb-section { padding: 100px 56px; border-bottom: 1px solid var(--border-soft); }
  .pb-section:nth-child(odd) { background: var(--bg); }
  .pb-section:nth-child(even) { background: var(--white); }

  .section-header { margin-bottom: 64px; }
  .section-label {
    font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; line-height: 1; color: var(--ink); margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.8; font-weight: 300; max-width: 580px; }

  /* ── CAT HEADER ── */
  .cat-header {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px; margin-bottom: 28px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border-soft);
    flex-wrap: wrap;
  }
  .cat-header-left { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
  .cat-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--ink); }
  .cat-badge { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 4px 10px; }
  .cat-count { font-size: 10px; letter-spacing: 0.15em; color: var(--ink-muted); }

  /* ── SERVICE SHOWCASE (DJ/MC split layout) ── */
  .service-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  }
  .showcase-img-wrap {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 16/10;
  }
  .showcase-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .showcase-img-wrap:hover img { transform: scale(1.05); }
  .showcase-badge {
    position: absolute; top: 20px; left: 20px; z-index: 2;
    font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
    background: var(--gold); color: #fff; padding: 6px 14px;
  }
  .showcase-info { padding: 10px 0; }
  .showcase-name {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3.5vw,48px);
    font-weight: 300; line-height: 1.05; color: var(--ink); margin-bottom: 20px;
  }
  .showcase-name em { font-style: italic; color: var(--gold); }
  .showcase-desc {
    font-size: 14px; color: var(--ink-muted); line-height: 1.85; font-weight: 300; margin-bottom: 28px;
  }
  .showcase-features {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
  }
  .feature-tag {
    font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 8px 16px; border: 1px solid var(--border-soft); color: var(--ink-muted);
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color 0.3s, color 0.3s;
  }
  .feature-tag i { color: var(--gold); font-size: 11px; }
  .feature-tag:hover { border-color: var(--gold); color: var(--gold); }
  .showcase-cta {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    padding: 14px 36px; background: var(--ink); color: #fff;
    text-decoration: none; display: inline-block;
    transition: background 0.3s;
  }
  .showcase-cta:hover { background: var(--gold); }

  /* ── EFFECTS GRID (Uplight, Headlight, etc.) ── */
  .effects-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .effect-card {
    background: var(--white); border: 1px solid var(--border-soft);
    overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
  }
  .effect-card:hover { border-color: var(--gold); box-shadow: 0 8px 40px rgba(176,141,87,0.12); }
  .effect-img {
    position: relative; aspect-ratio: 16/10; overflow: hidden; cursor: pointer;
  }
  .effect-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .effect-card:hover .effect-img img { transform: scale(1.06); }
  .effect-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(28,22,12,0.4); opacity: 0; transition: opacity 0.4s;
    color: #fff; font-size: 18px;
  }
  .effect-card:hover .effect-overlay { opacity: 1; }
  .effect-body { padding: 24px; }
  .effect-icon {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    color: var(--gold); font-size: 15px;
  }
  .effect-name {
    font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
    color: var(--ink); margin-bottom: 10px;
  }
  .effect-desc {
    font-size: 13px; color: var(--ink-muted); line-height: 1.7; font-weight: 300;
  }

  /* ── SPARKLER FEATURE (wide split) ── */
  .sparkler-feature {
    margin-top: 80px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  }
  .sparkler-visual {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 16/10;
  }
  .sparkler-visual img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .sparkler-visual:hover img { transform: scale(1.04); }
  .sparkler-overlay-text {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 28px 28px;
    background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, transparent 100%);
    display: flex; flex-direction: column; gap: 4px;
  }
  .spark-eyebrow {
    font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-light);
  }
  .spark-heading {
    font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: #fff;
  }
  .sparkler-info { padding: 10px 0; }

  /* ── BOOTH CARDS (alternating image/text) ── */
  .booth-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    margin-bottom: 80px;
  }
  .booth-card:last-child { margin-bottom: 0; }
  .booth-card.reverse { direction: rtl; }
  .booth-card.reverse > * { direction: ltr; }
  .booth-visual {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 16/10;
  }
  .booth-visual img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .booth-visual:hover img { transform: scale(1.05); }
  .booth-num-badge {
    position: absolute; top: 24px; right: 24px; z-index: 2;
    font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300;
    color: rgba(255,255,255,0.18); line-height: 1;
  }
  .booth-content { padding: 20px 0; }
  .booth-label {
    font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); background: var(--gold-pale); padding: 5px 14px;
    display: inline-block; margin-bottom: 16px;
  }
  .booth-name {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,4vw,52px);
    font-weight: 300; line-height: 1.05; color: var(--ink); margin-bottom: 20px;
  }
  .booth-name em { font-style: italic; color: var(--gold); }
  .booth-desc {
    font-size: 14px; color: var(--ink-muted); line-height: 1.85; font-weight: 300; margin-bottom: 28px;
  }
  .booth-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px;
  }
  .bh-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border: 1px solid var(--border-soft);
    transition: border-color 0.3s;
  }
  .bh-item:hover { border-color: var(--gold); }
  .bh-icon { font-size: 18px; flex-shrink: 0; }
  .bh-text { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }

  /* ── CTA ── */
  .pb-cta {
    padding: 120px 56px; text-align: center;
    background: var(--gold-pale); position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .pb-cta::before {
    content: ''; position: absolute; width: 480px; height: 480px;
    border: 1px solid rgba(176,141,87,0.28); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
  }
  .pb-cta::after {
    content: ''; position: absolute; width: 760px; height: 760px;
    border: 1px solid rgba(176,141,87,0.13); border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
  }
  .pb-cta-tag { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; position: relative; z-index: 1; }
  .pb-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px,6vw,88px); font-weight: 300; line-height: 0.95; color: var(--ink); margin-bottom: 44px; position: relative; z-index: 1; }
  .pb-cta-title em { font-style: italic; color: var(--gold); }
  .pb-cta-btns { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 1; }
  .btn-dark { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; padding: 15px 36px; background: var(--ink); color: #fff; text-decoration: none; transition: background 0.3s; }
  .btn-dark:hover { background: var(--gold); }
  .btn-ghost-dark { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; padding: 15px 36px; color: var(--ink); text-decoration: none; border: 1px solid rgba(28,24,18,0.25); transition: all 0.3s; }
  .btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

  /* ── LIGHTBOX ── */
  .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 999; align-items: center; justify-content: center; }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
  .lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 36px; cursor: pointer; font-weight: 300; opacity: .65; transition: opacity .2s; line-height: 1; }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 28px; cursor: pointer; opacity: .55;
    transition: opacity .2s; background: rgba(0,0,0,0.3); padding: 16px 20px;
    border: none; font-family: 'DM Sans'; letter-spacing: 0;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 500;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--ink);
    transition: transform 0.3s, opacity 0.3s; transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 450;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 0; padding: 80px 40px 40px; overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300; color: var(--ink); text-decoration: none;
    padding: 14px 0; border-bottom: 1px solid var(--border-soft);
    width: 100%; text-align: center; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mob-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-muted); padding: 10px 0;
    border-bottom: 1px solid var(--border-soft); width: 100%; text-align: center;
  }
  .mobile-menu .mob-book {
    margin-top: 32px; font-family: 'DM Sans', sans-serif;
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    padding: 15px 40px; background: var(--gold); color: #fff;
    text-decoration: none; border: none;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-book { display: none; }
    .nav-hamburger { display: flex; }

    .video-hero { height: 100svh; }
    .video-caption { padding: 0 20px; }
    .video-eyebrow { font-size: 11px; letter-spacing: 0.3em; margin-bottom: 18px; }
    .video-title { font-size: clamp(44px, 12vw, 80px); line-height: 0.92; }
    .video-sub { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 0; }
    .scroll-hint { display: none; }

    .page-nav { padding: 0 16px; top: 68px; }
    .page-nav-link { padding: 16px 16px; font-size: 9px; }

    .pb-section { padding: 64px 24px; }
    .section-header { margin-bottom: 40px; }

    .service-showcase { grid-template-columns: 1fr; gap: 32px; }
    .showcase-img-wrap { aspect-ratio: 16/10; }

    .effects-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .effect-img { aspect-ratio: 16/10; }

    .sparkler-feature { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }

    .booth-card { grid-template-columns: 1fr; gap: 32px; }
    .booth-card.reverse { direction: ltr; }
    .booth-visual { aspect-ratio: 16/10; }
    .booth-highlights { grid-template-columns: 1fr 1fr; }

    .pb-cta { padding: 80px 24px; }
    .pb-cta-btns { flex-direction: column; align-items: center; }
  }

  @media (max-width: 520px) {
    .effects-grid { grid-template-columns: 1fr; }
    .booth-highlights { grid-template-columns: 1fr; }
    .showcase-features { flex-direction: column; }
  }