:root {
  --red: #d7261e;
  --red-dark: #a8140e;
  --mustard: #ffc53d;
  --mustard-dark: #e9a800;
  --cream: #fff6e6;
  --paper: #fffdf8;
  --ink: #1f1410;
  --muted: #6d5c52;
  --line: #efdcc4;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(80, 20, 10, 0.12);
  --display: 'Bowlby One', 'Arial Black', Impact, sans-serif;
  --body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script: 'Pacifico', 'Brush Script MT', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.05; margin: 0 0 .5em; }
h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; color: var(--red); margin-bottom: .6em; }
.script { font-family: var(--script); font-weight: 400; color: var(--mustard); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.4em; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 0 var(--red-dark); }
.btn-primary:hover { box-shadow: 0 6px 0 var(--red-dark); }
.btn-primary:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-light { background: #fff; color: var(--ink); }

.btn-block { width: 100%; }

/* Top bar + header */
.topbar { background: var(--ink); color: #fff; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .45em 0; }
.topbar-phone { font-weight: 800; text-decoration: none; }
.status { display: inline-flex; align-items: center; gap: .5em; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #888; }
.status.is-open .dot { background: #3ddc6b; box-shadow: 0 0 0 0 rgba(61, 220, 107, .7); animation: pulse 2s infinite; }
.status.is-closed .dot { background: #ff6b5e; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(61, 220, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 107, 0); } }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 246, 230, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 10px 0; }
.logo {
  display: inline-flex; flex-direction: column; align-items: center; text-decoration: none;
  background: var(--red); color: #fff; padding: 6px 14px 7px; border-radius: 12px; line-height: 1;
  transform: rotate(-3deg); box-shadow: 0 3px 0 var(--red-dark);
}
.logo-small { font-family: var(--script); font-size: .8rem; }
.logo-big { font-family: var(--display); font-size: 1.55rem; letter-spacing: .04em; }
.logo-sub { font-size: .55rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; color: var(--mustard); margin-top: 2px; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: var(--mustard); transform: scaleX(0); transition: transform .2s; border-radius: 3px; }
.nav a:hover::after { transform: scaleX(1); }
.cart-btn {
  display: inline-flex; align-items: center; gap: .5em; border: 0; background: var(--ink); color: #fff;
  padding: .6em 1em; border-radius: 999px; font-weight: 800;
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-count { background: var(--mustard); color: var(--ink); min-width: 1.6em; height: 1.6em; border-radius: 999px; display: grid; place-items: center; font-size: .8rem; }
.cart-count.bump { animation: bump .35s; }
@keyframes bump { 50% { transform: scale(1.35); } }

/* Hero */
.hero { overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: 64px 0 56px; }
.hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.7rem, 7vw, 5.2rem); letter-spacing: -.02em; }
.hl { color: var(--red); position: relative; white-space: nowrap; }
.hl::after { content: ''; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .28em; background: var(--mustard); z-index: -1; border-radius: 4px; transform: rotate(-1deg); }
.lead { font-size: 1.15rem; max-width: 36em; color: #43342c; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 32px; }
.hero-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; color: var(--muted); font-size: .9rem; }
.hero-facts strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.5rem; color: var(--ink); }
.hero-art { position: relative; display: grid; place-items: center; min-height: 360px; }
.fries { width: min(340px, 80%); position: relative; z-index: 2; filter: drop-shadow(0 18px 24px rgba(120, 30, 10, .25)); animation: bob 5s ease-in-out infinite; }
.fries .sticks rect { fill: var(--mustard); stroke: var(--mustard-dark); stroke-width: 3; }
.fries .bag { fill: var(--red); }
.fries .bag-stripe { fill: #fff; }
.fries .bag-text { font-family: var(--display); font-size: 38px; fill: #fff; letter-spacing: 2px; }
@keyframes bob { 50% { transform: translateY(-10px) rotate(1.5deg); } }
.blob { position: absolute; border-radius: 50%; z-index: 1; }
.blob-1 { width: 330px; height: 330px; background: var(--mustard); opacity: .55; }
.blob-2 { width: 120px; height: 120px; background: var(--red); opacity: .12; right: 6%; bottom: 4%; }
.sticker {
  position: absolute; z-index: 3; top: 6%; right: 4%; width: 118px; height: 118px; border-radius: 50%;
  background: var(--ink); color: var(--mustard); display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-size: .9rem; line-height: 1.05; transform: rotate(12deg);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--ink);
}

/* Marquee */
.marquee { background: var(--red); color: #fff; overflow: hidden; transform: rotate(-1.2deg); margin: 0 -10px; border-block: 3px solid var(--ink); }
.marquee-track { display: flex; width: max-content; animation: scroll 28s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.3rem; padding: .55em 1.2em; white-space: nowrap; }
.marquee span::after { content: '✺'; margin-left: 2.4rem; color: var(--mustard); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 72px 0 24px; }
.step { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 24px; box-shadow: 5px 5px 0 var(--ink); }
.step p { color: var(--muted); margin: 0; }
.step-n { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--mustard); font-family: var(--display); margin-bottom: 12px; }

/* Menu */
.menu-section { padding: 64px 0 80px; }
.section-head { margin-bottom: 20px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tab { flex: none; border: 2px solid var(--ink); background: transparent; border-radius: 999px; padding: .5em 1.1em; font-weight: 800; }
.tab[aria-selected='true'] { background: var(--ink); color: #fff; }
.menu-cat { display: none; }
.menu-cat.active { display: block; animation: fade .25s; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } }
.menu-cat-tagline { color: var(--muted); margin-bottom: 18px; }
.items { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow .2s, border-color .2s; }
.item:hover { box-shadow: var(--shadow); border-color: transparent; }
.item-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.item-name { font-weight: 800; font-size: 1.05rem; }
.item-price { font-weight: 800; color: var(--red); white-space: nowrap; }
.item-desc { color: var(--muted); font-size: .9rem; margin: 0; }
.item-tag { align-self: flex-start; background: var(--mustard); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .2em .6em; border-radius: 6px; }
.item-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; align-items: center; }
.item-actions select { flex: 1; min-width: 0; padding: .55em .6em; border-radius: 10px; border: 1px solid var(--line); background: #fff; font: inherit; font-size: .9rem; }
.add-btn { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--red); color: #fff; font-size: 1.5rem; line-height: 1; display: grid; place-items: center; box-shadow: 0 3px 0 var(--red-dark); transition: transform .15s; }
.add-btn:hover { transform: scale(1.08); }
.add-btn.added { background: #1f9d4c; box-shadow: 0 3px 0 #13733a; }

/* Socials */
.socials { background: var(--red); color: #fff; padding: 88px 0; position: relative; overflow: hidden; }
.socials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255, 197, 61, .35), transparent 40%); }
.socials-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.socials .eyebrow { color: var(--mustard); }
.socials p { color: #ffe9e4; font-size: 1.08rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.phones { display: flex; justify-content: center; gap: 0; height: 380px; align-items: center; }
.phone { width: 170px; height: 330px; border-radius: 28px; background: var(--ink); padding: 8px; box-shadow: 0 25px 40px rgba(0, 0, 0, .35); flex: none; }
.phone-a { transform: rotate(-9deg) translateX(30px); }
.phone-b { transform: translateY(-18px); z-index: 2; }
.phone-c { transform: rotate(9deg) translateX(-30px); }
.screen { height: 100%; border-radius: 21px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 14px; }
.phone-a .screen { background: linear-gradient(160deg, #ffcf55, #f08a24); }
.phone-b .screen { background: linear-gradient(160deg, #2b1a14, #7a1d12); }
.phone-c .screen { background: linear-gradient(160deg, #ff7a5c, #b3140d); }
.screen::before { content: ''; position: absolute; top: 40%; left: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; background: rgba(255, 255, 255, .85); clip-path: polygon(38% 28%, 38% 72%, 74% 50%); }
.screen::after { content: ''; position: absolute; top: 40%; left: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .85); }
.cap { font-weight: 800; font-size: .82rem; line-height: 1.25; color: #fff; text-shadow: 0 1px 6px rgba(0, 0, 0, .4); position: relative; }
.bar { position: absolute; left: 14px; right: 14px; bottom: 8px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .35); }
.bar::after { content: ''; position: absolute; inset: 0; width: 40%; background: #fff; border-radius: 3px; animation: progress 6s linear infinite; }
@keyframes progress { from { width: 0; } to { width: 100%; } }

/* About */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; padding: 88px 0; align-items: stretch; }
.about-card { background: var(--paper); border-radius: var(--radius); padding: 36px; border: 1px solid var(--line); }
.about-card p:last-child { margin: 0; }
.about-quote { background: var(--mustard); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; justify-content: center; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.about-quote p { font-family: var(--script); font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.25; margin-bottom: .6em; }
.about-quote span { font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }

/* Visit */
.visit { background: var(--paper); border-top: 1px solid var(--line); padding: 80px 0; }
.visit-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.hours { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
.hours td { padding: .7em .9em; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.hours tr.today td { background: var(--mustard); font-weight: 800; border-bottom-color: transparent; }
.hours tr.today td:first-child { border-radius: 10px 0 0 10px; }
.hours tr.today td:last-child { border-radius: 0 10px 10px 0; }
.today-tag { font-size: .7rem; background: var(--ink); color: #fff; border-radius: 6px; padding: .15em .5em; margin-left: .5em; vertical-align: middle; text-transform: uppercase; letter-spacing: .06em; }
.visit-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 32px; }
.visit-card .eyebrow { color: var(--mustard); }
.visit-card h3 { font-family: var(--display); font-weight: 400; font-size: 1.8rem; }
.visit-card address { font-style: normal; font-size: 1.1rem; margin-bottom: 1em; }
.big-link { font-weight: 800; font-size: 1.4rem; text-decoration: none; color: var(--mustard); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.visit-card .btn-ghost { border-color: #fff; color: #fff; }

/* Footer */
.site-footer { background: var(--ink); color: #d9cbc2; padding: 18px 0; font-size: .85rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px 20px; }
.footer-inner p { margin: 0; }
.footer-contact { display: contents; }
.logo-footer { padding: 4px 10px 5px; }
.logo-footer .logo-big { font-size: 1.1rem; }
.logo-footer .logo-small { font-size: .65rem; }
.site-footer a { color: #fff; }
.small { font-size: .75rem; opacity: .7; }

/* Mobile bar */
.mobile-bar { display: none; }

/* Drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(31, 20, 16, .5); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 60; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100%); background: var(--cream); z-index: 61;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2, .8, .2, 1); display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
}
body.cart-open .drawer { transform: none; }
body.cart-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 1.6rem; margin: 0; }
.icon-btn { border: 0; background: transparent; font-size: 2rem; line-height: 1; width: 40px; height: 40px; border-radius: 50%; }
.icon-btn:hover { background: var(--line); }
.drawer-body { padding: 18px 20px 28px; overflow-y: auto; flex: 1; }
.cart-lines { list-style: none; margin: 0 0 12px; padding: 0; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.cart-line-name { font-weight: 800; }
.cart-line-sauce { color: var(--muted); font-size: .85rem; }
.cart-line-price { font-weight: 800; text-align: right; }
.qty { display: inline-flex; align-items: center; gap: 4px; grid-column: 1 / -1; }
.qty button { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; font-weight: 800; line-height: 1; }
.qty span { min-width: 26px; text-align: center; font-weight: 800; }
.cart-empty { color: var(--muted); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; padding: 10px 0 16px; }
.order-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.order-form input, .order-form select, .order-form textarea {
  display: block; width: 100%; margin-top: 4px; padding: .7em .8em; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; font: inherit; color: var(--ink);
}
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: 3px solid rgba(255, 197, 61, .6); border-color: var(--ink); }
.opt { color: var(--muted); font-weight: 400; }
.pay-note { font-size: .85rem; color: var(--muted); }
.form-error { color: var(--red-dark); font-weight: 600; min-height: 1em; }
.confirm { text-align: center; padding-top: 20px; }
.confirm-badge { display: inline-block; font-family: var(--display); font-size: 3rem; background: var(--mustard); border: 3px solid var(--ink); border-radius: 20px; padding: .1em .5em; transform: rotate(-4deg); margin-bottom: 18px; box-shadow: 5px 5px 0 var(--ink); }

:focus-visible { outline: 3px solid var(--mustard-dark); outline-offset: 2px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .cart-btn { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 36px; gap: 8px; }
  .hero-art { min-height: 300px; order: -1; }
  .blob-1 { width: 250px; height: 250px; }
  .fries { width: 230px; }
  .steps { grid-template-columns: 1fr; padding-top: 56px; }
  .socials-inner, .about, .visit-inner { grid-template-columns: 1fr; }
  .phones { height: 320px; transform: scale(.85); }
  .mobile-bar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 246, 230, .96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .site-footer { padding-bottom: 84px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-contact { display: flex; align-items: center; justify-content: center; gap: 8px; }
  .mobile-bar .btn { flex: 1; }
  .mobile-bar .btn-primary { flex: 2; }
}

@media (max-width: 480px) {
  .cart-label { display: none; }
  .hero-facts { gap: 10px 20px; }
  .about-card, .about-quote { padding: 26px; }
  .phone { width: 130px; height: 250px; }
  .phones { height: 280px; transform: none; }
  .phone-a { transform: rotate(-9deg) translateX(24px); }
  .phone-c { transform: rotate(9deg) translateX(-24px); }
  .cap { font-size: .7rem; }
  .sticker { width: 96px; height: 96px; font-size: .75rem; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.social-icon { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; transition: background .2s, color .2s; }
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover { background: var(--mustard); color: var(--ink); }
