:root{
  --black:#08070b;
  --panel:#14121a;
  --panel2:#20172a;
  --white:#fff8ff;
  --muted:#d9c9df;
  --pink:#ff2ebd;
  --cyan:#24d9ff;
  --yellow:#ffe94d;
  --purple:#8b35ff;
  --green:#47ff9a;
  --danger:#ff4d6d;
  --shadow:0 24px 80px rgba(0,0,0,.45);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,46,189,.22), transparent 32rem),
    radial-gradient(circle at top right, rgba(36,217,255,.18), transparent 30rem),
    linear-gradient(180deg,#09070d,#130d19 45%,#08070b);
  color:var(--white);
  overflow-x:hidden;
  padding-bottom:80px;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,7,11,.9);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.top-ticker{
  overflow:hidden;
  background:linear-gradient(90deg,var(--pink),var(--cyan),var(--yellow));
  color:#09070d;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  white-space:nowrap;
  font-size:.82rem;
}

.ticker-track{
  display:inline-block;
  padding:.5rem 0;
  animation:ticker 18s linear infinite;
}

@keyframes ticker{
  from{transform:translateX(100vw)}
  to{transform:translateX(-100%)}
}

.nav-shell{
  max-width:1180px;
  margin:auto;
  padding:.8rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width:0;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 0 24px rgba(255,46,189,.35);
}

.brand strong{
  display:block;
  font-size:1.15rem;
  line-height:1;
}

.brand small{
  display:block;
  margin-top:.22rem;
  color:var(--muted);
  font-size:.78rem;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:.35rem;
}

.desktop-nav a{
  padding:.72rem .8rem;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:.9rem;
}

.desktop-nav a:hover{
  background:rgba(255,255,255,.09);
  color:var(--white);
}

.menu-toggle{
  display:none;
  width:46px;
  height:42px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  border-radius:14px;
  padding:9px;
}

.menu-toggle span{
  display:block;
  height:3px;
  background:var(--white);
  margin:5px 0;
  border-radius:999px;
}

.mobile-nav{
  display:none;
  padding:0 1rem 1rem;
  border-top:1px solid rgba(255,255,255,.08);
}

.mobile-nav a{
  display:block;
  padding:1rem;
  margin:.35rem auto;
  max-width:1180px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  font-weight:900;
}

.container{
  width:min(1180px,calc(100% - 2rem));
  margin:auto;
}

.hero{
  min-height:72vh;
  position:relative;
  display:grid;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,7,11,.96),rgba(8,7,11,.64),rgba(8,7,11,.25)),
    var(--hero-img, url('/images/herobackground.jpg')) center/cover no-repeat;
  z-index:-2;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto -10% -18% -10%;
  height:250px;
  background:radial-gradient(circle,rgba(255,46,189,.35),transparent 70%);
  z-index:-1;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:2rem;
  align-items:center;
  padding:5rem 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .85rem;
  border-radius:999px;
  background:rgba(255,46,189,.18);
  border:1px solid rgba(255,46,189,.45);
  color:#ffd7f3;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

h1{
  margin:1rem 0;
  font-size:clamp(3rem,8vw,6.5rem);
  line-height:.86;
  letter-spacing:-.08em;
  text-transform:uppercase;
}

h1 span{
  color:var(--yellow);
  text-shadow:4px 4px 0 var(--pink), 8px 8px 0 rgba(36,217,255,.65);
}

.lead{
  max-width:680px;
  color:var(--muted);
  font-size:1.13rem;
  line-height:1.65;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.5rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:.9rem 1.1rem;
  border-radius:999px;
  border:2px solid transparent;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.btn-primary{
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:white;
  box-shadow:0 14px 36px rgba(255,46,189,.28);
}

.btn-secondary{
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
}

.live-card,
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:1.25rem;
}

.live-card{
  backdrop-filter:blur(14px);
}

.status-pill{
  display:inline-flex;
  padding:.48rem .8rem;
  border-radius:999px;
  font-weight:950;
  background:rgba(255,77,109,.18);
  color:#ffd3dc;
  border:1px solid rgba(255,77,109,.45);
}

.status-pill.open{
  background:rgba(71,255,154,.16);
  color:#c8ffe0;
  border-color:rgba(71,255,154,.45);
}

.live-card h2{
  margin:.85rem 0 .4rem;
  font-size:2rem;
}

.live-list{
  display:grid;
  gap:.7rem;
  margin-top:1rem;
}

.live-list div{
  padding:.85rem;
  border-radius:18px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
}

.section{
  padding:4rem 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.25rem;
}

.section h2{
  margin:0;
  font-size:clamp(2.2rem,5vw,4.5rem);
  line-height:.9;
  letter-spacing:-.06em;
  text-transform:uppercase;
}

.section h2 span{
  color:var(--cyan);
}

.grid{
  display:grid;
  gap:1rem;
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.photo-card{
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  position:relative;
  background:#111;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}

.photo-card .overlay{
  position:absolute;
  inset:auto 0 0;
  padding:1.2rem;
  background:linear-gradient(transparent,rgba(0,0,0,.86));
}

.photo-card h3{
  margin:0 0 .25rem;
  font-size:1.5rem;
}

.photo-card p{
  margin:0;
  color:var(--muted);
}

.page-hero{
  padding:4rem 0 2rem;
}

.page-hero h1{
  font-size:clamp(2.8rem,7vw,5.8rem);
}

.page-hero p{
  max-width:760px;
}

.board{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.board-full{
  grid-column:1 / -1;
}

.chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin-top:.75rem;
}

.chip{
  padding:.55rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  color:var(--white);
  font-weight:800;
}

.menu-image{
  display:none;
  width:100%;
  max-height:700px;
  object-fit:contain;
  background:rgba(0,0,0,.35);
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
}

.menu-image.show{
  display:block;
}

.map-box{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  min-height:420px;
}

.map-box iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

.form{
  display:grid;
  gap:.8rem;
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:1rem;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.3);
  color:var(--white);
  font:inherit;
}

.form textarea{
  min-height:140px;
  resize:vertical;
}

.site-footer{
  background:#070609;
  border-top:1px solid rgba(255,255,255,.12);
  padding:3rem 1rem 6rem;
}

.footer-grid{
  width:min(1180px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:2rem;
}

.footer-logo{
  width:120px;
  border-radius:26px;
  margin-bottom:1rem;
}

.site-footer a{
  display:block;
  color:var(--muted);
  margin:.45rem 0;
}

.credit{
  width:min(1180px,100%);
  margin:2rem auto 0;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.1);
  color:var(--muted);
  font-size:.9rem;
}

.sticky-actions{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1200;
  display:none;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
  padding:.65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background:rgba(8,7,11,.88);
  backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.14);
}

.sticky-actions a{
  text-align:center;
  padding:.9rem;
  border-radius:999px;
  font-weight:950;
  background:linear-gradient(135deg,var(--pink),var(--purple));
}

.sticky-actions a:first-child{
  background:linear-gradient(135deg,var(--cyan),var(--yellow));
  color:#08070b;
}

@media(max-width:900px){
  .desktop-nav{display:none}
  .menu-toggle{display:block}
  .mobile-nav.open{display:block}
  .hero-grid,
  .board,
  .footer-grid,
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
  }
  .hero-grid{
    padding:3rem 0;
  }
  .hero:before{
    background:
      linear-gradient(180deg,rgba(8,7,11,.72),rgba(8,7,11,.94)),
      var(--hero-img, url('/images/herobackground.jpg')) center/cover no-repeat;
  }
  .brand strong{
    font-size:1rem;
  }
  .brand small{
    font-size:.7rem;
  }
  h1{
    letter-spacing:-.06em;
  }
  .sticky-actions{
    display:grid;
  }
  .ticker-track{
    animation-duration:11s;
  }
}

.shop-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:1.25rem;
  align-items:start;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.product-card{
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.product-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  background:#111;
}

.product-card-body{
  padding:1rem;
}

.product-card h3{
  margin:.1rem 0 .35rem;
  font-size:1.25rem;
}

.product-card p{
  color:var(--muted);
  line-height:1.45;
}

.product-card .price{
  display:block;
  font-weight:950;
  color:var(--yellow);
  font-size:1.25rem;
  margin:.75rem 0;
}

.cart-panel{
  position:sticky;
  top:112px;
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
  padding:1.1rem;
  box-shadow:var(--shadow);
}

.cart-line{
  display:grid;
  grid-template-columns:1fr auto;
  gap:.75rem;
  padding:.8rem 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.cart-controls{
  display:flex;
  align-items:center;
  gap:.35rem;
  justify-content:flex-end;
}

.cart-controls button,
.remove-btn{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:var(--white);
  border-radius:999px;
  min-width:34px;
  min-height:34px;
  font-weight:950;
  cursor:pointer;
}

.remove-btn{
  padding:.25rem .6rem;
  color:#ffd3dc;
  border-color:rgba(255,77,109,.35);
}

.totals{
  margin:1rem 0;
  display:grid;
  gap:.55rem;
}

.totals div{
  display:flex;
  justify-content:space-between;
  padding:.65rem;
  border-radius:14px;
  background:rgba(0,0,0,.22);
}

.cart-note{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
}

#shopApp{
  display:none;
}

body.ordering-open #shopApp{
  display:grid;
}

body.ordering-open #orderClosedNotice{
  display:none;
}

.disabled{
  pointer-events:none;
  opacity:.65;
}

@media(max-width:1050px){
  .shop-layout{
    grid-template-columns:1fr;
  }

  .cart-panel{
    position:relative;
    top:auto;
  }

  .shop-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .shop-grid{
    grid-template-columns:1fr;
  }

  .product-card img{
    height:240px;
  }
}

.shop-layout{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:1.25rem;
  align-items:start;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.product-card{
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.product-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  background:#111;
}

.product-card-body{
  padding:1rem;
}

.product-card h3{
  margin:.1rem 0 .35rem;
  font-size:1.25rem;
}

.product-card p{
  color:var(--muted);
  line-height:1.45;
}

.product-card .price{
  display:block;
  font-weight:950;
  color:var(--yellow);
  font-size:1.25rem;
  margin:.75rem 0;
}

.cart-panel{
  position:sticky;
  top:112px;
  background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
  padding:1.1rem;
  box-shadow:var(--shadow);
}

.cart-line{
  display:grid;
  grid-template-columns:1fr auto;
  gap:.75rem;
  padding:.8rem 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.cart-controls{
  display:flex;
  align-items:center;
  gap:.35rem;
  justify-content:flex-end;
}

.cart-controls button,
.remove-btn{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:var(--white);
  border-radius:999px;
  min-width:34px;
  min-height:34px;
  font-weight:950;
  cursor:pointer;
}

.remove-btn{
  padding:.25rem .6rem;
  color:#ffd3dc;
  border-color:rgba(255,77,109,.35);
}

.totals{
  margin:1rem 0;
  display:grid;
  gap:.55rem;
}

.totals div{
  display:flex;
  justify-content:space-between;
  padding:.65rem;
  border-radius:14px;
  background:rgba(0,0,0,.22);
}

.cart-note{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
}

#shopApp{
  display:none;
}

body.ordering-open #shopApp{
  display:grid;
}

body.ordering-open #orderClosedNotice{
  display:none;
}

.disabled{
  pointer-events:none;
  opacity:.65;
}

@media(max-width:1050px){
  .shop-layout{
    grid-template-columns:1fr;
  }

  .cart-panel{
    position:relative;
    top:auto;
  }

  .shop-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .shop-grid{
    grid-template-columns:1fr;
  }

  .product-card img{
    height:240px;
  }
}

.page-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:380px;
  display:grid;
  align-items:end;
}

.page-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(8,7,11,.48),rgba(8,7,11,.95)),
    url('/images/herobackground.jpg') center/cover no-repeat;
  z-index:-2;
}

.page-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(255,46,189,.28),transparent 36rem);
  z-index:-1;
}

@font-face{
  font-family:'PacificoCustom';
  src:url('/assets/fonts/Pacifico-Regular.ttf') format('truetype');
  font-weight:normal;
  font-style:normal;
}

h1,
h2,
.section-head h2,
.photo-card h3,
.live-card h2,
.card h2{
  font-family:'PacificoCustom', cursive;
  letter-spacing:0 !important;
  line-height:1.08;
}

.eyebrow{
  font-family:'PacificoCustom', cursive;
  text-transform:none;
  letter-spacing:0;
  font-size:1rem;
}

.hero h1{
  font-size:clamp(3.4rem,8vw,7rem);
}

.page-hero h1{
  font-size:clamp(3rem,7vw,6rem);
}

.nav-shell{
  position:relative;
  background:
    linear-gradient(90deg,rgba(8,7,11,.92),rgba(8,7,11,.68),rgba(8,7,11,.92)),
    url('/images/header.jpg') center/cover no-repeat;
  border-radius:0 0 24px 24px;
  margin-top:.15rem;
}

.top-ticker .ticker-track{
  animation-duration:34s !important;
}

@media(max-width:900px){
  .top-ticker .ticker-track{
    animation-duration:24s !important;
  }
}

.nav-shell{
  position:relative;
  background:
    linear-gradient(90deg,rgba(8,7,11,.88),rgba(8,7,11,.55),rgba(8,7,11,.88)),
    url('/images/header.webp') center top/100% 140px no-repeat;
  border-radius:0 0 24px 24px;
  margin-top:.15rem;
  min-height:88px;
  overflow:hidden;
}

.top-ticker .ticker-track{
  animation-duration:34s !important;
}

@media(max-width:900px){
  .top-ticker .ticker-track{
    animation-duration:24s !important;
  }
}
