/* ==========================================================================
   No. 1 TAQUITOS — 1 Talbot St E, Leamington ON
   A reviewer called the room "a little bit sad and dark". The food gets
   raves. So the site goes the other way: bright paper, saturated colour,
   heavy type, everything loud and quick — a street poster, not a brochure.
   Mobile-first. Palette confined to :root.
   ========================================================================== */

/* --------------------------------------------------------------- 1. TOKENS */

:root {
  --ink:      #16100D;
  --ink-2:    #3A2C24;
  --paper:    #FFF8EC;
  --paper-2:  #FFEFD6;

  --chili:    #E02B20;   /* fills, backgrounds, brand */
  --chili-t:  #CC2117;   /* the same red, as TEXT on cream (5.2:1) */
  --chili-d:  #B31E15;
  --marigold: #FFB020;
  --lime:     #86BC24;
  --agua:     #17A8BD;
  --rosa:     #E8368C;
  --maiz:     #F7D354;

  --ink-soft:  rgba(22, 16, 13, .68);
  --ink-faint: rgba(22, 16, 13, .14);
  --pap-soft:  rgba(255, 248, 236, .72);
  --pap-faint: rgba(255, 248, 236, .2);

  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --sans:    "Rubik", "Helvetica Neue", Arial, sans-serif;
  --mono:    "Space Mono", ui-monospace, Menlo, Consolas, monospace;

  --t-hero: clamp(2.1rem, 11vw, 9rem);
  --t-xxl:  clamp(2.1rem, 7vw, 4.6rem);
  --t-xl:   clamp(1.6rem, 4.2vw, 2.9rem);
  --t-lg:   clamp(1.2rem, 2.7vw, 1.6rem);
  --t-md:   clamp(1rem, 1.05vw, 1.08rem);
  --t-sm:   .92rem;
  --t-xs:   .7rem;

  --gut:  clamp(1.1rem, 4.5vw, 4rem);
  --band: clamp(3.2rem, 8vw, 6.5rem);
  --maxw: 1320px;
  --text: 980px;

  --ease:  cubic-bezier(.22, 1, .36, 1);
  --pop:   cubic-bezier(.34, 1.56, .64, 1);
  --swift: cubic-bezier(.4, 0, .2, 1);
  --nav-h: 62px;
}

/* ---------------------------------------------------------- 2. FOUNDATION */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-md);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--chili); outline-offset: 3px; }

.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.shell--text { max-width: var(--text); }

.skip { position: absolute; left: -9999px; background: var(--ink); color: var(--paper); padding: .8rem 1.2rem; z-index: 999; }
.skip:focus { left: .5rem; top: .5rem; }

/* ----------------------------------------------------- 3. TYPE UTILITIES */

.kicker {
  font-family: var(--mono); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 .9rem; color: var(--chili-t);
  display: inline-flex; align-items: center; gap: .5rem;
}
.kicker::before { content: "◆"; font-size: .6em; }
.ink .kicker, .phero .kicker, .foot .kicker { color: var(--marigold); }
.chili-bg .kicker { color: #fff; }
.maiz-bg .kicker, .lime-bg .kicker { color: var(--ink); }
.agua-bg .kicker { color: #fff; }

.lede { font-size: clamp(1.05rem, 1.9vw, 1.28rem); line-height: 1.55; max-width: 46ch; }
.price { font-family: var(--mono); font-weight: 700; font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* the number is the brand — use it big */
.no1 { font-family: var(--display); letter-spacing: -.05em; }
.no1 sup { font-size: .44em; vertical-align: super; letter-spacing: 0; }

/* rotated sticker, used on badges and price tags */
.sticker {
  display: inline-block; padding: .3rem .7rem;
  background: var(--marigold); color: var(--ink);
  font-family: var(--mono); font-weight: 700; font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase;
  transform: rotate(-3deg); box-shadow: 3px 3px 0 var(--ink);
}
.sticker--chili { background: var(--chili); color: #fff; }
.sticker--lime  { background: var(--lime); }
.sticker--agua  { background: var(--agua); color: #fff; }
.sticker--rosa  { background: var(--rosa); color: #fff; }

/* ------------------------------------------------------------ 4. SURFACES */

.band { padding-block: var(--band); position: relative; }
.band--tight { padding-block: clamp(2.2rem, 5.5vw, 3.8rem); }

.ink      { background: var(--ink);      color: var(--paper); }
.paper    { background: var(--paper);    color: var(--ink); }
.paper2   { background: var(--paper-2);  color: var(--ink); }
.chili-bg { background: var(--chili);    color: #fff; }
.lime-bg  { background: var(--lime);     color: var(--ink); }
.agua-bg  { background: var(--agua);     color: #fff; }
.maiz-bg  { background: var(--maiz);     color: var(--ink); }

/* ------------------------------------------------------------- 5. BUTTONS */

.btn {
  --bg: var(--chili); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; min-height: 54px; padding: .85rem 1.7rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-weight: 700; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .16s var(--pop), box-shadow .16s var(--pop);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
/* the ink drop-shadow is invisible against an ink section */
.ink .btn, .phero .btn, .foot .btn { box-shadow: 4px 4px 0 rgba(255,248,236,.24); }
.ink .btn:hover, .phero .btn:hover, .foot .btn:hover { box-shadow: 6px 6px 0 rgba(255,248,236,.3); }
.ink .btn:active, .phero .btn:active, .foot .btn:active { box-shadow: 1px 1px 0 rgba(255,248,236,.24); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn[disabled] { opacity: .4; pointer-events: none; }

.btn--ink   { --bg: var(--ink);      --fg: var(--paper); }
.btn--maiz  { --bg: var(--marigold); --fg: var(--ink); }
.btn--lime  { --bg: var(--lime);     --fg: var(--ink); }
.btn--paper { --bg: var(--paper);    --fg: var(--ink); }
.btn--line  { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 3px currentColor; }
.btn--line:hover { transform: translate(-2px,-2px); box-shadow: inset 0 0 0 3px currentColor; background: var(--ink); color: var(--paper); }
.ink .btn--line:hover, .chili-bg .btn--line:hover { background: var(--paper); color: var(--ink); }
.btn--block { display: flex; width: 100%; }
.btn--sm { min-height: 40px; padding: .5rem 1rem; font-size: .74rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--lg { min-height: 62px; padding: 1rem 2.1rem; font-size: 1rem; }

.tlink {
  font-weight: 700; font-size: .84rem; letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .45rem;
  padding-bottom: .2rem; box-shadow: inset 0 -4px 0 var(--marigold);
  transition: gap .3s var(--ease), box-shadow .3s var(--ease);
}
.tlink:hover { gap: .9rem; box-shadow: inset 0 -12px 0 var(--marigold); }

/* --------------------------------------------------------------- 6. TAPE */

/* a serrated colour strip, the papel-picado idea done as a flat zigzag */
.tape { height: 14px; display: flex; }
.tape span { flex: 1; }
.tape span:nth-child(1) { background: var(--chili); }
.tape span:nth-child(2) { background: var(--marigold); }
.tape span:nth-child(3) { background: var(--lime); }
.tape span:nth-child(4) { background: var(--agua); }
.tape span:nth-child(5) { background: var(--rosa); }

/* ------------------------------------------------------------ 7. MARQUEE */

.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding-block: .7rem; white-space: nowrap;
  border-block: 4px solid var(--marigold);
}
.marquee__in { display: inline-flex; gap: 2.4rem; animation: roll 26s linear infinite; }
.marquee span {
  font-family: var(--display); font-size: clamp(.95rem, 2.4vw, 1.4rem);
  letter-spacing: -.01em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 2.4rem;
}
.marquee span::after { content: "★"; color: var(--marigold); font-size: .7em; }
@keyframes roll { to { transform: translateX(-50%); } }
.marquee:hover .marquee__in { animation-play-state: paused; }

/* ------------------------------------------------------------------ 8. NAV */

.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav-h); z-index: 120;
  display: flex; align-items: center;
  background: var(--paper); color: var(--ink);
  border-bottom: 3px solid var(--ink);
  transition: box-shadow .3s var(--swift);
}
.nav.is-stuck { box-shadow: 0 4px 0 rgba(22,16,13,.12); }
.nav__in { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); display: flex; align-items: center; justify-content: space-between; gap: .7rem; }

.brand { display: flex; align-items: center; flex: none; }

/* Their logo, two cuts of the same artwork: the colour one for cream
   surfaces, a cream one for the ink footer and the red drawer, where red
   on red is invisible and red on near-black is muddy. */
.logo { width: auto; height: 38px; }
.logo--cream { display: none; }
.ink .logo--ink, .foot .logo--ink, .drawer .logo--ink, .phero .logo--ink { display: none; }
.ink .logo--cream, .foot .logo--cream, .drawer .logo--cream, .phero .logo--cream { display: block; }

.nav__links { display: none; }
.nav__cta { display: flex; align-items: center; gap: .4rem; }

.langsw { display: flex; border: 2px solid currentColor; }
.langsw button {
  padding: .34rem .55rem; font-family: var(--mono); font-weight: 700; font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s;
}
.langsw button.is-on { background: var(--marigold); color: var(--ink); }

.burger { width: 44px; height: 44px; display: grid; place-items: center; margin-right: -10px; }
.burger span { display: block; width: 24px; height: 3px; background: currentColor; position: relative; transition: transform .35s var(--ease), background .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 3px; background: currentColor; transition: transform .35s var(--ease), opacity .2s; }
.burger span::before { top: -8px; }
.burger span::after  { top: 8px; }
body.menu-open .burger span { transform: rotate(45deg); background: var(--paper); }
body.menu-open .burger span::before { transform: translateY(8px) rotate(-90deg); }
body.menu-open .burger span::after  { opacity: 0; }

.drawer {
  position: fixed; inset: 0; z-index: 110; background: var(--chili); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 1.4rem) var(--gut) 1.4rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer__link {
  display: flex; align-items: baseline; gap: .8rem; padding-block: .35rem;
  font-family: var(--display); font-size: clamp(2.2rem, 11vw, 4rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -.03em;
  opacity: 0; transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .2s;
}
body.menu-open .drawer__link { opacity: 1; transform: none; }
body.menu-open .drawer__link:nth-child(1) { transition-delay: .06s; }
body.menu-open .drawer__link:nth-child(2) { transition-delay: .12s; }
body.menu-open .drawer__link:nth-child(3) { transition-delay: .18s; }
.drawer__link:hover, .drawer__link[aria-current="page"] { color: var(--marigold); }
.drawer__link i { font-family: var(--mono); font-style: normal; font-size: .8rem; opacity: .6; }
.drawer__foot { margin-top: 1.8rem; padding-top: 1.1rem; border-top: 3px solid var(--marigold); display: grid; gap: .2rem; font-family: var(--mono); font-size: var(--t-xs); font-weight: 700; letter-spacing: .06em; }

/* --------------------------------------------------------------- 9. FRAMES */

.frame { position: relative; overflow: hidden; background: var(--ink-2) center/cover no-repeat; margin: 0; }
.frame img, .gcell img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s var(--ease), transform .9s var(--ease);
}
.frame img.ready, .gcell img.ready { opacity: 1; }
.frame--zoom:hover img { transform: scale(1.07); }
.frame--edge { border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }

.ratio-1-1 { aspect-ratio: 1/1; } .ratio-4-5 { aspect-ratio: 4/5; }
.ratio-3-4 { aspect-ratio: 3/4; } .ratio-4-3 { aspect-ratio: 4/3; }
.ratio-3-2 { aspect-ratio: 3/2; } .ratio-16-9 { aspect-ratio: 16/9; }

/* ----------------------------------------------------------------- 10. HERO */

.hero { position: relative; background: var(--chili); color: #fff; padding-top: var(--nav-h); overflow: hidden; }
.hero__in { position: relative; z-index: 2; padding-block: clamp(2.4rem, 7vw, 4.6rem) clamp(2rem, 5vw, 3.4rem); }
.hero__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
/* min-width:auto lets a long word stretch its column past the container and
   push the whole row sideways. This is the guard against that. */
.hero__grid > *, .split > * { min-width: 0; }
.hero h1, .head h2, .phero h1 { overflow-wrap: break-word; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: var(--marigold);
  padding: .45rem .9rem; margin-bottom: 1.1rem;
  font-family: var(--mono); font-weight: 700; font-size: var(--t-xs);
  letter-spacing: .14em; text-transform: uppercase;
  transform: rotate(-1.5deg);
}
.hero h1 { font-size: var(--t-hero); text-transform: uppercase; margin-bottom: .5rem; }
.hero h1 em { font-style: normal; display: block; color: var(--marigold); }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 500; max-width: 30ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

.hero__art { position: relative; }
.hero__art .frame { border: 4px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); }
.hero__tag {
  position: absolute; right: -.4rem; top: -1rem; z-index: 3;
  background: var(--marigold); color: var(--ink);
  padding: .7rem .95rem; transform: rotate(6deg);
  font-family: var(--display); font-size: 1.05rem; line-height: 1;
  text-align: center; box-shadow: 4px 4px 0 var(--ink);
}
.hero__tag b { display: block; font-size: 1.8rem; }

.status {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: #fff; border: 2px solid transparent; padding: .4rem .8rem;
  font-family: var(--mono); font-weight: 700; font-size: var(--t-xs);
  letter-spacing: .1em; text-transform: uppercase;
}
.status b { font-weight: 700; color: var(--marigold); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chili); flex: none; animation: pulse 1.8s ease-in-out infinite; }
.dot--on { background: #58D68D; }
/* an ink pill on an ink page is just floating text — give it an edge */
.phero .status, .ink .status { background: rgba(255,248,236,.1); border-color: rgba(255,248,236,.26); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* page hero for the inner pages */
.phero { background: var(--ink); color: var(--paper); padding: calc(var(--nav-h) + clamp(2rem,6vw,3.6rem)) 0 clamp(1.8rem,5vw,3rem); position: relative; overflow: hidden; }
.phero h1 { font-size: var(--t-xxl); text-transform: uppercase; margin-bottom: .7rem; }
.phero h1 em { font-style: normal; color: var(--marigold); }

/* --------------------------------------------------------------- 11. STATS */

.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 3px solid var(--ink); }
.stat { padding: clamp(1.2rem,3.5vw,2rem) clamp(.9rem,2.5vw,1.6rem); border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.stat__n { font-family: var(--display); font-size: clamp(2.2rem,7vw,3.6rem); line-height: .9; letter-spacing: -.04em; margin-bottom: .35rem; }
.stat__l { font-family: var(--mono); font-weight: 700; font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; line-height: 1.5; opacity: .7; }

/* --------------------------------------------------------- 12. SECTION HEAD */

.head { margin-bottom: clamp(1.7rem, 4vw, 2.8rem); }
.head h2 { font-size: var(--t-xxl); text-transform: uppercase; margin-bottom: .7rem; }
.head h2 em { font-style: normal; color: var(--chili-t); }
.ink .head h2 em { color: var(--marigold); }
.head p { max-width: 50ch; opacity: .8; }
.head--split { display: grid; gap: 1rem; }
.head--split .head__aside { align-self: end; }

/* ---------------------------------------------------------- 13. MEAT CARDS */

.meats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.meat {
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink); padding: 1rem .9rem;
  display: flex; flex-direction: column; gap: .3rem;
  transition: transform .18s var(--pop), box-shadow .18s var(--pop);
}
.meat:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.meat__n { font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: -.02em; }
.meat__d { font-size: .82rem; color: var(--ink-2); line-height: 1.4; }
.meat__p { font-family: var(--mono); font-weight: 700; font-size: .9rem; color: var(--chili-t); margin-top: auto; padding-top: .4rem; }
.meat--star { background: var(--marigold); color: var(--ink); }
.meat--star .meat__p { color: var(--ink); }

/* ------------------------------------------------------------- 14. STEPS */

.steps { display: grid; gap: 1rem; counter-reset: s; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step__n {
  width: 52px; height: 52px; flex: none; display: grid; place-items: center;
  background: var(--ink); color: var(--marigold);
  font-family: var(--display); font-size: 1.5rem; border-radius: 50%;
}
.step h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: .3rem; }
.step p { font-size: var(--t-sm); opacity: .78; }

/* ----------------------------------------------------------- 15. REVIEWS */

.score {
  display: grid; gap: .9rem; padding: clamp(1.2rem,3.5vw,2rem);
  background: var(--marigold); color: var(--ink);
  border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); margin-bottom: 2rem;
}
.score__n { font-family: var(--display); font-size: clamp(3rem,12vw,5rem); line-height: .84; letter-spacing: -.05em; }
.score__meta { font-weight: 600; font-size: .9rem; line-height: 1.5; }
.stars { display: flex; gap: .12rem; }
.stars svg { width: 19px; height: 19px; fill: currentColor; }

.revs { display: grid; gap: .8rem; }
.rev {
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink); padding: 1.1rem 1rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.rev:nth-child(3n+1) { background: var(--paper); }
.rev:nth-child(3n+2) { background: var(--paper-2); }
.rev:nth-child(3n)   { background: #F2FBE3; }
.rev__stars { display: flex; gap: .1rem; color: var(--chili); }
.rev__stars svg { width: 14px; height: 14px; fill: currentColor; }
.rev__t { font-size: 1.02rem; line-height: 1.5; font-weight: 500; flex: 1; }
.rev__by { font-family: var(--mono); font-weight: 700; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }

/* ========================================================= 16. MENU PAGE */

.cats { position: sticky; top: var(--nav-h); z-index: 60; background: var(--ink); color: var(--paper); border-bottom: 4px solid var(--marigold); }
.cats__scroll { display: flex; gap: 1.2rem; overflow-x: auto; overscroll-behavior-x: contain; overscroll-behavior-y: none; padding: .75rem var(--gut); scrollbar-width: none; }
.cats__scroll::-webkit-scrollbar { display: none; }
.cat { flex: none; padding-bottom: .2rem; font-family: var(--display); font-size: .86rem; text-transform: uppercase; letter-spacing: -.01em; white-space: nowrap; opacity: .5; border-bottom: 3px solid transparent; transition: opacity .2s, border-color .2s; }
.cat.is-on { opacity: 1; border-bottom-color: var(--marigold); }

.mgroup { padding-top: clamp(1.9rem,5vw,3.2rem); scroll-margin-top: calc(var(--nav-h) + 56px); }
.mgroup__head { margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 4px solid var(--ink); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; }
.mgroup--chili    .mgroup__head { border-bottom-color: var(--chili); }
.mgroup--marigold .mgroup__head { border-bottom-color: var(--marigold); }
.mgroup--lime     .mgroup__head { border-bottom-color: var(--lime); }
.mgroup--agua     .mgroup__head { border-bottom-color: var(--agua); }
.mgroup--rosa     .mgroup__head { border-bottom-color: var(--rosa); }
.mgroup__head h2 { font-size: var(--t-xl); text-transform: uppercase; }
.mgroup__head p { font-family: var(--mono); font-weight: 700; font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; opacity: .6; }

.items { display: grid; gap: .6rem; }
.item {
  background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink); padding: .85rem .9rem;
  display: grid; grid-template-columns: 1fr auto; gap: .25rem .8rem; align-items: center;
  transition: transform .16s var(--pop), box-shadow .16s var(--pop), opacity .25s;
}
.item:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.item__name { font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: -.02em; line-height: 1.15; }
.item__note { grid-column: 1; font-size: .8rem; line-height: 1.4; opacity: .68; }
.item__price { grid-column: 1; font-family: var(--mono); font-weight: 700; font-size: .88rem; color: var(--chili-t); padding-top: .2rem; }
.item__side { grid-row: 1/4; grid-column: 2; display: flex; align-items: center; }
.item__tag { display: inline-block; margin-left: .4rem; vertical-align: middle; background: var(--marigold); color: var(--ink); font-family: var(--mono); font-weight: 700; font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; padding: .16rem .38rem; }
.item.sold-out { opacity: .42; }
.item.sold-out:hover { transform: none; box-shadow: none; }
.item.sold-out .item__side { display: none; }
.item__so { display: none; font-family: var(--mono); font-weight: 700; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; background: var(--ink); color: var(--paper); padding: .2rem .45rem; }
.item.sold-out .item__so { display: inline-block; grid-row: 1/4; grid-column: 2; align-self: center; }

.add { width: 44px; height: 44px; background: var(--ink); color: var(--marigold); display: grid; place-items: center; font-family: var(--display); font-size: 1.4rem; line-height: 1; transition: background .2s, transform .16s var(--pop); }
.add:hover { background: var(--chili); color: #fff; }
.add:active { transform: scale(.9); }
.add.pop { animation: popped .38s var(--pop); }
@keyframes popped { 0% { transform: scale(1); } 45% { transform: scale(1.25); background: var(--lime); } 100% { transform: scale(1); } }

.stepper { display: flex; align-items: center; background: var(--ink); color: var(--paper); }
.stepper button { width: 34px; height: 44px; display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem; transition: background .18s; }
.stepper button:hover { background: var(--chili); }
.stepper output { min-width: 26px; text-align: center; font-family: var(--mono); font-weight: 700; font-size: .82rem; font-variant-numeric: tabular-nums; color: var(--marigold); }

.mnote { background: var(--maiz); color: var(--ink); border: 3px solid var(--ink); padding: .9rem 1rem; margin-top: 1rem; font-size: .88rem; font-weight: 500; }

.cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--chili); color: #fff; border-top: 4px solid var(--ink);
  padding: .75rem var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(120%); transition: transform .45s var(--pop);
}
.cartbar.is-up { transform: none; }
.cartbar__l { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.cartbar__n { width: 30px; height: 30px; flex: none; display: grid; place-items: center; background: var(--marigold); color: var(--ink); font-family: var(--display); font-size: .88rem; }
.cartbar__n.bump { animation: bumped .4s var(--pop); }
@keyframes bumped { 0%,100% { transform: scale(1); } 40% { transform: scale(1.35); } }
.cartbar__t { font-weight: 700; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.scrim { position: fixed; inset: 0; z-index: 130; background: rgba(22,16,13,.72); opacity: 0; pointer-events: none; transition: opacity .3s var(--swift); }
.scrim.is-on { opacity: 1; pointer-events: auto; }

.checkout {
  position: fixed; z-index: 140; inset: auto 0 0 0; height: 94svh;
  display: flex; flex-direction: column; background: var(--paper); color: var(--ink);
  overflow: hidden; border-top: 5px solid var(--ink);
  transform: translateY(101%); transition: transform .48s var(--ease), background .4s var(--ease), color .3s var(--swift);
}
.checkout.is-open { transform: none; }
.checkout[data-room="2"] { background: var(--lime); color: var(--ink); }

.co__bar { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem var(--gut) .5rem; }
.co__step { font-family: var(--display); font-size: 1rem; text-transform: uppercase; letter-spacing: -.01em; }
.co__x { width: 42px; height: 42px; display: grid; place-items: center; border: 3px solid currentColor; font-family: var(--display); font-size: 1.1rem; transition: background .2s, color .2s; }
.co__x:hover { background: var(--chili); border-color: var(--chili); color: #fff; }

.rail { flex: none; display: flex; gap: 4px; padding: 0 var(--gut) .5rem; }
.rail span { height: 5px; flex: 1; background: currentColor; opacity: .18; transition: opacity .4s var(--swift); }
.rail span.on { opacity: 1; }

.rooms { flex: 1; display: flex; width: 300%; min-height: 0; transition: transform .55s var(--ease); }
.room { width: 33.3333%; flex: none; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: .8rem var(--gut) 1.4rem; display: flex; flex-direction: column; }
.room h2 { font-size: clamp(1.7rem,6vw,2.3rem); text-transform: uppercase; margin-bottom: 1rem; }

.lines { margin-bottom: 1.1rem; }
.line { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; padding-block: .8rem; border-bottom: 2px solid var(--ink-faint); align-items: center; }
.line__name { font-family: var(--display); font-size: .98rem; text-transform: uppercase; }
.line__p { font-family: var(--mono); font-weight: 700; font-size: .86rem; font-variant-numeric: tabular-nums; }
.line__c { grid-column: 1; }
.empty { padding: 3rem 0; text-align: center; font-family: var(--mono); font-weight: 700; font-size: var(--t-xs); letter-spacing: .16em; text-transform: uppercase; opacity: .4; }

.tally { margin-top: auto; padding-top: 1rem; }
.tally__r { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--mono); font-weight: 700; font-size: .82rem; font-variant-numeric: tabular-nums; padding-block: .26rem; opacity: .72; }
.tally__r--tot { opacity: 1; font-family: var(--display); font-size: 1.5rem; padding-top: .7rem; margin-top: .4rem; border-top: 3px solid currentColor; }

.tips { display: flex; gap: .35rem; margin: .8rem 0 1.1rem; }
.tip { flex: 1; padding: .68rem .3rem; border: 3px solid var(--ink); background: var(--paper); color: var(--ink); font-family: var(--display); font-size: .88rem; text-align: center; opacity: .45; transition: opacity .2s, background .2s, color .2s; }
.tip.is-on { opacity: 1; background: var(--ink); color: var(--marigold); }

.field { margin-bottom: .9rem; }
.field label { display: block; font-family: var(--mono); font-weight: 700; font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; opacity: .65; margin-bottom: .35rem; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: .8rem .85rem; border: 3px solid var(--ink); background: var(--paper); color: var(--ink); font-size: 1rem; transition: box-shadow .2s var(--swift); }
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; box-shadow: 4px 4px 0 var(--chili); }
.field input::placeholder, .field textarea::placeholder { opacity: .38; }

.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; margin-bottom: 1.1rem; }
.toggle button { padding: .95rem .5rem; border: 3px solid var(--ink); background: var(--paper); color: var(--ink); font-family: var(--display); font-size: .92rem; text-transform: uppercase; opacity: .45; transition: opacity .2s, background .2s, color .2s; }
.toggle button.is-on { opacity: 1; background: var(--marigold); color: var(--ink); }

.room__foot { margin-top: auto; padding-top: 1rem; }

.done { text-align: center; justify-content: center; }
.done__seal { width: 88px; height: 88px; margin: 0 auto 1.2rem; }
.done__seal circle { fill: var(--ink); }
.done__seal path { fill: none; stroke: var(--marigold); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; }
.checkout[data-room="2"] .done__seal path { animation: draw .5s var(--ease) .25s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done h2 { font-size: clamp(2rem,8vw,3rem); }
.done__sub { max-width: 30ch; margin-inline: auto; font-weight: 500; }
.ticket { margin: 1.4rem auto 0; max-width: 340px; width: 100%; border: 3px solid var(--ink); background: var(--paper); color: var(--ink); padding: 1rem 1.1rem; font-family: var(--mono); font-weight: 700; font-size: .8rem; text-align: left; }
.ticket div { display: flex; justify-content: space-between; gap: 1rem; padding-block: .32rem; }
.ticket div + div { border-top: 2px solid var(--ink-faint); }
.ticket b { color: var(--chili-t); }

.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 150; overflow: hidden; }
.confetti i { position: absolute; width: 9px; height: 15px; top: -22px; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(106vh) rotate(720deg); opacity: 0; } }

/* ======================================================== 17. VISIT PAGE */

.info { display: grid; border-top: 3px solid var(--ink); }
.info__c { padding: clamp(1.2rem,3vw,1.9rem); border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; gap: .9rem; }
.info__c h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: .35rem; }
.info__c p { font-size: var(--t-sm); opacity: .72; }
.info__v { font-family: var(--mono); font-weight: 700; font-size: 1rem; color: var(--chili-t); }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .7rem 0; border-bottom: 2px solid var(--ink-faint); font-weight: 600; font-size: 1rem; }
.ink .hours th, .ink .hours td { border-bottom-color: var(--pap-faint); }
.hours td { text-align: right; font-family: var(--mono); font-weight: 700; font-size: .86rem; font-variant-numeric: tabular-nums; }
.hours tr.now th, .hours tr.now td { color: var(--chili-t); }
/* chili on chili is invisible — today's row needs to change on red too */
.ink .hours tr.now th, .ink .hours tr.now td,
/* on red, no text colour clears 4.5:1 as a highlight — so today gets an
   ink band with marigold on it, which is 10.3:1 and looks deliberate */
.chili-bg .hours tr.now th, .chili-bg .hours tr.now td {
  background: var(--ink); color: var(--marigold);
}
.chili-bg .hours tr.now th { padding-left: .6rem; }
.chili-bg .hours tr.now td { padding-right: .6rem; }
.chili-bg .hours th, .chili-bg .hours td { border-bottom-color: rgba(255,248,236,.3); }
.hours tr.shut td { opacity: .45; }

.mapbox { position: relative; overflow: hidden; border: 3px solid var(--ink); background: var(--ink); aspect-ratio: 4/3; }
.mapbox svg { width: 100%; height: 100%; }
.pin { position: absolute; left: 26%; top: 47%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: var(--chili); border: 3px solid var(--paper); animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(224,43,32,.6); } 70% { box-shadow: 0 0 0 30px rgba(224,43,32,0); } 100% { box-shadow: 0 0 0 0 rgba(224,43,32,0); } }

.faq { border-top: 4px solid var(--ink); }
.faq__i { border-bottom: 2px solid var(--ink-faint); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.05rem 0; font-family: var(--display); font-size: var(--t-lg); text-transform: uppercase; transition: color .2s; }
.faq__q:hover { color: var(--chili); }
.faq__q i { font-family: var(--display); font-style: normal; font-size: 1.3rem; flex: none; transition: transform .35s var(--pop); }
.faq__i.open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding-bottom: 1.1rem; opacity: .78; max-width: 62ch; font-size: var(--t-sm); }

.toast { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 310; background: var(--ink); color: var(--paper); border-left: 6px solid var(--marigold); padding: .95rem 1.1rem; font-weight: 600; font-size: .88rem; transform: translateY(160%); transition: transform .45s var(--pop); }
.toast.is-up { transform: none; }

/* ------------------------------------------------------------- 18. FOOTER */

.foot { background: var(--ink); color: var(--paper); padding-block: clamp(2.6rem,6vw,4rem) 1.4rem; }
.foot__top { display: grid; gap: 1.4rem; padding-bottom: 1.9rem; border-bottom: 4px solid var(--marigold); }
.foot__mark { margin-bottom: .9rem; }
.foot__mark .logo { height: 58px; }
.foot__grid { display: grid; gap: 1.5rem; padding-top: 1.9rem; }
.foot h4 { font-family: var(--mono); font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--marigold); margin-bottom: .7rem; }
.foot__line { display: block; margin-bottom: .3rem; font-size: var(--t-sm); opacity: .82; }
.foot a:hover { color: var(--marigold); }
.foot__bar { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between; margin-top: 1.8rem; padding-top: 1.1rem; border-top: 2px solid var(--pap-faint); font-family: var(--mono); font-size: var(--t-xs); font-weight: 700; letter-spacing: .06em; opacity: .55; }

/* ======================================================= 19. REVEALS */

[data-rise] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-rise].seen { opacity: 1; transform: none; }

/* ============================================ 19b. PHONE LAYOUT

   Centred on a phone: the poster reads better, and it removes the ragged
   right edge the two-up button row was leaving. */

/* below 360px the nav genuinely runs out of room, so the language switch
   falls back to the drawer, which carries it on every size anyway */
@media (max-width: 359px) {
  .nav .langsw { display: none; }
  .brand .logo { height: 32px; }
}

@media (max-width: 719px) {
  .hero__in { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { width: 100%; }
  .hero__art { margin-top: .4rem; }
  .hero__art .frame { box-shadow: 7px 7px 0 var(--ink); }
  .hero__tag { right: .2rem; top: -.9rem; }

  .phero { text-align: center; }
  .phero .lede { margin-inline: auto; }

  .brand .logo { height: 36px; }
  .burger { margin-right: -6px; }

  .drawer__lang { margin-bottom: 1.4rem; }
  .drawer__lang .langsw { width: max-content; }
}

/* ==================================================== 20. BREAKPOINTS */

@media (min-width: 620px) {
  .meats { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .info  { grid-template-columns: repeat(2, 1fr); }
  .items { grid-template-columns: repeat(2, 1fr); }
  .revs  { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: repeat(2, 1fr); }
  .score { grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .toast { left: auto; right: 1.4rem; width: 380px; }
}

@media (min-width: 960px) {
  :root { --nav-h: 74px; }
  .brand .logo { height: 42px; }
  .nav__links { display: flex; gap: 1.8rem; font-family: var(--display); font-size: .84rem; text-transform: uppercase; letter-spacing: -.01em; }
  .nav__links a { position: relative; padding-block: .3rem; }
  .nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: var(--marigold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
  .nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .burger { display: none; }

  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .meats { grid-template-columns: repeat(4, 1fr); }
  .head--split { grid-template-columns: 1.4fr 1fr; align-items: end; }
  .info { grid-template-columns: repeat(4, 1fr); }
  .foot__grid { grid-template-columns: repeat(4, 1fr); }
  .foot__top { grid-template-columns: 1.3fr 1fr; align-items: end; }
  .revs { grid-template-columns: repeat(3, 1fr); }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }

  .checkout { inset: 0 0 0 auto; height: 100%; width: min(500px,100%); transform: translateX(101%); border-top: 0; border-left: 5px solid var(--ink); }
  .checkout.is-open { transform: none; }
  .room, .co__bar, .rail { padding-inline: 2.4rem; }
  .cartbar { left: auto; right: 1.5rem; bottom: 1.5rem; width: 340px; border: 4px solid var(--ink); }
}

/* ================================================ 21. REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-rise] { opacity: 1; transform: none; }
  .marquee__in { animation: none; }
  .done__seal path { stroke-dashoffset: 0; }
}
