:root{
      --black:#0b0b0b;
      --white:#ffffff;

      --gray-50:#f7f7f7;
      --gray-100:#f1f1f1;
      --gray-200:#e2e2e2;
      --gray-400:#b5b5b5;
      --gray-700:#3a3a3a;

      --orange:#e06b1a;
      --orange-dark:#c85f17;
      --orange-soft:#fff1e6;

      --max:1100px;
      --radius:18px;
      --shadow: 0 16px 46px rgba(0,0,0,.14);
      --shadow-soft: 0 12px 30px rgba(0,0,0,.10);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--black);
      background:var(--white);
      line-height:1.55;
    }
    a{color:inherit}
    img{max-width:100%; display:block}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

    /* ===== HERO ===== */
    .hero{
      position:relative;
      min-height: calc(86vh - 74px);
      display:grid;
      align-items:end;
      overflow:hidden;
      background:#000;
      color:var(--white);
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 520px at 20% 15%, rgba(224,107,26,.22), transparent 62%),
        radial-gradient(900px 520px at 75% 10%, rgba(255,255,255,.08), transparent 58%),
        linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.92) 100%),
        url("https://images.unsplash.com/photo-1515169067865-5387ec356754?auto=format&fit=crop&w=2000&q=80");
      background-size: cover;
      background-position:center;
      transform: scale(1.02);
    }

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:1rem;
      padding: 2.2rem 0 1.8rem;
      align-items:end;
    }

    .kicker{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:.35rem .7rem;
      border-radius:999px;
      background: rgba(224,107,26,.18);
      border:1px solid rgba(224,107,26,.32);
      color:#ffd7b8;
      font-weight:950;
      font-size:.9rem;
      width:max-content;
    }
    h1{
      margin:.9rem 0 .65rem;
      font-size: clamp(2.25rem, 4.0vw, 3.15rem);
      letter-spacing:-.8px;
      line-height:1.06;
      max-width: 22ch;
    }
    .lead{
      margin:0;
      max-width: 64ch;
      color: rgba(255,255,255,.86);
      font-size: 1.06rem;
      font-weight: 650;
    }

    .hero-actions{
      display:flex; gap:.75rem; flex-wrap:wrap;
      margin-top: 1.2rem;
      align-items:center;
    }

    /* Right: summary card */
    .hero-card{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      box-shadow: 0 18px 60px rgba(0,0,0,.28);
      overflow:hidden;
    }
    .hero-card-head{
      padding: 1rem 1rem .9rem;
      border-bottom: 1px solid rgba(255,255,255,.10);
      display:flex; align-items:flex-start; justify-content:space-between; gap:.75rem;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    }
    .hero-card-head h2{ margin:0; font-size:1.05rem; font-weight:1000; letter-spacing:-.2px; }
    .hero-card-head p{ margin:.25rem 0 0; color: rgba(255,255,255,.78); font-weight:650; font-size:.95rem; }
    .pill{
      display:inline-flex; align-items:center;
      padding:.28rem .6rem;
      border-radius:999px;
      background: rgba(224,107,26,.14);
      border:1px solid rgba(224,107,26,.28);
      color:#ffd7b8;
      font-weight: 950;
      font-size:.82rem;
      white-space:nowrap;
    }
    .hero-card-body{ padding: 1rem; display:grid; gap:.75rem; }
    .bullets{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:.6rem;
    }
    .bullets li{
      display:flex; gap:.65rem; align-items:flex-start;
      color: rgba(255,255,255,.88);
      font-weight: 650;
      line-height:1.4;
    }
    .dot{
      width:12px; height:12px; margin-top:.25rem;
      border-radius:999px;
      background: var(--orange);
      box-shadow: 0 0 0 4px rgba(224,107,26,.20);
      flex:0 0 auto;
    }
    .hero-card-actions{ display:flex; gap:.65rem; flex-wrap:wrap; }

    /* ===== SECTIONS ===== */
    section{ padding: 3.2rem 0; }
    .section-head{
      display:flex; justify-content:space-between; align-items:flex-end;
      gap:1rem; flex-wrap:wrap;
      margin-bottom: 1.1rem;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(1.7rem, 2.4vw, 2.15rem);
      letter-spacing:-.5px;
      font-weight: 1000;
    }
    .muted{ color: var(--gray-700); }

    /* ===== WHAT'S ON (dates + imagery, same 2-card structure) ===== */
    .whats{
      background: linear-gradient(180deg, var(--gray-50), var(--orange-soft));
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .whats-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:1rem;
      align-items:start;
    }

    .card{
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    .card-head{
      padding: 1rem 1.05rem .9rem;
      border-bottom: 1px solid var(--gray-200);
      background: linear-gradient(180deg, var(--white), var(--gray-50));
    }
    .card-head h3{ margin:0; font-weight:1000; letter-spacing:-.2px; }
    .card-head p{ margin:.25rem 0 0; color: var(--gray-700); font-weight:650; }
    .card-body{ padding: 1rem 1.05rem 1.05rem; }

    .tiles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:.75rem;
    }

    .tile{
      text-align:left;
      border:1px solid var(--gray-200);
      border-radius: 18px;
      background: var(--white);
      box-shadow: 0 12px 26px rgba(0,0,0,.07);
      overflow:hidden;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      position:relative;
      display:flex;
      flex-direction:column;
      min-height: 220px;
    }
    .tile:hover{ transform: translateY(-2px); border-color: rgba(224,107,26,.30); }
    .tile.is-active{ border-color: rgba(224,107,26,.45); box-shadow: 0 16px 34px rgba(0,0,0,.12); }

    .tile-media{
      height: 112px;
      background:
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55)),
        var(--img);
      background-size: cover;
      background-position: center;
      position:relative;
    }
    .tile-date{
      position:absolute;
      left:10px;
      bottom:10px;
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.28rem .6rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(0,0,0,.42);
      color: rgba(255,255,255,.92);
      font-weight: 950;
      font-size:.82rem;
      backdrop-filter: blur(8px);
    }

    .tile-body{
      padding:.9rem .9rem .95rem;
      display:grid;
      gap:.35rem;
      flex: 1 1 auto;
    }
    .tile-title{
      margin:0;
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:1.02rem;
      line-height:1.2;
    }
    .tile-sub{ margin:0; color: var(--gray-700); font-weight:650; font-size:.95rem; }

    .tile-chips{
      display:flex; gap:.45rem; flex-wrap:wrap;
      margin-top:.35rem;
    }
    .chip{
      display:inline-flex; align-items:center;
      padding:.25rem .55rem;
      border-radius:999px;
      background: var(--gray-100);
      border:1px solid var(--gray-200);
      color: var(--gray-700);
      font-weight:900;
      font-size:.78rem;
    }
    .chip.accent{
      background: rgba(224,107,26,.12);
      border-color: rgba(224,107,26,.25);
      color: var(--orange-dark);
    }

    .summary{
      border-radius: 18px;
      border:1px solid rgba(224,107,26,.22);
      background: var(--orange-soft);
      padding:1rem;
      color: var(--gray-700);
      font-weight:650;
      line-height:1.45;
    }
    .summary strong{ color: var(--black); }

    .kv{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:.75rem;
      margin-top:.9rem;
    }
    .kv .box{
      border-radius: 16px;
      border:1px solid var(--gray-200);
      background: var(--white);
      padding:.75rem .8rem;
      box-shadow: 0 10px 22px rgba(0,0,0,.06);
    }
    .kv .label{ font-weight:950; color: var(--black); font-size:.88rem; }
    .kv .val{ margin-top:.18rem; color: var(--gray-700); font-weight:650; }

    .card-actions{
      display:flex; gap:.7rem; flex-wrap:wrap;
      margin-top:.95rem;
    }

    /* ===== FEATURES ===== */
    .features{ background: var(--white); }
    .feature-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:1rem;
      align-items:stretch;
    }
    .feature-stack{ display:grid; gap:.85rem; }
    .feature{
      border-radius: 22px;
      border: 1px solid var(--gray-200);
      background: var(--white);
      box-shadow: var(--shadow-soft);
      padding: 1rem 1.05rem;
      position:relative;
      overflow:hidden;
    }
    .feature::before{
      content:"";
      position:absolute;
      inset:0;
      border-left: 6px solid rgba(224,107,26,.0);
      transition: border-color .15s ease;
      pointer-events:none;
    }
    .feature:hover::before{ border-color: rgba(224,107,26,.55); }
    .feature h3{ margin:0; font-weight:1000; letter-spacing:-.2px; }
    .feature p{ margin:.35rem 0 0; color: var(--gray-700); font-weight:650; }

    .feature-media{
      border-radius: 26px;
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: var(--shadow);
      overflow:hidden;
      background:
        radial-gradient(520px 260px at 30% 15%, rgba(224,107,26,.18), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62)),
        url("images/rafflechristimg.jpeg");
      background-size: cover;
      background-position:center;
      min-height: 360px;
      position:relative;
    }
    .media-badge{
      position:absolute;
      left: 14px;
      bottom: 14px;
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:.32rem .65rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.38);
      color: rgba(255,255,255,.90);
      font-weight: 900;
      font-size:.82rem;
      backdrop-filter: blur(8px);
    }
    .tag.accent{ border-color: rgba(224,107,26,.35); background: rgba(224,107,26,.18); }

    /* ===================== FILMSTRIP GALLERY STYLES (distinct look) ===================== */
  .gallery-film{
    background: linear-gradient(180deg, var(--white), var(--gray-50));
    border-top: 1px solid rgba(0,0,0,.06);
  }

  .gf-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom: 1rem;
  }
  .gf-head h2{
    margin:0;
    font-size: clamp(1.7rem, 2.4vw, 2.15rem);
    letter-spacing:-.5px;
    font-weight: 1000;
  }
  .gf-actions{ display:flex; gap:.5rem; }
  .gf-pill{
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    cursor:pointer;
    font-weight: 1000;
  }
  .gf-pill:hover{ border-color: rgba(224,107,26,.35); }

  .gf-layout{
    display:grid;
    grid-template-columns: .95fr 1.05fr;
    gap: .95rem;
    align-items:stretch;
  }

  /* Featured poster: tall, editorial */
  .gf-poster{
    border: 1px solid var(--gray-200);
    border-radius: 26px;
    overflow:hidden;
    background:
      radial-gradient(520px 260px at 30% 15%, rgba(224,107,26,.18), transparent 60%),
      linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62)),
      var(--img);
    background-size: cover;
    background-position:center;
    box-shadow: var(--shadow);
    cursor:pointer;
    min-height: 360px;
    position:relative;
    padding:0;
    text-align:left;
    transition: transform .15s ease, border-color .15s ease;
  }
  .gf-poster:hover{
    transform: translateY(-2px);
    border-color: rgba(224,107,26,.28);
  }

  .gf-poster-cap{
    position:absolute;
    left: 14px;
    bottom: 14px;
    display:grid;
    gap:.15rem;
    padding:.6rem .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.42);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    max-width: calc(100% - 28px);
  }
  .gf-poster-cap strong{ font-weight: 1000; letter-spacing:-.2px; }
  .gf-poster-cap span{ font-weight: 650; color: rgba(255,255,255,.78); }

  /* Filmstrip: horizontal snap, “cinema reel” */
  .gf-strip{
    border-radius: 26px;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, var(--white), var(--gray-50));
    box-shadow: var(--shadow-soft);
    padding: .75rem;
    display:flex;
    gap:.65rem;
    overflow:auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gf-strip:focus-visible{
    outline: 3px solid rgba(224,107,26,.25);
    outline-offset: 3px;
  }
  .gf-strip::-webkit-scrollbar{ height: 10px; }
  .gf-strip::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.14);
    border-radius: 999px;
  }

  .gf-frame{
    flex: 0 0 240px;
    height: 320px;
    scroll-snap-align: start;
    border-radius: 22px;
    border: 1px solid var(--gray-200);
    background:
      linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.58)),
      var(--img);
    background-size: cover;
    background-position:center;
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
    cursor:pointer;
    position:relative;
    padding:0;
    text-align:left;
    transition: transform .15s ease, border-color .15s ease;
  }
  .gf-frame:hover{
    transform: translateY(-2px);
    border-color: rgba(224,107,26,.28);
  }
  .gf-cap{
    position:absolute;
    left: 12px;
    bottom: 12px;
    display:inline-flex;
    padding:.32rem .65rem;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.40);
    color: rgba(255,255,255,.92);
    font-weight: 900;
    font-size: .84rem;
    backdrop-filter: blur(8px);
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
  }

  @media (max-width: 980px){
    .gf-layout{ grid-template-columns: 1fr; }
    .gf-poster{ min-height: 260px; }
    .gf-frame{ flex-basis: 210px; height: 270px; }
  }

  /* ===================== LIGHTBOX ===================== */
  .gf-lightbox{ display:none; }
  .gf-lightbox.open{ display:block; }

  .gf-backdrop{
    position:fixed; inset:0;
    background: rgba(0,0,0,.62);
    z-index: 9990;
  }
  .gf-panel{
    position:fixed;
    left:50%; top:50%;
    transform: translate(-50%, -50%);
    width:min(980px, calc(100% - 2rem));
    max-height: calc(100% - 2rem);
    z-index: 9991;
    margin:0;
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(11,11,11,.94);
    box-shadow: 0 26px 80px rgba(0,0,0,.55);
  }
  .gf-panel img{
    width:100%;
    height:auto;
    display:block;
    max-height: calc(100vh - 2rem);
    object-fit: contain;
  }
  .gf-close{
    position:absolute;
    top: 10px; right: 10px;
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.45);
    color: var(--white);
    font-weight: 1000;
    cursor:pointer;
    display:grid;
    place-items:center;
    z-index: 9992;
  }
  .gf-close:hover{ background: rgba(0,0,0,.65); }

    /* ===== FAQ ===== */
    .faq{ display:grid; gap:.75rem; max-width: 920px; }
    details{
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }
    summary{
      cursor:pointer;
      padding: .95rem 1rem;
      font-weight: 1000;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:1rem;
    }
    summary::-webkit-details-marker{ display:none; }
    .chev{
      width: 34px; height: 34px;
      border-radius: 999px;
      border: 1px solid var(--gray-200);
      background: var(--gray-50);
      display:grid; place-items:center;
      font-weight: 1000;
      transition: transform .18s ease;
    }
    details[open] .chev{ transform: rotate(180deg); }
    details .content{
      padding: 0 1rem 1rem;
      color: var(--gray-700);
      font-weight: 650;
    }

    /* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.hours li:last-child{
  border-bottom:none;
}

.hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

    /* Toast */
    .toast{
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      background: rgba(11,11,11,.92);
      color: rgba(255,255,255,.92);
      border: 1px solid rgba(255,255,255,.12);
      padding: .7rem .9rem;
      border-radius: 999px;
      box-shadow: 0 16px 40px rgba(0,0,0,.35);
      font-weight: 900;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
      z-index: 99999;
      max-width: calc(100% - 2rem);
      text-align:center;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-4px);
    }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; align-items:start; }
      .whats-grid{ grid-template-columns: 1fr; }
      .tiles{ grid-template-columns: 1fr; }
      .feature-grid{ grid-template-columns: 1fr; }
      .feature-media{ min-height: 260px; }
      nav ul{ display:none; }
      .kv{ grid-template-columns: 1fr; }
    }

/* =========================
   RESPONSIVE POLISH — Raffle & Games
   Paste at VERY END of raffleandgames.css
   ========================= */

/* Tablet refinements (<= 980px) */
@media (max-width: 980px){
  /* Topbar stacks instead of squeezing */
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }

  /* Brand can wrap */
  .brand{
    white-space: normal;
    max-width: 78%;
    line-height: 1.15;
  }

  /* Hero height feels better on tablets */
  .hero{
    min-height: auto;
  }

  /* Footer collapses cleanly on tablet */
  .footer-top{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-map iframe{ height: 220px; }
}

/* Phone (<= 560px) */
@media (max-width: 560px){
  /* Reduce section padding */
  section{ padding: 2.2rem 0; }

  /* Header: prevent CTA crowding */
  .nav-cta .btn.primary{ display:none; } /* hides "All events" on small phones */
  .brand{ max-width: 72%; }

  /* Hero type */
  h1{
    font-size: clamp(1.9rem, 7vw, 2.5rem);
    max-width: 26ch;
  }
  .lead{
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Hero card: tighten */
  .hero-card{ border-radius: 20px; }
  .hero-card-head{ padding: .9rem; }
  .hero-card-body{ padding: .9rem; }

  /* Tiles: more compact + easier scanning */
  .tile{ min-height: 200px; }
  .tile-body{ padding: .85rem; }
  .tile-title{ font-size: 1rem; }
  .tile-sub{ font-size: .95rem; }

  /* Selected details key/values (kv) already stacks at 980px, just tighten spacing */
  .kv{ gap: .6rem; }
  .kv .box{ padding: .7rem .75rem; }

  /* Filmstrip: make frames smaller on phones */
  .gf-pill{ width: 40px; height: 40px; }
  .gf-frame{ flex-basis: 180px; height: 240px; }
  .gf-poster{ min-height: 220px; border-radius: 20px; }
  .gf-strip{ border-radius: 20px; padding: .65rem; }

  /* Lightbox fits better */
  .gf-panel{
    width: calc(100% - 1rem);
    border-radius: 18px;
  }

  /* Footer hours stop awkward wrapping */
  .hours li{
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .hours li span:last-child{ white-space: normal; }

  /* Footer bottom stacks */
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }

  /* Toast always fits */
  .toast{
    max-width: calc(100% - 1.5rem);
    font-size: .9rem;
  }
}
