/* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-deep:   #060d1f;
      --blue-mid:    #091836;
      --blue-bright: #1c67fd;
      --blue-light:  #5a90ff;
      --pink-hot:    #e232d9;
      --pink-light:  #f060e8;
      --pink-pale:   #fbb3f8;
      --purple:      #8b3fed;
      --white:       #FFFFFF;
      --off-white:   #e8f0ff;
      --glass:       rgba(255,255,255,0.06);
      --glass-border:rgba(255,255,255,0.12);
      --gradient-hero: linear-gradient(135deg, #060d1f 0%, #091836 30%, #1a3a8c 60%, #8b1ad0 85%, #c018d0 100%);
      --gradient-pink: linear-gradient(90deg, var(--pink-hot), var(--pink-light));
      --gradient-blue: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    /* Anchor scroll clears fixed nav + notched devices */
    section[id] {
      scroll-margin-top: max(76px, env(safe-area-inset-top, 0px) + 56px);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f8f9ff;
      color: #0d1224;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f0f4ff; }
    ::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue-bright), var(--pink-hot)); border-radius: 3px; }

    /* ── UTILITY ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(16px, 4vw, 24px);
      width: 100%;
    }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--pink-hot); margin-bottom: 20px;
    }
    .section-tag::before, .section-tag::after {
      content: ''; display: block; width: 24px; height: 1px; background: var(--pink-hot);
    }
    .gradient-text {
      background: linear-gradient(135deg, var(--blue-light) 0%, var(--pink-hot) 60%, var(--pink-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ──────────────────────────────────────────
       NAVIGATION
    ────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: env(safe-area-inset-top, 0) clamp(12px, 3vw, 24px) 0;
      padding-left: max(clamp(8px, 2vw, 18px), env(safe-area-inset-left, 0px));
      padding-right: max(clamp(12px, 3vw, 24px), env(safe-area-inset-right, 0px));
      transition: all 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(28,103,253,0.12);
      box-shadow: 0 4px 24px rgba(13,18,36,0.07);
    }
    .nav.scrolled .nav-links a { color: rgba(13,18,36,0.72); }
    .nav.scrolled .nav-links a:hover { color: var(--blue-bright); }
    .nav.scrolled .logo-wcf,
    .nav.scrolled .logo-divider,
    .nav.scrolled .logo-sub { color: rgba(13,18,36,0.6); }
    .nav.scrolled .logo-fill { -webkit-text-fill-color: #0d1224; color: #0d1224; }
    /* Tighter than default — jpeg mark reads wider vs SVG; keeps top-of-page spacing */
    .nav.scrolled .logo {
      gap: 10px;
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      min-height: 80px;
      flex-wrap: wrap;
    }
    /* ── LOGO ── */
    .logo {
      display: flex; align-items: center;
      text-decoration: none; cursor: pointer;
      gap: 22px;
      min-width: 0;
      margin-left: -6px;
    }

    .logo-mark-wrap {
      position: relative;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .logo-mark {
      height: 52px;
      width: auto;
      max-width: min(300px, 56vw);
      object-fit: contain;
      object-position: left center;
      display: block;
      flex-shrink: 0;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    /* Slight lift so the mark reads first on the purple bar */
    .nav:not(.scrolled) .logo-mark--on-dark {
      filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.28));
    }
    .logo-mark--on-light {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .nav.scrolled .logo-mark--on-dark {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .nav.scrolled .logo-mark--on-light {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    /* Wordmark: all text, no icon */
    .logo-wordmark {
      display: flex; flex-direction: column; gap: 3px; line-height: 1;
    }
.scrolled .logo-top-row span {
  color: rgba(13,18,36,0.6);
  border: 0px solid transparent;
}
    /* Top row: WCF | Edinburgh */
    .logo-top-row {
      display: flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }
    .logo-wcf {
      color: var(--white); font-weight: 900; letter-spacing: 2px;
    }
    .logo-divider {
      color: rgba(255,255,255,0.35); font-weight: 300; font-size: 12px;
    }

    /* Main "Eid Festival" — white → pink L-to-R sweep on hover */
    .logo-fill {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 900; font-style: italic;
      display: inline-block; position: relative;
      letter-spacing: -0.3px; white-space: nowrap;

      /*
        Trick: gradient is 210% wide.
        Left half  (0–50%)  = pink + bright leading-edge highlight
        Right half (50–100%) = white (resting state)
        We animate background-position from 100% → 0% on hover
        so the pink side sweeps in from left to right.
      */
      background: linear-gradient(
        to right,
        var(--pink-hot)  0%,
        var(--pink-hot)  48%,
        #ff80f5          50%,   /* razor-thin bright leading edge */
        var(--white)     52%,
        var(--white)     100%
      );
      background-size: 210% 100%;
      background-position: 100% center;   /* resting: shows white side */
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;

      /* easeOutExpo — fast snap, graceful ease-out */
      transition:
        background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
    }

    /* Subtle glow blooms when pink is revealed */
    .logo:hover .logo-fill {
      background-position: 0% center;
      filter: drop-shadow(0 0 8px rgba(226,50,217,0.65))
              drop-shadow(0 0 20px rgba(226,50,217,0.3));
    }

    /* Bottom sub-label */
    .logo-sub {
      font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    .nav-links {
      display: flex; align-items: center; gap: 14px;
      list-style: none; flex-wrap: wrap; justify-content: flex-end;
      max-width: min(860px, 72vw);
    }
    .nav-links a {
      text-decoration: none; color: rgba(255,255,255,1); font-size: 12px;
      font-weight: 500; letter-spacing: 0.35px; position: relative;
      transition: color 0.3s;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
      height: 1px; background: var(--gradient-pink); transition: right 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { right: 0; }

    .nav-cta {
      background: linear-gradient(135deg, var(--blue-bright), var(--pink-hot));
      color: var(--white); border: none; border-radius: 50px;
      padding: 10px 22px; font-size: 13px; font-weight: 600; cursor: pointer;
      letter-spacing: 0.5px; transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(226,50,217,0.35);
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(226,50,217,0.55); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; background: none;
      border: none; cursor: pointer;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px; transition: all 0.3s;
    }
    .nav.scrolled .hamburger span { background: #0d1224; }

    /* ──────────────────────────────────────────
       CANVAS / PARTICLES
    ────────────────────────────────────────── */
    #heroCanvas {
      position: absolute; inset: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 3;
    }

    /* ──────────────────────────────────────────
       HERO
    ────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex; align-items: center; justify-content: center;
      background: var(--blue-deep);
      overflow: hidden;
      color: #ffffff; /* override body dark color */
      padding-top: max(0px, env(safe-area-inset-top, 0px));
      padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    /* Curved wave divider at banner bottom */
    .hero::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: clamp(40px, 7vw, 84px);
      z-index: 5;
      pointer-events: none;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-position: bottom center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,36 C220,96 420,8 720,48 C980,82 1180,12 1440,44 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
    }

    /* Real photo background */
    .hero-bg-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      z-index: 0;
      transform: scale(1.04);
      animation: heroPan 18s ease-in-out infinite alternate;
    }
    @keyframes heroPan {
      0%   { transform: scale(1.04) translateX(0px); }
      100% { transform: scale(1.1)  translateX(-18px); }
    }

    /* Blue-to-pink layered overlay */
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg, #1c67fd, #7c3aed 45%, #e94bb8);
      background-size: 200% 200%;
    
    }
  
   
    .hero-overlay::after {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 60% at 50% 0%,   rgba(28,103,253,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(226,50,217,0.18) 0%, transparent 70%),
        /* White fade at the very bottom — transitions into light sections */
        linear-gradient(to bottom, rgba(6,13,31,0.45) 0%, transparent 40%, transparent 70%, rgba(248,249,255,0.15) 100%);
    }

    /* Animated gradient orbs */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none; opacity: 0.28;
      z-index: 2;
    }
    .orb-1 {
      width: 600px; height: 600px; top: -150px; right: -100px;
      background: radial-gradient(circle, var(--blue-bright), transparent);
      animation: orbFloat1 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 500px; height: 500px; bottom: -100px; left: -80px;
      background: radial-gradient(circle, var(--pink-hot), transparent);
      animation: orbFloat2 10s ease-in-out infinite;
    }
    .orb-3 {
      width: 300px; height: 300px; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, var(--purple), transparent);
      animation: orbFloat3 12s ease-in-out infinite;
    }
    @keyframes orbFloat1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-40px, 40px) scale(1.15); }
    }
    @keyframes orbFloat2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(50px, -30px) scale(1.2); }
    }
    @keyframes orbFloat3 {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
      50% { transform: translate(-50%, -55%) scale(1.3); opacity: 0.35; }
    }

    .hero-content {
      position: relative; z-index: 4; text-align: center;
      max-width: 780px;
      padding: clamp(72px, 14vw, 100px) clamp(16px, 4vw, 24px) clamp(100px, 18vh, 140px);
      width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 8px 10px;
      background: var(--glass); border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
      padding: 8px clamp(12px, 3vw, 20px); border-radius: 50px; margin-bottom: 32px;
      font-size: clamp(9px, 2.4vw, 11px); font-weight: 700; letter-spacing: clamp(1px, 0.35vw, 2px); text-transform: uppercase;
      color: rgba(255,255,255,1);
      animation: fadeDown 0.8s ease 0.2s both;
      max-width: 100%;
      text-align: center;
    }
    .hero-badge .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--pink-light);
      box-shadow: 0 0 8px var(--pink-light);
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(42px, 7vw, 92px);
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 32px;
      color: #ffffff;
      animation: fadeUp 0.9s ease 0.4s both;
    }
    .hero-title .eid-word {
      font-family: 'Outfit', sans-serif;
      font-style: italic;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: inline-block;
      /* background-clip:text uses border-box; italic overshoots need extra paint area */
      padding: 0.04em 0.18em 0.08em 0.04em;
      background: linear-gradient(135deg, var(--pink-hot), var(--pink-light), #fbb3f8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .hero-ctas {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.9s ease 0.75s both;
    }
    .btn-primary {
      background: var(--white); color: var(--blue-deep);
      padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700;
      border: none; cursor: pointer; letter-spacing: 0.3px;
      transition: all 0.3s; box-shadow: 0 4px 30px rgba(255,255,255,0.2);
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,255,255,0.35); }

    .btn-outline {
      background: transparent; color: var(--white);
      padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 600;
      border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer;
      transition: all 0.3s; letter-spacing: 0.3px; text-decoration: none; display: inline-block;
    }
    .btn-outline:hover {
      border-color: var(--pink-hot); background: rgba(226,50,217,0.12);
      transform: translateY(-3px);
    }

    .hero-scroll {
      position: absolute;
      bottom: max(24px, env(safe-area-inset-bottom, 0px) + 12px);
      left: 50%; transform: translateX(-50%);
      z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: fadeUp 1s ease 1.2s both;
    }
    .scroll-line {
      width: 1px; height: 50px; background: linear-gradient(to bottom, var(--pink-light), transparent);
      animation: scrollDown 2s ease-in-out infinite;
    }
    @keyframes scrollDown { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.6); } }
    .scroll-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

    /* ──────────────────────────────────────────
       MARQUEE STRIP
    ────────────────────────────────────────── */
    .marquee-strip {
      background: linear-gradient(90deg, var(--blue-bright), var(--purple), var(--pink-hot), var(--purple), var(--blue-bright));
      background-size: 300% 100%;
      animation: gradientShift 6s linear infinite;
      padding: 14px 0; overflow: hidden;
      color: #ffffff;
      
    }
    @keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
    .marquee-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: marqueeScroll 25s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 0 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    }
    .marquee-star { color: var(--pink-pale); font-size: 14px; }

    /* ──────────────────────────────────────────
       ABOUT SECTION
    ────────────────────────────────────────── */
    .about {
      padding: clamp(64px, 12vw, 100px) 0;
      background: #ffffff;
      position: relative;
    }
    /* Subtle top border that bleeds from the hero */
    .about::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 6px;
      background: linear-gradient(90deg, var(--blue-bright), var(--purple), var(--pink-hot));
      pointer-events: none;
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
    }
    .about-text .section-tag { margin-bottom: 16px; }
    .about-headline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.15;
      margin-bottom: 24px;
      color: #0d1224;
    }
    .about-body {
      font-size: clamp(15px, 1.05rem + 0.2vw, 16px);
      line-height: 1.8; color: rgba(13,18,36,0.62);
      margin-bottom: 20px;
    }
    .about-body a { color: var(--blue-bright); text-decoration: none; font-weight: 600; }
    .about-body a:hover { text-decoration: underline; }
    .about-director {
      font-size: 14px; color: var(--blue-bright); font-weight: 600; margin-top: 28px;
    }
    .about-director span { display: block; font-size: 12px; color: rgba(13,18,36,0.45); font-weight: 400; margin-top: 2px; }

    /* ── PHOTO COLLAGE ── */
    .photo-collage {
      position: relative;
      height: 460px;
      display: flex; align-items: center; justify-content: center;
    }

    /* Decorative spinning ring */
    .collage-ring {
      position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      border: 1.5px dashed rgba(28,103,253,0.18);
      animation: ringRotate 28s linear infinite;
      pointer-events: none;
    }
    .collage-ring-inner {
      position: absolute;
      width: 280px; height: 280px; border-radius: 50%;
      border: 1px dashed rgba(226,50,217,0.15);
      animation: ringRotate 18s linear infinite reverse;
      pointer-events: none;
    }
    @keyframes ringRotate { to { transform: rotate(360deg); } }

    /* Dot pattern */
    .collage-dots {
      position: absolute; right: -10px; bottom: 10px;
      width: 130px; height: 130px; pointer-events: none;
      background-image: radial-gradient(circle, rgba(226,50,217,0.4) 1.5px, transparent 1.5px);
      background-size: 16px 16px;
    }
    .collage-dots-2 {
      position: absolute; left: -10px; top: 10px;
      width: 90px; height: 90px; pointer-events: none;
      background-image: radial-gradient(circle, rgba(28,103,253,0.35) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
    }

    /* Individual photo cards */
    .photo-card {
      position: absolute;
      width: 230px; height: 300px;
      border-radius: 18px; overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55);
      border: 2px solid rgba(255,255,255,0.08);
      transition: transform 0.55s cubic-bezier(0.34,1.4,0.64,1),
                  box-shadow 0.4s ease;
      cursor: pointer;
    }
    .photo-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }
    .photo-card:hover img { transform: scale(1.08); }

    .photo-card-label {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
      padding: 14px 14px 12px;
      background: none;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow:
        0 0 2px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.95),
        0 2px 14px rgba(0, 0, 0, 0.65),
        0 0 28px rgba(0, 0, 0, 0.45);
    }

    /* Back card */
    .photo-card-back {
      z-index: 1;
      transform: rotate(-11deg) translate(-60px, 28px);
    }
    /* Middle card */
    .photo-card-mid {
      z-index: 2;
      transform: rotate(7deg) translate(55px, 18px);
    }
    /* Front card */
    .photo-card-front {
      z-index: 3;
      transform: rotate(-2deg) translate(0px, -12px);
      width: 250px; height: 325px;
    }

    /* Fan out on hover */
    .photo-collage:hover .photo-card-back {
      transform: rotate(-17deg) translate(-120px, 40px);
      box-shadow: 0 30px 80px rgba(28,103,253,0.35);
    }
    .photo-collage:hover .photo-card-mid {
      transform: rotate(13deg) translate(110px, 30px);
      box-shadow: 0 30px 80px rgba(139,63,237,0.35);
    }
    .photo-collage:hover .photo-card-front {
      transform: rotate(-1deg) translateY(-22px);
      box-shadow: 0 40px 100px rgba(226,50,217,0.4);
    }

    /* ──────────────────────────────────────────
       STATS BAR
    ────────────────────────────────────────── */
    .stats {
      padding: 70px 0;
      background: linear-gradient(135deg, #1c67fd 0%, #5a30e0 45%, #8b3fed 72%, #c420c0 100%);
      position: relative; overflow: hidden;
      color: #ffffff;
      isolation: isolate;
    }
    .stats::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(ellipse 70% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
      z-index: 0;
    }
    .stats::after {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(2px 2px at 12% 24%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.8px 1.8px at 28% 74%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(2.2px 2.2px at 84% 26%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.6px 1.6px at 72% 72%, rgba(255,255,255,0.45) 0%, transparent 100%);
      z-index: 0;
      opacity: 0.85;
    }
    .stats-deco {
      position: absolute; pointer-events: none; z-index: 1;
      filter: drop-shadow(0 0 16px rgba(255,255,255,0.28));
      animation: statsFloat 7s ease-in-out infinite;
    }
    .stats-moon {
      top: 12px; right: 7%;
      font-size: clamp(26px, 2.5vw, 36px);
      opacity: 0.78;
    }
    .stats-star {
      top: 36px; right: 12%;
      font-size: clamp(12px, 1.2vw, 18px);
      opacity: 0.86;
      animation-delay: 1.1s;
    }
    @keyframes statsFloat {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-8px) rotate(4deg); }
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      position: relative; z-index: 2;
    }
    .stat-item {
      text-align: center; padding: 0 32px;
      border-right: 1px solid rgba(255,255,255,0.18);
      position: relative; z-index: 1;
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(36px, 4vw, 58px); font-weight: 900;
      line-height: 1;
      color: #ffffff;
    }
    .stat-suffix { font-size: 0.55em; vertical-align: super; }
    .stat-label {
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(255,255,255,0.72); margin-top: 8px;
    }

    /* ──────────────────────────────────────────
       EXPLORE SECTION — vibrant, alive
    ────────────────────────────────────────── */
    .explore {
      padding: 110px 0;
      background: #ffffff;
      position: relative; overflow: hidden;
    }
    .explore::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(79,107,255,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 10% 85%, rgba(233,75,184,0.06) 0%, transparent 70%);
    }
    .explore-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
      position: relative; z-index: 1;
    }
    .explore-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; line-height: 1.0;
      color: #0d1224;
    }
    .explore-title .gradient-text {
      background: linear-gradient(135deg, #4f6bff 0%, #e94bb8 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .view-all {
      color: #4f6bff; font-size: 13px; font-weight: 600;
      text-decoration: none; display: flex; align-items: center; gap: 6px;
      transition: gap 0.3s, color 0.3s;
    }
    .view-all:hover { gap: 12px; color: #e94bb8; }

    /* ── EXPLORE PROGRAMME (image picks + detail strip) ── */
    .explore-programme {
      position: relative; z-index: 1;
      margin-top: 4px;
    }
    .explore-pick-grid {
      display: grid;
      /* 6 tracks so row 2 can show two cards centred (same width as row 1) */
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }
    .explore-pick:nth-child(1),
    .explore-pick:nth-child(2),
    .explore-pick:nth-child(3) {
      grid-column: span 2;
    }
    .explore-pick:nth-child(4) {
      grid-column: 2 / span 2;
    }
    .explore-pick:nth-child(5) {
      grid-column: 4 / span 2;
    }
    .explore-pick {
      position: relative;
      display: grid;
      grid-template-rows: 1fr auto;
      row-gap: clamp(8px, 1.6vw, 14px);
      width: 100%;
      /* Poster art 1054×1492 → same ratio as width 800 × height 1132 */
      aspect-ratio: 1054 / 1492;
      padding: 0;
      border: none;
      border-radius: 0;
      overflow: visible;
      cursor: pointer;
      text-align: center;
      background: transparent;
      box-shadow: none;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    }
    .explore-pick:focus-visible {
      outline: none;
    }
    .explore-pick:focus-visible .explore-pick-label {
      outline: 3px solid #4f6bff;
      outline-offset: 4px;
      border-radius: 12px;
    }
    .explore-pick:hover:not(.is-active) {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(13, 18, 36, 0.07);
    }
    @keyframes explorePickLabelGlowPulse {
      0%, 100% {
        box-shadow:
          0 0 0 2px rgba(28, 103, 253, 0.42),
          0 0 18px rgba(28, 103, 253, 0.22),
          0 4px 22px rgba(139, 62, 237, 0.12);
      }
      50% {
        box-shadow:
          0 0 0 2px rgba(233, 75, 184, 0.5),
          0 0 26px rgba(79, 107, 255, 0.3),
          0 6px 28px rgba(233, 75, 184, 0.16);
      }
    }
    .explore-pick.is-active .explore-pick-label {
      border-radius: 12px;
      animation: explorePickLabelGlowPulse 2.8s ease-in-out infinite;
    }
    @media (prefers-reduced-motion: reduce) {
      .explore-pick.is-active .explore-pick-label {
        animation: none;
        box-shadow:
          0 0 0 2px rgba(28, 103, 253, 0.48),
          0 0 20px rgba(28, 103, 253, 0.2);
      }
    }
    .explore-pick-img {
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: contain;
      object-position: center;
      border-radius: 0;
      background: none;
      box-shadow: none;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* Food Street — favour upper area (stalls, lights, truck) */
    .explore-pick-img--top {
      object-position: center top;
    }
    .explore-pick:hover .explore-pick-img { transform: scale(1.035); }
    .explore-pick:hover .explore-pick-img--top {
      transform-origin: center top;
    }
    .explore-pick-label {
      position: relative;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 0;
      padding: 16px 10px 4px;
      box-sizing: border-box;
      font-family: 'Outfit', sans-serif;
      font-size: clamp(13px, 1.55vw, 17px);
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: #121a33;
      text-shadow: none;
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
    }
    /* Small theme accent above the title only */
    .explore-pick-label::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(200px, 58%);
      height: 2px;
      border-radius: 99px;
      z-index: 1;
      background: linear-gradient(
        90deg,
        var(--blue-bright) 0%,
        var(--blue-light) 24%,
        var(--purple) 52%,
        var(--pink-hot) 78%,
        var(--pink-light) 100%
      );
      pointer-events: none;
    }
    .explore-detail-strip {
      padding: 32px 28px 30px;
      background:
        radial-gradient(ellipse 100% 90% at 100% 0%, rgba(233, 75, 184, 0.1), transparent 52%),
        radial-gradient(ellipse 90% 80% at 0% 40%, rgba(28, 103, 253, 0.1), transparent 50%),
        linear-gradient(185deg, #ffffff 0%, #f8f9ff 42%, #eef2ff 100%);
      border-radius: 22px;
      border: 1px solid rgba(28, 103, 253, 0.16);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.85) inset,
        0 16px 44px rgba(28, 103, 253, 0.1),
        0 10px 32px rgba(13, 18, 36, 0.07);
      position: relative;
      scroll-margin-top: 96px;
      overflow: hidden;
    }
    .explore-detail-strip::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(
        90deg,
        var(--blue-bright) 0%,
        var(--blue-light) 22%,
        var(--purple) 50%,
        var(--pink-hot) 78%,
        var(--pink-light) 100%
      );
      pointer-events: none;
    }
    .explore-modal-backdrop {
      display: none;
    }
    .explore-modal-close {
      display: none;
    }
    .explore-panels {
      position: relative;
      max-width: 100%;
    }
    .explore-panel.is-active {
      animation: explorePanelIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @keyframes explorePanelIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .explore-panel:not(.explore-panel--bakeoff) {
      text-align: center;
    }
    .explore-panel--bakeoff {
      text-align: left;
    }
    .explore-panel-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 800;
      line-height: 1.2;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
      background: linear-gradient(118deg, #0d1224 0%, #1c2d52 38%, #4f6bff 72%, #8b3aed 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .explore-panel:not(.explore-panel--bakeoff) .explore-panel-title {
      max-width: min(100%, 26ch);
      margin-left: auto;
      margin-right: auto;
    }
    .explore-panel--bakeoff .explore-panel-title {
      -webkit-text-fill-color: #0d1224;
      color: #0d1224;
      background: none;
      -webkit-background-clip: border-box;
      background-clip: border-box;
      text-align: left;
      max-width: none;
      margin-bottom: 12px;
    }
    .explore-panel-subtitle {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #1b2a4a;
      margin: 22px 0 10px;
    }
    .explore-panel-lead {
      font-size: 17px;
      font-weight: 600;
      color: #1b2a4a;
      margin: 0 0 14px;
      line-height: 1.55;
    }
    .explore-panel:not(.explore-panel--bakeoff) .explore-panel-text {
      max-width: 38ch;
      margin-left: auto;
      margin-right: auto;
      color: rgba(22, 32, 58, 0.78);
    }
    .explore-panel-text {
      font-size: 16px;
      line-height: 1.65;
      color: rgba(13, 18, 36, 0.82);
      margin: 0 0 14px;
    }
    .explore-panel-text:last-child { margin-bottom: 0; }
    .explore-panel-text a {
      color: #4f6bff;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(79, 107, 255, 0.35);
      transition: color 0.2s, border-color 0.2s;
    }
    .explore-panel-text a:hover {
      color: #e94bb8;
      border-color: rgba(233, 75, 184, 0.5);
    }
    .explore-panel-list {
      margin: 0 0 16px;
      padding-left: 1.25rem;
      font-size: 16px;
      line-height: 1.65;
      color: rgba(13, 18, 36, 0.82);
    }
    .explore-panel-list li { margin-bottom: 6px; }
    .explore-panel-list--icons {
      list-style: none;
      padding-left: 0;
    }
    .explore-panel-list--icons li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
    }
    .explore-panel-cta { margin-top: 18px; margin-bottom: 0; }
    .explore-panel-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      padding: 12px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, #4f6bff, #e94bb8);
      box-shadow: 0 8px 28px rgba(79, 107, 255, 0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      max-width: 100%;
      box-sizing: border-box;
      text-align: center;
    }
    .explore-panel-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(233, 75, 184, 0.35);
      color: #ffffff;
    }
    /* Full-screen Bake Off (long copy) */
    .bake-off-screen {
      position: fixed;
      inset: 0;
      z-index: 5000;
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(ellipse 120% 80% at 10% 0%, rgba(79, 107, 255, 0.18), transparent 50%),
        radial-gradient(ellipse 90% 60% at 100% 20%, rgba(233, 75, 184, 0.14), transparent 45%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(139, 62, 237, 0.1), transparent 55%),
        linear-gradient(180deg, #e8eeff 0%, #f4f6ff 35%, #fafbff 100%);
      box-sizing: border-box;
      padding:
        env(safe-area-inset-top, 0)
        env(safe-area-inset-right, 0)
        env(safe-area-inset-bottom, 0)
        env(safe-area-inset-left, 0);
    }
    .bake-off-screen[hidden] {
      display: none !important;
    }
    .bake-off-screen-header {
      flex-shrink: 0;
      padding: 12px clamp(14px, 3vw, 28px) 12px;
      border-bottom: 1px solid rgba(28, 103, 253, 0.1);
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .bake-off-screen-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border: 1px solid rgba(28, 103, 253, 0.18);
      border-radius: 999px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1b2a4a;
      background: rgba(255, 255, 255, 0.9);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .bake-off-screen-back:hover {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(79, 107, 255, 0.35);
      box-shadow: 0 4px 20px rgba(79, 107, 255, 0.15);
    }
    .bake-off-screen-back:active {
      transform: scale(0.98);
    }
    .bake-off-screen-body {
      flex: 1;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: clamp(18px, 3vw, 36px) clamp(14px, 4vw, 40px) max(28px, env(safe-area-inset-bottom, 0px));
      width: 100%;
      max-width: none;
      margin: 0;
      box-sizing: border-box;
    }
    .bake-off-screen-body .explore-panel {
      margin: 0;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      max-width: none;
    }
    /* Structured card — full width within padded scroll area */
    .bake-off-screen-body .bake-off-content-shell {
      position: relative;
      width: 100%;
      max-width: min(1120px, 100%);
      margin: 0 auto;
      padding: clamp(22px, 3.5vw, 44px) clamp(20px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
      box-sizing: border-box;
      border-radius: 24px;
      border: 1px solid rgba(28, 103, 253, 0.14);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 247, 255, 0.98) 100%);
      box-shadow:
        0 4px 24px rgba(13, 18, 36, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
      transition:
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        filter 0.45s ease;
    }
    .bake-off-screen-body .bake-off-content-shell::before {
      content: '';
      position: absolute;
      top: clamp(16px, 3vw, 28px);
      right: 0;
      bottom: clamp(16px, 3vw, 28px);
      width: 4px;
      border-radius: 4px 0 0 4px;
      background: linear-gradient(180deg, #4f6bff 0%, #8b3eed 45%, #e94bb8 100%);
      opacity: 0.85;
      pointer-events: none;
    }
    .bake-off-screen-body .bake-off-content-shell.is-scrolled {
      border-color: rgba(79, 107, 255, 0.28);
      box-shadow:
        0 4px 28px rgba(13, 18, 36, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 0 48px rgba(79, 107, 255, 0.22),
        0 0 96px rgba(233, 75, 184, 0.14),
        0 20px 50px rgba(139, 62, 237, 0.12);
    }
    @media (prefers-reduced-motion: reduce) {
      .bake-off-screen-body .bake-off-content-shell {
        transition: none;
      }
    }
    .bake-off-screen-body .bake-off-panel-header {
      margin-bottom: clamp(18px, 2.5vw, 26px);
      padding-bottom: clamp(16px, 2vw, 22px);
      border-bottom: 1px solid rgba(28, 103, 253, 0.1);
    }
    .bake-off-screen-body .bake-off-panel-header .explore-panel-title {
      font-size: clamp(26px, 3.6vw, 36px);
      margin-bottom: 12px;
      background: linear-gradient(120deg, #0d1224 0%, #1b2a4a 40%, #4f6bff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .bake-off-screen-body .bake-off-panel-header .explore-panel-lead {
      font-size: clamp(16px, 2vw, 18px);
      max-width: 62ch;
    }
    .bake-off-screen-body .explore-panel-subtitle {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: clamp(20px, 2.5vw, 28px);
    }
    .bake-off-screen-body .explore-panel-subtitle::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4f6bff, #e94bb8);
      flex-shrink: 0;
    }
    .bake-off-screen-body .bake-off-detail-block {
      margin: clamp(22px, 3vw, 32px) 0;
      padding: clamp(18px, 2.5vw, 26px) clamp(16px, 2.5vw, 24px);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(79, 107, 255, 0.06), rgba(233, 75, 184, 0.05));
      border: 1px solid rgba(28, 103, 253, 0.1);
      transition: text-align 0.35s ease;
    }
    .bake-off-screen-body .bake-off-detail-block .explore-panel-subtitle {
      margin-top: 0;
    }
    .bake-off-screen-body .bake-off-detail-block .explore-panel-subtitle::before {
      display: none;
    }
    .bake-off-screen-body .bake-off-content-shell.is-scrolled .bake-off-detail-block {
      text-align: center;
    }
    .bake-off-screen-body .bake-off-content-shell.is-scrolled .bake-off-detail-block .explore-panel-list--icons {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      max-width: 36rem;
    }
    .bake-off-screen-body .bake-off-content-shell.is-scrolled .bake-off-detail-block .explore-panel-list--icons li {
      justify-content: center;
      text-align: left;
    }
    .bake-off-screen-body .explore-panel-cta {
      margin-top: clamp(22px, 3vw, 32px);
      padding-top: clamp(18px, 2vw, 24px);
      border-top: 1px solid rgba(28, 103, 253, 0.08);
    }
    /* Same shell in programme strip (desktop / modal) — compact */
    .explore-detail-strip .bake-off-content-shell {
      position: relative;
      padding: 4px 8px 0 0;
      border-radius: 0;
      border: none;
      background: transparent;
      box-shadow: none;
    }
    .explore-detail-strip .bake-off-content-shell::before {
      display: none;
    }
    .explore-detail-strip .bake-off-panel-header {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 14px;
    }
    @media (min-width: 769px) {
      html.bake-off-open .explore-programme .explore-detail-strip {
        display: none;
      }
    }

    /* ── EXPLORE GRID — editorial magazine layout ── */
    .explore-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 300px 300px auto;
      gap: 16px;
      position: relative; z-index: 1;
    }

    /* Card 1: tall feature (spans 2 rows) */
    .explore-card:nth-child(1) { grid-row: span 2; }

    /* Card 6: full-width cinematic banner */
    .explore-card:nth-child(6) {
      grid-column: span 3;
      height: 200px;
    }

    .explore-card {
      position: relative; overflow: hidden; cursor: pointer;
      border-radius: 20px;
     
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.45s ease,
                  border-color 0.35s ease;
    }
    .explore-card:hover {
      transform: translateY(-6px) scale(1.015);
      border-color: rgba(79,107,255,0.5);
      box-shadow:
        0 20px 50px rgba(79,107,255,0.18),
        0 8px 24px rgba(233,75,184,0.12);
    }

    /* Photo background */
    .explore-card-bg {
      position: absolute; inset: 0;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
    }
    .explore-card-bg img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      display: block;
    }
    .explore-card:hover .explore-card-bg {
      transform: scale(1.06);
      filter: brightness(1.05) saturate(1.1);
    }

    /* Overlay — lighter default, color tint on hover */
    .explore-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(6,13,31,0.88) 0%,
        rgba(6,13,31,0.35) 50%,
        rgba(6,13,31,0.08) 100%
      );
      transition: all 0.45s ease;
    }
    .explore-card:hover .explore-card-overlay {
      background: linear-gradient(
        to top,
        rgba(6,13,31,0.92) 0%,
        rgba(79,107,255,0.2) 55%,
        rgba(233,75,184,0.08) 100%
      );
    }

    /* Category tag — top left badge */
    .explore-card-tag {
      position: absolute; top: 16px; left: 16px; z-index: 2;
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.95);
      border-radius: 50px; padding: 6px 14px;
      font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
      color: #0d1224;
      box-shadow: 0 3px 12px rgba(0,0,0,0.12);
      transform: translateY(-6px); opacity: 0;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .explore-card:hover .explore-card-tag { transform: translateY(0); opacity: 1; }
    .explore-card-tag-icon { font-size: 13px; }

    /* Content block at bottom */
    .explore-card-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 22px 24px 24px;
      transform: translateY(6px);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 2; color: #ffffff;
    }
    .explore-card:hover .explore-card-content { transform: translateY(0); }

    .explore-card-line {
      width: 30px; height: 3px;
      background: linear-gradient(90deg, #4f6bff, #e94bb8);
      border-radius: 3px; margin-bottom: 12px;
      transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .explore-card:hover .explore-card-line { width: 56px; }

    .explore-card-name {
      font-family: 'Outfit', sans-serif;
      font-size: 18px; font-weight: 700; margin-bottom: 4px; line-height: 1.25;
      color: #ffffff;
    }
    .explore-card:nth-child(1) .explore-card-name { font-size: 24px; }
    .explore-card:nth-child(6) .explore-card-name { font-size: 22px; }

    .explore-card-count {
      font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; font-weight: 500;
    }

    /* Arrow CTA */
    .explore-card-arrow {
      position: absolute; bottom: 22px; right: 22px; z-index: 2;
      width: 40px; height: 40px; border-radius: 50%;
      background: #ffffff;
      color: #4f6bff;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700;
      transform: translateY(12px) scale(0.7); opacity: 0;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 16px rgba(79,107,255,0.35);
    }
    .explore-card:hover .explore-card-arrow {
      transform: translateY(0) scale(1); opacity: 1;
      background: linear-gradient(135deg, #4f6bff, #e94bb8);
      color: #ffffff;
    }

    /* ──────────────────────────────────────────
       COUNTDOWN
    ────────────────────────────────────────── */
    .countdown-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #1b58f6 0%, #3c49f7 30%, #6a3df0 62%, #a33ad8 85%, #cf4ad9 100%);
      position: relative; overflow: hidden;
      color: #ffffff;
      isolation: isolate;
    }
    .countdown-section::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 70% at 50% 38%, rgba(255,255,255,0.12), transparent 68%),
        radial-gradient(ellipse 45% 70% at 6% 55%, rgba(28,103,253,0.26), transparent 70%),
        radial-gradient(ellipse 40% 65% at 95% 40%, rgba(226,50,217,0.24), transparent 72%);
      pointer-events: none;
      z-index: 0;
    }
    .countdown-section::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(2px 2px at 11% 22%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.8px 1.8px at 26% 78%, rgba(255,255,255,0.45) 0%, transparent 100%),
        radial-gradient(2.2px 2.2px at 83% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.6px 1.6px at 74% 68%, rgba(255,255,255,0.45) 0%, transparent 100%);
      pointer-events: none;
      z-index: 0;
      opacity: 0.85;
    }
    .countdown-deco {
      position: absolute; pointer-events: none; z-index: 1;
      filter: drop-shadow(0 0 18px rgba(255,255,255,0.28));
      animation: countdownFloat 7s ease-in-out infinite;
    }
    .countdown-moon {
      top: 18px; right: 8%;
      font-size: clamp(34px, 3.6vw, 52px);
      opacity: 0.78;
    }
    .countdown-star {
      top: 44px; right: 16%;
      font-size: clamp(16px, 1.7vw, 24px);
      opacity: 0.85;
      animation-delay: 1s;
    }
    @keyframes countdownFloat {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(4deg); }
    }
    .countdown-inner {
      text-align: center; position: relative; z-index: 2;
    }
    .countdown-label {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(255,255,255,0.9); font-weight: 700; margin-bottom: 32px;
    }
    .countdown-grid {
      display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    }
    .countdown-unit {
      text-align: center; min-width: 90px;
    }
    .countdown-num {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(44px, 6vw, 80px); font-weight: 900; line-height: 1;
      color: #ffffff;
      display: block;
    }
    .countdown-sep {
      font-family: 'Outfit', sans-serif;
      font-size: 52px; font-weight: 900; color: rgba(255,255,255,0.55);
      line-height: 1; margin-top: 10px; opacity: 0.5;
      animation: blink 1s ease-in-out infinite;
    }
    .countdown-unit-label {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 600;
    }
    .countdown-event-name {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(22px, 3vw, 34px); font-weight: 700; margin-top: 36px;
      color: rgba(255,255,255,0.9);
    }

    /* ──────────────────────────────────────────
       FAQ SECTION — clean, simple, one accent
    ────────────────────────────────────────── */
    .faq {
      padding: 110px 0;
    
    background: linear-gradient(135deg, #1c67fd 0%, #5a30e0 40%, #9020b0 70%, #e232d9 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
      position: relative; overflow: hidden;
    }
    .faq::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(79,107,255,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 45% 45% at 10% 80%, rgba(79,107,255,0.04) 0%, transparent 70%);
    }

    /* Hide all the old decorative elements */
    .faq-orb-1, .faq-orb-2, .faq-orb-3, .faq-stars, .faq-crescent, .faq-bloom { display: none; }

    /* ── Layout ── */
    .faq-layout {
      display: grid; grid-template-columns: 1fr 1.7fr; gap: 80px; align-items: start;
      position: relative; z-index: 1;
    }
    .faq-left { position: sticky; top: 100px; }
    .faq-left .section-tag { margin-bottom: 18px; }

    /* Simple icon badge */
    .faq-deco-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 64px; height: 64px; border-radius: 100px;
      background: #c224ff;
    border: 1px solid rgba(79, 107, 255, 0.15);
    margin-bottom: 24px;
    }
    .faq-deco-badge::after { display: none; }
    .faq-deco-badge span {
      font-size: 28px; line-height: 1;
      animation: none;
    }
    .faq-headline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.2vw, 48px); font-weight: 800; line-height: 1.1;
      margin-bottom: 16px; color: #fff;
    }
    .faq-sub {
      font-size: 15px; color: rgba(255,255,255,1); line-height: 1.75; margin-bottom: 28px;
    }
    .faq-contact {
      display: inline-flex; align-items: center; gap: 8px;
      color: #c224ff; font-size: 14px; font-weight: 600;
      text-decoration: none; transition: gap 0.3s;
    }
    .faq-contact:hover { gap: 14px; }

    /* ── Accordion list ── */
    .faq-list { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }

    .faq-item {
      position: relative;
      border-radius: 14px; overflow: hidden;
      background: #f8f9ff;
      border: 1px solid rgba(79,107,255,0.08);
      transition: background 0.3s, border-color 0.3s, box-shadow 0.35s;
    }
    .faq-item:hover {
      background: #f0f3ff;
      border-color: rgba(79,107,255,0.2);
    }
    .faq-item.open {
      background: #ffffff;
      border-color: rgba(79,107,255,0.3);
      box-shadow: 0 8px 28px rgba(79,107,255,0.1);
    }

    /* Left accent — single blue color */
    .faq-item::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: #4f6bff;
      border-radius: 3px 0 0 3px;
      transform: scaleY(0); transform-origin: top;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .faq-item.open::before { transform: scaleY(1); }

    /* Question button */
    .faq-question {
      width: 100%; background: none; border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px 20px 28px; gap: 16px;
      text-align: left; font-family: 'Inter', sans-serif;
    }
    .faq-q-left {
      display: flex; align-items: center; gap: 14px; flex: 1;
    }
    .faq-num {
      font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
      letter-spacing: 0.5px; flex-shrink: 0;
      color: #4f6bff;
    }
    .faq-q-text {
      font-size: clamp(14px, 1.05rem + 0.2vw, 15px); font-weight: 600; line-height: 1.4;
      transition: color 0.3s; flex: 1; min-width: 0; color: #0d1224;
    }
    .faq-item.open .faq-q-text { color: #4f6bff; }

    /* Plus icon — simple */
    .faq-icon {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      border: 1.5px solid rgba(79,107,255,0.2);
      background: #f0f4ff;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 300; color: #4f6bff;
      transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative; overflow: hidden;
    }
    .faq-icon::before { display: none; }
    .faq-icon span { position: relative; z-index: 1; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
    .faq-item.open .faq-icon {
      background: #4f6bff;
      border-color: #4f6bff;
      color: #ffffff;
    }
    .faq-item.open .faq-icon span { transform: rotate(45deg); color: #ffffff; }

    /* Answer — grid row animation so any content height fits on mobile */
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      padding: 0 28px;
      transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
    }
    .faq-item.open .faq-answer {
      grid-template-rows: 1fr;
      padding-bottom: 24px;
    }
    .faq-answer-inner {
      overflow: hidden;
      min-height: 0;
      border-top: 1px solid rgba(13,18,36,0.06); padding-top: 16px;
    }
    .faq-answer p {
      font-size: 14px; color: rgba(13,18,36,0.6); line-height: 1.85;
      margin: 0;
    }
    .faq-answer a { color: #4f6bff; text-decoration: none; font-weight: 600; }
    .faq-answer a:hover { text-decoration: underline; }

    @media (max-width: 960px) {
      .faq-layout { grid-template-columns: 1fr; gap: 48px; }
      .faq-left { position: static; }
    }
    @media (max-width: 600px) {
      .faq-question { padding: 18px 16px 18px 18px; gap: 12px; }
      .faq-answer { padding: 0 18px; }
      .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
      }
    }

    /* ──────────────────────────────────────────
       NEWSLETTER
    ────────────────────────────────────────── */
    .newsletter {
      padding: clamp(64px, 12vw, 100px) 0;
      background: #fff;
      position: relative; overflow: hidden;
      color: #000;
    }
    .newsletter::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%,   rgba(255,255,255,0.1), transparent),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(255,255,255,0.07), transparent);
      pointer-events: none;
    }
    .newsletter::after {
      content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
      width: 300px; height: 300px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.12), transparent);
      pointer-events: none;
    }
    .newsletter-inner {
      text-align: center; max-width: 600px; margin: 0 auto; position: relative; z-index: 1;
    }
    .newsletter-headline {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 5vw, 60px); font-weight: 900; line-height: 1.0; margin-bottom: 20px;
      color: #000000;
    }
    .newsletter-phone {
      margin: 0;
      font-size: clamp(22px, 3.5vw, 34px);
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .newsletter-phone a {
      color: #1c67fd;
      text-decoration: none;
      border-bottom: 2px solid rgba(28, 103, 253, 0.35);
      transition: color 0.25s ease, border-color 0.25s ease;
    }
    .newsletter-phone a:hover {
      color: #e232d9;
      border-color: rgba(226, 50, 217, 0.5);
    }

    /* ──────────────────────────────────────────
       FOOTER — themed and premium
    ────────────────────────────────────────── */
    .footer {
      background: linear-gradient(135deg, #140f34 0%, #0c1535 48%, #0a1028 100%);
      padding: 0;
      color: rgba(255,255,255,0.72);
      position: relative; overflow: hidden;
    }
    .footer::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 50% 80% at 10% 50%, rgba(79,107,255,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 90% 50%, rgba(233,75,184,0.08) 0%, transparent 70%);
    }
    .footer::after {
      content: '';
      position: absolute; left: 0; right: 0; top: 0; height: 3px;
      background: linear-gradient(90deg, #4f6bff 0%, #6ea8ff 40%, #e94bb8 100%);
      pointer-events: none;
    }

    .footer-top {
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
      padding: 38px 0 30px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      position: relative; z-index: 1;
    }
    .footer-brand { display: flex; align-items: center; gap: 12px; }
    .footer-brand-name {
      font-family: 'Outfit', sans-serif;
      font-size: 21px; font-weight: 800; color: #ffffff;
      margin-bottom: 0; line-height: 1.08;
    }
    .footer-brand-name small {
      display: block;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.8px; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 5px;
    }
    .footer-brand-tagline { display: none; }

    .footer-social { display: flex; gap: 8px; }
    .social-btn {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; text-decoration: none;
      transition: all 0.28s; color: rgba(255,255,255,0.65);
    }
    .social-btn svg { width: 15px; height: 15px; fill: currentColor; }
    .social-btn:hover {
      background: #4f6bff; border-color: #4f6bff;
      color: #ffffff; transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(79,107,255,0.35);
    }

    .footer-bottom {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 12px;
      padding: 18px 0 max(24px, env(safe-area-inset-bottom, 0px) + 12px);
      position: relative; z-index: 1;
      text-align: center;
    }
    .footer-copy {
      font-size: 12px; color: rgba(255,255,255,0.34);
      overflow-wrap: anywhere;
      word-break: break-word;
      max-width: 100%;
    }

    /* ──────────────────────────────────────────
       SCROLL PROGRESS BAR
    ────────────────────────────────────────── */
    #scrollProgress {
      position: fixed; top: 0; left: 0; z-index: 2001;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--blue-bright), var(--purple), var(--pink-hot), var(--pink-light));
      background-size: 200% 100%;
      box-shadow: 0 0 10px rgba(226,50,217,0.7), 0 0 20px rgba(28,103,253,0.4);
      transition: width 0.08s linear;
      animation: progressShimmer 2s linear infinite;
      border-radius: 0 2px 2px 0;
      pointer-events: none;
    }
    @keyframes progressShimmer {
      0%   { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    /* ──────────────────────────────────────────
       ANIMATIONS — keyframes
    ────────────────────────────────────────── */
    @keyframes fadeUp   { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: none; } }
    @keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
    @keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

    /* ── BASE REVEAL — fade-up with scale + spring ── */
    .reveal {
      opacity: 0;
      transform: translateY(52px) scale(0.97);
      transition:
        opacity  0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible { opacity: 1; transform: none; }

    .reveal-left {
      opacity: 0; transform: translateX(-55px) scale(0.97);
      transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-left.visible { opacity: 1; transform: none; }

    .reveal-right {
      opacity: 0; transform: translateX(55px) scale(0.97);
      transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* Clip-path wipe-up reveal (for cards) */
    .reveal-clip {
      opacity: 0;
      clip-path: inset(0 0 100% 0);
      transform: translateY(20px);
      transition:
        opacity 0.6s ease,
        clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-clip.visible { opacity: 1; clip-path: inset(0 0 0% 0); transform: none; }

    /* Scale-pop reveal (for badges, stat numbers) */
    .reveal-pop {
      opacity: 0; transform: scale(0.7);
      transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .reveal-pop.visible { opacity: 1; transform: none; }

    /* ── WORD SPLIT ANIMATION ── */
    .sw {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
      line-height: 1.15;
    }
    .sw-inner {
      display: inline-block;
      transform: translateY(105%);
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .text-revealed .sw-inner { transform: translateY(0); }

    /* ── SECTION LINE DRAW ── */
    .draw-line {
      display: block; height: 2px; width: 0; border-radius: 2px;
      background: linear-gradient(90deg, var(--blue-bright), var(--pink-hot));
      margin-top: 10px;
      transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .visible .draw-line, .text-revealed .draw-line { width: 56px; }

    /* ── NAV ACTIVE LINK ── */
    .nav-links a.nav-active { color: var(--white); }
    .nav-links a.nav-active::after { right: 0; }

    /* stagger delays (kept for manual use) */
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }
    .delay-5 { transition-delay: 0.40s; }

    /* ──────────────────────────────────────────
       MOBILE MENU
    ────────────────────────────────────────── */
    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 3000;
      background: rgba(6,13,31,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 18px;
      padding:
        max(72px, env(safe-area-inset-top, 0px) + 48px)
        max(24px, env(safe-area-inset-right, 0px))
        max(32px, env(safe-area-inset-bottom, 0px) + 16px)
        max(24px, env(safe-area-inset-left, 0px));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 19px; font-weight: 700; color: var(--white); text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--pink-light); }
    .mobile-close {
      position: absolute;
      top: max(20px, env(safe-area-inset-top, 0px) + 8px);
      right: max(16px, env(safe-area-inset-right, 0px) + 8px);
      background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
      min-width: 44px;
      min-height: 44px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .menu-open .hamburger {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    /* Touch: avoid double-tap zoom delay on primary controls */
    @media (pointer: coarse) {
      .hamburger,
      .mobile-close,
      .explore-pick,
      .faq-question,
      .btn-primary,
      .btn-outline {
        touch-action: manipulation;
      }
    }

    /* ──────────────────────────────────────────
       RESPONSIVE
    ────────────────────────────────────────── */
    @media (max-width: 1180px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .nav {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
      }
      section[id] {
        scroll-margin-top: max(60px, env(safe-area-inset-top, 0px) + 48px);
      }
      .nav-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 12px;
        min-height: clamp(56px, 11vw, 68px);
        padding: 8px 0 10px;
      }
      .logo {
        margin-left: 0;
        gap: clamp(10px, 2vw, 16px);
        min-width: 0;
      }
      .nav.scrolled .logo {
        gap: 10px;
      }
      .logo-mark {
        height: clamp(38px, 8.5vw, 48px);
        max-width: min(280px, 45vw);
      }
      .logo-wordmark {
        min-width: 0;
      }
      .logo-top-row {
        font-size: clamp(7.5px, 1.5vw, 9px);
        letter-spacing: clamp(1px, 0.32vw, 2px);
        gap: 4px;
      }
      .logo-divider {
        font-size: clamp(10px, 1.8vw, 12px);
      }
      .logo-fill {
        font-size: clamp(15px, 3.2vw, 21px);
        letter-spacing: -0.35px;
      }
      .logo-sub {
        font-size: clamp(7px, 1.4vw, 9px);
        letter-spacing: clamp(1px, 0.28vw, 2px);
      }
      .hamburger {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
      }
      .hamburger span {
        width: 22px;
      }

      .marquee-strip {
        padding: 11px 0;
        overflow: hidden;
        mask-image: linear-gradient(
          to right,
          transparent,
          #000 14px,
          #000 calc(100% - 14px),
          transparent
        );
        -webkit-mask-image: linear-gradient(
          to right,
          transparent,
          #000 14px,
          #000 calc(100% - 14px),
          transparent
        );
      }
      .marquee-item {
        padding: 0 clamp(16px, 3vw, 22px);
        font-size: clamp(9px, 2vw, 11px);
        letter-spacing: clamp(0.85px, 0.32vw, 1.6px);
        gap: 8px;
      }
      .marquee-star {
        font-size: clamp(10px, 2.2vw, 13px);
      }
    }

    @media (max-width: 1024px) {
      .explore { padding: clamp(72px, 10vw, 110px) 0; }
      .countdown-section { padding: clamp(64px, 10vw, 100px) 0; }
      .faq { padding: clamp(72px, 10vw, 110px) 0; }
      .stats { padding: clamp(48px, 8vw, 70px) 0; }
    }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
      .photo-collage { height: 380px; }
      .photo-card { width: 190px; height: 250px; }
      .photo-card-front { width: 210px; height: 275px; }
      .collage-ring { width: 320px; height: 320px; }
      .collage-ring-inner { width: 220px; height: 220px; }
      .explore-pick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .explore-pick:nth-child(1),
      .explore-pick:nth-child(2),
      .explore-pick:nth-child(3),
      .explore-pick:nth-child(4) {
        grid-column: auto;
      }
      .explore-pick:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - 12px) / 2);
        max-width: 100%;
      }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .stat-item {
        border-right: 1px solid rgba(255,255,255,0.22);
        border-bottom: 1px solid rgba(255,255,255,0.22);
        padding: 26px 16px;
      }
      .stat-item:nth-child(2n) { border-right: none; }
      .stat-item:nth-last-child(-n+2) { border-bottom: none; }
      /* Keep stacked cards steady on hover (touch / mid viewports) */
      .photo-collage:hover .photo-card-back {
        transform: rotate(-11deg) translate(-60px, 28px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.55);
      }
      .photo-collage:hover .photo-card-mid {
        transform: rotate(7deg) translate(55px, 18px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.55);
      }
      .photo-collage:hover .photo-card-front {
        transform: rotate(-2deg) translate(0px, -12px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.55);
      }
    }

    @media (max-width: 768px) {
      .explore-pick-grid { grid-template-columns: 1fr; }
      .explore-pick:nth-child(4),
      .explore-pick:nth-child(5) {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
      }

      .explore-modal-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 4100;
        background:
          radial-gradient(ellipse 100% 85% at 50% 15%, rgba(28, 103, 253, 0.28), transparent 58%),
          radial-gradient(ellipse 90% 70% at 90% 100%, rgba(233, 75, 184, 0.2), transparent 52%),
          rgba(6, 13, 31, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.32s ease, visibility 0.32s ease;
        -webkit-tap-highlight-color: transparent;
      }
      html.explore-modal-open .explore-modal-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      /* Centered card modal — clears iOS browser chrome better than a bottom sheet */
      .explore-detail-strip {
        position: fixed;
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        margin: 0;
        width: min(440px, calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 28px));
        max-width: none;
        max-height: min(
          560px,
          calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 52px)
        );
        padding: 54px max(20px, env(safe-area-inset-right, 0px)) max(26px, calc(env(safe-area-inset-bottom, 0px) + 20px)) max(20px, env(safe-area-inset-left, 0px));
        border-radius: 26px;
        z-index: 4101;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        box-sizing: border-box;
        background: linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 45%, #f0f4ff 100%);
        border: 1px solid rgba(28, 103, 253, 0.16);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.8) inset,
          0 22px 56px rgba(13, 18, 36, 0.2),
          0 0 72px rgba(28, 103, 253, 0.14),
          0 10px 44px rgba(233, 75, 184, 0.1);
        transform: translate(-50%, -50%) scale(0.94);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .explore-detail-strip::before {
        content: '';
        position: absolute;
        left: 20%;
        right: 20%;
        top: 8px;
        height: 3px;
        border-radius: 99px;
        background: linear-gradient(90deg, #4f6bff, #e94bb8, #8b3aed);
        opacity: 0.9;
        pointer-events: none;
      }
      html.explore-modal-open .explore-detail-strip {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        pointer-events: auto;
      }

      .explore-detail-strip .explore-panel-title {
        padding-right: 48px;
      }

      .explore-modal-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(79, 107, 255, 0.12), rgba(233, 75, 184, 0.1));
        color: #0d1224;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
        transition: background 0.2s ease, transform 0.2s ease;
      }
      .explore-modal-close:hover {
        background: linear-gradient(145deg, rgba(79, 107, 255, 0.22), rgba(233, 75, 184, 0.18));
      }
      .explore-modal-close:active {
        transform: scale(0.94);
      }

      /* Extra foot room above iOS home / URL bar while scrolling long Bake Off copy */
      .bake-off-screen-body {
        padding-bottom: max(40px, calc(env(safe-area-inset-bottom, 0px) + 32px));
      }

      .explore-panel-text,
      .explore-panel-list,
      .explore-panel-lead { font-size: clamp(14px, 3.8vw, 16px); }
      .explore-panel-link {
        width: 100%;
        padding: 14px 16px;
      }
      .newsletter-inner { padding: 32px 16px; border-radius: 22px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
      .countdown-label { font-size: 11px; letter-spacing: 2px; margin-bottom: 24px; }
      .countdown-event-name {
        font-size: clamp(16px, 4vw, 22px);
        margin-top: 28px;
        padding: 0 8px;
      }
    }

    @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
      .explore-modal-backdrop,
      .explore-detail-strip {
        transition: none;
      }
    }

    @media (max-width: 520px) {
      html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
      .container { padding-left: max(14px, env(safe-area-inset-left, 0px)); padding-right: max(14px, env(safe-area-inset-right, 0px)); }
      .nav-inner { min-height: 54px; padding: 4px 0 8px; }
      .logo-mark { height: 36px; max-width: min(180px, 50vw); }
      .logo { gap: 8px; }
      .nav.scrolled .logo { gap: 8px; }
      .logo-fill { font-size: clamp(14px, 4.2vw, 17px); }
      .logo-top-row { font-size: 7.5px; letter-spacing: 1px; }
      .marquee-item { padding: 0 16px; font-size: 9px; letter-spacing: 0.85px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 22px 10px; }
      .stat-label { font-size: 10px; letter-spacing: 1px; }

      /* Two-row countdown: Days : Hours / Mins : Secs */
      .countdown-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 10px 8px;
        justify-items: center;
        align-items: start;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
      }
      .countdown-sep:nth-child(4) { display: none; }
      .countdown-unit:nth-child(1) { grid-column: 1; grid-row: 1; }
      .countdown-sep:nth-child(2) { grid-column: 2; grid-row: 1; margin-top: 0.35em; }
      .countdown-unit:nth-child(3) { grid-column: 3; grid-row: 1; }
      .countdown-unit:nth-child(5) { grid-column: 1; grid-row: 2; }
      .countdown-sep:nth-child(6) { grid-column: 2; grid-row: 2; margin-top: 0.35em; }
      .countdown-unit:nth-child(7) { grid-column: 3; grid-row: 2; }
      .countdown-unit { min-width: 0; width: 100%; }
      .countdown-num { font-size: clamp(32px, 9vw, 46px); }
      .countdown-unit-label { font-size: 9px; letter-spacing: 1px; }
      .countdown-sep { font-size: clamp(22px, 5.5vw, 32px); opacity: 0.55; }

      .photo-collage {
        height: 300px;
        max-width: 100%;
        margin: 0 auto;
      }
      .photo-card { width: 140px; height: 182px; }
      .photo-card-front { width: 155px; height: 200px; }
      .photo-card-back {
        transform: rotate(-8deg) translate(-26px, 16px);
      }
      .photo-card-mid {
        transform: rotate(6deg) translate(26px, 12px);
      }
      .photo-card-front {
        transform: rotate(-2deg) translate(0px, -8px);
      }
      .collage-ring { width: 260px; height: 260px; }
      .collage-ring-inner { width: 180px; height: 180px; }
      .photo-collage:hover .photo-card-back { transform: rotate(-8deg) translate(-26px, 16px); }
      .photo-collage:hover .photo-card-mid { transform: rotate(6deg) translate(26px, 12px); }
      .photo-collage:hover .photo-card-front { transform: rotate(-2deg) translate(0px, -8px); }

      .hero-title { font-size: clamp(30px, 9.5vw, 52px); }
    }

    @media (max-width: 380px) {
      .photo-collage {
        height: 260px;
        transform: scale(0.92);
        transform-origin: center center;
      }
      .logo-sub { display: none; }
      .explore-pick-label { font-size: 13px; padding: 14px 8px 4px; }
    }

