<style>
  *{box-sizing:border-box;margin:0;padding:0}
  img{max-width:100%;display:block}
  a{text-decoration:none;color:inherit}
  button,input{font:inherit}
  html{scroll-behavior:smooth}

  :root{
    --bg:#0c0c0c;
    --black:#000;
    --panel:#101010;
    --card:#151515;
    --text:#fff;
    --muted:rgba(255,255,255,.75);
    --stroke:rgba(255,255,255,.10);
    --accent:#e63946;
    --accent2:#ff4d57;
    --container:1200px;
    --shadow:0 25px 70px rgba(0,0,0,.55);
  }

  body{
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:
      radial-gradient(900px 500px at 20% -10%, rgba(230,57,70,.18), transparent 55%),
      radial-gradient(900px 500px at 90% 10%, rgba(230,57,70,.12), transparent 55%),
      var(--bg);
    color:var(--text);
    line-height:1.65;
    overflow-x:hidden;
    padding-top:86px;
  }

  .container{max-width:var(--container);margin:0 auto;padding:0 22px}
  section{padding:110px 0}
  @media(max-width:900px){section{padding:78px 0}}
  section + section{border-top:1px solid rgba(255,255,255,.06)}

  /* ================= HEADER ================= */
  header{
    position:fixed;top:0;left:0;width:100%;z-index:2000;height:86px;
    background:rgba(0,0,0,.88);
    border-bottom:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
  }
  .header-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px}
  .brand{display:flex;align-items:center;gap:12px;min-width:220px}
  .brand img{width:38px;height:38px;border-radius:10px}
  .brand .name{font-weight:950;letter-spacing:.2px;white-space:nowrap;line-height:1.05}
  .brand .tag{display:block;font-size:.78rem;color:var(--muted);margin-top:2px;line-height:1.1}

  nav.desktop{display:flex;align-items:center;gap:26px}
  nav.desktop a{
    font-size:.92rem;color:rgba(255,255,255,.86);
    position:relative;padding:6px 0;font-weight:800;letter-spacing:.2px
  }
  nav.desktop a:hover{color:#fff}
  nav.desktop a::after{
    content:"";position:absolute;left:0;bottom:-8px;width:100%;height:2px;
    background:var(--accent);transform:scaleX(0);transform-origin:left;
    transition:transform .25s ease;border-radius:999px
  }
  nav.desktop a:hover::after{transform:scaleX(1)}

  .header-actions{display:flex;align-items:center;gap:10px}

  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    padding:14px 20px;border-radius:999px;font-weight:900;font-size:.9rem;
    border:1px solid var(--stroke);background:rgba(255,255,255,.06);color:#fff;
    cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease;
    user-select:none;white-space:nowrap
  }
  .btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18)}
  .btn.primary{
    border:none;background:linear-gradient(90deg,var(--accent),var(--accent2));
    box-shadow:0 14px 35px rgba(230,57,70,.22)
  }
  .btn.secondary{background:transparent;border:2px solid var(--accent)}
  .btn.secondary:hover{background:rgba(230,57,70,.12);box-shadow:0 12px 30px rgba(230,57,70,.18)}

  .btn .icon{
    width:18px;height:18px;fill:#fff;opacity:.95;flex:0 0 auto
  }

  .icon-btn{
    width:42px;height:42px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;
    cursor:pointer;transition:transform .18s ease,background .18s ease
  }
  .icon-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}
  .search-icon{
    width:18px;height:18px;border:2px solid #fff;border-radius:50%;position:relative;opacity:.95
  }
  .search-icon::after{
    content:"";position:absolute;width:10px;height:2px;background:#fff;right:-8px;bottom:-2px;
    transform:rotate(45deg);border-radius:999px
  }

  .hamburger{
    display:none;width:44px;height:44px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);cursor:pointer;padding:0;
    align-items:center;justify-content:center;gap:6px;flex-direction:column
  }
  .hamburger span{width:20px;height:2px;background:#fff;border-radius:999px;opacity:.95}
  @media(max-width:980px){
    nav.desktop{display:none}
    .hamburger{display:flex}
    .brand{min-width:auto}
  }

  /* ================= MOBILE MENU ================= */
  .mobile-panel{
    position:fixed;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(14px);
    display:none;z-index:2500
  }
  .mobile-panel.active{display:block}
  .mobile-sheet{
    position:absolute;top:0;right:0;height:100%;width:min(420px,92vw);
    background:linear-gradient(180deg,rgba(18,18,18,.98),rgba(0,0,0,.98));
    border-left:1px solid rgba(255,255,255,.08);
    box-shadow:-30px 0 90px rgba(0,0,0,.65);
    padding:22px;display:flex;flex-direction:column;gap:16px;
    animation:sheetIn .25s ease forwards
  }
  @keyframes sheetIn{from{transform:translateX(18px);opacity:0}to{transform:translateX(0);opacity:1}}
  .mobile-top{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08)}
  .close-x{
    width:44px;height:44px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);cursor:pointer;position:relative
  }
  .close-x::before,.close-x::after{
    content:"";position:absolute;top:50%;left:50%;width:20px;height:2px;background:#fff;border-radius:999px
  }
  .close-x::before{transform:translate(-50%,-50%) rotate(45deg)}
  .close-x::after{transform:translate(-50%,-50%) rotate(-45deg)}
  .mobile-nav{display:flex;flex-direction:column;gap:10px;padding:10px 0}
  .mobile-nav a{
    padding:14px 14px;border-radius:14px;background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);font-weight:900;letter-spacing:.2px
  }
  .mobile-actions{display:flex;flex-direction:column;gap:12px;margin-top:6px}
  .mobile-actions .btn{width:100%}

  /* ================= SEARCH OVERLAY (focus-safe) ================= */
  .search-overlay{
    position:fixed;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(14px);
    display:none;z-index:2600;padding:92px 0 40px
  }
  .search-overlay.active{display:block}
  .search-box{max-width:780px;margin:0 auto;padding:0 22px}
  .search-bar{
    display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);border-radius:999px;padding:14px 16px;box-shadow:var(--shadow)
  }
  .search-bar input{width:100%;background:transparent;border:none;outline:none;color:#fff;font-size:1rem}
  .search-results{
    margin-top:16px;background:rgba(21,21,21,.85);border:1px solid rgba(255,255,255,.08);
    border-radius:18px;overflow:hidden
  }
  .result-item{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08);display:block}
  .result-item:last-child{border-bottom:none}
  .result-item strong{display:block;font-size:.98rem;font-weight:900}
  .result-item span{display:block;color:var(--muted);font-size:.86rem;margin-top:4px}
  .no-results{padding:18px 16px;color:rgba(255,255,255,.70)}

  /* ================= HERO ================= */
  .hero{
    min-height:68vh;
    padding-top:110px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
  }
  .hero::before{
    content:"";
    position:absolute;inset:0;z-index:2;
    background:
      linear-gradient(90deg,rgba(0,0,0,.86) 0%,rgba(0,0,0,.62) 45%,rgba(0,0,0,.38) 72%,rgba(0,0,0,.24) 100%),
      radial-gradient(850px 520px at 30% 35%,rgba(230,57,70,.18),transparent 58%),
      radial-gradient(850px 520px at 70% 60%,rgba(230,57,70,.10),transparent 62%);
  }
  .hero-bg{
    position:absolute;inset:0;z-index:1;
    background:
      linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
      url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
    transform:scale(1.03);
    filter:saturate(1.05) contrast(1.05);
  }
  .hero-content{position:relative;z-index:3;max-width:980px;padding:10px 0}
  .hero h1{margin-top:10px;font-size:clamp(2.4rem,5vw,4.2rem);line-height:1.05;letter-spacing:-0.03em;font-weight:950}
  .hero p{margin-top:16px;max-width:780px;color:var(--muted);font-size:1.07rem}
  .hero-actions{margin-top:28px;display:flex;gap:12px;flex-wrap:wrap}
  @media(max-width:900px){ .hero-actions .btn{width:100%} }

  /* ================= SECTION TITLE ================= */
  .section-title{
    display:flex;align-items:flex-end;justify-content:space-between;gap:24px;
    flex-wrap:wrap;margin-bottom:36px
  }
  .section-title h2{
    font-size:clamp(1.9rem,4vw,2.6rem);letter-spacing:-0.02em;font-weight:950;line-height:1.1
  }
  .section-title h2::after{
    content:"";display:block;width:56px;height:3px;background:var(--accent);
    border-radius:999px;margin-top:12px
  }
  .section-sub{color:var(--muted);max-width:780px;margin-top:14px;font-size:1rem}

  /* ================= TOOLS (SEARCH/FILTER) ================= */
  .tools{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-top:18px}
  .search-wrap{flex:1;min-width:min(520px,100%)}
  .search-wrap input{
    width:100%;
    padding:15px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(0,0,0,.35);
    color:#fff;
    font-size:.95rem;
    outline:none;
    box-shadow:0 16px 40px rgba(0,0,0,.35);
  }
  .search-wrap input:focus{
    border-color:rgba(230,57,70,.55);
    box-shadow:0 18px 55px rgba(230,57,70,.10);
  }
  .pill{
    padding:12px 14px;border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;font-weight:900;font-size:.88rem;
    cursor:pointer;transition:.2s ease;
  }
  .pill:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}
  .pill.active{
    border-color:rgba(230,57,70,.55);
    background:rgba(230,57,70,.16);
    box-shadow:0 12px 30px rgba(230,57,70,.12);
  }

  /* ================= GRID ================= */
  .event-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  @media(max-width:1100px){.event-grid{grid-template-columns:repeat(2,1fr)}}
  @media(max-width:600px){.event-grid{grid-template-columns:1fr}}

  /* ================= CARD ================= */
  .event-card{
    background:rgba(21,21,21,.88);
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    overflow:hidden;
    transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease,background .25s ease;
    box-shadow:0 18px 55px rgba(0,0,0,.35);
  }
  .event-card:hover{
    transform:translateY(-6px);
    border-color:rgba(230,57,70,.28);
    box-shadow:0 26px 80px rgba(0,0,0,.55);
  }
  .event-media{position:relative;height:180px;background:#000;overflow:hidden}
  .event-media img{width:100%;height:100%;object-fit:cover;transform:scale(1.02);filter:saturate(1.05) contrast(1.05)}
  .badge{
    position:absolute;left:14px;top:14px;
    padding:8px 10px;border-radius:999px;
    font-weight:950;font-size:.78rem;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
  }
  .badge.nearest{
    border-color:rgba(230,57,70,.55);
    background:rgba(230,57,70,.20);
    box-shadow:0 18px 45px rgba(230,57,70,.12);
  }
  .event-body{padding:18px 18px 20px}
  .event-body h4{font-weight:950;margin-bottom:8px;letter-spacing:-0.01em;line-height:1.2}
  .event-meta{color:rgba(255,255,255,.80);font-size:.92rem;line-height:1.6}
  .event-desc{margin-top:10px;color:var(--muted);font-size:.92rem;line-height:1.65}

  .event-card.past{opacity:.55;filter:grayscale(1)}
  .event-card.past:hover{opacity:.72;filter:grayscale(.6)}

  .empty{
  padding:18px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:18px;
  color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.04);
  margin-top:18px;
}

/* Details link (not a button) */
.event-actions{ margin-top:12px; }

.event-details{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:950;
  font-size:.9rem;
  letter-spacing:.02em;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(230,57,70,.55);
  padding-bottom: 2px;
  transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.event-details:hover{
  transform: translateY(-1px);
  color:#fff;
  border-color: rgba(230,57,70,.95);
}
.event-details svg{ width:16px;height:16px;fill:#fff;opacity:.92; }

	
	/* ================= DETAILS LINK (not a button) ================= */
.event-actions{
  margin-top: 12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.event-details{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:950;
  font-size:.9rem;
  letter-spacing:.02em;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(230,57,70,.55);
  padding-bottom: 2px;
  transition: transform .18s ease, color .18s ease, border-color .18s ease;
}

.event-details:hover{
  transform: translateY(-1px);
  color:#fff;
  border-color: rgba(230,57,70,.95);
}

.event-details svg{
  width:16px;height:16px;fill:#fff;opacity:.92;
}

  }

  /* ================= FOOTER ================= */
  footer{
    border-top:1px solid rgba(255,255,255,.08);
    background:linear-gradient(180deg,rgba(21,21,21,.7),rgba(0,0,0,.98));
    padding:70px 0 28px
  }
  .footer-grid{display:grid;grid-template-columns:1.2fr .9fr .9fr 1.1fr;gap:22px}
  .footer-card{
    background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
    border-radius:18px;padding:18px
  }
  .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:12px}
  .footer-brand img{width:40px;height:40px;border-radius:12px}
  .footer-card h4{font-size:1rem;font-weight:950;margin-bottom:10px}
  .footer-card p,.footer-card a,.footer-card li{color:rgba(255,255,255,.78);font-size:.92rem;line-height:1.7}
  .footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
  .footer-links a:hover{color:#fff}
  .socials{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
  .social{
    width:42px;height:42px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;
    transition:transform .18s ease,background .18s ease,border-color .18s ease
  }
  .social:hover{transform:translateY(-2px);background:rgba(255,255,255,.10);border-color:rgba(230,57,70,.28)}
  .social svg{width:20px;height:20px;fill:#fff;opacity:.92}
  .subscribe{display:flex;gap:10px;margin-top:10px}
  .subscribe input{
    flex:1;background:rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.10);
    border-radius:999px;padding:12px 14px;color:#fff;outline:none
  }
  .subscribe button{
    border:none;background:linear-gradient(90deg,var(--accent),var(--accent2));
    border-radius:999px;padding:12px 16px;font-weight:950;color:#fff;cursor:pointer
  }
  .footer-bottom{
    margin-top:22px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;
    color:rgba(255,255,255,.65);font-size:.9rem
  }
  @media(max-width:980px){.footer-grid{grid-template-columns:1fr}}

  /* ================= FLOATING BACK TO TOP ================= */
  .to-top{
    position:fixed;right:18px;bottom:18px;width:54px;height:54px;border-radius:999px;
    border:1px solid rgba(230,57,70,.35);
    background:rgba(230,57,70,.14);
    box-shadow:0 22px 70px rgba(230,57,70,.18);
    display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:4000;
    opacity:0;transform:translateY(10px);
    transition:opacity .2s ease, transform .2s ease, background .2s ease
  }
  .to-top:hover{background:rgba(230,57,70,.22);transform:translateY(6px)}
  .to-top.show{opacity:1;transform:translateY(0)}
  .to-top svg{width:22px;height:22px;fill:#fff;opacity:.95}
  
  .event-actions { margin-top: 10px; }

.event-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #e63946;
  text-decoration: none;
}

.event-details svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* open state */
.nav-dd.open .nav-dd-menu{ display:block; }

/* ===== Mobile grouping ===== */
.m-group{
  margin: 6px 0 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.m-group-title{
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
  opacity: .85;
  margin-bottom: 8px;
}
.m-sub{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  font-weight: 900;
}


/* ---------- Mobile Serve accordion (details) ---------- */
.m-acc{ margin:0; }

.m-acc > summary{ list-style:none; cursor:pointer; }
.m-acc > summary::-webkit-details-marker{ display:none; }

.m-acc-btn{
  padding:14px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-weight:950;
  letter-spacing:.2px;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.m-acc-caret{
  transition:transform .2s ease;
  opacity:.9;
  transform:translateY(-1px);
}
.m-acc[open] .m-acc-caret{ transform:translateY(-1px) rotate(180deg); }

.m-acc-panel{
  padding:10px 0 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* nested links */
.m-sub{
  display:block;
  padding:14px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:950;
  letter-spacing:.2px;
  color:rgba(255,255,255,.90);
  margin-left:10px;
}
.m-sub:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.16);
}
/* ================= HEADER + MOBILE MENU MASTER (REFERENCE MATCH) ================= */

header{
  position:fixed;top:0;left:0;width:100%;z-index:2000;height:86px;
  background:rgba(0,0,0,.88);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
}

/* FULL-WIDTH HEADER ONLY (removes 1200px cap just for header) */
header .container.header-inner{
  max-width:none;
  width:100%;
  padding-left:14px;
  padding-right:14px;
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Logo extreme left */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0 !important;
  margin-right:14px;
}
.brand img{width:38px;height:38px;border-radius:10px}
.brand .name{font-weight:950;letter-spacing:.2px;white-space:nowrap;line-height:1.05}
.brand .tag{display:block;font-size:.78rem;color:rgba(255,255,255,.78);margin-top:2px;line-height:1.1}

/* Desktop nav centered */
nav.desktop{
  display:flex;
  align-items:center;
  gap:18px;
  flex:1;
  justify-content:center;
  flex-wrap:nowrap;
}
nav.desktop a{
  font-size:.90rem;
  color:rgba(255,255,255,.86);
  position:relative;
  padding:6px 0;
  font-weight:800;
  letter-spacing:.2px
}
nav.desktop a:hover{color:#fff}
nav.desktop a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
  border-radius:999px;
}
nav.desktop a:hover::after{transform:scaleX(1)}

/* Right side: search extreme right */
.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Search icon button */
.icon-btn{
  width:42px;height:42px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease;
}
.icon-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}
.search-icon{
  width:18px;height:18px;border:2px solid #fff;border-radius:50%;
  position:relative;opacity:.95;
}
.search-icon::after{
  content:"";
  position:absolute;width:10px;height:2px;background:#fff;right:-8px;bottom:-2px;
  transform:rotate(45deg);border-radius:999px;
}

/* Hamburger hidden desktop */
.hamburger{
  display:none;width:44px;height:44px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  cursor:pointer;padding:0;
  align-items:center;justify-content:center;
  gap:6px;flex-direction:column;
}
.hamburger span{width:20px;height:2px;background:#fff;border-radius:999px;opacity:.95}

/* ===== Desktop dropdown (Serve) ===== */
.nav-dd{position:relative;display:flex;align-items:center}
.nav-dd-btn{
  background:transparent;border:0;color:rgba(255,255,255,.86);
  font-size:.90rem;font-weight:800;letter-spacing:.2px;padding:6px 0;
  cursor:pointer;display:flex;align-items:center;gap:6px;
}
.nav-dd-btn:hover{color:#fff}
.nav-caret{opacity:.85;font-size:.9em;transform:translateY(-1px)}
.nav-dd-menu{
  position:absolute;top:calc(100% + 14px);left:-14px;min-width:220px;
  background:rgba(18,18,18,.98);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  box-shadow:0 25px 70px rgba(0,0,0,.60);
  padding:10px;display:none;z-index:3000;
}
.nav-dd-menu a{
  display:block;padding:12px 12px;border-radius:12px;
  font-weight:900;color:rgba(255,255,255,.88);
}
.nav-dd-menu a:hover{background:rgba(255,255,255,.06);color:#fff}
.nav-dd.open .nav-dd-menu{display:block}

/* MOBILE RULES: only on mobile add spacing between hamburger + search */
@media(max-width:980px){
  nav.desktop{display:none}
  .hamburger{display:flex}
  .header-actions{gap:16px} /* spacing only on mobile */
  .icon-btn,.hamburger{width:42px;height:42px;border-radius:999px;padding:0}
}

/* ================= MOBILE MENU ================= */
.mobile-panel{
  position:fixed;inset:0;background:rgba(0,0,0,.88);backdrop-filter:blur(14px);
  display:none;z-index:2500;
}
.mobile-panel.active{display:block}
.mobile-sheet{
  position:absolute;top:0;right:0;height:100%;width:min(360px,90vw);
  background:linear-gradient(180deg,rgba(18,18,18,.98),rgba(0,0,0,.98));
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-30px 0 90px rgba(0,0,0,.65);
  padding:16px;display:flex;flex-direction:column;gap:12px;
  animation:sheetIn .25s ease forwards;
}
@keyframes sheetIn{from{transform:translateX(18px);opacity:0}to{transform:translateX(0);opacity:1}}

.mobile-top{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding-bottom:8px;border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-top .brand img{width:32px;height:32px;border-radius:8px}

.close-x{
  width:36px;height:36px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);cursor:pointer;position:relative;
}
.close-x::before,.close-x::after{
  content:"";position:absolute;top:50%;left:50%;width:20px;height:2px;background:#fff;border-radius:999px;
}
.close-x::before{transform:translate(-50%,-50%) rotate(45deg)}
.close-x::after{transform:translate(-50%,-50%) rotate(-45deg)}

.mobile-nav{display:flex;flex-direction:column;gap:8px;padding:10px 0}
.mobile-nav a{
  padding:11px 12px;border-radius:12px;background:transparent;
  border:1px solid rgba(255,255,255,.08);
  font-weight:900;letter-spacing:.2px;font-size:.94rem;
}
.mobile-nav a:hover{background:rgba(255,255,255,.05)}

.mobile-actions{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.mobile-actions .btn{width:100%}

/* Mobile Serve accordion */
.m-acc{
  margin:6px 0 10px;border-radius:14px;background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);overflow:hidden;
}
.m-acc summary{list-style:none}
.m-acc summary::-webkit-details-marker{display:none}
.m-acc-btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 12px;cursor:pointer;font-weight:950;letter-spacing:.2px;
  font-size:.94rem;color:#fff;background:transparent;
}
.m-acc-caret{opacity:.9;transition:transform .18s ease}
.m-acc[open] .m-acc-caret{transform:rotate(180deg)}
.m-acc-panel{padding:0 10px 12px;display:flex;flex-direction:column;gap:8px}

.m-sub{
  display:block;padding:10px 12px;border-radius:12px;background:transparent;
  border:1px solid rgba(255,255,255,.08);font-size:.93rem;font-weight:900;
}
.m-sub:hover{background:rgba(255,255,255,.05)}

/* ================= SEARCH OVERLAY ================= */
.search-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(14px);
  display:none;z-index:2600;padding:92px 0 40px;
}
.search-overlay.active{display:block}
.search-box{max-width:780px;margin:0 auto;padding:0 22px}
.search-bar{
  display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);border-radius:999px;padding:14px 16px;
  box-shadow:0 25px 70px rgba(0,0,0,.55);
}
.search-bar input{width:100%;background:transparent;border:none;outline:none;color:#fff;font-size:1rem}
.search-results{
  margin-top:16px;background:rgba(21,21,21,.85);border:1px solid rgba(255,255,255,.08);
  border-radius:18px;overflow:hidden;
}
.result-item{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08);display:block}
.result-item:last-child{border-bottom:none}
.result-item strong{display:block;font-size:.98rem;font-weight:900}
.result-item span{display:block;color:rgba(255,255,255,.78);font-size:.86rem;margin-top:4px}
.no-results{padding:18px 16px;color:rgba(255,255,255,.70)}

</style>