/* ==========================================================================
   ICEBURGG — static site stylesheet
   Fonts, colours and layout replicate iceburgg.co.nz
   ========================================================================== */

/* ---------- Fonts (extracted from the original site) ---------- */
@font-face{font-family:'Adumu';src:url('../fonts/c307e10ad1eb34b1c6c577fe964b4d27.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Adumu Alt';src:url('../fonts/1c86848377ee8223506ed1e7c2dcc7e4.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Cyberjunkies';src:url('../fonts/5acac8d2b136eab4113e00c454c67fb7.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Block Cond';src:url('../fonts/f37ff59a23ba5e9dcc05e64862e2660e.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Anton';src:url('../fonts/57520c8afe926d7643c80358edbb7b14.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Anton';src:url('../fonts/18b9e3530b8f43a6e1ab1d940ad0c0e6.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/79189c17fe5fc7c57cd0ad44a5c240f2.woff2') format('woff2');font-weight:100;font-style:normal;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/909d79c023e08588616f54ccedbeff8b.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/391d1d817dabc982d4eeb61445e74bd3.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/7a6ff51c2c4dbd5694b8f012df585b40.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/5eaa1f75db5780490f062b34ca329e3c.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/184e323bd609d58952bbf6ef4d5c029b.woff2') format('woff2');font-weight:700;font-style:italic;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/2602fce6f3ec66d466764f0d76def0d7.woff2') format('woff2');font-weight:800;font-style:normal;font-display:swap}
@font-face{font-family:'Agrandir';src:url('../fonts/5b2e989d3fbda56d0e9089d41d98a0d1.woff2') format('woff2');font-weight:900;font-style:normal;font-display:swap}

/* ---------- Tokens ---------- */
:root{
  --red:#9B2409;
  --red-bright:#C43C1E;
  --brown:#7B3911;
  --brown-text:#763C00;
  --cream:#F9F7DC;
  --cream-2:#FEF5BE;
  --cream-3:#F6F6E9;
  --yellow:#FFC002;
  --navy:#090A70;
  --dark:#2D3332;
  --nav-h:48px;

  --f-display:'Adumu','Adumu Alt',Impact,'Arial Black',sans-serif;
  --f-burger:'Cyberjunkies','Adumu',Impact,sans-serif;
  --f-cond:'Block Cond','Arial Narrow',Arial,sans-serif;
  --f-body:'Agrandir','Century Gothic','Segoe UI',Arial,sans-serif;
  --f-anton:'Anton',Impact,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--brown-text);
  font-family:var(--f-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.wrap{width:min(1280px,100%);margin-inline:auto;padding-inline:clamp(16px,4vw,40px)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* ---------- Nav ---------- */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:100;
  background:var(--red);
  min-height:var(--nav-h);
  display:flex;align-items:center;justify-content:flex-end;
  padding:0 clamp(16px,3vw,32px);
}
.nav__brand{margin-right:auto;display:flex;align-items:center;gap:10px}
.nav__brand img{height:34px;width:auto}
.nav__brand span{font-family:var(--f-cond);color:var(--cream-2);font-size:19px;letter-spacing:1px}
.nav__list{list-style:none;display:flex;gap:clamp(14px,2vw,32px);margin:0;padding:0}
.nav__list a{
  font-family:var(--f-cond);font-size:15px;color:#fff;letter-spacing:.4px;
  padding:14px 2px;display:inline-block;transition:color .2s;
}
.nav__list a:hover,.nav__list a:focus-visible{color:var(--yellow)}
.nav__list a.is-active{color:var(--yellow)}
.nav__toggle{
  display:none;background:none;border:0;cursor:pointer;padding:10px;
  flex-direction:column;gap:5px;
}
.nav__toggle span{display:block;width:24px;height:2px;background:#fff}

@media (max-width:820px){
  .nav{justify-content:space-between}
  .nav__toggle{display:flex}
  .nav__list{
    position:absolute;top:100%;left:0;right:0;background:var(--red);
    flex-direction:column;gap:0;padding:8px 0 16px;
    display:none;box-shadow:0 12px 24px rgba(0,0,0,.3);
  }
  .nav__list.is-open{display:flex}
  .nav__list a{padding:12px 24px;font-size:17px;width:100%}
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;font-family:var(--f-cond);text-align:center;
  padding:12px 34px;border-radius:6px;transition:transform .18s,filter .18s;
  letter-spacing:.5px;line-height:1.1;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.05)}
.btn--yellow{background:var(--yellow);color:#000;font-size:27px;border-radius:4px}
.btn--cream{background:var(--cream);color:var(--brown);font-size:31px;border-radius:40px;padding:12px 44px}
.btn--cream-sm{background:var(--cream);color:var(--brown-text);font-size:24px;border-radius:26px;padding:9px 28px}
.btn--outline{border:2px solid var(--cream-2);color:var(--cream-2);font-size:20px;border-radius:30px;padding:10px 30px}
.btn--outline:hover{background:var(--cream-2);color:var(--red)}

/* ---------- Section shell ---------- */
.section{position:relative;overflow:hidden}
.section--red{background:var(--red)}
.section--cream{background:var(--cream)}
.section--brown{background:var(--brown)}
.section--bright{background:var(--red-bright)}
.section--dark{background:var(--dark)}

/* ---------- Hero ---------- */
.hero{
  background:var(--red) url('../img/hero-brick-bg.jpg') center/cover no-repeat;
  padding-top:calc(var(--nav-h) + clamp(10px,2vw,20px));
  min-height:clamp(430px,43vw,557px);
  display:flex;align-items:center;
}
.hero__inner{display:flex;align-items:center;gap:2%;width:100%}
.hero__copy{flex:0 1 52%;text-align:center;padding-bottom:clamp(30px,5vw,60px)}
.hero__logo{width:clamp(96px,10vw,135px);margin:0 auto clamp(4px,1vw,10px)}
.hero__eyebrow{
  font-family:var(--f-display);color:var(--cream);
  font-size:clamp(34px,5.8vw,74px);line-height:.84;margin:0;
  text-transform:uppercase;
}
.hero__title{
  font-family:var(--f-burger);color:var(--yellow);
  font-size:clamp(46px,7.5vw,96px);line-height:1.4;margin:0 0 clamp(6px,1.4vw,18px);
  text-transform:uppercase;
}
.hero__art{flex:0 1 46%;align-self:flex-start;margin-top:-2%}
.hero__art img{width:100%}

@media (max-width:760px){
  .hero{padding-bottom:20px}
  .hero__inner{flex-direction:column}
  .hero__copy{flex:none;width:100%;padding-bottom:10px}
  .hero__art{flex:none;width:100%;max-width:460px;margin:0 auto}
}

/* ---------- Welcome / About ---------- */
.welcome{padding:clamp(40px,5vw,60px) 0}
.welcome__inner{display:flex;align-items:center;gap:clamp(20px,4vw,50px)}
.welcome__art{flex:0 1 42%;position:relative}
.welcome__art img{width:100%}
.welcome__copy{flex:1 1 55%}
.welcome__title{
  font-family:var(--f-display);font-size:clamp(34px,4.7vw,60px);line-height:1.1;
  color:var(--brown-text);margin:0;text-transform:uppercase;
}
.welcome__title em{font-style:normal;color:var(--red-bright)}
.welcome__sub{
  font-family:var(--f-cond);font-size:clamp(22px,2.8vw,36px);line-height:1.2;
  color:var(--navy);margin:.25em 0 .6em;text-transform:uppercase;
}
.welcome__sub em{font-style:normal;color:var(--red-bright)}
.welcome__copy p{font-size:clamp(15px,1.4vw,18px);line-height:1.45;text-align:justify;margin:0 0 1em}
@media (max-width:760px){
  .welcome__inner{flex-direction:column}
  .welcome__art,.welcome__copy{flex:none;width:100%}
  .welcome__copy p{text-align:left}
}

/* ---------- Order band ---------- */
.band{
  background:var(--brown) url('../img/dark-stone-bg.jpg') center/cover no-repeat;
  padding:clamp(36px,4vw,56px) 0;
}
.band__inner{display:flex;align-items:center;gap:2%}
.band__copy{flex:1 1 52%;text-align:center}
.band__art{flex:0 1 46%;position:relative}
.band__art img{width:100%}
.band h2,.band p{
  font-family:var(--f-anton);font-style:italic;color:var(--cream-3);
  margin:0;line-height:.95;text-transform:uppercase;
  text-shadow:0 0 18px rgba(255,255,255,.45),0 0 40px rgba(180,255,180,.25);
}
.band h2{font-size:clamp(30px,5.3vw,68px)}
.band h2 + h2{font-size:clamp(32px,5.6vw,72px)}
.band__cta{font-size:clamp(30px,5.3vw,68px);color:var(--cream-2)!important;margin:.05em 0 .35em!important}
@media (max-width:760px){
  .band__inner{flex-direction:column}
  .band__copy,.band__art{flex:none;width:100%}
}

/* ---------- Best burgers ---------- */
.best{padding:clamp(36px,4vw,54px) 0 clamp(40px,5vw,64px);text-align:center}
.best__title{
  font-family:var(--f-display);color:var(--cream);
  font-size:clamp(34px,6.3vw,81px);line-height:1.1;letter-spacing:-.017em;
  margin:0 0 clamp(20px,3vw,36px);text-transform:uppercase;
}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(12px,2vw,26px)}
.card{text-align:center;color:var(--cream)}
.card img{height:clamp(110px,13.5vw,175px);width:auto;max-width:100%;object-fit:contain;margin:0 auto}
.card h3{
  font-family:var(--f-cond);font-size:clamp(19px,2.5vw,32px);line-height:.85;
  margin:.4em 0 .35em;text-transform:uppercase;
}
.card p{font-family:var(--f-cond);font-size:clamp(11px,1.05vw,12px);line-height:1.25;margin:0 0 .7em}
.stars{display:flex;justify-content:center;gap:3px;color:var(--yellow)}
.stars svg{width:17px;height:17px;fill:currentColor}
.best__cta{margin-top:clamp(22px,3vw,34px)}
@media (max-width:860px){.cards{grid-template-columns:repeat(2,1fr);gap:26px}}
@media (max-width:420px){.cards{grid-template-columns:1fr}}

/* ---------- Gallery ---------- */
.gallery{
  background:var(--dark) url('../img/gallery-bg.jpg') center/cover no-repeat;
  padding:clamp(34px,4vw,52px) 0 clamp(40px,5vw,60px);
}
.gallery__title{
  font-family:var(--f-display);color:var(--cream);text-align:center;
  font-size:clamp(40px,6.3vw,80px);line-height:1.15;margin:0 0 clamp(14px,2vw,24px);
  text-transform:uppercase;
}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(6px,1vw,14px)}
.grid img{width:100%;transition:transform .3s}
.grid a:hover img{transform:scale(1.06)}
@media (max-width:860px){.grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:520px){.grid{grid-template-columns:repeat(2,1fr)}}

/* ---------- Footer ---------- */
.footer{background:var(--red);color:var(--cream-2);padding:clamp(26px,3vw,40px) 0 0}
.footer__top{display:flex;align-items:center;justify-content:center;gap:clamp(14px,2vw,26px);flex-wrap:wrap}
.footer__logo{width:clamp(84px,9vw,126px)}
.footer__slogan{font-family:var(--f-display);line-height:.95;text-transform:uppercase}
.footer__slogan span{display:block;font-size:clamp(26px,3.5vw,45px);letter-spacing:-.017em}
.footer__slogan strong{display:block;font-weight:400;font-size:clamp(38px,5.1vw,65px);letter-spacing:-.017em}
.footer__info{
  display:flex;justify-content:center;gap:clamp(24px,5vw,90px);flex-wrap:wrap;
  margin:clamp(18px,2.5vw,28px) 0 clamp(16px,2vw,24px);
}
.finfo{display:flex;gap:12px;align-items:flex-start;font-family:var(--f-cond);letter-spacing:.98px}
.finfo svg{width:26px;height:26px;fill:var(--cream-2);flex:none;margin-top:2px}
.finfo span{display:block;font-size:16px;line-height:1.35}
.finfo a:hover{color:var(--yellow)}
.footer__legal{
  font-family:var(--f-cond);font-size:15px;text-align:center;
  padding:10px 0 16px;border-top:1px solid rgba(254,245,190,.18);
}
.footer__legal a:hover{color:var(--yellow)}

/* ---------- Inner page header ---------- */
.pagehead{
  background:var(--red) url('../img/hero-brick-bg.jpg') center/cover no-repeat;
  padding:calc(var(--nav-h) + clamp(30px,5vw,60px)) 0 clamp(30px,5vw,58px);
  text-align:center;
}
.pagehead h1{
  font-family:var(--f-display);color:var(--cream);text-transform:uppercase;
  font-size:clamp(38px,6vw,74px);line-height:1;margin:0;
}
.pagehead p{
  font-family:var(--f-cond);color:var(--yellow);font-size:clamp(18px,2.2vw,28px);
  margin:.4em 0 0;text-transform:uppercase;
}

/* ---------- Menu page ---------- */
.menu{padding:clamp(34px,4vw,56px) 0}
.menu__nav{
  display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
  margin-bottom:clamp(24px,3vw,40px);
}
.chip{
  font-family:var(--f-cond);font-size:16px;letter-spacing:.5px;
  background:var(--red-bright);color:var(--cream);padding:8px 18px;border-radius:22px;
  transition:background .2s,color .2s;
}
.chip:hover{background:var(--brown);color:#fff}
.menu__cat{margin:0 0 clamp(26px,3vw,44px);scroll-margin-top:70px}
.menu__cat h2{
  font-family:var(--f-display);font-size:clamp(28px,3.6vw,46px);color:var(--red-bright);
  text-transform:uppercase;margin:0 0 4px;
}
.menu__cat > p{font-family:var(--f-cond);color:var(--brown-text);margin:0 0 18px;font-size:17px}
.items{display:grid;grid-template-columns:repeat(2,1fr);gap:6px clamp(24px,4vw,54px)}
.item{
  display:flex;gap:14px;align-items:baseline;
  padding:11px 0;border-bottom:1px dashed rgba(118,60,0,.25);
}
.item__body{flex:1}
.item__name{font-family:var(--f-cond);font-size:20px;color:var(--brown);text-transform:uppercase;letter-spacing:.3px}
.item__desc{font-size:13.5px;line-height:1.4;color:#7a6a55;margin:3px 0 0}
.item__price{font-family:var(--f-cond);font-size:20px;color:var(--red-bright);white-space:nowrap}
.item__price small{display:block;font-size:13px;color:#8a8a8a;text-decoration:line-through}
.tag{
  font-family:var(--f-cond);font-size:11px;background:var(--yellow);color:#000;
  padding:2px 7px;border-radius:10px;margin-left:6px;vertical-align:2px;letter-spacing:.5px;
}
@media (max-width:820px){.items{grid-template-columns:1fr}}

/* ---------- Contact page ---------- */
.contact{padding:clamp(34px,4vw,56px) 0}
.contact__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,54px);align-items:start}
.contact h2{font-family:var(--f-display);font-size:clamp(26px,3.2vw,40px);color:var(--red-bright);text-transform:uppercase;margin:0 0 14px}
.cbox{display:flex;gap:14px;margin:0 0 18px;align-items:flex-start}
.cbox svg{width:26px;height:26px;fill:var(--red-bright);flex:none;margin-top:3px}
.cbox strong{font-family:var(--f-cond);font-size:17px;color:var(--brown);display:block;text-transform:uppercase;letter-spacing:.6px}
.cbox a,.cbox span{font-size:16px;line-height:1.45;color:var(--brown-text)}
.cbox a:hover{color:var(--red-bright)}
.map{border:0;width:100%;height:340px;border-radius:10px;filter:saturate(.9)}
.form{display:grid;gap:12px}
.form label{font-family:var(--f-cond);font-size:15px;color:var(--brown);text-transform:uppercase;letter-spacing:.5px}
.form input,.form textarea{
  width:100%;font-family:var(--f-body);font-size:15px;padding:11px 13px;
  border:1px solid rgba(118,60,0,.3);border-radius:8px;background:#fff;color:var(--brown-text);
}
.form input:focus,.form textarea:focus{outline:2px solid var(--red-bright);outline-offset:1px}
.form button{
  font-family:var(--f-cond);font-size:21px;background:var(--red-bright);color:var(--cream);
  border:0;border-radius:26px;padding:11px 30px;cursor:pointer;justify-self:start;letter-spacing:.5px;
}
.form button:hover{background:var(--brown)}
@media (max-width:820px){.contact__grid{grid-template-columns:1fr}}

/* ---------- Order page ---------- */
.order{padding:clamp(36px,4vw,60px) 0;text-align:center}
.order__lead{font-size:clamp(16px,1.6vw,19px);line-height:1.5;max-width:720px;margin:0 auto clamp(22px,3vw,32px)}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,3vw,30px);margin-bottom:clamp(26px,3vw,40px)}
.step{background:#fff;border-radius:14px;padding:24px 20px;box-shadow:0 8px 24px rgba(118,60,0,.09)}
.step b{
  display:grid;place-items:center;width:46px;height:46px;border-radius:50%;
  background:var(--red-bright);color:var(--cream);font-family:var(--f-cond);font-size:22px;margin:0 auto 12px;
}
.step h3{font-family:var(--f-cond);font-size:22px;color:var(--brown);margin:0 0 6px;text-transform:uppercase}
.step p{font-size:15px;line-height:1.45;margin:0}
.order .btn--cream-sm{background:var(--red-bright);color:var(--cream)}
@media (max-width:760px){.steps{grid-template-columns:1fr}}

/* ---------- About page extras ---------- */
.story{padding:clamp(34px,4vw,56px) 0}
.story__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,54px);align-items:center}
.story h2{font-family:var(--f-display);font-size:clamp(28px,3.6vw,48px);color:var(--red-bright);text-transform:uppercase;margin:0 0 12px}
.story p{font-size:clamp(15px,1.4vw,17px);line-height:1.55;margin:0 0 1em}
.values{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,3vw,28px);margin-top:clamp(24px,3vw,40px)}
.value{background:#fff;border-radius:14px;padding:24px;box-shadow:0 8px 24px rgba(118,60,0,.09)}
.value h3{font-family:var(--f-cond);font-size:22px;color:var(--brown);margin:0 0 8px;text-transform:uppercase}
.value p{font-size:15px;line-height:1.45;margin:0}
@media (max-width:820px){.story__grid,.values{grid-template-columns:1fr}}

/* ---------- Lightbox ---------- */
.lb{
  position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:200;
  display:none;align-items:center;justify-content:center;padding:24px;
}
.lb.is-open{display:flex}
.lb img{max-width:min(900px,92vw);max-height:86vh;width:auto}
.lb__close,.lb__prev,.lb__next{
  position:absolute;background:rgba(255,255,255,.12);border:0;color:#fff;
  font-size:30px;line-height:1;cursor:pointer;border-radius:50%;
  width:52px;height:52px;display:grid;place-items:center;font-family:var(--f-cond);
}
.lb__close{top:22px;right:22px}
.lb__prev{left:18px}
.lb__next{right:18px}
.lb__close:hover,.lb__prev:hover,.lb__next:hover{background:var(--red-bright)}

/* ==========================================================================
   Scroll reveal animations
   Matched to the original site: 500ms travel of ~80px with an ease-out-quad
   curve, opacity 0 -> 1, elements staggered ~150-200ms apart within a section.
   ========================================================================== */
[data-anim]{
  opacity:0;
  will-change:opacity,transform;
  transition:opacity .5s cubic-bezier(.25,.46,.45,.94),transform .5s cubic-bezier(.25,.46,.45,.94);
}
[data-anim="up"]{transform:translateY(80px)}
[data-anim="down"]{transform:translateY(-80px)}
[data-anim="left"]{transform:translateX(-80px)}
[data-anim="right"]{transform:translateX(80px)}
[data-anim="zoom"]{transform:scale(.86)}
[data-anim="fade"]{transform:none}
[data-anim].is-in{opacity:1;transform:none}

/* Ambient glow pulse on the order band, as on the original */
.band__cta{animation:glowPulse 2.8s ease-in-out .75s infinite}
@keyframes glowPulse{
  0%{text-shadow:0 0 18px rgba(255,255,255,.45),0 0 40px rgba(180,255,180,.25)}
  25%{text-shadow:0 0 26px rgba(255,255,255,.75),0 0 60px rgba(180,255,180,.5)}
  50%,100%{text-shadow:0 0 18px rgba(255,255,255,.45),0 0 40px rgba(180,255,180,.25)}
}

/* Gentle lift on the burger cards and gallery tiles */
.card{transition:transform .35s cubic-bezier(.25,.46,.45,.94)}
.card:hover{transform:translateY(-8px)}

@media (prefers-reduced-motion:reduce){
  [data-anim]{opacity:1;transform:none;transition:none}
  .band__cta{animation:none}
  .card:hover{transform:none}
  .grid a:hover img{transform:none}
  html{scroll-behavior:auto}
}

/* ==========================================================================
   Live API components — status strip, hours, menu
   ========================================================================== */

/* ---------- Status strip (no pop-ups on this site) ---------- */
.status-strip{
  position:fixed;top:0;left:0;right:0;z-index:120;
  background:var(--dark);color:var(--cream-2);
  font-family:var(--f-cond);font-size:14px;letter-spacing:.4px;
}
.status-strip-inner{
  display:flex;align-items:center;justify-content:center;gap:9px;
  padding:7px 16px;text-align:center;line-height:1.3;
}
.status-strip-dot{width:9px;height:9px;border-radius:50%;background:#9aa2a1;flex:none}
.status-strip.open{background:#125133;color:#d9f7e6}
.status-strip.open .status-strip-dot{background:#37d67a;animation:pulseDot 2.2s ease-out infinite}
.status-strip.closed{background:#5c1a0c}
.status-strip.closed .status-strip-dot{background:#ff6f4d}
.status-strip.error{background:var(--brown)}
.status-strip.error .status-strip-dot{background:var(--yellow)}
.countdown-timer{font-variant-numeric:tabular-nums;font-weight:700}
@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(55,214,122,.65)}
  70%{box-shadow:0 0 0 8px rgba(55,214,122,0)}
  100%{box-shadow:0 0 0 0 rgba(55,214,122,0)}
}

/* Push the fixed nav and the first section below the strip */
body.has-status-strip .nav{top:var(--strip-height,34px)}
body.has-status-strip .hero{padding-top:calc(var(--nav-h) + var(--strip-height,34px) + clamp(10px,2vw,20px))}
body.has-status-strip .pagehead{padding-top:calc(var(--nav-h) + var(--strip-height,34px) + clamp(30px,5vw,60px))}

@media (prefers-reduced-motion:reduce){
  .status-strip.open .status-strip-dot{animation:none}
}

/* ---------- Opening hours ---------- */
.hours-row,.hours-line{
  display:flex;justify-content:space-between;align-items:flex-start;gap:18px;
  padding:9px 0;border-bottom:1px dashed rgba(118,60,0,.22);
}
.hours-row:last-child,.hours-line:last-child{border-bottom:0}
.hours-row .day,.hours-line .day{
  font-family:var(--f-cond);font-size:17px;letter-spacing:.4px;
  color:var(--brown);text-transform:uppercase;
}
.hours-row .time,.hours-line .time{font-size:15px;line-height:1.5;text-align:right;color:var(--brown-text)}
.hours-row.today,.hours-line.today{font-weight:700}
.hours-row.today .day,.hours-line.today .day{color:var(--red-bright)}
.closed-day{opacity:.6}

/* Footer sits on deep red — lighten the hours there */
.footer .hours-line{border-bottom-color:rgba(254,245,190,.18)}
.footer .hours-line .day,.footer .hours-line .time{color:var(--cream-2)}
.footer .hours-line.today .day{color:var(--yellow)}
.footer__hours{min-width:min(320px,100%);text-align:left}
.footer__hours h4{
  font-family:var(--f-cond);font-size:16px;letter-spacing:.98px;
  color:var(--cream-2);margin:0 0 6px;text-transform:uppercase;
}

/* ---------- API menu page ---------- */
.menu-tabs{
  display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
  margin:0 0 clamp(22px,3vw,36px);
}
.menu-tab{
  font-family:var(--f-cond);font-size:16px;letter-spacing:.5px;cursor:pointer;
  background:var(--red-bright);color:var(--cream);border:0;
  padding:9px 20px;border-radius:22px;transition:background .2s,transform .2s;
}
.menu-tab:hover{background:var(--brown);transform:translateY(-2px)}
.menu-tab.active{background:var(--brown);color:#fff}
.menu-subhead{
  font-family:var(--f-display);color:var(--red-bright);text-transform:uppercase;
  font-size:clamp(22px,2.8vw,34px);margin:clamp(22px,3vw,34px) 0 14px;
}
.menu-subhead:first-child{margin-top:0}
.menu-items{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:clamp(14px,2vw,20px)}
.menu-card{
  background:#fff;border-radius:14px;overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 8px 24px rgba(118,60,0,.09);
}
.menu-card-img{aspect-ratio:16/10;background:#f2ece0;display:grid;place-items:center;overflow:hidden}
.menu-card-img img{width:100%;height:100%;object-fit:cover}
.menu-card-noimg{font-size:42px;opacity:.5}
.menu-card-body{padding:14px 16px 16px;display:flex;flex-direction:column;gap:6px;flex:1}
.menu-card h4{
  font-family:var(--f-cond);font-size:19px;line-height:1.15;margin:0;
  color:var(--brown);text-transform:uppercase;letter-spacing:.3px;
}
.menu-card p{font-size:13.5px;line-height:1.42;color:#7a6a55;margin:0;flex:1}
.menu-card-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:4px}
.menu-card .price{font-family:var(--f-cond);font-size:20px;color:var(--red-bright)}
.menu-card .order-link{
  font-family:var(--f-cond);font-size:15px;letter-spacing:.4px;
  background:var(--red-bright);color:var(--cream);padding:7px 17px;border-radius:18px;
  transition:background .2s;
}
.menu-card .order-link:hover{background:var(--brown)}
.menu-empty,.menu-loading{
  text-align:center;font-size:16px;color:var(--brown-text);padding:40px 20px;grid-column:1/-1;
}
.menu-empty a{color:var(--red-bright);text-decoration:underline}
.menu-loading{display:flex;flex-direction:column;align-items:center;gap:14px}
.menu-loading::before{
  content:"";width:34px;height:34px;border-radius:50%;
  border:3px solid rgba(196,60,30,.25);border-top-color:var(--red-bright);
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
@media (prefers-reduced-motion:reduce){.menu-loading::before{animation:none}}

/* Ordering paused */
body.ordering-disabled .btn--yellow,
body.ordering-disabled .order-link{opacity:.55;pointer-events:none}

/* Live price on the homepage burger cards */
.card-price{
  font-family:var(--f-cond);font-size:clamp(17px,1.9vw,22px);
  color:var(--yellow);margin:.5em 0 0;letter-spacing:.5px;
}
.card-price:empty{display:none}

/* ==========================================================================
   Mobile horizontal-overflow fix
   --------------------------------------------------------------------------
   On load, elements marked data-anim="right" sit at translateX(80px), which
   pushes content past the right edge until the reveal finishes. On phones that
   widened the layout viewport, leaving a gap down the right-hand side that only
   corrected once scrolling forced a reflow.

   Three layers: remove the cause on small screens, clip the two containers that
   hold horizontally-translated children, and make the root clip authoritative.
   ========================================================================== */

/* 1. Root cause — never translate sideways on narrow screens.
      Horizontal slide-ins read poorly on a phone anyway. */
@media (max-width:900px){
  [data-anim="left"],
  [data-anim="right"]{transform:translateY(60px)}
}

/* 2. .hero and .band are not .section, so they were not clipping the
      translated artwork they contain. */
.hero,.band{overflow:hidden}

/* 3. overflow-x on <body> alone is unreliable on mobile Chrome — the value has
      to be on the root for the clip to be authoritative. `clip` is preferred
      where supported: unlike `hidden` it does not turn the root into a scroll
      container. */
html{overflow-x:hidden}
@supports (overflow:clip){
  html{overflow-x:clip}
  body{overflow-x:clip}
}
