/* ==========================================================================
   Yack&Grill — design system
   Maximalist / neo-brutalist: thick borders, hard shadows, saturated colour.
   Palette mirrors the coloured buns on the menu (black, pink, green, red...).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours — one per bun */
  --ink: #14101a;
  --ink-soft: #3a3346;
  --paper: #fff4d6;
  --paper-2: #ffe9f4;

  --pink: #ff2e88;
  --green: #22e06a;
  --red: #ff3524;
  --yellow: #ffd60a;
  --blue: #2f6bff;
  --purple: #8b2fe6;
  --orange: #ff7a00;
  --cream: #ffe0a3;

  /* Structure */
  --border: 4px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 5px 5px 0 var(--ink);
  --shadow-lg: 14px 14px 0 var(--ink);

  /* Type */
  --font-display: "Archivo Black", "Arial Black", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Rubik", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --maxw: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  /* Confetti dots + a soft warm wash so no area of the page is ever flat */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 46, 136, 0.16) 0 22%, transparent 60%),
    radial-gradient(circle at 88% 8%, rgba(47, 107, 255, 0.14) 0 20%, transparent 55%),
    radial-gradient(circle at 78% 82%, rgba(34, 224, 106, 0.16) 0 24%, transparent 60%),
    radial-gradient(rgba(20, 16, 26, 0.09) 1.5px, transparent 1.6px);
  background-size: auto, auto, auto, 22px 22px;
  background-attachment: fixed, fixed, fixed, scroll;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.9rem 1.4rem;
  background: var(--yellow);
  border: var(--border) solid var(--ink);
  font-weight: 900;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   3. Buttons & small atoms
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }

.btn--pink   { background: var(--pink);   color: #fff; }
.btn--green  { background: var(--green); }
.btn--blue   { background: var(--blue);   color: #fff; }
.btn--paper  { background: #fff; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
}
.badge--pink  { background: var(--pink);   color: #fff; }
.badge--green { background: var(--green); }
.badge--blue  { background: var(--blue);   color: #fff; }
.badge--red   { background: var(--red);    color: #fff; }
.badge--black { background: var(--ink);    color: var(--yellow); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 6px;
  transform: rotate(-2deg);
  margin-bottom: 1rem;
}

/* Coloured word highlights inside headings */
.hl { padding: 0 0.12em; border-radius: 6px; }
.hl--pink   { background: var(--pink);   color: #fff; }
.hl--green  { background: var(--green); }
.hl--red    { background: var(--red);    color: #fff; }
.hl--blue   { background: var(--blue);   color: #fff; }
.hl--black  { background: var(--ink);    color: var(--yellow); }
.hl--yellow { background: var(--yellow); }

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--border) solid var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.8vw, 1.5rem);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-right: auto;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.3rem;
  transform: rotate(-6deg);
}
.brand__amp { color: var(--pink); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-weight: 800;
  text-decoration: none;
  border: 3px solid transparent;
  border-radius: 8px;
}
.nav__link:hover { background: #fff; border-color: var(--ink); }
.nav__link[aria-current="page"] {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}

.nav__toggle {
  display: none;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.4rem;
    padding-bottom: 0.8rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { border-color: var(--ink); background: #fff; text-align: center; }
}

/* --------------------------------------------------------------------------
   5. Ticker
   -------------------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--yellow);
  border-bottom: var(--border) solid var(--ink);
  padding-block: 0.55rem;
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: slide 28s linear infinite;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item:nth-child(3n)   { color: var(--pink); }
.ticker__item:nth-child(3n+1) { color: var(--green); }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   6. Sections & headings
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.section--paper  { background: #fff; border-block: var(--border) solid var(--ink); }
.section--pink   { background: var(--paper-2); border-block: var(--border) solid var(--ink); }
.section--dark   { background: var(--ink); color: var(--paper); border-block: var(--border) solid var(--ink); }
.section--dark .section__lead { color: #d9d2e4; }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__title { font-size: clamp(2rem, 1.4rem + 3.2vw, 3.6rem); }
.section__lead { font-size: 1.1rem; color: var(--ink-soft); }
.section--dark .section__title { color: var(--paper); }

/* Diagonal colour strip used to break sections apart */
.strip {
  height: 26px;
  border-block: var(--border) solid var(--ink);
  background: repeating-linear-gradient(
    -45deg,
    var(--pink) 0 28px,
    var(--yellow) 28px 56px,
    var(--green) 56px 84px,
    var(--blue) 84px 112px,
    var(--red) 112px 140px
  );
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem); }

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

.hero__content,
.hero__grid > * { min-width: 0; }

.hero__title {
  /* Capped so the longest word ("HAMBURGUESAS") never exceeds its column and
     forces the whole page to overflow horizontally. */
  font-size: clamp(1.9rem, 1rem + 5vw, 4.4rem);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.hero__title span { display: inline-block; }

.hero__text {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-block: 1.6rem 1.4rem;
}

.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }

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

/* CSS burger — the bun colour cycles through the menu palette */
.burger {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.burger__caption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.layer {
  width: min(320px, 70vw);
  border: var(--border) solid var(--ink);
  box-shadow: 4px 4px 0 rgba(20, 16, 26, 0.25);
}
.layer--bun-top {
  height: 74px;
  border-radius: 160px 160px 14px 14px;
  animation: bun-cycle 12s steps(1, end) infinite;
}
.layer--bun-bottom {
  height: 40px;
  border-radius: 14px 14px 60px 60px;
  animation: bun-cycle 12s steps(1, end) infinite;
}
.layer--lettuce {
  height: 22px;
  background: var(--green);
  border-radius: 999px;
  width: min(340px, 74vw);
}
.layer--cheese {
  height: 20px;
  background: var(--yellow);
  border-radius: 6px;
  width: min(330px, 72vw);
}
.layer--patty {
  height: 42px;
  background: #6b3a1f;
  border-radius: 999px;
  width: min(330px, 72vw);
}
.layer--sauce {
  height: 16px;
  background: var(--red);
  border-radius: 999px;
  width: min(324px, 71vw);
}

@keyframes bun-cycle {
  0%   { background: var(--ink); }
  25%  { background: var(--pink); }
  50%  { background: var(--green); }
  75%  { background: var(--red); }
  100% { background: var(--ink); }
}

/* --------------------------------------------------------------------------
   8. Generic card grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  padding: clamp(1.3rem, 3vw, 1.9rem);
  background: #fff;
  /* Explicit, so cards keep dark text inside .section--dark */
  color: var(--ink);
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card__title { font-size: 1.35rem; }
.card p:last-child { margin-bottom: 0; }

/* Bun colour cards */
.bun-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.bun-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.bun-card:nth-child(even) { transform: rotate(1.2deg); }
.bun-card:hover { transform: rotate(0) translateY(-6px); }
.bun-card__dot {
  display: block; /* it is a <span>: without this the circle collapses */
  width: 64px; height: 64px;
  border: var(--border) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.bun-card__dot--black  { background: var(--ink); }
.bun-card__dot--pink   { background: var(--pink); }
.bun-card__dot--green  { background: var(--green); }
.bun-card__dot--red    { background: var(--red); }
.bun-card__dot--blue   { background: var(--blue); }
.bun-card__dot--classic{ background: var(--cream); }

/* Feature cards with a big number */
.feature { position: relative; padding-top: 2.6rem; }
.feature__num {
  position: absolute;
  top: -22px; left: 18px;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--yellow);
  border: var(--border) solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.feature:nth-child(2) .feature__num { background: var(--pink); color: #fff; }
.feature:nth-child(3) .feature__num { background: var(--green); }
.feature:nth-child(4) .feature__num { background: var(--blue); color: #fff; }

/* --------------------------------------------------------------------------
   9. Menu (carta)
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.filter {
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease;
}
.filter:hover { transform: translateY(-2px); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--yellow); }

.menu-section + .menu-section { margin-top: clamp(2.5rem, 6vw, 4rem); }

.menu-section__title {
  display: inline-block;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.4rem);
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: var(--border) solid var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.6rem;
  transform: rotate(-1deg);
}
.menu-section__title--pink  { background: var(--pink);   color: #fff; }
.menu-section__title--green { background: var(--green); }
.menu-section__title--blue  { background: var(--blue);   color: #fff; }
.menu-section__title--red   { background: var(--red);    color: #fff; }
.menu-section__title--yellow{ background: var(--yellow); }
.menu-section__title--black { background: var(--ink);    color: var(--yellow); }

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.menu-card:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }
.menu-card.is-hidden { display: none; }

.menu-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.menu-card__name { font-size: 1.25rem; margin: 0; }
.menu-card__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 0.3rem 0.7rem;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}
.menu-card__desc { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.menu-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.4rem; }

.bun-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bun-flag::before {
  content: "";
  width: 16px; height: 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--bun, var(--cream));
}

.menu-empty {
  padding: 2rem;
  text-align: center;
  font-family: var(--font-display);
  background: var(--yellow);
  border: var(--border) dashed var(--ink);
  border-radius: var(--radius);
}
.menu-empty[hidden] { display: none; }

.allergens {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: 1.4rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  border: var(--border) solid var(--ink);
  box-shadow: var(--shadow);
}
.allergens p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Top customers
   -------------------------------------------------------------------------- */
.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}
@media (max-width: 780px) {
  .podium { grid-template-columns: 1fr; align-items: stretch; }
}

.podium__item {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  padding-top: 3.4rem;
  text-align: center;
  background: #fff;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.podium__item--1 { background: var(--yellow); order: 2; transform: scale(1.04); }
.podium__item--2 { background: var(--pink);  color: #fff; order: 1; }
.podium__item--3 { background: var(--green); order: 3; }
@media (max-width: 780px) {
  .podium__item--1, .podium__item--2, .podium__item--3 { order: 0; transform: none; }
}

.podium__medal {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  font-size: 1.6rem;
  background: #fff;
  border: var(--border) solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.podium__name { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem); margin-bottom: 0.2rem; }
.podium__meta { font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }
.podium__points {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 8px;
}
.podium__fav { margin-top: 0.9rem; font-size: 0.95rem; margin-bottom: 0; }

.table-wrap {
  overflow-x: auto;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.rank-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}
.rank-table th,
.rank-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 3px solid var(--ink);
}
.rank-table thead th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: var(--yellow);
}
.rank-table tbody tr:last-child td { border-bottom: 0; }
.rank-table tbody tr:nth-child(even) { background: var(--paper-2); }
.rank-table td:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.rank-table td:last-child { font-weight: 800; white-space: nowrap; }

/* Used on an <ol>, so the native marker has to go — the counter circle replaces it */
.steps { counter-reset: step; display: grid; gap: 1.2rem; list-style: none; padding: 0; margin: 0; }
.step {
  position: relative;
  padding: 1.3rem 1.5rem 1.3rem 4.6rem;
  background: #fff;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  font-family: var(--font-display);
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 999px;
}
.step:nth-child(2)::before { background: var(--pink); color: #fff; }
.step:nth-child(3)::before { background: var(--blue); color: #fff; }
.step:nth-child(4)::before { background: var(--yellow); }
.step h3 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.step p { margin-bottom: 0; }

.prize {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--pink);
  color: #fff;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.prize h2 { color: #fff; }
.prize__list { display: grid; gap: 0.6rem; }
.prize__list li {
  display: flex;
  gap: 0.7rem;
  font-weight: 600;
}
.prize__list li::before { content: "★"; color: var(--yellow); font-size: 1.2rem; line-height: 1.4; }

/* --------------------------------------------------------------------------
   11. Info & footer
   -------------------------------------------------------------------------- */
.info-card__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--pink);
}
.info-card dl { margin: 0; display: grid; gap: 0.35rem; }
.info-card .row { display: flex; justify-content: space-between; gap: 1rem; }
.info-card dt { font-weight: 700; }
.info-card dd { margin: 0; color: var(--ink-soft); }

.contact-link {
  font-weight: 800;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cta-band {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
  padding: clamp(2.2rem, 6vw, 3.6rem);
  background: var(--green);
  border: var(--border) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(1.8rem, 1.3rem + 2.6vw, 3rem); margin: 0; }

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: var(--border) solid var(--ink);
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.site-footer h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.site-footer a { color: var(--paper); }
.footer-links li { margin-bottom: 0.45rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 3px solid var(--ink-soft);
  font-size: 0.85rem;
  color: #cfc7db;
}

/* --------------------------------------------------------------------------
   12. Scroll reveal (progressive enhancement — content is visible without JS)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .layer--bun-top,
  .layer--bun-bottom { animation: none; background: var(--pink); }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media print {
  .site-header, .ticker, .site-footer, .filters, .cta-band { display: none; }
  body { background: #fff; }
  .card, .menu-card { box-shadow: none; break-inside: avoid; }
}
