
:root{
  --bg:#050505;
  --panel:#111;
  --panel2:#151515;
  --red:#ea3b18;
  --gold:#ffb347;
  --text:#fff;
  --muted:#d8d8d8;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Montserrat,Arial,sans-serif;
  padding-bottom:80px;
}
img,video{display:block;max-width:100%}
a{color:inherit}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88));
}
.nav{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 6vw;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(10px);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:1.7rem;
  font-weight:700;
}
.brand img{
  width:72px;height:72px;
  object-fit:contain;border-radius:50%;
}
.top-phone{
  background:var(--red);
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}
.nav-links{
  margin-left:auto;
  display:flex;
  gap:20px;
  align-items:center;
}
.nav-links a{
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  font-size:.92rem;
}
.menu-toggle{display:none}

.hero-content{
  position:relative;
  z-index:2;
  min-height:calc(100vh - 108px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:50px 20px 70px;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:14px;
}
.hero h1{
  font-family:Oswald,sans-serif;
  font-size:clamp(4rem,9vw,8rem);
  line-height:.9;
  text-transform:uppercase;
}
.hero-copy{
  max-width:820px;
  margin:24px auto 34px;
  line-height:1.7;
  font-size:1.28rem;
}
.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.cta-row.left{justify-content:flex-start}
.btn{
  min-height:54px;
  padding:0 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn.primary{background:var(--red)}
.btn.secondary{border:2px solid rgba(255,255,255,.85);background:rgba(255,255,255,.04)}

section{padding:74px 6vw}
.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 34px;
}
.left-head{text-align:left;max-width:none;margin:0}
.section-head h2,.fifa-strip h2,.footer-left h2{
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:clamp(2.4rem,5.5vw,4.6rem);
  line-height:1;
  margin-bottom:12px;
}
.section-head p:not(.eyebrow), .fifa-strip p:not(.eyebrow){
  color:var(--muted);
  line-height:1.75;
  font-size:1.05rem;
}

/* ALL picture cards same size */
.promo-grid,
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}
.promo-card,
.card{
  background:var(--panel2);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.26);
}
.promo-card img,
.media-card img{
  width:100%;
  aspect-ratio:4 / 5;
  height:240px;
  object-fit:cover;
  object-position:center;
}
.promo-card .content,
.card .content{
  padding:20px;
}
.promo-card h3,
.card h3{
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:1.85rem;
  margin-bottom:8px;
}
.promo-card p,
.card p{
  color:var(--muted);
  line-height:1.7;
}
.text-card{
  min-height:340px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#171717,#0b0b0b);
}
.mini-link{
  display:inline-block;
  margin-top:12px;
  color:var(--gold);
  text-transform:uppercase;
  text-decoration:none;
  font-weight:900;
}

.reviews-section{background:#070707}
.reviews-shell{
  max-width:1100px;
  margin:0 auto;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
}
.reviews-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.fifa-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  background:#090909;
}

.catering{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
  background:#080808;
}
.catering-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  background:var(--panel);
  padding:28px;
  border-radius:22px;
}
.catering-form input,.catering-form textarea{
  width:100%;
  padding:15px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:#050505;
  color:#fff;
  font:inherit;
}
.catering-form textarea,.catering-form button{grid-column:1/-1}

footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:48px 6vw;
  background:#000;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-left p{
  color:var(--muted);
  line-height:1.7;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-content:flex-start;
}
.footer-links a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
}
.sticky-order{
  position:fixed;
  right:18px;bottom:16px;
  z-index:20;
  background:var(--red);
  padding:16px 22px;
  border-radius:999px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  box-shadow:0 14px 35px rgba(0,0,0,.45);
}

@media(max-width:980px){
  .nav{flex-wrap:wrap;padding:14px 18px}
  .brand{font-size:1.25rem}
  .brand img{width:58px;height:58px}
  .top-phone{order:3;width:100%;text-align:center}
  .menu-toggle{
    display:block;
    margin-left:auto;
    background:#191919;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    border-radius:10px;
    padding:10px 13px;
    font-size:1.15rem;
  }
  .nav-links{
    display:none;
    width:100%;
    margin-left:0;
    flex-direction:column;
    gap:8px;
  }
  .nav-open .nav-links{display:flex}
  .nav-links a{
    text-align:center;
    background:#111;
    padding:13px;
    border-radius:10px;
  }
  .fifa-strip,
  .catering,
  .catering-form,
  footer{
    grid-template-columns:1fr;
  }
  section{padding:62px 20px}
  .promo-card img,
  .media-card img{
    height:220px;
  }
  .text-card{
    min-height:300px;
  }
  footer{padding-bottom:96px}
  .sticky-order{
    left:14px;right:14px;
    text-align:center;
    border-radius:14px;
  }
}
@media(max-width:560px){
  .hero h1{font-size:3.35rem}
  .hero-copy{font-size:1.05rem}
  .btn{width:100%}
  .promo-card img,
  .media-card img{
    height:210px;
  }
}


/* Keep floating order button */
.sticky-order{
  position:fixed !important;
  right:18px !important;
  bottom:16px !important;
  z-index:20 !important;
  background:#ea3b18 !important;
  padding:16px 22px !important;
  border-radius:999px !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
  box-shadow:0 14px 35px rgba(0,0,0,.45) !important;
}

/* Reinforce hero video background */
.hero{
  min-height:100vh !important;
  position:relative !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}

@media(max-width:980px){
  .sticky-order{
    left:14px !important;
    right:14px !important;
    text-align:center !important;
    border-radius:14px !important;
  }
}


/* Restore hero background video */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}


/* Fix centered images and hero video */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  z-index:0 !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}

/* Center the marked images */
.promo-card img,
.media-card img{
  object-fit:cover !important;
  object-position:center center !important;
}

/* Keep cards aligned and same height */
.promo-grid,
.cards{
  align-items:start !important;
}
.promo-card,
.card{
  display:flex !important;
  flex-direction:column !important;
  height:100% !important;
}
.promo-card .content,
.card .content{
  flex:1 1 auto !important;
}

/* Make FIFA buttons stay compact without empty visual gap */
.fifa-strip{
  grid-template-columns:1fr auto !important;
  align-items:center !important;
}
.fifa-strip .cta-row{
  justify-content:flex-end !important;
}

@media(max-width:980px){
  .fifa-strip{
    grid-template-columns:1fr !important;
  }
  .fifa-strip .cta-row{
    justify-content:flex-start !important;
  }
}


/* Restored hero video from cinematic package */
.hero{
  position:relative !important;
  min-height:100vh !important;
  overflow:hidden !important;
  background:#000 !important;
}
.hero-video{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  z-index:0 !important;
  opacity:1 !important;
  visibility:visible !important;
}
.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.86)) !important;
  z-index:1 !important;
}
.nav, .hero-content{
  position:relative !important;
  z-index:3 !important;
}


/* Final true image centering */
.promo-card,
.media-card{
  overflow:hidden !important;
}

.promo-card img,
.media-card img{
  width:100% !important;
  height:240px !important;
  object-fit:cover !important;
  object-position:50% 50% !important;
  display:block !important;
  margin:0 auto !important;
  transform:none !important;
}

@media(max-width:980px){
  .promo-card img,
  .media-card img{
    height:220px !important;
    object-position:50% 50% !important;
  }
}

@media(max-width:560px){
  .promo-card img,
  .media-card img{
    height:210px !important;
    object-position:50% 50% !important;
  }
}


/* Code-only mobile/Safari optimization with same layout */
.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}
.hero-video{
  background:transparent;
}
.hero-copy{
  max-width:760px;
}
img[loading="lazy"]{
  content-visibility:auto;
}

@supports (-webkit-touch-callout: none) {
  .hero-video{
    object-position:center center !important;
  }
}


/* Combo images click through to SpotOn */
.promo-image-link{
  display:block;
}
.promo-image-link img{
  display:block;
}


/* Reliable clickable combo cards */
.promo-card-link{
  display:block !important;
  text-decoration:none !important;
  color:inherit !important;
  cursor:pointer !important;
}
.promo-card-link:hover{
  transform:translateY(-2px);
}


/* Catering form status message */
.form-status{
  margin-top:14px;
  font-weight:700;
}
.form-status.success{ color:#9be28f; }
.form-status.error{ color:#ff9b9b; }


.delivery-links{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.delivery-links span{
  color:#d8d8d8;
  font-weight:700;
}
.delivery-links a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
}


/* Delivery footer links styled to match footer pills */
.delivery-links{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
}

.delivery-links span{
  color:#d8d8d8;
  font-weight:700;
  margin-right:4px;
}

.delivery-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.delivery-links a:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:#1b1b1b;
}

@media (max-width: 768px){
  .delivery-links{
    margin-top:16px;
  }
}


/* Exact footer match for delivery apps */
.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
}
.delivery-links-exact{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-content:flex-start;
}
.delivery-links-exact a{
  text-decoration:none;
  background:#141414;
  padding:10px 13px;
  border-radius:999px;
  font-weight:800;
  color:#fff;
}


/* Small icon-style badges for footer links */
.footer-links a,
.delivery-links-exact a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#ffffff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
}

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Footer badges and labels cleanup */
.footer-links a,
.delivery-links-exact a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.link-label{
  display:inline-block;
  line-height:1;
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
}

.badge-facebook{ background:#1877f2; }
.badge-instagram{ background:linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.badge-x{ background:#111; border-color:rgba(255,255,255,.22); }
.badge-youtube{ background:#ff0000; }
.badge-directions{ background:#34a853; }
.badge-menu{ background:#6b7280; }
.badge-review{ background:#f4b400; color:#111; }
.badge-uber{ background:#06c167; }
.badge-doordash{ background:#eb1700; }
.badge-grubhub{ background:#f63440; }

.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
}

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Rebuilt footer pills with explicit spacing */
.footer-links-social,
.footer-links-delivery{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.delivery-note{
  color:#d8d8d8;
  font-weight:700;
  margin-top:18px;
  margin-bottom:10px;
  white-space:nowrap;
}

.pill-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  color:#fff !important;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
  white-space:nowrap;
}

.pill-link:hover{
  background:#1b1b1b;
  border-color:rgba(255,255,255,.16);
}

.mini-badge{
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.14);
}

.badge-facebook{ background:#1877f2; }
.badge-instagram{ background:linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.badge-x{ background:#111111; border-color:rgba(255,255,255,.24); }
.badge-youtube{ background:#ff0000; }
.badge-directions{ background:#34a853; }
.badge-menu{ background:#6b7280; }
.badge-review{ background:#f4b400; color:#111; }
.badge-uber{ background:#06c167; }
.badge-doordash{ background:#eb1700; }
.badge-grubhub{ background:#f63440; }

@media (max-width: 640px){
  .mini-badge{
    width:20px;
    height:20px;
    min-width:20px;
    font-size:9px;
  }
}


/* Code-only optimization, keep existing footer/icon look */
.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}
.hero-copy{
  max-width:780px;
}
.hero-video{
  object-position:center center !important;
}
img[loading="lazy"]{
  content-visibility:auto;
}
@supports (-webkit-touch-callout: none) {
  .hero-video{
    object-position:center center !important;
  }
}


/* Actual image badges for footer */
.footer-icon-img{
  width:22px;
  height:22px;
  min-width:22px;
  display:block;
  border-radius:999px;
}
.pill-link{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}


.footer-icon-img{
  width:20px;
  height:20px;
  min-width:20px;
  object-fit:contain;
  border-radius:999px;
}


/* no-layout accessibility and performance polish */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.hero{
  background:#000 url('assets/pizza.webp') center center / cover no-repeat;
}

.hero-video{
  object-position:center center !important;
}

body,
p,
li,
.footer p,
.footer address,
.footer small,
.footer span,
.form-note,
.section-copy{
  color:#e5e7eb;
}

.muted,
.subtle,
.footer-meta,
.footer-note{
  color:#d1d5db !important;
}

input::placeholder,
textarea::placeholder{
  color:#d1d5db;
  opacity:1;
}

label{
  color:#f3f4f6;
}

img[loading="lazy"]{
  content-visibility:auto;
}

.footer-icon-img{
  width:20px;
  height:20px;
  min-width:20px;
  object-fit:contain;
}


/* no-layout contrast + landmark update */
main#main-content{
  display:block;
}

:root{
  --text-strong:#f5f5f5;
  --text-soft:#e5e7eb;
  --text-muted:#d1d5db;
}

body,
p,
li,
small,
span,
address,
.footer p,
.footer address,
.footer small,
.footer span{
  color:var(--text-soft);
}

.muted,
.subtle,
.footer-meta,
.footer-note,
.section-copy,
.form-note,
.card p,
.hero-copy{
  color:var(--text-muted) !important;
}

input::placeholder,
textarea::placeholder{
  color:#cfd4dc !important;
  opacity:1 !important;
}

label,
h1,h2,h3,h4,h5,h6{
  color:var(--text-strong);
}

.hero::before,
.hero-overlay,
.video-overlay{
  background:rgba(0,0,0,.48) !important;
}

.btn-outline,
button.btn-outline,
a.btn-outline{
  color:#ffffff !important;
  border-color:rgba(255,255,255,.92) !important;
}
