/* =============================================================================
   ÉCHATE UN TACO — Hyattsville, MD
   styles.css

   Contents
   --------
   01. Tokens & reset
   02. Typography system
   03. Decorative toolkit (.sticker .starburst .serape-stripe .marquee
       .outline-text .offset-shadow .tilt-left .tilt-right .hand-arrow .big-type)
   04. Buttons
   05. Header + navigation
   06. Hero
   07. Marquee strips
   08. Food intro
   09. Featured food cards
   10. Mama Juana feature
   11. Huarache / nopal feature
   12. Menu section + lightbox
   13. Kids section
   14. Brand statement
   15. Visit us
   16. Hours
   17. Final CTA
   18. Footer
   19. Contact page
   20. Delivery areas (hub + per-town landing pages)
   21. Order-direct comparison pages
   22. Motion, reveal & reduced-motion
   ========================================================================== */


/* =============================================================================
   01. TOKENS & RESET
   ========================================================================== */

:root {
  /* Brand */
  --green: #007803;
  --red: #DC0903;
  --white: #FFFFFF;
  --black: #111111;
  --charcoal: #1A1A1A;

  /* Working shades derived from the brand palette (hover/depth only) */
  --green-deep: #005B02;
  --red-deep: #A80702;
  --ink: #0B0B0B;

  /* A lighter tint of the SAME brand red, used only for red text sitting on
     black/charcoal. #DC0903 on #0B0B0B is ~2.9:1 and fails WCAG; this tint
     clears 5:1 while still reading as the brand red. Never used on light
     backgrounds — the true --red is correct there (6.3:1 on white). */
  --red-on-dark: #FF3B2F;

  /* Serape ribbon — pulled from the stripe in the logo. Texture accent only. */
  --serape: repeating-linear-gradient(90deg,
      #DC0903 0 9px, #FF7A00 9px 15px, #FFD400 15px 21px, #FFFFFF 21px 25px,
      #00A5C4 25px 33px, #0B3D91 33px 39px, #7A1FA2 39px 45px, #E5007E 45px 52px,
      #007803 52px 60px, #111111 60px 63px);

  /* Halftone dot texture */
  --halftone: radial-gradient(circle at center, rgba(17, 17, 17, .16) 1.5px, transparent 1.6px);
  --halftone-light: radial-gradient(circle at center, rgba(255, 255, 255, .13) 1.5px, transparent 1.6px);

  /* Type */
  --display: "Anton", "Impact", "Haettenschweiler", "Franklin Gothic Bold", "Arial Black", sans-serif;
  --label: "Bebas Neue", "Oswald", "Impact", "Arial Narrow", sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Structure */
  --wrap: 1280px;
  --gutter: clamp(1rem, 4vw, 2.75rem);
  --border: 4px;
  --sh: var(--black);          /* offset-shadow colour, flipped on dark sections */
  --focus: var(--black);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;    /* clears the sticky header on anchor jumps */
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .22vw, 1.125rem);
  line-height: 1.6;
  overflow-x: clip;            /* rotated decoration must never scroll the page */
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a { color: inherit; }

button { font: inherit; color: inherit; }

::selection { background: var(--red); color: var(--white); }

/* Focus — always visible, always high contrast against its own section. */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--red);
  color: var(--white);
  font-family: var(--label);
  font-size: 1.25rem;
  letter-spacing: .08em;
  padding: .6rem 1.4rem;
  border: 4px solid var(--black);
  transition: top .18s ease;
}
.skip-link:focus { top: 8px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.sec--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Section colour blocking */
.sec--dark   { background: var(--ink);      color: var(--white); --sh: var(--white); --focus: var(--white); }
.sec--red    { background: var(--red);      color: var(--white); --sh: var(--black); --focus: var(--white); }
.sec--green  { background: var(--green);    color: var(--white); --sh: var(--black); --focus: var(--white); }
.sec--paper  { background: var(--white);    color: var(--black); --sh: var(--black); --focus: var(--black); }

/* Dotted texture overlay, sits under content */
.sec--dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--halftone);
  background-size: 12px 12px;
  opacity: .55;
  pointer-events: none;
}
.sec--dark.sec--dots::before,
.sec--red.sec--dots::before,
.sec--green.sec--dots::before { background-image: var(--halftone-light); opacity: .9; }

.sec > .wrap { position: relative; z-index: 1; }


/* =============================================================================
   02. TYPOGRAPHY SYSTEM
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Fluid display scale — headings are deliberately NOT all the same size. */
.big-type   { font-family: var(--display); text-transform: uppercase; line-height: .82; letter-spacing: -.02em; }
.t-mega     { font-size: clamp(3rem, 13vw, 10rem); }
.t-xl       { font-size: clamp(2.6rem, 9.5vw, 7rem); }
.t-lg       { font-size: clamp(2.1rem, 6.5vw, 4.5rem); }
.t-md       { font-size: clamp(1.7rem, 4.4vw, 3rem); }
.t-sm       { font-size: clamp(1.35rem, 3vw, 2rem); }

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .5vw, 1.4rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  display: block;
}

/* Eyebrow rendered as a hand-cut tag */
.eyebrow-tag {
  display: inline-block;
  font-family: var(--label);
  font-size: clamp(.95rem, .85rem + .4vw, 1.25rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  padding: .35em 1em .28em;
  margin: 0 0 1.2rem;
  transform: rotate(-1.6deg);
}
.eyebrow-tag--green { background: var(--green); }
.eyebrow-tag--white { background: var(--white); color: var(--black); }

.lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.3rem);
  line-height: 1.55;
  max-width: 56ch;
}

.measure { max-width: 62ch; }

/* Colour utilities used inside headlines */
.c-red   { color: var(--red); }
.c-green { color: var(--green); }
.c-white { color: var(--white); }
.c-black { color: var(--black); }

/* Red TEXT on a black/charcoal ground switches to the lighter tint so it clears
   WCAG. Backgrounds and borders keep the true brand red — only ink changes. */
.sec--dark .c-red,
.hero .c-red,
.chero .c-red,
.footer .c-red,
.sec--dark .eyebrow.c-red,
.footer h3,
.form-note b { color: var(--red-on-dark); }

.topbar a:hover,
.footer__list a:hover,
.hero__address a:hover { color: var(--red-on-dark); }
.footer__list a:hover { border-bottom-color: var(--red-on-dark); }


/* =============================================================================
   03. DECORATIVE TOOLKIT
   ========================================================================== */

/* --- Outlined (knockout) lettering ------------------------------------- */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 3px var(--black);
  paint-order: stroke fill;
}
.outline-text--white { -webkit-text-stroke-color: var(--white); }
.outline-text--red   { -webkit-text-stroke-color: var(--red); }
.outline-text--green { -webkit-text-stroke-color: var(--green); }

@supports not (-webkit-text-stroke: 1px black) {
  .outline-text { color: inherit; }
}

/* --- Hard offset shadow ------------------------------------------------- */
.offset-shadow { box-shadow: 10px 10px 0 var(--sh); }
.offset-shadow--sm { box-shadow: 6px 6px 0 var(--sh); }

/* Poster-style layered text shadow */
.text-punch  { text-shadow: 5px 5px 0 var(--black); }
.text-punch--white { text-shadow: 5px 5px 0 var(--white); }
.text-punch--red   { text-shadow: 6px 6px 0 var(--red); }
.text-punch--green { text-shadow: 6px 6px 0 var(--green); }

/* --- Tilts -------------------------------------------------------------- */
.tilt-left  { transform: rotate(-2.2deg); }
.tilt-right { transform: rotate(2.2deg); }
.tilt-left--hard  { transform: rotate(-4.5deg); }
.tilt-right--hard { transform: rotate(4.5deg); }

/* --- Sticker ------------------------------------------------------------ */
.sticker {
  display: inline-block;
  font-family: var(--label);
  font-size: clamp(.85rem, .78rem + .35vw, 1.15rem);
  letter-spacing: .12em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  padding: .5em .95em .42em;
  transform: rotate(-5deg);
}
.sticker--red   { background: var(--red);   color: var(--white); }
.sticker--green { background: var(--green); color: var(--white); }
.sticker--black { background: var(--black); color: var(--white); box-shadow: 5px 5px 0 var(--red); }
.sticker--round { border-radius: 999px; padding: .7em 1.1em; }

/* --- Starburst badge ---------------------------------------------------- */
.starburst {
  display: grid;
  place-items: center;
  text-align: center;
  aspect-ratio: 1;
  width: clamp(124px, 16vw, 186px);
  background: var(--red);
  color: var(--white);
  font-family: var(--label);
  font-size: clamp(.95rem, .82rem + .55vw, 1.35rem);
  line-height: 1.02;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 22%;
  clip-path: polygon(50.0% 0.0%, 59.6% 14.3%, 75.0% 6.7%, 76.2% 23.8%, 93.3% 25.0%, 85.7% 40.4%, 100.0% 50.0%, 85.7% 59.6%, 93.3% 75.0%, 76.2% 76.2%, 75.0% 93.3%, 59.6% 85.7%, 50.0% 100.0%, 40.4% 85.7%, 25.0% 93.3%, 23.8% 76.2%, 6.7% 75.0%, 14.3% 59.6%, 0.0% 50.0%, 14.3% 40.4%, 6.7% 25.0%, 23.8% 23.8%, 25.0% 6.7%, 40.4% 14.3%);
}
.starburst--green { background: var(--green); }
.starburst--white { background: var(--white); color: var(--black); }

/* On small screens the badges start eating the photos they sit on. */
@media (max-width: 620px) {
  .starburst { width: clamp(96px, 26vw, 124px); font-size: clamp(.8rem, .7rem + .5vw, 1rem); }
}

/* --- Five-point star (separators, confetti) ----------------------------- */
.star {
  display: inline-block;
  width: 1em; height: 1em;
  background: currentColor;
  clip-path: polygon(50.0% 0.0%, 61.8% 33.8%, 97.6% 34.5%, 69.0% 56.2%, 79.4% 90.5%, 50.0% 70.0%, 20.6% 90.5%, 31.0% 56.2%, 2.4% 34.5%, 38.2% 33.8%);
  vertical-align: -.08em;
}

/* --- Serape stripe divider ---------------------------------------------- */
.serape-stripe {
  height: 15px;
  background: var(--serape);
  border-block: 3px solid var(--black);
}
.serape-stripe--tall { height: 26px; }

/* --- Papel picado bunting ------------------------------------------------ */
.papel-picado {
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27150%27%20height%3D%2746%27%20viewBox%3D%270%200%20150%2046%27%3E%3Cpath%20d%3D%27M0%200h150v4H0z%27%20fill%3D%27%23111111%27%2F%3E%3Cpath%20fill-rule%3D%27evenodd%27%20fill%3D%27%23DC0903%27%20d%3D%27M2%204h46L25%2042z%20M25%2013a5%205%200%201%200%20.1%200z%20M25%2026l5%208h-10z%27%2F%3E%3Cpath%20fill-rule%3D%27evenodd%27%20fill%3D%27%23FFFFFF%27%20d%3D%27M52%204h46L75%2042z%20M75%2013a5%205%200%201%200%20.1%200z%20M75%2026l5%208h-10z%27%2F%3E%3Cpath%20fill-rule%3D%27evenodd%27%20fill%3D%27%23007803%27%20d%3D%27M102%204h46L125%2042z%20M125%2013a5%205%200%201%200%20.1%200z%20M125%2026l5%208h-10z%27%2F%3E%3C%2Fsvg%3E");
  background-repeat: repeat-x;
  background-size: auto 46px;
}

/* --- Sunburst rays (absolutely positioned backdrop) ---------------------- */
.sunburst {
  position: absolute;
  inset: -60% -30%;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(255, 255, 255, .06) 0 5deg, transparent 5deg 10deg);
  pointer-events: none;
  animation: spin 120s linear infinite;
}
.sunburst--dark {
  background: repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(17, 17, 17, .07) 0 5deg, transparent 5deg 10deg);
}

/* --- Hand-drawn arrow ---------------------------------------------------- */
.hand-arrow {
  display: inline-block;
  width: 74px;
  height: 46px;
  color: inherit;
  background: currentColor;
  /* wobbly arrow drawn as a mask so it inherits the text colour */
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2074%2046%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%275%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%2030c12-16%2028-22%2062-22%27%2F%3E%3Cpath%20d%3D%27M50%202l16%206-10%2013%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2074%2046%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%275%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%2030c12-16%2028-22%2062-22%27%2F%3E%3Cpath%20d%3D%27M50%202l16%206-10%2013%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}
.hand-arrow--flip { transform: scaleX(-1); }

/* --- Photo frames -------------------------------------------------------- */
.polaroid {
  margin: 0;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 12px 12px 0;
  box-shadow: 12px 12px 0 var(--black);
}
.polaroid img { border: 2px solid var(--black); width: 100%; }
.polaroid figcaption {
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--black);
  padding: .55rem .1rem .6rem;
  text-align: center;
}
/* Tape strip across a corner */
.polaroid--taped { position: relative; }
.polaroid--taped::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  width: 108px; height: 30px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(255, 255, 255, .62);
  border: 2px solid rgba(17, 17, 17, .35);
  box-shadow: 0 2px 0 rgba(17, 17, 17, .12);
}

.framed {
  border: var(--border) solid var(--black);
  box-shadow: 10px 10px 0 var(--sh);
  background: var(--white);
}

/* --- Marquee ------------------------------------------------------------- */
.marquee {
  --speed: 34s;
  overflow: hidden;
  display: flex;
  border-block: 4px solid var(--black);
  background: var(--red);
  color: var(--white);
  padding-block: .5rem;
  user-select: none;
}
.marquee__track {
  display: flex;
  flex: none;
  gap: 0;
  align-items: center;
  min-width: 100%;
  animation: marquee var(--speed) linear infinite;
  will-change: transform;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0 .8rem;
  list-style: none;
  flex: none;
}
.marquee li {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 1.6vw, 2.35rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.marquee li::after {
  content: "";
  width: .62em; height: .62em;
  background: currentColor;
  clip-path: polygon(50.0% 0.0%, 61.8% 33.8%, 97.6% 34.5%, 69.0% 56.2%, 79.4% 90.5%, 50.0% 70.0%, 20.6% 90.5%, 31.0% 56.2%, 2.4% 34.5%, 38.2% 33.8%);
  flex: none;
}
.marquee--green { background: var(--green); }
.marquee--black { background: var(--black); }
.marquee--white { background: var(--white); color: var(--black); }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(7px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.72); }
}


/* =============================================================================
   04. BUTTONS
   ========================================================================== */

.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  --btn-sh: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--label);
  font-size: clamp(1.05rem, .95rem + .5vw, 1.4rem);
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: .95em 1.6em .82em;
  min-height: 52px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 4px solid var(--black);
  box-shadow: 7px 7px 0 var(--btn-sh);
  transform: rotate(-1deg);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, color .14s ease;
}
.btn:hover {
  transform: rotate(-1deg) translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--btn-sh);
}
.btn:active {
  transform: rotate(-1deg) translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--btn-sh);
}
.btn--alt { transform: rotate(1.2deg); }
.btn--alt:hover  { transform: rotate(1.2deg) translate(-3px, -3px); }
.btn--alt:active { transform: rotate(1.2deg) translate(4px, 4px); }

.btn--green { --btn-bg: var(--green); }
.btn--white { --btn-bg: var(--white); --btn-fg: var(--black); }
.btn--black { --btn-bg: var(--black); --btn-fg: var(--white); --btn-sh: var(--red); }

/* On dark backgrounds the black drop shadow disappears — flip it to white. */
.sec--dark .btn,
.footer .btn { --btn-sh: var(--white); }
.sec--dark .btn--black,
.footer .btn--black { --btn-sh: var(--red); }

/* Red-on-red / green-on-green: keep the border reading by flipping the fill */
.sec--red .btn--red   { --btn-bg: var(--white); --btn-fg: var(--red); }
.sec--green .btn--green { --btn-bg: var(--white); --btn-fg: var(--green); }

.btn--big {
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2.4rem);
  padding: .8em 1.3em .68em;
  border-width: 5px;
  box-shadow: 10px 10px 0 var(--btn-sh);
}
.btn--big:hover  { box-shadow: 15px 15px 0 var(--btn-sh); }
.btn--big:active { box-shadow: 3px 3px 0 var(--btn-sh); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.85rem, 2vw, 1.4rem);
  align-items: center;
}

/* Touch targets.
   Plain text links (phone numbers, footer nav) sit around 23–35px tall from
   line-height alone. Padding lifts every tappable link to a comfortable size
   on a phone without changing how the type reads. */
.hero__address a,
.visit__phone,
.footer__list a,
.footer address a,
a.ccard__value {
  display: inline-block;
  padding-block: .35em;
  min-height: 44px;
}
.footer__list a { padding-block: .4em; }

/* Inline text link with a chunky underline */
.link-chunky {
  font-family: var(--label);
  font-size: 1.15rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 4px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .15s ease;
}
.link-chunky:hover { opacity: .7; }


/* =============================================================================
   05. HEADER + NAVIGATION
   ========================================================================== */

.topbar {
  background: var(--black);
  color: var(--white);
  font-family: var(--label);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .95rem;
  --focus: var(--white);
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  align-items: center;
  justify-content: center;
  padding-block: .5rem;
  text-align: center;
}
.topbar a { text-decoration: none; border-bottom: 2px solid var(--red); }
.topbar a:hover { color: var(--red); }
.topbar__sep { color: var(--red); }

/* --- Language switcher ----------------------------------------------------
   Lives in the topbar rather than the main nav: the nav already carries two
   dropdowns plus the order button and flips to a hamburger at 1180px, and a
   sixth control there would undo that. */
.topbar__lang {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  border: 2px solid var(--red);
  padding: .1em .5em;
  margin-left: .3rem;
}
.topbar__lang-on { color: var(--red); }
.topbar__lang-sep { opacity: .45; }
.topbar__lang a {
  border-bottom: 0;
  opacity: .8;
}
.topbar__lang a:hover { opacity: 1; color: var(--red); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 4px solid var(--black);
  transition: box-shadow .2s ease, padding .2s ease;
}
.header.is-stuck { box-shadow: 0 8px 0 rgba(17, 17, 17, .12), 0 14px 26px rgba(17, 17, 17, .16); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding-block: .6rem;
  transition: padding .2s ease;
}
.header.is-stuck .header__inner { padding-block: .35rem; }

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: none;
}
.brand img {
  width: clamp(52px, 8vw, 76px);
  height: auto;
  transition: width .2s ease;
}
.header.is-stuck .brand img { width: clamp(44px, 6vw, 58px); }
.brand__name {
  font-family: var(--display);
  font-size: clamp(1.05rem, .85rem + .8vw, 1.6rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.01em;
  max-width: 6.5em;
}
.brand__name .c-red { display: block; }

.nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .4vw, 1.3rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-block: .3rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"]::after { background: var(--red); }

.nav .btn { font-size: clamp(.95rem, .85rem + .35vw, 1.15rem); padding: .7em 1.1em .58em; min-height: 44px; }

/* --- "Areas We Deliver" submenu ----------------------------------------
   Click-toggled rather than hover-revealed: hover menus strand touch users
   and make the aria-expanded state lie. One interaction model everywhere. */
.nav__item--has-sub { position: relative; }

.nav__sub-toggle {
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .4vw, 1.3rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: .3rem 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45em;
  white-space: nowrap;
  position: relative;
  min-height: 44px;
}
.nav__sub-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 1.1em; bottom: 4px;
  height: 5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav__sub-toggle:hover::after,
.nav__sub-toggle[aria-expanded="true"]::after,
.nav__item--has-sub.is-current .nav__sub-toggle::after { transform: scaleX(1); }
.nav__item--has-sub.is-current .nav__sub-toggle::after { background: var(--red); }

.nav__caret {
  display: inline-block;
  font-size: .7em;
  transition: transform .2s ease;
}
.nav__sub-toggle[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: -1rem;
  min-width: 250px;
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 9px 9px 0 var(--red);
  list-style: none;
  margin: 0;
  padding: .4rem;
  z-index: 130;
}
.nav__sub[hidden] { display: none; }
.nav__sub::before {
  /* little notch pointing back at the toggle */
  content: "";
  position: absolute;
  top: -14px;
  left: 1.6rem;
  width: 18px; height: 14px;
  background: var(--black);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.nav__sub a {
  display: block;
  font-family: var(--label);
  font-size: 1.15rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  padding: .6rem .8rem .5rem;
  min-height: 44px;
  border-bottom: 2px solid rgba(17, 17, 17, .12);
}
.nav__sub li:last-child a { border-bottom: 0; }
.nav__sub a:hover,
.nav__sub a:focus-visible { background: var(--red); color: var(--white); }
.nav__sub a[aria-current="page"] { background: var(--green); color: var(--white); }
.nav__sub .nav__sub-all {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0;
  background: var(--black);
  color: var(--white);
  margin-bottom: .3rem;
  border-bottom: 0;
}
.nav__sub .nav__sub-all:hover { background: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  background: var(--black);
  color: var(--white);
  border: 4px solid var(--black);
  padding: .5rem .8rem;
  font-family: var(--label);
  font-size: 1.1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--red);
  min-height: 48px;
}
.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 24px;
}
.nav-toggle__bars span {
  display: block;
  height: 3px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 400px);
    background: var(--ink);
    color: var(--white);
    --focus: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6.5rem var(--gutter) 2.5rem;
    border-left: 5px solid var(--red);
    transform: translateX(103%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    z-index: 120;
  }
  .nav.is-open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2rem;
  }
  .nav__list li { border-bottom: 3px solid rgba(255, 255, 255, .18); }
  .nav__link {
    display: block;
    font-size: 1.9rem;
    padding: .85rem 0;
  }
  .nav__link::after { bottom: 6px; height: 6px; }
  .nav .btn { font-size: 1.3rem; width: 100%; }

  /* Submenu becomes an in-flow accordion inside the off-canvas panel. */
  .nav__sub-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: var(--white);
    font-size: 1.9rem;
    padding: .85rem 0;
    min-height: 0;
  }
  .nav__sub-toggle::after { display: none; }
  .nav__caret { font-size: .8em; }

  .nav__sub {
    position: static;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 1rem;
  }
  .nav__sub::before { display: none; }
  .nav__sub a {
    color: var(--white);
    font-size: 1.3rem;
    padding: .55rem 0 .55rem 1.2rem;
    border-bottom: 0;
    border-left: 4px solid var(--red);
    margin-bottom: .35rem;
  }
  .nav__sub a:hover,
  .nav__sub a:focus-visible { background: var(--red); }
  .nav__sub a[aria-current="page"] { background: var(--green); border-left-color: var(--white); }
  .nav__sub .nav__sub-all { border-left-color: var(--white); }

  .nav__panel-mark {
    position: absolute;
    top: 1.4rem;
    left: var(--gutter);
    width: 60px;
    opacity: .95;
  }

  /* z-index MUST stay below .header's 100.
     .header is position:sticky with z-index:100, which makes it a stacking
     context — so .nav lives inside it and its z-index:120 is resolved locally.
     Against the page the whole panel paints at 100, no matter how high that
     number goes. Any backdrop value >= 100 therefore lands on top of the open
     menu and swallows every tap on it. */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, .68);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  body.nav-open { overflow: hidden; }
}

@media (min-width: 1181px) {
  .nav__panel-mark, .nav-backdrop { display: none; }
}


/* =============================================================================
   06. HERO
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  --sh: var(--white);
  --focus: var(--white);
  overflow: clip;
  padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(2.75rem, 5.5vw, 4.5rem);
  isolation: isolate;
}
.hero::after {
  /* halftone veil */
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--halftone-light);
  background-size: 13px 13px;
  opacity: .8;
  pointer-events: none;
  z-index: -1;
}
.hero__rays { z-index: -2; }

/* Giant ghost words drifting behind the composition */
.hero__ghost {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: .13;
  display: flex;
}
.hero__ghost--a { top: 8%;  transform: rotate(-3deg); }
.hero__ghost--b { bottom: 6%; transform: rotate(2deg); }
.hero__ghost span {
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  padding-right: .35em;
  flex: none;
  animation: marquee 46s linear infinite;
}
.hero__ghost--b span { animation-duration: 62s; animation-direction: reverse; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.9rem, 9.6vw, 7.2rem);
  line-height: .82;
  margin: 0 0 1.35rem;
  letter-spacing: -.025em;
}
.hero__title span { display: block; }
.hero__title .l1 { color: var(--white); }
.hero__title .l2 {
  color: var(--red-on-dark);
  text-shadow: 4px 4px 0 var(--black);
  margin-left: .04em;
}
.hero__title .l3 {
  color: transparent;
  -webkit-text-stroke: 3px var(--white);
  transform: rotate(-1.6deg);
  transform-origin: left center;
  margin-top: .07em;   /* keeps the outline clear of HUNGRY's descender */
}
.hero__title .l4 {
  color: var(--white);
  background: var(--green);
  display: inline-block;
  padding: .02em .18em .05em;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(1.2deg);
  margin-top: .08em;
}

.hero__lede { margin-bottom: 1.8rem; max-width: 46ch; }

.hero__cta { margin-bottom: 2rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  border-top: 3px dashed rgba(255, 255, 255, .32);
  padding-top: 1.4rem;
}
.hero__address {
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .45vw, 1.3rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__address a { text-decoration: none; border-bottom: 3px solid var(--red); }
.hero__address a:hover { color: var(--red); }

/* Live open/closed chip */
.status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .45vw, 1.25rem);
  letter-spacing: .11em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 5px 5px 0 var(--red);
  padding: .45em .95em .35em;
  transform: rotate(-1.4deg);
  white-space: nowrap;
}
.status__dot {
  width: .7em; height: .7em;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  animation: pulse-dot 2s ease-in-out infinite;
}
.status.is-open    { background: var(--green); }
.status.is-soon    { background: var(--red); }
.status.is-closed  { background: var(--white); color: var(--black); border-color: var(--black); box-shadow: 5px 5px 0 var(--red); }
.status__detail {
  font-family: var(--body);
  font-size: .8em;
  letter-spacing: .02em;
  text-transform: none;
  opacity: .92;
}

/* --- Hero artwork column --------------------------------------------------- */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  /* --drift-* are nudged by the desktop pointer flourish in script.js */
  --drift-x: 0px;
  --drift-y: 0px;
  transform: translate3d(var(--drift-x), var(--drift-y), 0);
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.hero__logo {
  width: min(100%, 480px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .55));
  animation: bob 5.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero__photo {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: clamp(150px, 24%, 230px);
  z-index: 3;
  transform: rotate(6deg);
}
.hero__photo .polaroid { box-shadow: 9px 9px 0 var(--red); padding: 8px 8px 0; }
.hero__photo figcaption { font-size: .85rem; padding: .4rem 0 .45rem; }

.hero__sticker {
  position: absolute;
  z-index: 4;
}
.hero__sticker--1 { top: 2%;  left: -2%;  transform: rotate(-11deg); }
.hero__sticker--2 { bottom: 12%; left: -6%; transform: rotate(7deg); }
.hero__sticker--3 { top: -4%; right: 2%;  transform: rotate(9deg); }

.hero__scroll {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2.5rem;
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .78;
}
.hero__scroll .hand-arrow {
  width: 54px; height: 34px;
  transform: rotate(64deg);
  animation: bob 2.4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 0; margin-bottom: .5rem; }
  .hero__logo { width: min(78%, 340px); }
  .hero__photo { width: 132px; right: 0; bottom: -4%; }
  .hero__sticker--2 { display: none; }
  .hero__scroll { display: none; }
}
@media (max-width: 520px) {
  .hero__sticker--1, .hero__sticker--3 { display: none; }
  .hero__photo { display: none; }
  .hero__logo { width: min(84%, 300px); }
  .hero__title .l4 { box-shadow: 5px 5px 0 var(--black); }
}


/* =============================================================================
   07. MARQUEE STRIPS
   ========================================================================== */

.ticker-stack { display: grid; }
.ticker-stack .marquee + .marquee { border-top: 0; }


/* =============================================================================
   08. FOOD INTRO
   ========================================================================== */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.intro__title {
  font-size: clamp(2.4rem, 8.4vw, 6.4rem);
  margin-bottom: 1.6rem;
}
.intro__title .r2 { display: block; color: var(--red); margin-left: .06em; }
.intro__title .r3 { display: block; color: var(--green); transform: rotate(-1.2deg); transform-origin: left; }

.intro__band {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-block: 5px solid var(--black);
  padding-block: clamp(1rem, 2.5vw, 1.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4em 1.1em;
  text-align: center;
}
.intro__band b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 5.4vw, 4rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.intro__band b:nth-child(1) { color: var(--red); }
.intro__band b:nth-child(2) { color: transparent; -webkit-text-stroke: 2.5px var(--black); }
.intro__band b:nth-child(3) { color: var(--green); }

.intro__photos {
  display: grid;
  gap: 1.4rem;
  position: relative;
}
/* Cropping to a consistent ratio keeps the photo column from towering over
   the copy column and leaving a dead white gap beside it. */
.intro__photos img { aspect-ratio: 5 / 4; object-fit: cover; }
.intro__photos .polaroid:nth-child(1) { transform: rotate(-3deg); }
.intro__photos .polaroid:nth-child(2) { transform: rotate(2.6deg); margin-left: 12%; }

/* Sticker cluster that fills the copy column and points at the photos */
.intro__extras {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 1.1rem;
}
.intro__extras .hand-arrow { color: var(--red); flex: none; }
.intro__extras .sticker:nth-child(1) { transform: rotate(-4deg); }
.intro__extras .sticker:nth-child(2) { transform: rotate(3deg); }
.intro__extras .sticker:nth-child(3) { transform: rotate(-2deg); }

@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__photos { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .intro__photos .polaroid:nth-child(2) { margin-left: 0; }
  .intro__extras .hand-arrow { display: none; }
}
@media (max-width: 480px) {
  .intro__photos { grid-template-columns: 1fr; }
}


/* =============================================================================
   09. FEATURED FOOD CARDS
   ========================================================================== */

.eats__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.eats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
}

.eat {
  position: relative;
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
/* Intentionally irregular — every card sits a little differently. */
.eat:nth-child(1) { transform: rotate(-1.4deg); }
.eat:nth-child(2) { transform: rotate(1.1deg);  margin-top: clamp(0px, 3vw, 42px); }
.eat:nth-child(3) { transform: rotate(.9deg); }
.eat:nth-child(4) { transform: rotate(-1.7deg); margin-top: clamp(0px, 2vw, 28px); }
/* A black drop shadow vanishes on the near-black section, so the cards get a
   coloured one instead — the offset is what makes them read as stickers. */
.sec--dark .eat        { box-shadow: 12px 12px 0 var(--red); }
.sec--dark .eat--red   { box-shadow: 12px 12px 0 var(--white); }
.sec--dark .eat:hover      { box-shadow: 18px 18px 0 var(--red); }
.sec--dark .eat--red:hover { box-shadow: 18px 18px 0 var(--white); }

.eat:hover { box-shadow: 18px 18px 0 var(--black); }
.eat:nth-child(1):hover { transform: rotate(-1.4deg) translate(-4px, -4px); }
.eat:nth-child(2):hover { transform: rotate(1.1deg) translate(-4px, -4px); }
.eat:nth-child(3):hover { transform: rotate(.9deg) translate(-4px, -4px); }
.eat:nth-child(4):hover { transform: rotate(-1.7deg) translate(-4px, -4px); }

.eat__media { position: relative; border-bottom: 5px solid var(--black); background: var(--black); }
.eat__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.eat__num {
  position: absolute;
  top: -.34em;
  left: .12em;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  line-height: 1;
  color: var(--white);
  -webkit-text-stroke: 4px var(--black);
  paint-order: stroke fill;
  z-index: 2;
  pointer-events: none;
}
.eat__tag {
  position: absolute;
  right: -10px;
  bottom: 14px;
  z-index: 2;
}

/* Typographic stand-in where no honest photo of the dish exists. Doubles as
   the irregularity that stops these four cards reading as a matched set. */
.eat__media--graphic {
  aspect-ratio: 4 / 3;
  display: grid;
  align-content: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--black);
  /* No overflow:hidden here. .eat__num is positioned at top:-.34em so it
     deliberately hangs above the media box on every card; clipping this one
     cut the top third off the "02". The serape stripes below sit at top:0 /
     bottom:0 inside the box, so they never needed containing. */
}
.eat__media--graphic::before,
.eat__media--graphic::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background: var(--serape);
}
.eat__media--graphic::before { top: 0; }
.eat__media--graphic::after  { bottom: 0; }

.stack-graphic__label {
  font-family: var(--label);
  font-size: clamp(.95rem, .85rem + .4vw, 1.2rem);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red-on-dark);
  margin: 0 0 .7rem;
}
.stack-graphic { display: grid; margin: 0; }
.stack-graphic span {
  font-family: var(--display);
  font-size: clamp(2.1rem, 6.6vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}
.stack-graphic span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  margin-left: .12em;
}
.stack-graphic span:nth-child(3) { color: var(--red-on-dark); }

.eat__body { padding: clamp(1.3rem, 2.6vw, 2rem); display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.eat__title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.eat__title .sub {
  display: block;
  font-family: var(--label);
  font-size: .34em;
  letter-spacing: .18em;
  color: var(--red);
  margin-top: .5em;
}
.eat__copy { flex: 1; margin: 0; }
.eat__cta {
  align-self: flex-start;
  font-family: var(--label);
  font-size: clamp(1.05rem, .95rem + .4vw, 1.3rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--red);
  padding: .62em 1.1em .5em;
  min-height: 48px;
  transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.eat__cta span { transition: transform .18s ease; }
.eat__cta:hover { background: var(--red); box-shadow: 5px 5px 0 var(--black); }
.eat__cta:hover span { transform: translateX(5px); }

/* Card colour variants */
.eat--green { background: var(--green); color: var(--white); }
.eat--green .eat__cta { background: var(--white); color: var(--green); box-shadow: 5px 5px 0 var(--black); }
.eat--green .eat__cta:hover { background: var(--black); color: var(--white); }
.eat--green .eat__title .sub { color: var(--white); }

.eat--red { background: var(--red); color: var(--white); }
.eat--red .eat__cta { background: var(--white); color: var(--red); box-shadow: 5px 5px 0 var(--black); }
.eat--red .eat__cta:hover { background: var(--black); color: var(--white); }
.eat--red .eat__title .sub { color: var(--white); }

@media (max-width: 780px) {
  .eats { grid-template-columns: 1fr; gap: 2.2rem; }
  .eat:nth-child(n) { margin-top: 0; }
  .eat { box-shadow: 8px 8px 0 var(--black); }
}


/* =============================================================================
   10. MAMA JUANA FEATURE
   ========================================================================== */

.mama { position: relative; overflow: clip; }
.mama__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.mama__kicker {
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .5vw, 1.4rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.mama__title {
  font-size: clamp(2.7rem, 8.2vw, 6.2rem);
  line-height: .86;
  margin-bottom: .3em;
}
.mama__title .m1 { display: block; color: var(--white); }
.mama__title .m2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px var(--white);
  transform: rotate(-1.4deg);
  transform-origin: left;
}
.mama__sub {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.2vw, 2.2rem);
  line-height: .95;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  display: inline-block;
  padding: .3em .6em .24em;
  border: 3px solid var(--white);
  box-shadow: 7px 7px 0 var(--black);
  transform: rotate(-1deg);
  margin-bottom: 1.4rem;
}
.mama__copy { font-size: clamp(1.08rem, 1rem + .45vw, 1.4rem); max-width: 44ch; margin-bottom: 2rem; }

.mama__art { position: relative; }
.mama__art .polaroid { box-shadow: 14px 14px 0 var(--black); transform: rotate(2.4deg); }

/* "What's in it" spec sheet — the visual anchor for this section. */
.loadout {
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 16px 16px 0 var(--black);
  padding: clamp(1.4rem, 3.2vw, 2.3rem);
  transform: rotate(1.8deg);
}
.loadout__head {
  font-family: var(--label);
  font-size: 1.1rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}
.loadout__list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.loadout__list li {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.4vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 3px dashed rgba(17, 17, 17, .22);
  padding-bottom: .45rem;
}
.loadout__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.loadout__list li::before {
  content: "";
  width: .45em; height: .45em;
  flex: none;
  background: var(--red);
  clip-path: polygon(50.0% 0.0%, 61.8% 33.8%, 97.6% 34.5%, 69.0% 56.2%, 79.4% 90.5%, 50.0% 70.0%, 20.6% 90.5%, 31.0% 56.2%, 2.4% 34.5%, 38.2% 33.8%);
}
.loadout__list li:nth-child(even)::before { background: var(--green); }
.loadout__foot {
  font-family: var(--label);
  font-size: 1.2rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}
/* Sits on the empty right shoulder of the panel — the ingredient list runs
   down the left, so nothing gets covered.
   Note: a border on a clip-path element is clipped away, hence the shadow. */
.mama__badge {
  position: absolute;
  top: -13%;
  right: -7%;
  z-index: 3;
  border: 0;
  transform: rotate(13deg);
  filter: drop-shadow(6px 6px 0 var(--black));
}

.mama__stripe {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -30px;
  height: 26px;
  background: var(--serape);
  border-block: 3px solid var(--black);
  transform: rotate(-2deg);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 880px) {
  .mama__grid { grid-template-columns: 1fr; }
  .mama__art { max-width: 460px; margin-inline: auto; width: 100%; }
  .mama__badge { top: -8%; right: -4%; width: 124px; }
}


/* =============================================================================
   11. HUARACHE / NOPAL FEATURE
   ========================================================================== */

.nopal__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.nopal__art { position: relative; }
.nopal__art .polaroid { transform: rotate(-3deg); box-shadow: 14px 14px 0 var(--red); }
/* Top-right corner keeps it clear of the polaroid caption underneath. */
.nopal__badge {
  position: absolute;
  right: -8%;
  top: -9%;
  z-index: 3;
  transform: rotate(11deg);
  filter: drop-shadow(6px 6px 0 var(--black));
}
.nopal__title { font-size: clamp(2.4rem, 8vw, 5.8rem); margin-bottom: 1.2rem; }
.nopal__title .n2 { display: block; color: var(--green); }
.nopal__copy { margin-bottom: 2rem; }

@media (max-width: 880px) {
  .nopal__grid { grid-template-columns: 1fr; }
  .nopal__art { order: 2; max-width: 440px; width: 100%; margin-inline: auto; }
  .nopal__badge { right: 0; width: 116px; }
}


/* =============================================================================
   12. MENU SECTION + LIGHTBOX
   ========================================================================== */

.menu__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.menu__title { font-size: clamp(3.4rem, 16vw, 12rem); line-height: .8; }
.menu__title .dot { color: var(--red); }

.menu__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.menu-frame {
  margin: 0;
  position: relative;
  background: var(--red);
  padding: clamp(12px, 2vw, 20px);
  border: 4px solid var(--black);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, .55);
  transform: rotate(-1.8deg);
  justify-self: center;
  max-width: 520px;
  width: 100%;
}
.menu-frame__btn {
  display: block;
  width: 100%;
  padding: 10px 10px 0;
  background: var(--white);
  border: 3px solid var(--black);
  cursor: zoom-in;
  transition: transform .18s ease;
}
.menu-frame__btn:hover { transform: scale(1.014); }
.menu-frame__btn img { width: 100%; border: 2px solid var(--black); }
.menu-frame__btn figcaption,
.menu-frame__cap {
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  padding: .6rem 0 .65rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.menu-frame__star {
  position: absolute;
  width: 46px; height: 46px;
  color: var(--white);
  z-index: 3;
}
.menu-frame__star--a { top: -22px; left: -20px; transform: rotate(-12deg); }
.menu-frame__star--b { bottom: -20px; right: -18px; transform: rotate(14deg); }

.menu__aside { display: grid; gap: 1.4rem; align-content: center; }
.menu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.menu__list li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  border-bottom: 3px dashed rgba(255, 255, 255, .28);
  padding-bottom: .55rem;
}
.menu__list b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1;
  flex: none;
}
.menu__list span { font-size: .95rem; opacity: .82; }
.menu__note {
  font-family: var(--label);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 1.05rem;
  opacity: .8;
}

@media (max-width: 880px) {
  .menu__grid { grid-template-columns: 1fr; }
  .menu-frame { transform: rotate(0deg); box-shadow: 10px 10px 0 rgba(0, 0, 0, .55); }
  .menu-frame__star { display: none; }
}

/* --- Lightbox ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, .94);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  --focus: var(--white);
}
.lightbox[hidden] { display: none; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}
.lightbox__label {
  font-family: var(--display);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  text-transform: uppercase;
  margin: 0;
}
.lightbox__close {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--white);
  font-family: var(--label);
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1rem .45rem;
  min-height: 48px;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--black);
}
.lightbox__close:hover { background: var(--white); color: var(--red); border-color: var(--red); }
.lightbox__stage {
  overflow: auto;
  display: grid;
  place-items: center;
  padding-bottom: 1rem;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 5px var(--red);
}


/* =============================================================================
   13. KIDS SECTION
   ========================================================================== */

.kids {
  position: relative;
  overflow: clip;
}
.kids__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--white);
  border: 5px solid var(--black);
  box-shadow: 14px 14px 0 var(--green);
  padding: clamp(1.6rem, 4vw, 3rem);
  transform: rotate(-.7deg);
}
.kids__title { font-size: clamp(2rem, 6.2vw, 4.2rem); margin-bottom: 1rem; }
.kids__title .k2 { color: var(--green); display: block; }
.kids__chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; list-style: none; padding: 0; }
.kids__chips li {
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 3px solid var(--black);
  padding: .45em .9em .35em;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
}
.kids__chips li:nth-child(2) { background: var(--green); color: var(--white); transform: rotate(-1.8deg); }
.kids__chips li:nth-child(3) { background: var(--red); color: var(--white); transform: rotate(1.6deg); }
.kids__art { position: relative; }
.kids__art .polaroid { transform: rotate(3deg); box-shadow: 10px 10px 0 var(--black); }
.kids__burst { position: absolute; top: -14%; right: -8%; z-index: 3; transform: rotate(-9deg); filter: drop-shadow(5px 5px 0 var(--black)); }

@media (max-width: 800px) {
  .kids__inner { grid-template-columns: 1fr; transform: none; box-shadow: 9px 9px 0 var(--green); }
  .kids__art { max-width: 340px; margin-inline: auto; width: 100%; }
}


/* =============================================================================
   14. BRAND STATEMENT
   ========================================================================== */

.statement { text-align: center; position: relative; overflow: clip; }
.statement__quote {
  font-family: var(--display);
  font-size: clamp(6rem, 22vw, 18rem);
  line-height: .6;
  color: var(--red);
  display: block;
  margin-bottom: -.12em;
  user-select: none;
}
.statement__title {
  font-size: clamp(2.3rem, 8.6vw, 6.6rem);
  line-height: .92;
  margin-bottom: 1.6rem;
}
.statement__title .s2 { display: block; color: var(--red-on-dark); }
.statement__title .s3 { display: block; color: transparent; -webkit-text-stroke: 3px var(--white); }
.statement__copy {
  max-width: 46ch;
  margin-inline: auto;
  font-size: clamp(1.08rem, 1rem + .45vw, 1.35rem);
}
.statement__rule {
  width: min(680px, 88%);
  height: 22px;
  margin: 2.6rem auto 0;
  background: var(--serape);
  border-block: 3px solid var(--white);
  box-shadow: 7px 7px 0 rgba(255, 255, 255, .16);
}


/* =============================================================================
   15. VISIT US
   ========================================================================== */

.visit__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.visit__title { font-size: clamp(2.5rem, 9vw, 6.6rem); }
/* Brand red on brand green is ~1.1:1 — unreadable. Black holds the same
   poster energy against green and clears contrast comfortably. */
.visit__title .v2 {
  display: block;
  color: var(--black);
  text-shadow: 5px 5px 0 rgba(255, 255, 255, .28);
  transform: rotate(-1.2deg);
  transform-origin: left;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: stretch;
}

.visit__card {
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--green);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform: rotate(-.8deg);
}
.visit__label {
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .3rem;
}
.visit__address {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: .95;
  text-transform: uppercase;
  font-style: normal;
  margin: 0;
}
.visit__phone {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  border-bottom: 5px solid var(--red);
}
.visit__phone:hover { color: var(--red); }

.visit__map {
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  background: var(--charcoal);
  transform: rotate(.8deg);
  overflow: hidden;
  min-height: 340px;
  position: relative;
}
.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: contrast(1.06) saturate(1.15);
}
/* Bottom-left keeps it off Google's own info card and map controls. */
.visit__pin {
  position: absolute;
  bottom: -16px;
  left: 18px;
  transform: rotate(-3deg);
  z-index: 2;
}

.visit__truck { margin-top: clamp(2rem, 4vw, 3rem); position: relative; }
.visit__truck .polaroid { max-width: 720px; margin-inline: auto; transform: rotate(-1.2deg); box-shadow: 14px 14px 0 var(--red); }
.visit__truck-sticker { position: absolute; top: -18px; right: 4%; z-index: 3; }

@media (max-width: 880px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__card, .visit__map { transform: none; }
  .visit__truck-sticker { right: 0; }
}


/* =============================================================================
   16. HOURS
   ========================================================================== */

.hours__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hours__title { font-size: clamp(2.6rem, 10vw, 6.8rem); line-height: .86; }
.hours__title .dot { color: var(--red); }
.hours__note { margin-top: 1.2rem; max-width: 34ch; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  font-family: var(--label);
  transform: rotate(.6deg);
}
.hours-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--label);
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-bottom: .7rem;
}
.hours-table th,
.hours-table td {
  padding: clamp(.6rem, 1.6vw, .95rem) clamp(.8rem, 2vw, 1.4rem);
  border-bottom: 3px solid var(--black);
  font-size: clamp(1.1rem, 1rem + .7vw, 1.65rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { text-align: left; font-weight: 400; width: 42%; }
.hours-table td { text-align: right; }
.hours-table .closed { color: var(--red); }

.hours-table tr.is-today {
  background: var(--green);
  color: var(--white);
}
.hours-table tr.is-today .closed { color: var(--white); }

/* Injected by script.js into today's row — a real element, so it is announced. */
.today-flag {
  font-size: .62em;
  letter-spacing: .18em;
  margin-left: .7em;
  white-space: nowrap;
  opacity: .92;
}

.hours__status-wrap { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

@media (max-width: 820px) {
  .hours__grid { grid-template-columns: 1fr; }
  .hours-table { transform: none; box-shadow: 8px 8px 0 var(--red); }
}
@media (max-width: 420px) {
  .today-flag { display: block; margin-left: 0; }
}


/* =============================================================================
   17. FINAL CTA
   ========================================================================== */

.finale {
  position: relative;
  overflow: clip;
  text-align: center;
  background: var(--red);
  color: var(--white);
  --sh: var(--black);
  --focus: var(--white);
}
.finale__title {
  font-size: clamp(3rem, 11.5vw, 8.4rem);
  line-height: .92;
  margin-bottom: 1.4rem;
}
.finale__title .f1 { display: block; color: var(--white); }
.finale__title .f2 { display: block; color: transparent; -webkit-text-stroke: 3px var(--white); }
.finale__title .f3 {
  display: block;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--white);
  box-shadow: 10px 10px 0 var(--black);
  padding: .04em .16em .07em;
  transform: rotate(-1.2deg);
  margin-top: .1em;
}
.finale__copy { font-size: clamp(1.1rem, 1rem + .6vw, 1.5rem); margin-bottom: 2.2rem; }
.finale .btn-row { justify-content: center; }
.finale__arrow {
  color: var(--white);
  margin: 0 auto 1rem;
  display: block;
  transform: rotate(78deg);
  animation: bob 2.6s ease-in-out infinite;
}


/* =============================================================================
   18. FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--white);
  --focus: var(--white);
  position: relative;
  overflow: clip;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, .68fr));
  gap: clamp(1.6rem, 2.6vw, 2.6rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.footer__brand { display: grid; gap: 1.1rem; justify-items: start; }
.footer__logo { width: clamp(150px, 20vw, 215px); }
.footer__name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  line-height: .9;
  text-transform: uppercase;
  margin: 0;
}
.footer__tagline { max-width: 34ch; opacity: .88; margin: 0; }

.footer h3 {
  font-family: var(--label);
  font-size: 1.15rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  font-weight: 400;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__list a {
  text-decoration: none;
  font-family: var(--label);
  font-size: 1.25rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.footer__list a:hover { color: var(--red); border-bottom-color: var(--red); }

.footer address { font-style: normal; line-height: 1.7; }
.footer address a { text-decoration: none; border-bottom: 2px solid var(--red); }
.footer address a:hover { color: var(--red); }

.socials { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; padding: 0; list-style: none; }
.socials a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translate(-2px, -2px) rotate(-4deg);
  box-shadow: 7px 7px 0 var(--black);
}
.socials svg { width: 26px; height: 26px; fill: currentColor; }

.footer__signoff {
  border-top: 4px solid rgba(255, 255, 255, .2);
  padding-block: 1.6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer__hungry {
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.footer__hungry .c-red { color: var(--red); }
.footer__legal { font-size: .92rem; opacity: .72; margin: 0; }

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__signoff { justify-content: flex-start; }
}


/* =============================================================================
   19. CONTACT PAGE
   ========================================================================== */

.chero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  --focus: var(--white);
  overflow: clip;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  isolation: isolate;
}
.chero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--halftone-light);
  background-size: 13px 13px;
  opacity: .8; pointer-events: none; z-index: -1;
}
.chero__title {
  font-size: clamp(3.6rem, 17vw, 12.5rem);
  line-height: .78;
  margin-bottom: 1.2rem;
}
.chero__title .h1a { display: block; color: var(--white); }
.chero__title .h1b { display: block; color: var(--red-on-dark); text-shadow: 5px 5px 0 var(--black); }
.chero__copy { max-width: 52ch; font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); }
.chero__mark {
  position: absolute;
  right: 1%;
  bottom: -6%;
  width: clamp(200px, 32vw, 430px);
  opacity: .95;
  z-index: -1;
  transform: rotate(-5deg);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
}
@media (max-width: 760px) { .chero__mark { display: none; } }

/* Contact cards */
.ccards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.4rem);
}
.ccard {
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
  background: var(--white);
  color: var(--black);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.ccard:nth-child(1) { transform: rotate(-1.5deg); }
.ccard:nth-child(2) { transform: rotate(1.1deg); margin-top: clamp(0px, 2vw, 30px); }
.ccard:nth-child(3) { transform: rotate(-.8deg); }
.ccard--red { background: var(--red); color: var(--white); }
.ccard--green { background: var(--green); color: var(--white); }
.ccard__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.ccard__icon svg { width: 28px; height: 28px; fill: currentColor; }
.ccard__label {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  line-height: .95;
  margin: 0;
}
.ccard__value {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.05;
  text-wrap: balance;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  margin: 0;
}
a.ccard__value { border-bottom: 4px solid currentColor; display: inline-block; }
.ccard p { flex: 1; margin: 0; }
.ccard .btn { align-self: flex-start; }
.ccard--red .btn { --btn-bg: var(--white); --btn-fg: var(--red); }
.ccard--green .btn { --btn-bg: var(--white); --btn-fg: var(--green); }

@media (max-width: 900px) {
  .ccards { grid-template-columns: 1fr; }
  .ccard:nth-child(n) { transform: none; margin-top: 0; box-shadow: 8px 8px 0 var(--black); }
}

/* =============================================================================
   20. DELIVERY AREAS — hub page + per-town landing pages
   ========================================================================== */

/* --- Shared hero for the hub and the town pages -------------------------- */
.ahero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  --focus: var(--white);
  overflow: clip;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  isolation: isolate;
}
.ahero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--halftone-light);
  background-size: 13px 13px;
  opacity: .8; pointer-events: none; z-index: -1;
}
.ahero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ahero__title {
  font-size: clamp(2.8rem, 9vw, 6.8rem);
  line-height: .88;
  margin-bottom: 1.2rem;
}
.ahero__title .a1 { display: block; color: var(--white); }
.ahero__title .a2 { display: block; color: var(--red-on-dark); }
.ahero__title .a3 {
  display: block;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  padding: .02em .16em .06em;
  transform: rotate(-1.2deg);
  margin-top: .1em;
  width: fit-content;
}
.ahero__copy { max-width: 50ch; margin-bottom: 1.8rem; }
.ahero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  border-top: 3px dashed rgba(255, 255, 255, .32);
  padding-top: 1.4rem;
  margin-top: 1.8rem;
}
.ahero__art { position: relative; display: grid; place-items: center; }
.ahero__art img { width: min(100%, 440px); filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .55)); }
.ahero__stamp { position: absolute; top: 2%; right: -2%; z-index: 3; }

@media (max-width: 900px) {
  .ahero__grid { grid-template-columns: 1fr; }
  .ahero__art { order: -1; }
  .ahero__art img { width: min(62%, 260px); }
  .ahero__stamp { right: 4%; }
}
@media (max-width: 520px) { .ahero__stamp { display: none; } }

/* --- Hub: grid of town cards --------------------------------------------- */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.4rem);
}
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
  padding: clamp(1.4rem, 3vw, 2rem);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.area-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.area-card:nth-child(even) { transform: rotate(1deg); }
.area-card:nth-child(odd):hover  { transform: rotate(-1.2deg) translate(-4px, -4px); }
.area-card:nth-child(even):hover { transform: rotate(1deg) translate(-4px, -4px); }
.area-card:hover { box-shadow: 18px 18px 0 var(--red); }
.area-card__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--black);
  paint-order: stroke fill;
}
.area-card__name {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  line-height: .95;
  text-transform: uppercase;
  margin: 0;
}
.area-card__state {
  display: block;
  font-family: var(--label);
  font-size: .42em;
  letter-spacing: .22em;
  color: var(--red);
  margin-top: .5em;
}
.area-card p { flex: 1; margin: 0; font-size: .98rem; }
.area-card__go {
  font-family: var(--label);
  font-size: 1.15rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.area-card__go span { transition: transform .18s ease; }
.area-card:hover .area-card__go span { transform: translateX(6px); }

/* --- Town page: local colour section -------------------------------------- */
.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.local__title { font-size: clamp(2.1rem, 6vw, 4.1rem); line-height: .92; margin-bottom: 1.3rem; }
.local__title .l2 { display: block; color: var(--red); }
.local__facts {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.local__facts li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-family: var(--label);
  font-size: clamp(1.05rem, .95rem + .4vw, 1.3rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
  border-bottom: 3px dashed rgba(17, 17, 17, .2);
  padding-bottom: .6rem;
}
.local__facts li::before {
  content: "";
  width: .6em; height: .6em;
  margin-top: .3em;
  flex: none;
  background: var(--green);
  clip-path: polygon(50.0% 0.0%, 61.8% 33.8%, 97.6% 34.5%, 69.0% 56.2%, 79.4% 90.5%, 50.0% 70.0%, 20.6% 90.5%, 31.0% 56.2%, 2.4% 34.5%, 38.2% 33.8%);
}
.local__facts li:nth-child(even)::before { background: var(--red); }
.sec--dark .local__facts li { border-bottom-color: rgba(255, 255, 255, .22); }

.local__art { position: relative; }
.local__art .polaroid { transform: rotate(-2.4deg); box-shadow: 14px 14px 0 var(--red); }
/* Smaller than the default starburst — at full size it swallows the photo. */
.local__badge {
  position: absolute;
  top: -9%;
  right: -8%;
  z-index: 3;
  width: clamp(96px, 9.5vw, 126px);
  font-size: clamp(.74rem, .68rem + .3vw, .92rem);
  filter: drop-shadow(6px 6px 0 var(--black));
}

@media (max-width: 880px) {
  .local__grid { grid-template-columns: 1fr; }
  .local__art { max-width: 440px; width: 100%; margin-inline: auto; }
}
/* Flat tag straddling the top edge — for photos where a starburst dropped onto
   the image would cover the subject or the caption. */
.local__tag {
  position: absolute;
  top: -16px;
  right: 6%;
  z-index: 3;
}

/* Once the photo spans the full gutter there is no room left to hang the badge
   off its edge — the overhang becomes page-wide horizontal overflow. */
@media (max-width: 620px) {
  .local__badge { right: 0; top: -7%; }
  .local__tag { right: 0; }
}

/* --- Town page: "you're in the right place" pitch -------------------------- */
.pitch { text-align: center; position: relative; overflow: clip; }
.pitch__title {
  font-size: clamp(2.3rem, 8vw, 6rem);
  line-height: .92;
  margin-bottom: 1.4rem;
}
.pitch__title .p2 { display: block; color: transparent; -webkit-text-stroke: 3px var(--white); }
.pitch__copy { max-width: 54ch; margin-inline: auto; font-size: clamp(1.05rem, 1rem + .45vw, 1.3rem); }
.pitch .btn-row { justify-content: center; margin-top: 2.2rem; }
.pitch__rule {
  width: min(620px, 88%);
  height: 20px;
  margin: 2.4rem auto 0;
  background: var(--serape);
  border-block: 3px solid var(--white);
}

/* --- Town page: order strip ---------------------------------------------- */
.orderstrip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 14px 14px 0 var(--red);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  transform: rotate(-.6deg);
}
.orderstrip__title { font-size: clamp(1.7rem, 4.6vw, 3rem); margin-bottom: .6rem; }
.orderstrip__note { font-size: .95rem; margin-top: .8rem; opacity: .78; }
@media (max-width: 780px) {
  .orderstrip__inner { grid-template-columns: 1fr; transform: none; box-shadow: 9px 9px 0 var(--red); }
}

/* --- Cross-links to the other towns --------------------------------------- */
.nearby { display: flex; flex-wrap: wrap; gap: .8rem; list-style: none; margin: 0; padding: 0; }
.nearby a {
  display: inline-block;
  font-family: var(--label);
  font-size: clamp(1rem, .9rem + .4vw, 1.25rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid currentColor;
  padding: .55em 1em .45em;
  min-height: 46px;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.nearby a:hover { background: var(--white); color: var(--black); transform: rotate(-1.5deg); }


/* =============================================================================
   21. ORDER-DIRECT COMPARISON PAGES
   Platform names are set in our own typeface on our own colours — never their
   logos, brand colours or trade dress. Nominative reference only.
   ========================================================================== */

.phero__title { font-size: clamp(2.6rem, 8.4vw, 6.4rem); line-height: .9; margin-bottom: 1.2rem; }
.phero__title .p1 { display: block; color: var(--white); }
.phero__title .p2 { display: block; color: var(--red-on-dark); }
.phero__title .p3 { display: block; color: transparent; -webkit-text-stroke: 3px var(--white); }

/* The platform name, oversized and knocked out behind the hero copy */
.phero__ghost {
  position: absolute;
  right: -2%;
  bottom: -4%;
  font-family: var(--display);
  font-size: clamp(4rem, 15vw, 13rem);
  line-height: .8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .16);
  pointer-events: none;
  z-index: -1;
  user-select: none;
  white-space: nowrap;
}

/* --- Gratitude block ------------------------------------------------------ */
.thanks__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.4rem, 3.5vw, 2.6rem);
  align-items: center;
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 14px 14px 0 var(--green);
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  transform: rotate(-.7deg);
}
.thanks__mark { width: clamp(90px, 14vw, 150px); }
.thanks__title { font-size: clamp(1.8rem, 4.8vw, 3.2rem); margin-bottom: .8rem; }
.thanks__title em { font-style: normal; color: var(--red); }
@media (max-width: 720px) {
  .thanks__inner { grid-template-columns: 1fr; transform: none; box-shadow: 9px 9px 0 var(--green); }
  .thanks__mark { justify-self: start; }
}

/* --- Receipt ------------------------------------------------------------- */
.receipt {
  --tear: 16px;
  position: relative;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--black);
  border-bottom: 0;
  padding: clamp(1.3rem, 3vw, 1.9rem) clamp(1.1rem, 2.6vw, 1.6rem) 1.2rem;
  transform: rotate(-1.4deg);
  filter: drop-shadow(12px 12px 0 rgba(0, 0, 0, .45));
}
/* Torn bottom edge: white sawtooth with a black silhouette dropped beneath it. */
.receipt::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: calc(var(--tear) * -1);
  height: var(--tear);
  background:
    linear-gradient(-135deg, var(--white) 50%, transparent 0) 0 0 / 24px var(--tear) repeat-x,
    linear-gradient(135deg,  var(--white) 50%, transparent 0) 0 0 / 24px var(--tear) repeat-x;
  filter: drop-shadow(0 3px 0 var(--black));
}
.receipt__head {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  margin: 0 0 .3rem;
}
.receipt__sub {
  font-family: var(--label);
  font-size: .95rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 3px dashed rgba(17, 17, 17, .3);
}
.receipt__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.receipt__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--label);
  font-size: clamp(1rem, .92rem + .35vw, 1.2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.receipt__list li > span:first-child {
  position: relative;
  overflow: hidden;
}
/* dotted leader between the label and the amount */
.receipt__list li > span:first-child::after {
  content: " ...................................................................";
  color: rgba(17, 17, 17, .38);
  letter-spacing: .1em;
}
.receipt__list b { font-weight: 400; white-space: nowrap; }
.receipt__total {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 4px solid var(--black);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .6rem;
  align-items: baseline;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  text-transform: uppercase;
  color: var(--red);
}
.receipt__note {
  font-family: var(--body);
  font-size: .82rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(17, 17, 17, .68);
  margin: 1rem 0 0;
}

/* --- Side-by-side: marketplace vs direct ---------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.6rem);
  align-items: stretch;
}
.split__card {
  border: 5px solid var(--black);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split__card--bad  { background: var(--red);   color: var(--white); box-shadow: 12px 12px 0 var(--black); transform: rotate(-1deg); }
.split__card--good { background: var(--green); color: var(--white); box-shadow: 12px 12px 0 var(--black); transform: rotate(1deg); }
.split__label {
  font-family: var(--label);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0;
  opacity: .9;
}
.split__title { font-size: clamp(1.6rem, 4.2vw, 2.6rem); margin: 0; }
.split__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; flex: 1; }
.split__list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.4;
  border-bottom: 2px dashed rgba(255, 255, 255, .3);
  padding-bottom: .6rem;
}
.split__list li:last-child { border-bottom: 0; }
.split__list li::before { content: "✕"; font-weight: 700; flex: none; }
.split__card--good .split__list li::before { content: "✓"; }
.split__big {
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: .9;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split__card--bad, .split__card--good { transform: none; box-shadow: 8px 8px 0 var(--black); }
}

/* --- Fee stack bars ------------------------------------------------------- */
.stack { display: grid; gap: 1rem; margin-top: 1.6rem; }
.stack__row { display: grid; gap: .4rem; }
.stack__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--label);
  font-size: clamp(.95rem, .88rem + .3vw, 1.15rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stack__bar {
  height: 26px;
  border: 3px solid var(--black);
  background: rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden;
}
.stack__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--white);
}
.stack__fill--red   { background: var(--red); }
.stack__fill--green { background: var(--green); }

/* --- Trademark disclaimer ------------------------------------------------- */
.tm-note {
  border-top: 3px dashed rgba(255, 255, 255, .28);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  font-size: .85rem;
  line-height: 1.6;
  opacity: .72;
  max-width: 78ch;
}
.sec--paper .tm-note { border-top-color: rgba(17, 17, 17, .25); }


/* =============================================================================
   22. FEEDBACK PAGE (third-party review embed)
   ========================================================================== */

.review-panel {
  background: var(--white);
  color: var(--black);
  border: 5px solid var(--black);
  box-shadow: 16px 16px 0 var(--red);
  padding: clamp(1.3rem, 3.5vw, 2.6rem);
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  /* Deliberately NOT rotated. A transform on an ancestor becomes the containing
     block for fixed-position descendants, which breaks dropdowns and modals
     inside third-party widgets. The tilt lives on the decoration instead. */
}
.review-panel__tag { position: absolute; top: -18px; left: 5%; z-index: 2; }
.review-panel__tag--r { left: auto; right: 5%; top: auto; bottom: -18px; }

/* Reserve roughly the widget's initial height so the page doesn't jump when it
   finishes loading, without leaving dead space underneath once it has. */
.review-embed { min-height: 300px; }

/* Belt and braces. The current review widget renders into a shadow root, which
   already isolates it from this site's global element rules (display:block on
   img/svg, font:inherit on button, colour:inherit on links, paragraph margins).
   These resets only bite if the embed is ever swapped for one that renders into
   the light DOM — at which point those globals would rewrite its layout. */
.review-embed img,
.review-embed svg    { display: revert; max-width: revert; height: revert; }
.review-embed button { font: revert; color: revert; }
.review-embed a      { color: revert; }
.review-embed p      { margin: revert; }

.review-fallback {
  border: 3px dashed rgba(17, 17, 17, .35);
  padding: 1.2rem;
  font-size: .95rem;
  line-height: 1.6;
}

/* --- Hero trust badge (avatars + rating) ---------------------------------- */

/* This widget is configured for a light context (#ffffff ground, #374151 text)
   and paints no background of its own. Dropped straight onto the near-black
   hero its text measures 1.91:1 — invisible. The white card gives it the
   surface it was configured against and takes that to 10.3:1. */
.hero-proof {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--black);
  box-shadow: 7px 7px 0 var(--red);
  padding: .7rem 1rem .6rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  max-width: 100%;
  /* No transform — same reasoning as the other two embeds. */
}
/* An author-level display beats the UA's [hidden] rule, so restate it or the
   reveal-when-loaded logic below can never hide this. */
.hero-proof[hidden] { display: none; }

.hero-proof__embed { min-height: 64px; }

@media (max-width: 520px) {
  .hero-proof { box-shadow: 5px 5px 0 var(--red); padding: .6rem .75rem .5rem; }
}

/* --- Homepage reviews carousel ------------------------------------------- */

/* The carousel is configured in the OrderChop dashboard with
   background_color #007803 — this site's exact brand green — plus a light grey
   border, red dates and gold stars. So it is deliberately built to sit ON the
   green section rather than inside a white card. No panel chrome here; the
   widget paints its own. Inherited colour is left as the section's white, which
   is what its light-grey text was chosen against. */
.reviews-panel { max-width: 1100px; margin-inline: auto; }
.reviews-embed { min-height: 280px; }
.reviews__cta { margin-top: clamp(1.6rem, 3vw, 2.4rem); justify-content: center; }


/* =============================================================================
   23. SPANISH TYPOGRAPHY ADJUSTMENTS
   Spanish runs roughly 15–25% longer than English, and the display headlines
   are tightly fitted clamp() values tuned to the English strings. These
   :lang(es) overrides give the longer phrases room without a second stylesheet
   and without touching the English rendering at all.
   ========================================================================== */

html:lang(es) .hero__title      { font-size: clamp(2.6rem, 8.6vw, 6.4rem); }
html:lang(es) .intro__title     { font-size: clamp(2.1rem, 7.2vw, 5.4rem); }
html:lang(es) .mama__title      { font-size: clamp(2.4rem, 7.2vw, 5.4rem); }
html:lang(es) .nopal__title     { font-size: clamp(2.1rem, 6.8vw, 4.9rem); }
html:lang(es) .statement__title { font-size: clamp(2.1rem, 7.6vw, 5.8rem); }
html:lang(es) .visit__title     { font-size: clamp(2.2rem, 7.8vw, 5.6rem); }
html:lang(es) .finale__title    { font-size: clamp(2.6rem, 9.8vw, 7.2rem); }
html:lang(es) .ahero__title     { font-size: clamp(2.5rem, 8vw, 5.9rem); }
html:lang(es) .chero__title     { font-size: clamp(3rem, 14vw, 10rem); }
html:lang(es) .hours__title     { font-size: clamp(2rem, 7vw, 4.6rem); }
html:lang(es) .local__title     { font-size: clamp(1.9rem, 5.4vw, 3.7rem); }
html:lang(es) .pitch__title     { font-size: clamp(2rem, 7.2vw, 5.2rem); }
html:lang(es) .eat__title       { font-size: clamp(1.7rem, 4.1vw, 2.7rem); }
html:lang(es) .cform__title     { font-size: clamp(2.1rem, 7vw, 4.7rem); }
html:lang(es) .orderstrip__title { font-size: clamp(1.5rem, 4.1vw, 2.6rem); }
html:lang(es) .menu__title      { font-size: clamp(2.8rem, 13vw, 9.5rem); }

/* Longer button labels ("Ordena en Línea", "Empieza tu Orden") need to wrap
   rather than force the row wider than its column. */
html:lang(es) .btn { text-wrap: balance; }

/* "Ordena en Línea" is ~46px wider than "Order Online", just enough to wrap the
   hero CTA pair onto two rows where English keeps them side by side. A small
   step down on the primary keeps the original composition. */
html:lang(es) .hero__cta .btn--big,
html:lang(es) .ahero .btn--big { font-size: clamp(1.2rem, .95rem + 1.25vw, 2.1rem); }

/* Spanish sentences run longer, so the fact lists gain a line more often. */
html:lang(es) .local__facts li { line-height: 1.3; }


/* =============================================================================
   24. MOTION, REVEAL & REDUCED MOTION
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s cubic-bezier(.2, .7, .3, 1), transform .6s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Preserve the deliberate tilt of elements that also reveal */
.reveal.tilt-left.is-visible  { transform: rotate(-2.2deg); }
.reveal.tilt-right.is-visible { transform: rotate(2.2deg); }

/* Desktop-only pointer flourish: cards lean toward the cursor. Purely cosmetic. */
@media (hover: hover) and (pointer: fine) {
  .lean { transition: transform .2s ease, box-shadow .2s ease; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .marquee__track,
  .hero__ghost span { animation: none !important; transform: none !important; }
  /* Deliberately NOT overflow-x:auto — the strip is aria-hidden decoration, and
     a scroll container there becomes a keyboard focus stop inside hidden
     content. Frozen and clipped is the correct resting state. */
  .marquee { overflow: hidden; }

  .sunburst { animation: none !important; }
  .hero__logo { animation: none !important; }
  .status__dot { animation: none !important; }

  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal.tilt-left  { transform: rotate(-2.2deg) !important; }
  .reveal.tilt-right { transform: rotate(2.2deg) !important; }
}

/* Print — collapse the noise, keep the facts. */
@media print {
  .header, .topbar, .marquee, .lightbox, .nav-backdrop, .hero__ghost, .sunburst, .finale { display: none !important; }
  body { color: #000; background: #fff; }
  .sec { padding-block: 1rem; }
  * { box-shadow: none !important; transform: none !important; }
}
