/* PAGE HEADER */
    .page-header { padding: 100px 40px 80px; position: relative; overflow: hidden; }
    .page-header-glow {
      position: absolute; top: -60px; right: -60px; width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(217,28,181,0.12) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none; animation: glow 6s ease-in-out infinite;
    }
    .header-inner { max-width: 1240px; margin: 0 auto; position: relative; }
    .eyebrow {
      font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
      color: #FF7A1A; margin-bottom: 16px; font-weight: 600;
    }
    .page-h1 {
      font-family: 'League Spartan', sans-serif; font-size: clamp(56px, 10vw, 118px);
      font-weight: 900; line-height: 0.85; color: #f0f0f0; letter-spacing: -0.025em; margin-bottom: 24px;
    }
    .page-sub { font-size: 17px; color: #484858; line-height: 1.6; max-width: 500px; }

    /* GALLERY BENTO */
    .gallery-section { padding: 0 40px 80px; background: #07070a; }
    .gallery-inner { max-width: 1240px; margin: 0 auto; }
    .bento-top {
      display: grid; grid-template-columns: 3fr 2fr;
      grid-template-rows: 340px 340px; gap: 10px;
    }
    .bento-top .img-tall {
      grid-row: span 2; width: 100%; height: 100%;
      object-fit: cover; border-radius: 4px; display: block;
    }
    .bento-top .img-half { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; display: block; }
    .bento-bottom {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; margin-top: 10px;
    }
    .bento-bottom img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover;
      border-radius: 4px; display: block;
    }
    .bento-bottom .img-wide { grid-column: span 2; }

    /* CTA BANNER */
    .cta-banner {
      padding: 100px 40px; background: #040406;
      position: relative; overflow: hidden; text-align: center;
    }
    .cta-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 800px; height: 500px;
      background: radial-gradient(ellipse, rgba(217,28,181,0.1) 0%, rgba(139,0,212,0.05) 45%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-h2 {
      font-family: 'League Spartan', sans-serif; font-size: clamp(44px, 7vw, 86px);
      font-weight: 900; line-height: 0.87; color: #f0f0f0; letter-spacing: -0.025em; margin-bottom: 24px;
      position: relative;
    }
    .cta-sub { font-size: 17px; color: #404050; line-height: 1.6; margin-bottom: 44px; position: relative; }
    .btn-grad {
      background: linear-gradient(135deg, #FF7A1A, #D91CB5, #8B00D4);
      color: #fff; text-decoration: none; padding: 17px 44px;
      border-radius: 8px; font-size: 16px; font-weight: 700;
      display: inline-block; transition: opacity 0.2s; position: relative;
    }
    .btn-grad:hover { opacity: 0.88; }
