:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface2:#fff;
  --text:#111111;
  --muted:#3a3a3a;
  --border:rgba(17,17,17,.14);

  --yellow:#ff5a1f;
  --yellow-2:#ffb08a;
  --black:#111111;
  --accent:#e23b2e;

  --max:1160px;
  --r:18px;
  --shadow:0 14px 40px rgba(17,17,17,.12);
  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
small{font-size:.9em}
strong{font-weight:700}

.container{width:min(var(--max), calc(100% - 44px)); margin:0 auto}
.muted{color:var(--muted)}
.link{color:inherit; text-decoration:underline; text-underline-offset:3px}
.link:hover{opacity:.85}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:var(--yellow);
  color:var(--black);
  z-index:9999;
}
.skip-link:focus{left:12px}

/* Header */
.header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  height:88px;
  display:flex;
  align-items:center;
  background:#ffffff;
  box-shadow:0 1px 0 var(--border);
  transition:box-shadow .25s var(--ease);
}
.header.is-solid{
  background:#ffffff;
  box-shadow:0 1px 0 var(--border);
}

/* Make the header span the full viewport width (respecting the global 22px gutter). */
.header .container.header-inner{
  width:calc(100% - 44px);
}

/* 3-column layout: brand (left), location search (center), nav/actions (right). */
.header-inner{
  display:grid;
  grid-template-columns:max-content minmax(0, 1fr) max-content;
  align-items:center;
  column-gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
  color:inherit;
}

.mark{
  width:42px;
  height:42px;
  border-radius:12px;
  background:radial-gradient(circle at 25% 25%, var(--yellow-2), var(--yellow));
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.12);
  position:relative;
  flex:0 0 auto;
}
.mark::after{
  content:"";
  position:absolute;
  inset:10px 12px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(17,17,17,.85), rgba(17,17,17,.30));
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  min-width:0;
}
.brand-name{
  font-family:Oswald, Impact, system-ui, sans-serif;
  letter-spacing:.6px;
  font-size:20px;
  text-transform:uppercase;
  white-space:nowrap;
}
.brand-tag{
  font-size:12px;
  color:rgba(17,17,17,.78);
  white-space:nowrap;
}
.header.is-solid .brand-tag{
  color:rgba(17,17,17,.70);
}

.header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:22px;
  min-width:0;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  white-space:nowrap;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.loc-search{display:flex; gap:12px; align-items:center; justify-content:center; width:100%; max-width:640px; margin:0 auto; --loc-search-collapse-buffer:clamp(320px, 32vw, 760px); --loc-search-collapse-breakpoint:1280px}
.loc-search input{
  flex:1;
  width:100%;
  min-width:240px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:#f4f5f7;
  color:var(--text);
  caret-color:var(--text);
  outline:none;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.header.is-solid .loc-search input{
  border-color:rgba(0,0,0,.14);
  background:#f4f5f7;
  color:var(--text);
  caret-color:var(--text);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.loc-search input::placeholder{color:rgba(17,17,17,.60)}
.header.is-solid .loc-search input::placeholder{color:rgba(17,17,17,.60)}

/* Collapse location search under 1165x608 (either dimension). */
@media (max-width: 1164px), (max-height: 607px){
  .loc-search{display:none !important;}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  font-size:13px;
  cursor:pointer;
  transition:transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease), opacity .15s var(--ease);
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--yellow); color:#fff; border-color:rgba(17,17,17,.14)}
.btn-primary:hover{box-shadow:0 12px 24px rgba(17,17,17,.16)}
.btn-ghost{background:transparent; color:var(--black); border-color:rgba(17,17,17,.22)}
.btn-ghost:hover{background:rgba(17,17,17,.06)}
.btn-sm{padding:10px 14px; font-size:12px}
.btn[disabled]{opacity:.55; cursor:not-allowed}

/* Icon buttons */
.icon-btn{
  width:42px;height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:0;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.16);
  background:#fff;
  cursor:pointer;
  overflow:visible;
}
.icon-btn svg,
.icon-btn img{
  width:20px;height:20px;
  display:block;
}
.icon-btn svg{overflow:visible}
.icon-btn:hover{transform:translateY(-1px)}
.cart-badge{position:relative; display:inline-block}
.cart-badge span{
  position:absolute;
  top:-6px; right:-6px;
  min-width:18px;height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:11px;
  font-weight:900;
  display:grid;
  place-items:center;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.cart-badge.is-empty span{display:none}

/* Layout helpers */
main{padding-top:88px}
.section{padding:72px 0}
.section.alt{background:linear-gradient(180deg, var(--surface2), #fff)}
.grid{display:grid; gap:22px}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}

/* Careers: center compact two-card row (Catering + Prep & dish) and prevent stretch */
.roles-grid-compact{
  grid-template-columns:repeat(2, minmax(260px, 360px));
  justify-content:center;
  align-items:start;
}
@media (max-width: 900px){
  .roles-grid-compact{grid-template-columns:1fr}
}
@media (max-width: 1100px){
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
}

/* Hero carousel */
.hero-carousel{
  position:relative;
  min-height:760px;
  overflow:hidden;
  background:#000;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .6s var(--ease), transform .8s var(--ease);
}
.slide.is-active{opacity:1; transform:scale(1)}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.15) 55%, rgba(0,0,0,.35));
}

.simple-hero{
  position:relative;
  min-height:560px;
  overflow:hidden;
  background:#000;
}
.simple-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--hero-image);
  background-size:cover;
  background-position:var(--hero-pos, center);
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.05);
  z-index:0;
}
.simple-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20) 55%, rgba(0,0,0,.40));
  z-index:1;
}
.simple-hero .hero-content{
  position:relative;
  z-index:2;
  height:100%;
  padding:96px 0 52px;
}
@media (max-width: 720px){
  .simple-hero{min-height:520px}
  .simple-hero .hero-content{padding:88px 0 44px}
  .simple-hero::after{background:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.42))}
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  align-items:center;
  height:100%;
  padding:110px 0 66px;
}
.hero-box{
  max-width:640px;
  background:rgba(255,255,255,.92);
  color:var(--black);
  border-radius:var(--r);
  padding:26px 26px;
  box-shadow:var(--shadow);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(17,17,17,.08);
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
}
/* Better spacing between kicker pill and card headers */
.card .kicker{margin-bottom:10px}


.align-start{align-self:start}

.kicker-row{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.hero-loc{margin-top:14px}
.hero-loc-label{font-size:13px; margin-bottom:6px}
.hero-loc-controls{display:flex; gap:10px; align-items:center}
.hero-loc-select{width:100%; max-width:420px}
.hero-loc-details{font-size:13px; margin-top:6px}
h1,h2,h3{
  font-family:Oswald,Impact,system-ui,sans-serif;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin:0 0 10px 0;
}
h1{font-size:56px; line-height:1.02}
h2{font-size:40px; line-height:1.06}
h3{font-size:22px; line-height:1.1}
.lead{font-size:18px; margin:0 0 18px 0}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero-terms{font-size:12px; opacity:.8; margin-top:12px}

/* Carousel controls */
.carousel-controls{
  position:absolute;
  inset:auto 0 18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  z-index:3;
}
.carousel-arrows{display:flex; gap:10px}
.dots{display:flex; gap:8px; justify-content:center}
.dot{
  width:10px;height:10px;border-radius:999px;border:1px solid rgba(255,255,255,.65);
  background:rgba(255,255,255,.18);
  cursor:pointer;
}
.dot[aria-current="true"]{background:var(--yellow); border-color:var(--yellow)}

/* Cards */
.card{
  border-radius:var(--r);
  border:1px solid var(--border);
  background:#fff;
  box-shadow:0 10px 22px rgba(17,17,17,.06);
  padding:22px;

  overflow:hidden;
  min-width:0;
}
.card *{min-width:0; max-width:100%; overflow-wrap:anywhere; word-break:break-word}

.card h3{margin-top:0}
.card p{margin:0 0 14px 0}
.step-num{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid var(--border);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:rgba(17,17,17,.04);
}

.mini{
  border-radius:14px;
  border:1px solid var(--border);
  padding:14px 16px;
  background:rgba(17,17,17,.02);
}

.faq{display:grid; gap:12px}
.faq details{
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  padding:14px 16px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq details p{margin:10px 0 0 0}

/* Promo cards */
.promo-card{position:relative}
.promo-badge{
  position:absolute; top:16px; right:16px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--black);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
}

/* Menu cards */
.menu-card{border-radius:var(--r); overflow:hidden; border:1px solid var(--border); background:#fff; box-shadow:0 12px 24px rgba(17,17,17,.06);display:flex;flex-direction:column;height:100%; min-width:0}
.menu-card *{min-width:0; max-width:100%; overflow-wrap:anywhere; word-break:break-word}

.menu-card-media{height:150px; background:linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,0))}
.food-illus{
  height:100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(226,59,46,.35), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(255,210,0,.35), transparent 55%),
    linear-gradient(135deg, rgba(17,17,17,.08), rgba(17,17,17,0));
  position:relative;
}
.food-illus::after{
  content:"";
  position:absolute;
  inset:18px 22px;
  border-radius:16px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.70), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(17,17,17,.38), rgba(17,17,17,.12));
  mix-blend-mode:multiply;
  opacity:.55;
}
.menu-card-body{padding:18px 18px 18px;display:flex;flex-direction:column;flex:1}
.menu-card-body{position:relative}
.menu-card--corner-price .menu-card-body{padding-bottom:56px}
.menu-card-price-corner{position:absolute;right:14px;bottom:14px;font-weight:800;color:var(--ink)}

.menu-card-top{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.menu-card-title{margin:0; font-size:22px}
.menu-card-price{font-weight:900}
.menu-card-desc{color:var(--muted); margin:10px 0 12px}
.menu-card-tags{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:0;align-items:center;min-height:28px;flex:1;min-width:0}
.tag{
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:rgba(17,17,17,.06);
}
.tag-hot{background:rgba(226,59,46,.10)}
.menu-card-bottom{display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:nowrap; margin-top:auto; padding-top:12px}
.menu-card-actions{margin-left:auto; display:flex; gap:10px; flex-wrap:nowrap; justify-content:flex-end; align-self:flex-start;flex:0 0 auto}

.menu-category-cta{grid-column:1 / -1; display:flex; justify-content:center; margin-top:14px}

/* Chips */
.chip-row{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 18px}
.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  font-size:12px;
  cursor:pointer;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.chip[aria-pressed="true"]{background:var(--yellow); border-color:rgba(17,17,17,.14); color:#fff}


/* Order builder header */
.order-builder-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:end;
}
@media (max-width: 900px){
  .order-builder-head{grid-template-columns:1fr; align-items:start}
  .order-builder-head .field{max-width:100% !important}
}
/* Forms */
.field{display:grid; gap:8px}
.input, textarea, select.input{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
}
.input:focus, textarea:focus, select.input:focus{box-shadow:0 0 0 4px rgba(255,210,0,.35); border-color:rgba(17,17,17,.22)}

/* Drawers / Modals */
.drawer-backdrop,.modal-backdrop,.cart-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  z-index:80;
}
.modal .modal-backdrop{z-index:0}
.modal .modal-panel{z-index:1}
.drawer{
  position:fixed; inset:0 auto 0 0;
  width:min(320px, 88vw);
  background:#fff;
  z-index:90;
  transform:translateX(-102%);
  transition:transform .25s var(--ease);
  display:flex;
  flex-direction:column;
}
.drawer.is-open{transform:none}
.drawer-head{display:flex; align-items:center; justify-content:space-between; padding:18px 18px; border-bottom:1px solid var(--border)}
.drawer-title{font-family:Oswald,Impact,sans-serif; text-transform:uppercase; letter-spacing:.6px}
.drawer-body{padding:16px 18px; display:grid; gap:12px}
.drawer-body a{padding:10px 10px; border-radius:12px; background:rgba(17,17,17,.04); font-weight:800; text-transform:uppercase; font-size:12px}
.drawer-body hr{border:none; border-top:1px solid var(--border); margin:8px 0}

.modal{
  position:fixed; inset:0;
  z-index:85;
  display:none;
}
.modal.is-open{display:block}
.modal-panel{
  position:fixed;
  inset:96px 0 auto 0;
  width:min(640px, calc(100% - 44px));
  margin:0 auto;
  background:#fff;
  border-radius:var(--r);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.modal-head{display:flex; justify-content:space-between; align-items:center; padding:16px 18px; border-bottom:1px solid var(--border)}
.modal-title{font-family:Oswald,Impact,sans-serif; text-transform:uppercase; letter-spacing:.6px}
.modal-body{padding:18px}
.pill-row{display:flex; gap:10px; margin-bottom:12px; flex-wrap:wrap}
.pill{
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.pill[aria-pressed="true"]{background:var(--yellow)}

.cart-panel{
  position:fixed; inset:0 0 0 auto;
  width:min(420px, 92vw);
  background:#fff;
  z-index:90;
  transform:translateX(102%);
  transition:transform .25s var(--ease);
  display:flex;
  flex-direction:column;
}
.cart-panel.is-open{transform:none}
.cart-head{display:flex; align-items:center; justify-content:space-between; padding:18px 18px; border-bottom:1px solid var(--border)}
.cart-title{font-family:Oswald,Impact,sans-serif; text-transform:uppercase; letter-spacing:.6px}
.cart-body{padding:16px 18px; overflow:auto}
.cart-footer{padding:16px 18px; border-top:1px solid var(--border); display:grid; gap:10px; background:linear-gradient(180deg, #fff, rgba(255,210,0,.18))}
.cart-totals{display:grid; gap:6px}
.total-row{display:flex; justify-content:space-between; gap:12px}
.total-row strong{font-size:18px}
.cart-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.cart-row-main{display:grid; gap:4px}
.cart-row-title{font-weight:900}
.cart-row-meta{font-size:12px; color:var(--muted)}
.cart-remove{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--muted);
  font-size:12px;
  line-height:1;
  cursor:pointer;
  transition:background .2s var(--ease), color .2s var(--ease), transform .05s var(--ease);
}
.cart-remove svg{width:14px;height:14px;display:block;fill:currentColor}
.cart-remove:hover{background:var(--surface2); color:var(--text)}
.cart-remove:active{transform:translateY(1px)}
.cart-remove:focus-visible{outline:2px solid var(--accent); outline-offset:2px}
.cart-row-qty{display:flex; align-items:center; gap:6px}
.qty{
  width:30px;height:30px; border-radius:10px;
  border:1px solid var(--border);
  background:#fff; font-weight:900; cursor:pointer;
}
.qty-input{
  width:52px;
  padding:8px 6px;
  border-radius:10px;
  border:1px solid var(--border);
  text-align:center;
}
.cart-row-price{font-weight:900; align-self:center; justify-self:end}
.empty{padding:18px; text-align:center; color:var(--muted)}

/* Footer */
.footer{
  background:#0b0b0b;
  color:#fff;
  padding:54px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.2fr;
  gap:26px;
  align-items:start;
}
.footer-brand .muted{color:rgba(255,255,255,.72)}
.footer-hotline{margin-top:14px}
.footer .hotline{display:inline-block; margin-top:6px; font-weight:800}
.footer-col{padding-top:12px; border-top:1px solid rgba(255,255,255,.12)}
.footer-col h3{margin:0 0 10px; font-size:14px; letter-spacing:.08em; text-transform:uppercase}
.footer a{opacity:.9; display:block; margin:6px 0}
.footer a:hover{opacity:1}
.footer .social{display:flex; gap:8px; margin-bottom:12px}
.footer .social-btn{border:1px solid rgba(255,255,255,.22); border-radius:999px; padding:8px 10px; text-decoration:none}
.footer .form-inline{display:flex; flex-direction:column; gap:10px}
.footer .form-inline input{
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:0 12px;
}
.footer .form-inline input::placeholder{color:rgba(255,255,255,.65)}
.footer-bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-bottom .copy{opacity:.9}
.footer .to-top{opacity:.9; text-decoration:none; font-size:18px}
.footer .to-top:hover{opacity:1}
@media (max-width: 920px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-col{border-top:none; padding-top:0}
}
@media (max-width: 620px){
  .footer-grid{grid-template-columns:1fr}
  .footer-col{border-top:1px solid rgba(255,255,255,.12); padding-top:12px}
}

.footer h3{margin:0 0 10px 0; font-size:18px}
.footer .fine{opacity:.75; font-size:13px}
.footer-bottom{margin-top:18px; padding-top:18px; border-top:1px solid rgba(255,255,255,.15); display:flex; flex-direction:column; align-items:flex-start; gap:10px}
@media (max-width: 900px){
  .footer-row{grid-template-columns:1fr}
}

/* Location cards */
.loc-card{border-radius:var(--r); border:1px solid var(--border); background:#fff; padding:18px; display:flex; flex-direction:column; gap:12px; height:100%}
.loc-head{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.loc-title h3{margin:0 0 8px 0}
.loc-body p{margin:8px 0}
.loc-tags{display:flex; gap:8px; flex-wrap:wrap}
.loc-footer{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.loc-results-head{display:flex; justify-content:space-between; align-items:baseline; gap:14px; flex-wrap:wrap}

/* Reveal */
[data-reveal]{opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease), transform .6s var(--ease)}
.is-visible{opacity:1; transform:none}

/* Responsive helpers */
.hide-sm{display:inline-flex}
.show-sm{display:none}
@media (max-width: 860px){
  .nav,.loc-search{display:none}
  .hide-sm{display:none}
  .show-sm{display:inline-flex}
  h1{font-size:44px}
  .hero-carousel{min-height:720px}
  .hero-box{padding:22px}

  /* Mobile header: brand + account/cart on the top row, menu button on a centered bottom row */
  .header{height:auto; padding:10px 0 12px; align-items:stretch}
  main{padding-top:132px}
  .header .container.header-inner{width:calc(100% - 24px)}
  .header-inner{
    grid-template-columns:1fr max-content;
    grid-template-rows:auto auto;
    column-gap:14px;
    row-gap:10px;
    align-items:center;
  }
  .header-right{justify-self:end; transform:none}
  .header-actions{gap:10px}
  .header-menu-btn{
    grid-column:1 / -1;
    justify-self:center;
    width:min(260px, 100%);
  }
}

/* Page hero */
.page-hero{
  padding:54px 0;
  background:linear-gradient(180deg, rgba(255,210,0,.30), rgba(255,210,0,0) 70%), radial-gradient(circle at 20% 0%, rgba(226,59,46,.22), transparent 60%);

  position:relative;
  overflow:hidden;
}
.page-hero .lead{max-width:72ch}

.footer-bottom .to-top{align-self:flex-end}

.page-hero-art{
  position:absolute;
  right:-64px;
  top:-30px;
  width:min(560px, 45vw);
  height:auto;
  opacity:.95;
  pointer-events:none;
  filter:drop-shadow(0 12px 40px rgba(0,0,0,.15));
}
@media (max-width: 720px){
  .page-hero-art{right:-110px; top:-10px; width:82vw; opacity:.65}
}

.page-hero .container{position:relative; z-index:1}
.page-hero-art{z-index:0}

/* Floating checkout button (Order To Go / Delivery) */
/* Careers: role cards */
#open-roles .card{display:flex; flex-direction:column; height:100%}
.role-card-head{margin-bottom:10px}
.role-card-head-left{min-width:0}
.role-card-head-left h3{margin:0}
.role-card-head-left .kicker{margin-bottom:8px}
.role-card-cta{display:flex; justify-content:center; margin-top:auto; padding-top:14px}

/* Contact */
.contact-aside .contact-loc-meta{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:12px;
}
@media (max-width:720px){
  .contact-aside .contact-loc-meta{grid-template-columns:1fr}
}
.contact-aside .contact-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  font-weight:900;
  color:var(--black);
  text-decoration:none;
}
.contact-aside .contact-phone:hover{opacity:.9}
.contact-aside .hours-box{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  font-weight:700;
  color:var(--black);
}


/* Scrollbars */
:root{
  --scrollbar-track:#ffffff;
  --scrollbar-thumb:var(--yellow);
  --scrollbar-thumb2:var(--yellow-2);
}
*{
  scrollbar-width:thin;
  scrollbar-color:var(--scrollbar-thumb) var(--scrollbar-track);
}
*::-webkit-scrollbar{width:12px;height:12px}
*::-webkit-scrollbar-track{
  background:var(--scrollbar-track);
  border-radius:999px;
}
*::-webkit-scrollbar-thumb{
  border-radius:999px;
  border:2px solid var(--scrollbar-track);
  background-image:linear-gradient(
    180deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.95) 10%,
    var(--scrollbar-thumb) 35%,
    var(--scrollbar-thumb2) 100%
  );
}
*::-webkit-scrollbar-thumb:hover{
  background-image:linear-gradient(
    180deg,
    rgba(255,255,255,.85) 0%,
    rgba(255,255,255,.85) 8%,
    var(--scrollbar-thumb) 30%,
    var(--scrollbar-thumb2) 100%
  );
}

/* Mobile: keep Order modal options side-by-side (do not stack) */
@media (max-width: 900px){
  #orderModal .grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
  #orderModal .grid{gap:12px}
  #orderModal .modal-body{padding:14px}
  #orderModal .card{padding:14px}
  #orderModal .btn{width:100%}
}

/* Back to Portfolio (fixed, bottom-right, gold) */
.back-portfolio{
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.05rem;
  border-radius: 999px;

  background:
    radial-gradient(180px 60px at 20% 20%, rgba(255,255,255,.45), transparent 65%),
    linear-gradient(135deg, rgba(245,158,11,.98), rgba(217,119,6,.95));
  color: #111827;
  border: 1px solid rgba(245, 158, 11, 0.55);

  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  user-select: none;
}
.back-portfolio:hover{ filter: brightness(1.06); }
.back-portfolio:active{ transform: translateY(1px); }
.back-portfolio:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.28), 0 18px 40px rgba(0,0,0,.18);
}
.back-portfolio .arrow{ font-weight: 900; }

@media (max-width: 520px){
  .back-portfolio{ padding: .78rem .92rem; font-size: .95rem; }
}

/* --- Responsive optimization & overflow safety (requested breakpoints) --- */
.grid > *{min-width:0}
.header-inner, .header-right, .nav, .header-actions{min-width:0}
.menu-card-top > *{min-width:0}
.menu-card-title, .card h3, .card h2, .card h1, .menu-card-desc, .hero-box, .footer-title, .brand-name, .brand-tag{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.menu-card-title{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.drawer-actions{
  display:none;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0 12px;
  border-bottom:1px solid var(--border);
  margin-bottom:10px;
}
.drawer-actions .icon-btn{
  width:100%;
  justify-content:flex-start;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
}
.drawer-actions .cart-badge{flex:1}
.drawer-actions .cart-badge > .icon-btn{width:100%}
.drawer-actions .cart-badge > [data-cart-count]{right:12px; top:10px}

/* 1440px */
@media (max-width: 1440px){
  :root{ --max:1120px; }
}

/* 1280px */
@media (max-width: 1280px){
  :root{ --max:1080px; }
  .hero-carousel{min-height:760px}
}

/* 1024px */
@media (max-width: 1024px){
  :root{ --max:980px; }
  .grid-4{grid-template-columns:repeat(3, minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2, minmax(0,1fr))}
  h1{font-size:56px}
}

/* 768px */
@media (max-width: 768px){
  .container{width:min(var(--max), calc(100% - 32px))}
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2, minmax(0,1fr))}
  .hero-carousel{min-height:680px}
  h1{font-size:46px}
  .brand-tag{display:none}
}

/* 430px */
@media (max-width: 430px){
  .container{width:calc(100% - 28px)}
  .grid-4,.grid-3,.grid-2{grid-template-columns:1fr}
  .menu-card-media{height:130px}
  h1{font-size:38px}
  .header-actions{display:flex}
  .drawer-actions{display:flex}
  .header-menu-btn{width:min(240px, 100%)}
}

/* 390px */
@media (max-width: 390px){
  .container{width:calc(100% - 24px)}
  h1{font-size:36px}
  .hero-box{padding:18px}
}

/* 360px */
@media (max-width: 360px){
  .container{width:calc(100% - 20px)}
  h1{font-size:34px}
  .btn{padding:11px 14px}
}


/* ------------------------------- Checkout page ------------------------------ */

.checkout-wrap { width: min(1100px, 100%); margin-inline: auto; }
.checkout-grid { display: grid; grid-template-columns: minmax(360px, 480px) minmax(0, 1fr); gap: 18px; align-items: start; }
.checkout-card { overflow: hidden; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.card-title { margin: 0; min-width: 0; }

.checkout-items { display: grid; gap: 12px; padding-top: 10px; }
.checkout-item { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; min-width: 0; }
.checkout-item-main { min-width: 0; }
.checkout-item-title { font-weight: 700; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.checkout-item-meta { color: var(--muted); font-size: 0.92rem; overflow-wrap: anywhere; word-break: break-word; }
.checkout-item-price { font-weight: 700; white-space: nowrap; }

.checkout-totals { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 8px; }
.total-strong { font-size: 1.05rem; }

.form { display: grid; gap: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label { font-weight: 600; }
.field input, .field textarea { width: 100%; min-width: 0; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

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

@media (max-width: 430px) {
  .field-row { grid-template-columns: 1fr; }
  .checkout-item { grid-template-columns: 1fr; }
  .checkout-item-title { white-space: normal; overflow: visible; }
}


.mode-panel{border:1px solid var(--line);border-radius:14px;padding:12px 14px;margin:10px 0 14px;min-width:0;}
.mode-panel-title{font-weight:800;line-height:1.2;}
.mode-panel-meta{color:var(--muted);margin-top:4px;overflow-wrap:anywhere;word-break:break-word;}


/* Checkout page */
.checkout-page .simple-hero{min-height:420px}
@media (max-width: 720px){
  .checkout-page .simple-hero{min-height:380px}
}



/* Checkout helpers */
.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;
}
.hint{ margin-top:6px; font-size:12px; line-height:1.3; }



/* Checkout details: premium form styling (no color changes) */
.checkout-card .mode-panel{
  margin: 10px 0 16px 0;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17,17,17,.02);
}
.checkout-card .mode-panel-title{
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 4px;
}
.checkout-card .mode-panel-meta{
  font-size: 14px;
  line-height: 1.35;
}

.checkout-card .form{
  display: grid;
  gap: 14px;
}

.checkout-card .field label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 6px;
}

.checkout-card .field input,
.checkout-card .field select,
.checkout-card .field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(17,17,17,.04);
  transition: box-shadow .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
  min-width: 0;
  max-width: 100%;
}

.checkout-card .field textarea{resize: vertical; min-height: 96px}

.checkout-card .field input:focus,
.checkout-card .field select:focus,
.checkout-card .field textarea:focus{
  outline: none;
  border-color: rgba(255,90,31,.55);
  box-shadow: 0 0 0 4px rgba(255,90,31,.16), inset 0 1px 0 rgba(17,17,17,.04);
}

.checkout-card .field-row{
  gap: 12px;
}

.checkout-card .hint{
  margin: 8px 0 0 0;
  font-size: 13px;
}

.checkout-card .form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

@media (max-width: 768px){
  .checkout-card .mode-panel{ padding: 12px; border-radius: 14px; }
  .checkout-card .field input,
  .checkout-card .field select,
  .checkout-card .field textarea{ border-radius: 12px; }
}


/* Hide native number input spinners (cart quantity) */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}


/* Responsive account placement: header > 430px, drawer <= 430px */
@media (max-width: 430px) {
  .account-header { display: none !important; }
}
@media (min-width: 431px) {
  .drawer .account-sidebar { display: none !important; }
}


/* Account page */
.hero-box--compact { padding-block: 22px; }
.account-layout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.account-card, .rewards-card{ overflow:hidden; }
.account-tabs{
  display:flex;
  gap:10px;
  padding: 14px 14px 0;
}
.account-tabs .pill{
  flex:1;
  min-width:0;
  justify-content:center;
}
.account-form{
  padding: 14px;
}
.rewards-card .card-head{
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.rewards-list{
  margin: 0;
  padding: 0 16px 6px;
  list-style: none;
  display:grid;
  gap:10px;
}
.rewards-list li{
  line-height: 1.3;
}
.field-inline{
  display:flex;
  align-items:center;
  gap:10px;
}
.field-inline input[type="checkbox"]{
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px){
  .account-layout{ grid-template-columns: 1fr; }
}

.pad{ padding: 14px; }

/* Ensure native hidden works even if other styles override */
[hidden]{ display:none !important; }

.checkout-grid--single{ grid-template-columns: 1fr !important; }


/* Account tabs active state */
.account-tabs .pill.is-active{
  background: var(--yellow);
  border-color: var(--yellow);
  color: #fff;
}

/* Checkout layout: keep Order Summary + Sign in stacked on the left, Details on the right */
.checkout-left{ display:grid; gap:18px; align-content:start; }
.checkout-grid{ align-items:start; }
.checkout-grid > .checkout-left{ grid-column: 1; }
.checkout-grid > [aria-label="Customer details"]{ grid-column: 2; }
@media (max-width: 900px){
  .checkout-grid > .checkout-left,
  .checkout-grid > [aria-label="Customer details"]{ grid-column: auto; }
}

/* Center checkout callouts on Pickup/Delivery pages */
.cta-card{
  text-align: center;
}
.cta-card .btn{
  margin-inline: auto;
}
.cta-card p{
  max-width: 52ch;
  margin-inline: auto;
}


/* iOS Safari: prevent auto-detected links (phone/email/etc) from turning blue */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active,
a[x-apple-data-detectors]:visited,
a[href^="tel"],
a[href^="sms"],
a[href^="mailto"]{
  color: inherit !important;
  text-decoration: inherit !important;
  font: inherit !important;
}


/* Prevent iOS default link coloring on pill/chip category buttons */
.pill, .pill:link, .pill:visited, .pill:hover, .pill:active,
.chip, .chip:link, .chip:visited, .chip:hover, .chip:active,
.chip-row a, .chip-row a:link, .chip-row a:visited, .chip-row a:hover, .chip-row a:active{
  color: var(--text);
  text-decoration: none;
  -webkit-text-fill-color: var(--text);
}
.pill.is-active, .pill.is-active:link, .pill.is-active:visited,
.chip.is-active, .chip.is-active:link, .chip.is-active:visited{
  color: #fff;
  -webkit-text-fill-color: #fff;
}


/* Selected category text should be white (Menu / Order To Go / Delivery) */
.chip[aria-pressed="true"]{
  color:#fff;
  -webkit-text-fill-color:#fff; /* iOS Safari */
}

/* Order To Go + Delivery: price button pill bottom-right */
.menu-card-actions .btn.btn-primary{
  border-radius:999px;
  padding-inline:14px;
}


/* Order To Go + Delivery price button: force match (orange background, white text) */
.menu-card-actions .btn.btn-primary{
  background: var(--yellow);
  border-color: var(--yellow);
  color: #fff;
  -webkit-text-fill-color: #fff; /* iOS Safari */
}


/* Force Order To Go + Delivery price button to match Delivery styling */
.menu-card-actions button[data-add]{
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important; /* iOS Safari */
  border-radius: 999px !important;
}

/* Price pill */
.price-pill{
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important; /* iOS Safari */
  border-radius: 999px !important;
  text-decoration: none !important;
}
