:root {
  color-scheme: dark;
  --black: #05090a;
  --black-2: #091012;
  --panel: #0d1719;
  --panel-2: #122124;
  --white: #f5f8f8;
  --muted: #a7b9bc;
  --dim: #687d81;
  --lime: #60b4be;
  --green: #2d818a;
  --teal: #9edce0;
  --amber: #f2b84b;
  --amber-soft: #ffd987;
  --amber-glow: rgba(242,184,75,.28);
  --stadium-blue: #7488f5;
  --stadium-blue-soft: #b7c1ff;
  --coral: #e97b66;
  --coral-soft: #ffc1b5;
  --orange: #f5f8f8;
  --line: rgba(159, 218, 224, .16);
  --line-hot: rgba(96, 180, 190, .66);
  --shell: min(1320px, calc(100vw - 40px));
  --header: 76px;
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 8%, rgba(30,172,105,.09), transparent 28rem),
    radial-gradient(circle at 88% 45%, rgba(200,255,49,.045), transparent 32rem),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .33;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: #061008; background: var(--lime); }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10000; padding: 10px 16px; transform: translateY(-150%); border-radius: 10px; background: var(--lime); color: #071009; }
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.muted { color: var(--muted); }
.section { position: relative; padding: clamp(72px, 8vw, 128px) 0; }
.section--tight { padding: clamp(46px, 5vw, 76px) 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 24px; height: 8px; border-left: 8px solid var(--lime); border-right: 8px solid rgba(200,255,49,.25); }
.display,
.section-title,
.page-title,
.dish-title { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 900; line-height: .9; letter-spacing: -.025em; text-transform: uppercase; text-wrap: balance; }
.section-title { font-size: clamp(44px, 6vw, 84px); }
.page-title { font-size: clamp(54px, 8vw, 116px); }
.accent { color: var(--lime); }
.lead { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); }
.section-head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(260px,.65fr); gap: 42px; align-items: end; margin-bottom: 42px; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }

.scroll-progress { position: fixed; z-index: 1100; top: 0; left: 0; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg,var(--green),var(--lime)); box-shadow: 0 0 14px rgba(200,255,49,.55); }
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header); border-bottom: 1px solid var(--line); background: rgba(5,7,6,.82); backdrop-filter: blur(20px) saturate(140%); }
.site-header__inner { display: flex; align-items: center; height: 100%; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; font-size: 20px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.brand__ball { position: relative; display: grid; place-items: center; width: 38px; aspect-ratio: 1; border: 1px solid rgba(200,255,49,.45); border-radius: 50%; background: #101a12; color: var(--lime); font-size: 11px; letter-spacing: 0; box-shadow: inset 0 0 16px rgba(200,255,49,.07); }
.brand__ball::before, .brand__ball::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(200,255,49,.22); transform: rotate(45deg); }
.brand__ball::after { transform: rotate(-15deg); border-radius: 50%; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a { position: relative; padding: 11px 12px; color: #bbc3bb; font-size: 13px; font-weight: 750; }
.nav a:hover, .nav a[aria-current="page"] { color: white; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--lime); }
.menu-button { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: var(--panel); }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 18px; height: 1px; margin: 5px auto; background: white; transition: transform .25s ease, opacity .25s ease; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: white; font-size: 13px; font-weight: 850; transition: transform .25s var(--ease), border-color .25s ease, background .25s ease; }
.btn::after { content: ""; position: absolute; width: 120%; height: 220%; left: -130%; top: -60%; transform: rotate(22deg); background: linear-gradient(90deg,transparent,rgba(255,255,255,.26),transparent); transition: left .65s var(--ease); }
.btn:hover::after { left: 120%; }
.btn:hover { transform: translateY(-2px); border-color: var(--line-hot); }
.btn--lime { border-color: var(--lime); background: var(--lime); color: #061008; box-shadow: 0 14px 34px rgba(164,220,24,.18); }
.btn--dark { background: #0a0e0b; }
.btn__icon { font-size: 17px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }

.hero { position: relative; min-height: calc(100svh - var(--header)); display: grid; align-items: center; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,#050706 0%,rgba(5,7,6,.88) 42%,rgba(5,7,6,.2) 72%,#050706 100%); }
.hero::after { content: ""; position: absolute; z-index: -1; left: -10vw; bottom: -38vw; width: 82vw; aspect-ratio: 2/1; border: 1px solid rgba(200,255,49,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(200,255,49,.018), 0 0 0 160px rgba(200,255,49,.012); transform: rotate(-8deg); }
.hero__grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr); gap: clamp(30px,6vw,90px); align-items: center; padding: 70px 0; }
.hero__copy { position: relative; z-index: 2; }
.hero__title { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(88px,13vw,188px); line-height: .7; letter-spacing: -.035em; text-transform: uppercase; }
.hero__title .outline { display: block; color: transparent; -webkit-text-stroke: 1px rgba(244,240,230,.55); }
.hero__title .solid { display: block; color: var(--white); }
.hero__subtitle { max-width: 620px; margin: 34px 0 32px; color: #bdc6bd; font-size: clamp(17px,1.7vw,22px); }
.hero__facts { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; color: #879288; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero__facts span { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts span::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--lime); border-radius: 50%; }
.hero__visual { position: relative; min-height: 650px; }
.hero-photo { position: absolute; inset: 0 0 40px 50px; overflow: hidden; border: 1px solid var(--line); border-radius: 140px 22px 140px 22px; transform: rotate(2deg); background: var(--panel); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.07); transition: transform 1.2s var(--ease); }
.hero-photo--video { container-type: size; background: #03090a; }
.hero-photo--video > img { position: absolute; z-index: 0; inset: 0; }
.hero-photo__video { position: absolute; z-index: 1; left: 50%; top: 50%; width: 177.78cqh; height: 100cqh; max-width: none; border: 0; opacity: 0; transform: translate(-50%,-50%) scale(1.025); pointer-events: none; filter: saturate(.88) contrast(1.08) brightness(.82); animation: hero-video-reveal 1s ease 4s forwards; }
@container (min-aspect-ratio:16/9) { .hero-photo__video { width: 100cqw; height: 56.25cqw; } }
@keyframes hero-video-reveal { to { opacity: 1; } }
.hero-photo:hover img { transform: scale(1.045); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(4,7,5,.58),transparent 58%); }
.hero-card { position: absolute; z-index: 2; left: 0; bottom: 0; width: 260px; padding: 22px; border: 1px solid var(--line-hot); border-radius: 22px; background: rgba(7,11,8,.87); backdrop-filter: blur(16px); }
.hero-card strong { display: block; margin-bottom: 7px; font-size: 24px; }
.hero-card span { color: var(--muted); font-size: 13px; }
.score-tag { position: absolute; z-index: 3; top: 30px; right: -8px; display: grid; grid-template-columns: auto auto; gap: 0; overflow: hidden; border-radius: 10px; transform: rotate(3deg); box-shadow: 0 18px 36px rgba(0,0,0,.35); }
.score-tag span { padding: 10px 13px; background: #0a0e0b; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.score-tag strong { display: grid; place-items: center; min-width: 44px; background: var(--lime); color: #071009; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--lime); color: #061008; transform: rotate(-1deg) scale(1.02); }
.ticker__track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 20px; padding: 15px 22px; font-size: 13px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.ticker span::after { content: "◆"; font-size: 9px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.018); }
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(38px,5vw,68px); line-height: 1; color: var(--lime); }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }

.category-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.category-card { position: relative; min-height: 240px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg,#151c17,#090c0a); transition: transform .35s var(--ease), border-color .3s ease; }
.category-card::before { content: ""; position: absolute; width: 150px; aspect-ratio: 1; right: -58px; bottom: -55px; border: 1px solid rgba(200,255,49,.23); border-radius: 50%; box-shadow: 0 0 0 28px rgba(200,255,49,.025), 0 0 0 56px rgba(200,255,49,.018); transition: transform .55s var(--ease); }
.category-card:hover { transform: translateY(-7px); border-color: var(--line-hot); }
.category-card:hover::before { transform: scale(1.22); }
.category-card__count { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.category-card h3 { position: relative; z-index: 1; max-width: 9ch; margin: 90px 0 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(28px,3vw,42px); line-height: .94; letter-spacing: -.02em; text-transform: uppercase; }
.category-card__link { position: absolute; inset: 0; z-index: 2; }

.dish-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.dish-card { --x: 50%; --y: 50%; position: relative; display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at var(--x) var(--y),rgba(200,255,49,.07),transparent 35%),var(--panel); transition: transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.dish-card:hover { transform: translateY(-6px); border-color: var(--line-hot); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.dish-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0a0e0b; }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .4s ease; }
.dish-card:hover .dish-card__media img { transform: scale(1.055); filter: saturate(1.08); }
.dish-card__placeholder { position: relative; display: grid; place-items: center; width: 100%; height: 100%; overflow: hidden; color: #758076; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; background: repeating-linear-gradient(45deg,#0b100d 0 14px,#0e1510 14px 28px); }
.dish-card__placeholder::before { content: ""; position: absolute; width: 120px; aspect-ratio: 1; border: 1px solid rgba(200,255,49,.18); border-radius: 50%; box-shadow: inset 0 0 0 22px rgba(200,255,49,.018); }
.dish-card__badge { position: absolute; left: 12px; top: 12px; padding: 7px 9px; border-radius: 8px; background: rgba(6,9,7,.82); color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.dish-card__body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.dish-card__meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; color: var(--dim); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.dish-card__meta span:last-child:not(:first-child) { padding: 5px 8px; border: 1px solid rgba(96,180,190,.32); border-radius: 999px; background: rgba(96,180,190,.08); color: #c5edf0; font-size: 12px; font-weight: 950; letter-spacing: .03em; }
.dish-card h3 { margin: 0 0 10px; font-size: clamp(18px,1.6vw,23px); font-weight: 700; line-height: 1.12; letter-spacing: -.025em; }
.dish-card p { display: -webkit-box; margin: 0 0 18px; overflow: hidden; color: var(--muted); font-size: 13px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.dish-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.dish-card__price { color: var(--lime); font-size: 20px; font-weight: 950; }
.dish-card__arrow { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; color: var(--lime); }
.dish-card__link { position: absolute; z-index: 4; inset: 0; }

.split-feature { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,.75fr); gap: 18px; }
.feature-photo { position: relative; min-height: 620px; overflow: hidden; border: 1px solid var(--line); border-radius: 42px 14px 42px 14px; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top,rgba(3,6,4,.84),transparent 55%); }
.feature-photo__copy { position: absolute; z-index: 2; left: clamp(24px,4vw,52px); right: clamp(24px,4vw,52px); bottom: clamp(24px,4vw,52px); }
.feature-photo h2 { margin: 0 0 12px; font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(46px,6vw,88px); line-height: .9; text-transform: uppercase; }
.feature-panel { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px,4vw,52px); border: 1px solid var(--line); border-radius: 14px 42px 14px 42px; background: linear-gradient(150deg,#172019,#0a0d0b); }
.feature-panel__lines { display: grid; gap: 10px; }
.feature-line { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.feature-line span { color: var(--lime); font-size: 11px; font-weight: 900; }
.feature-line strong { font-size: 17px; }
.feature-line p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

.article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.article-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #0e140f; transition: transform .35s var(--ease), border-color .3s ease; }
.article-card::after { content: ""; position: absolute; width: 180px; aspect-ratio: 1; top: -92px; right: -70px; border: 1px solid rgba(200,255,49,.16); border-radius: 50%; box-shadow: 0 0 0 28px rgba(200,255,49,.015); transition: transform .5s var(--ease); }
.article-card:hover { transform: translateY(-6px); border-color: var(--line-hot); }
.article-card:hover::after { transform: scale(1.18); }
.article-card__meta { position: relative; z-index: 1; display: flex; justify-content: space-between; color: #788378; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.article-card__meta span:first-child { color: var(--lime); }
.article-card h3 { position: relative; z-index: 1; margin: auto 0 14px; font-size: clamp(24px,2.3vw,34px); line-height: 1.02; letter-spacing: -.04em; }
.article-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; }
.article-card__link { position: absolute; z-index: 3; inset: 0; }

.page-hero { position: relative; padding: clamp(84px,10vw,155px) 0 clamp(54px,7vw,96px); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; z-index: -1; width: 54vw; aspect-ratio: 2/1; right: -8vw; top: 10%; border: 1px solid rgba(200,255,49,.12); border-radius: 50%; transform: rotate(-12deg); box-shadow: 0 0 0 60px rgba(200,255,49,.012); }
.page-hero__inner { max-width: 1080px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #788379; font-size: 12px; }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: #465047; }

.menu-toolbar { position: sticky; z-index: 40; top: calc(var(--header) + 12px); display: grid; grid-template-columns: minmax(260px,1fr) auto auto; gap: 12px; align-items: center; margin-bottom: 32px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(6,9,7,.88); backdrop-filter: blur(18px); }
.search { position: relative; }
.search input { width: 100%; height: 48px; padding: 0 46px 0 16px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: rgba(255,255,255,.035); color: white; }
.search input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,255,49,.08); }
.search::after { content: "⌕"; position: absolute; right: 16px; top: 50%; transform: translateY(-55%); color: var(--lime); font-size: 24px; }
.filter-group { display: flex; gap: 5px; }
.filter-button { min-height: 42px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.filter-button[aria-pressed="true"] { border-color: var(--lime); background: var(--lime); color: #061008; }
.menu-count { min-width: 90px; color: var(--muted); font-size: 12px; text-align: right; }
.menu-count strong { color: var(--lime); font-size: 20px; }
.category-chips { display: flex; gap: 8px; margin: 0 0 30px; padding-bottom: 8px; overflow-x: auto; scrollbar-width: thin; }
.category-chips a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #aab4aa; font-size: 11px; }
.category-chips a:hover { border-color: var(--lime); color: white; }
.empty { padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }

.dish-hero { padding: clamp(48px,7vw,96px) 0; }
.dish-layout { display: grid; grid-template-columns: minmax(380px,.9fr) minmax(0,1.1fr); gap: clamp(38px,7vw,96px); align-items: center; }
.dish-stage { position: relative; min-height: 600px; overflow: hidden; border: 1px solid var(--line); border-radius: 46px 15px; background: #0d120e; }
.dish-stage img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.dish-stage .dish-card__placeholder { min-height: 600px; }
.dish-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top,rgba(4,7,5,.24),transparent 40%); }
.dish-info .dish-title { margin-bottom: 24px; font-size: clamp(50px,6vw,88px); }
.dish-info__desc { max-width: 680px; color: var(--muted); font-size: clamp(16px,1.5vw,19px); }
.dish-price { display: flex; align-items: end; gap: 16px; margin: 32px 0; }
.dish-price strong { color: var(--lime); font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(52px,6vw,82px); line-height: 1; }
.dish-price span { padding-bottom: 8px; color: var(--dim); font-size: 12px; text-transform: uppercase; }
.dish-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.tag { padding: 8px 13px; border: 1px solid var(--line-hot); border-radius: 999px; background: rgba(96,180,190,.07); color: #d5eff1; font-size: 13px; font-weight: 850; }

.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: clamp(40px,7vw,86px); align-items: start; }
.prose { min-width: 0; color: #c7cec7; font-size: clamp(16px,1.4vw,19px); line-height: 1.78; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3 { color: white; line-height: 1.1; letter-spacing: -.035em; scroll-margin-top: 110px; text-wrap: balance; }
.prose h2 { margin: 2em 0 .7em; font-size: clamp(32px,4vw,54px); }
.prose h3 { margin: 1.7em 0 .6em; font-size: clamp(24px,2.7vw,36px); }
.prose p { margin: 0 0 1.35em; }
.prose strong { color: white; }
.prose a { color: var(--lime); text-decoration: underline; text-decoration-color: rgba(200,255,49,.35); text-underline-offset: 3px; }
.prose ul, .prose ol { margin: 0 0 1.5em; padding-left: 1.4em; }
.prose li { margin: .5em 0; }
.aside { position: sticky; top: calc(var(--header) + 30px); }
.toc, .aside-box { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(14,20,15,.8); }
.toc h2 { margin: 0 0 13px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.toc ol { margin: 0; padding: 0; list-style: none; }
.toc li { margin: 10px 0; }
.toc li.sub { padding-left: 12px; }
.toc a { color: var(--muted); font-size: 12px; line-height: 1.35; }
.toc a:hover { color: var(--lime); }
.article-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { padding: clamp(26px,4vw,46px); border: 1px solid var(--line); border-radius: var(--radius); background: #0e140f; }
.contact-card h2 { margin: 0 0 14px; font-size: clamp(30px,4vw,52px); line-height: 1; letter-spacing: -.04em; }
.contact-list { display: grid; gap: 0; margin-top: 24px; }
.contact-row { display: grid; grid-template-columns: 105px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-row span { color: var(--dim); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.contact-row strong { font-size: 15px; }
.callout { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(30px,5vw,62px); border: 1px solid var(--line-hot); border-radius: 32px; background: linear-gradient(120deg,rgba(34,105,63,.18),rgba(200,255,49,.045)); }
.callout h2 { margin: 0 0 10px; font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(42px,6vw,82px); line-height: .9; text-transform: uppercase; }
.callout p { max-width: 700px; margin: 0; color: var(--muted); }

.site-footer { margin-top: clamp(60px,8vw,110px); border-top: 1px solid var(--line); background: #040605; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,.55fr); gap: 34px; padding: 58px 0; }
.footer-brand p { max-width: 390px; color: var(--muted); font-size: 13px; }
.footer-col h2 { margin: 0 0 15px; color: #778178; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; width: fit-content; margin: 8px 0; color: #bac2ba; font-size: 13px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.055); color: #647065; font-size: 11px; }
.age { display: grid; place-items: center; width: 42px; aspect-ratio: 1; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 50%; color: var(--lime); font-weight: 900; }
.mobile-call { display: none; }

.motion-ready .motion { opacity: 0; transform: translateY(32px); filter: blur(7px); transition: opacity .75s var(--ease) var(--delay,0ms),transform .75s var(--ease) var(--delay,0ms),filter .75s var(--ease) var(--delay,0ms); }
.motion-ready .motion.visible { opacity: 1; transform: none; filter: none; }

@media (hover:hover) and (pointer:fine) and (min-width:1025px) {
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 32px, 980px); }
  .hero { min-height: auto; }
  .hero__grid { padding-block: 92px; }
  .nav a { padding-inline: 8px; font-size: 12px; }
  .site-header .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr .82fr; }
  .hero__visual { min-height: 540px; }
  .category-grid, .dish-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .content-layout { grid-template-columns: minmax(0,1fr) 240px; gap: 42px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,.7fr); }
  .footer-col:last-child { grid-column: 1/-1; }
}

@media (max-width: 850px) {
  :root { --header: 68px; --shell: min(100% - 28px, 760px); }
  .menu-button { display: block; }
  .nav { position: fixed; inset: var(--header) 0 auto 0; display: grid; gap: 2px; padding: 16px 14px 24px; transform: translateY(-125%); opacity: 0; border-bottom: 1px solid var(--line); background: rgba(5,7,6,.98); transition: transform .42s var(--ease),opacity .25s ease; }
  .nav.open { transform: none; opacity: 1; }
  .nav a { padding: 13px 16px; border-radius: 10px; font-size: 15px; }
  .nav a[aria-current="page"]::after { display: none; }
  body.nav-open { overflow: hidden; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding: 72px 0; }
  .hero__title { font-size: clamp(88px,22vw,150px); }
  .hero__visual { min-height: 520px; }
  .hero-photo { inset: 0 0 30px 35px; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-grid, .dish-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split-feature { grid-template-columns: 1fr; }
  .feature-photo { min-height: 520px; }
  .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .menu-toolbar { grid-template-columns: 1fr auto; }
  .search { grid-column: 1/-1; }
  .dish-layout { grid-template-columns: 1fr; }
  .dish-stage, .dish-stage img, .dish-stage .dish-card__placeholder { min-height: 520px; }
  .content-layout { grid-template-columns: 1fr; }
  .aside { position: static; order: -1; }
  .toc { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 24px); --radius: 20px; }
  body { padding-bottom: 62px; }
  body::before { background-size: 56px 56px; opacity: .22; }
  .section { padding: 64px 0; }
  .section--tight { padding: 42px 0; }
  .brand { font-size: 17px; }
  .brand__ball { width: 34px; }
  .hero__grid { padding: 58px 0 66px; }
  .hero__title { font-size: clamp(78px,25vw,116px); }
  .hero__subtitle { margin: 26px 0; font-size: 16px; }
  .hero__visual { min-height: 390px; }
  .hero-photo { inset: 0 0 24px 20px; border-radius: 72px 14px; }
  .hero-card { width: 220px; padding: 17px; }
  .score-tag { top: 16px; right: -4px; }
  .cta-row { align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .ticker span { padding-block: 12px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .section-title { font-size: clamp(42px,14vw,64px); }
  .page-title { font-size: clamp(50px,16vw,76px); }
  .category-grid, .dish-grid, .article-grid { grid-template-columns: 1fr; }
  .dish-card__media { aspect-ratio: 16/10; }
  .category-card { min-height: 210px; }
  .feature-photo { min-height: 430px; }
  .feature-panel { padding: 24px; }
  .page-hero { padding-top: 66px; }
  .menu-toolbar { position: static; grid-template-columns: 1fr; }
  .search, .filter-group, .menu-count { grid-column: auto; }
  .filter-group { display: grid; grid-template-columns: repeat(3,1fr); }
  .menu-count { text-align: left; }
  .dish-stage, .dish-stage img, .dish-stage .dish-card__placeholder { min-height: 360px; }
  .dish-info .dish-title { font-size: clamp(44px,14vw,66px); }
  .dish-price strong { font-size: 58px; }
  .prose { font-size: 16px; line-height: 1.7; }
  .prose h2 { font-size: 32px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .callout { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; padding: 44px 0; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { position: fixed; z-index: 950; left: 10px; right: 10px; bottom: 8px; display: flex; justify-content: center; min-height: 50px; border-radius: 999px; background: var(--lime); color: #061008; font-size: 13px; font-weight: 900; box-shadow: 0 12px 35px rgba(0,0,0,.4); }
  .motion-ready .motion { opacity: 1; transform: none; filter: none; transition: none; }
  .ticker__track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion { opacity: 1 !important; transform: none !important; filter: none !important; }
  .cursor { display: none !important; }
}

@media print {
  .site-header,.site-footer,.mobile-call,.scroll-progress,.cursor,.article-actions,.aside { display: none !important; }
  body { padding: 0; background: white; color: black; }
  .prose,.prose h2,.prose h3,.prose strong { color: black; }
}

/* OFFSIDE — Matchday Broadcast */
body {
  background:
    radial-gradient(circle at 10% 2%, rgba(96,180,190,.14), transparent 31rem),
    radial-gradient(circle at 94% 42%, rgba(96,180,190,.07), transparent 38rem),
    linear-gradient(135deg,#040708,#071013 54%,#040708);
}
body::before { background-size: 72px 72px; opacity: .4; }
body.dialog-open { overflow: hidden; }
.brand { width: clamp(145px,13vw,190px); }
.brand__logo { width: 100%; height: auto; }
.site-header { background: rgba(4,9,10,.86); }
.site-header__inner { gap: 22px; }
.header-cart { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 7px 0 17px; border: 1px solid var(--line-hot); border-radius: 999px; background: rgba(96,180,190,.08); color: #dff7f9; font-size: 12px; font-weight: 900; cursor: pointer; }
.header-cart b { display: grid; place-items: center; min-width: 30px; height: 30px; padding: 0 7px; border-radius: 999px; background: var(--lime); color: #041012; }
.header-cart.has-items { box-shadow: 0 0 0 5px rgba(96,180,190,.08); }
.scroll-progress { background: linear-gradient(90deg,#2e7e87,var(--lime),#d9fbfd); box-shadow: 0 0 20px rgba(96,180,190,.65); }
.btn--lime { color: #031012; box-shadow: 0 14px 38px rgba(96,180,190,.2); }
.btn--dark { background: #071012; }

.hero { min-height: calc(100svh - var(--header) + 46px); border-bottom: 1px solid var(--line); }
.hero::before { background: linear-gradient(90deg,#040809 0%,rgba(4,8,9,.94) 36%,rgba(4,8,9,.34) 70%,#040809 100%); }
.hero::after { border-color: rgba(96,180,190,.22); box-shadow: 0 0 0 70px rgba(96,180,190,.025),0 0 0 140px rgba(96,180,190,.015); }
.hero__mark { position: absolute; z-index: -1; width: min(43vw,640px); left: -7vw; top: 4%; opacity: .055; filter: blur(.2px); transform: rotate(-14deg); }
.hero__grid { padding: 78px 0 112px; }
.hero__title { line-height: .72; font-style: italic; }
.hero__title .outline { -webkit-text-stroke-color: rgba(158,220,224,.65); }
.hero__title .solid { color: #f5fbfb; text-shadow: 16px 16px 0 rgba(96,180,190,.1); }
.hero-photo { border: 1px solid rgba(96,180,190,.35); background: #081013; box-shadow: 0 40px 90px rgba(0,0,0,.48),inset 0 0 80px rgba(96,180,190,.07); }
.hero-photo::after { background: linear-gradient(140deg,transparent 48%,rgba(96,180,190,.22)); }
.hero-card { border-color: rgba(158,220,224,.35); background: rgba(7,16,18,.88); box-shadow: 0 22px 56px rgba(0,0,0,.4); }
.hero-card > span,.hero-card small { color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-card strong { display: block; margin: 4px 0; font-size: 26px; }
.score-tag { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; min-width: 185px; border-color: #7bc6ce; background: var(--lime); color: #031012; }
.score-tag span { font-size: 10px; font-weight: 950; }
.score-tag strong { font-variant-numeric: tabular-nums; }
.hero__broadcast { position: absolute; left: 50%; bottom: 0; display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; transform: translateX(-50%); border-top: 1px solid rgba(158,220,224,.17); color: #77979b; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.ticker { border-color: var(--line-hot); background: #60b4be; color: #031012; }

.category-card { background: linear-gradient(145deg,#102124,#081012); }
.category-card::before,.article-card::after,.page-hero::after { border-color: rgba(96,180,190,.22); }
.dish-card { background: radial-gradient(circle at var(--x) var(--y),rgba(96,180,190,.12),transparent 38%),linear-gradient(145deg,#101b1e,#080d0f); }
.dish-card__media { background: #081113; }
.dish-card__badge { background: rgba(3,10,11,.82); }
.dish-card__link { z-index: 3; }
.dish-card__bottom { position: relative; z-index: 5; }
.dish-card__add { display: grid; place-items: center; width: 40px; aspect-ratio: 1; border: 1px solid var(--line-hot); border-radius: 50%; background: rgba(96,180,190,.08); color: var(--lime); font-size: 24px; line-height: 1; cursor: pointer; transition: transform .25s var(--ease),background .25s ease,color .25s ease; }
.dish-card__add:hover { transform: rotate(90deg) scale(1.06); background: var(--lime); color: #031012; }
.feature-panel,.contact-card,.article-card,.toc,.aside-box { background: linear-gradient(145deg,#111f22,#080e10); }
.feature-photo { border-color: rgba(96,180,190,.3); }
.mobile-cart { display: none; }

dialog { max-width: none; max-height: none; padding: 0; border: 0; color: var(--white); }
dialog::backdrop { background: rgba(0,5,6,.78); backdrop-filter: blur(12px); }
.dialog-close { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #0c1719; color: white; font-size: 25px; cursor: pointer; }
.product-dialog { width: min(1060px,calc(100vw - 32px)); overflow: visible; border: 1px solid rgba(96,180,190,.38); border-radius: 32px; background: #081012; box-shadow: 0 44px 110px rgba(0,0,0,.72); }
.product-dialog[open] { animation: dialog-in .45s var(--ease); }
.product-dialog > .dialog-close { position: absolute; z-index: 4; top: 16px; right: 16px; }
.product-dialog__grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(380px,.96fr); min-height: 610px; }
.product-dialog__media { position: relative; min-height: 610px; overflow: hidden; border-radius: 31px 0 0 31px; background: radial-gradient(circle,rgba(96,180,190,.18),transparent 65%),#050b0d; }
.product-dialog__media > img { width: 100%; height: 100%; object-fit: cover; }
.product-dialog__placeholder { display: grid; place-items: center; width: 100%; height: 100%; }
.product-dialog__placeholder img { width: min(44%,250px); height: auto; object-fit: contain; opacity: .34; }
.product-dialog__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,5vw,68px); }
.product-dialog__copy h2 { margin: 0 0 20px; font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size: clamp(36px,4.4vw,60px); font-weight: 600; line-height: 1.04; letter-spacing: -.035em; text-transform: none; }
.product-dialog__copy > p:not(.kicker) { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.product-dialog__meta { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin: 28px 0 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.product-dialog__meta strong { color: var(--lime); font-size: 30px; }
.product-dialog__meta span { padding: 7px 11px; border: 1px solid rgba(96,180,190,.34); border-radius: 999px; background: rgba(96,180,190,.08); color: #ccecef; font-size: 15px; font-weight: 900; }
.quantity { display: inline-grid; grid-template-columns: 50px 62px 50px; align-items: center; width: max-content; margin-bottom: 18px; overflow: hidden; border: 1px solid rgba(242,184,75,.34); border-radius: 14px; background: rgba(2,10,11,.52); }
.quantity button { width: 50px; height: 50px; border: 0; background: transparent; color: var(--white); font-size: 25px; font-weight: 700; cursor: pointer; touch-action: manipulation; user-select: none; transition: background .2s ease,color .2s ease; }
.quantity button:hover,.quantity button:focus-visible { background: var(--amber); color: #071012; outline: none; }
.quantity output { min-width: 62px; color: var(--amber-soft); text-align: center; font-size: 20px; font-weight: 900; font-variant-numeric: tabular-nums; }
.product-dialog__detail { width: fit-content; margin-top: 18px; color: var(--muted); font-size: 12px; }

.cart-dialog { position: fixed; inset: 0 0 0 auto; width: min(580px,100vw); height: 100dvh; margin: 0; overflow: visible; border-left: 1px solid rgba(96,180,190,.35); background: transparent; }
.cart-dialog[open] { animation: cart-in .45s var(--ease); }
.cart-panel { display: grid; grid-template-rows: auto minmax(210px,1fr) auto; height: 100%; padding: 24px; overflow: hidden; background: #071012; }
.cart-panel__header { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.cart-panel__header h2 { margin: 0; font-size: 34px; letter-spacing: -.045em; }
.cart-items { display: grid; grid-template-columns: minmax(0,1fr); align-content: start; gap: 9px; min-height: 0; max-height: none; padding: 14px 8px 14px 0; overflow: auto; scrollbar-color: var(--lime) #0b1719; scrollbar-width: thin; }
.cart-items::-webkit-scrollbar { width: 8px; }
.cart-items::-webkit-scrollbar-track { border-radius: 999px; background: #0b1719; }
.cart-items::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--lime); }
.cart-row { display: grid; grid-template-columns: 62px minmax(0,1fr) auto; gap: 11px; align-items: center; min-height: 78px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #0b1719; }
.cart-row > * { min-width: 0; }
.cart-row__image { width: 62px; height: 62px; overflow: hidden; border-radius: 9px; background: #071012; }
.cart-row__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__image span { display: grid; height: 100%; place-items: center; color: var(--lime); font-weight: 900; }
.cart-row h3 { margin: 0 0 4px; overflow: hidden; font-size: 13px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.cart-row p { display: flex; align-items: center; gap: 7px; margin: 0 0 6px; color: var(--dim); font-size: 10px; }
.cart-row p span { padding: 3px 6px; border-radius: 999px; background: rgba(96,180,190,.11); color: #bee5e8; font-size: 11px; font-weight: 850; }
.cart-row p i { font-style: normal; }
.cart-row > b { color: var(--lime); font-size: 12px; white-space: nowrap; }
.cart-row__controls { display: flex; align-items: center; gap: 8px; }
.cart-row__controls button { min-width: 32px; height: 32px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: rgba(96,180,190,.045); font-size: 15px; font-weight: 800; cursor: pointer; touch-action: manipulation; user-select: none; }
.cart-row__controls strong { min-width: 22px; color: var(--amber-soft); text-align: center; font-size: 15px; font-variant-numeric: tabular-nums; }
.cart-row__controls [data-cart-remove] { width: auto; padding: 0 8px; color: #8ea1a4; }
.cart-empty { display: grid; place-items: center; margin: auto; text-align: center; }
.cart-empty img { width: 100px; opacity: .36; }
.cart-empty h3 { margin: 16px 0 4px; font-size: 28px; }
.cart-empty p { max-width: 290px; margin: 0 0 20px; color: var(--muted); }
.checkout { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.checkout__total,.checkout fieldset,.checkout [data-address-field],.checkout label:has(textarea),.checkout .btn,.checkout__status { grid-column: 1/-1; }
.checkout__total { display: flex; justify-content: space-between; align-items: center; }
.checkout__total strong { color: var(--lime); font-size: 26px; }
.checkout label { display: grid; gap: 5px; color: #91a4a7; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.checkout input,.checkout textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: #0b1719; color: white; font-size: 14px; text-transform: none; }
.checkout input:focus,.checkout textarea:focus { border-color: var(--lime); }
.checkout fieldset { display: flex; gap: 18px; margin: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; }
.checkout legend { padding: 0 6px; color: #91a4a7; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.checkout fieldset label { display: flex; align-items: center; gap: 6px; color: #d8e3e4; font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.checkout fieldset input { width: auto; }
.checkout__status { min-height: 18px; margin: 0; color: #b7cacc; font-size: 12px; }
.hp { position: absolute !important; left: -9999px !important; }
.toast { position: fixed; z-index: 13000; left: 50%; bottom: 28px; padding: 12px 18px; transform: translate(-50%,30px); opacity: 0; border: 1px solid var(--line-hot); border-radius: 999px; background: #0c1b1d; color: white; font-size: 12px; font-weight: 800; pointer-events: none; transition: opacity .25s ease,transform .35s var(--ease); }
.toast.show { transform: translate(-50%,0); opacity: 1; }

@keyframes dialog-in { from { opacity: 0; transform: translateY(28px) scale(.97); } }
@keyframes cart-in { from { transform: translateX(100%); } }

@media (max-width:1120px) {
  .brand { width: 160px; }
  .header-cart span { display: none; }
  .header-cart { padding-left: 7px; }
}
@media (max-width:850px) {
  .header-cart { margin-left: auto; }
  .menu-button { margin-left: 0; }
  .hero__broadcast { display: none; }
  .product-dialog__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:600px) {
  body { padding-bottom: 78px; }
  .brand { width: 132px; }
  .site-header__inner { gap: 8px; }
  .header-cart { border: 0; background: transparent; }
  .header-cart b { min-width: 28px; height: 28px; }
  .hero { min-height: auto; }
  .hero__mark { width: 88vw; left: -42vw; top: 2%; opacity: .045; }
  .hero__grid { padding: 50px 0 64px; }
  .hero__title { font-size: clamp(72px,24vw,108px); }
  .hero-photo { border-radius: 36px 8px; }
  .score-tag { min-width: 155px; }
  .mobile-cart { position: fixed; z-index: 900; left: 10px; right: 10px; bottom: 8px; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 18px; border: 1px solid #8ed4db; border-radius: 16px; background: #60b4be; color: #031012; box-shadow: 0 18px 48px rgba(0,0,0,.48); font-size: 12px; font-weight: 900; }
  .mobile-cart strong { display: flex; align-items: center; gap: 10px; }
  .mobile-cart b { display: grid; place-items: center; min-width: 26px; height: 26px; border-radius: 50%; background: #031012; color: white; }
  .mobile-cart i { font-style: normal; }
  .dish-card { display: grid; grid-template-columns: 118px minmax(0,1fr); min-height: 158px; border-radius: 17px; }
  .dish-card__media { height: 100%; min-height: 158px; aspect-ratio: auto; }
  .dish-card__badge { display: none; }
  .dish-card__body { min-width: 0; padding: 14px; }
  .dish-card__meta { margin-bottom: 8px; font-size: 9px; }
  .dish-card__meta span:first-child { display: none; }
  .dish-card__meta span:last-child:not(:first-child) { padding: 4px 7px; font-size: 11px; }
  .dish-card h3 { margin-bottom: 8px; font-size: 18px; }
  .dish-card p { display: none; }
  .dish-card__price { font-size: 16px; }
  .dish-card__add { width: 34px; font-size: 20px; }
  .product-dialog { width: 100vw; height: 100dvh; border: 0; border-radius: 0; }
  .product-dialog__grid { grid-template-columns: 1fr; height: 100%; overflow: auto; }
  .product-dialog__media { min-height: 42dvh; max-height: 46dvh; border-radius: 0; }
  .product-dialog__copy { justify-content: start; padding: 24px 20px 34px; }
  .product-dialog__copy h2 { font-size: clamp(32px,9.5vw,44px); line-height: 1.08; }
  .product-dialog__copy > p:not(.kicker) { font-size: 14px; }
  .product-dialog__meta { margin: 20px 0 15px; }
  .product-dialog__add { width: 100%; }
  .cart-dialog { width: 100vw; }
  .cart-panel { grid-template-rows: auto minmax(160px,34vh) minmax(0,1fr); padding: 18px 14px calc(18px + env(safe-area-inset-bottom)); }
  .cart-panel__header h2 { font-size: 28px; }
  .cart-items { max-height: none; }
  .cart-row { grid-template-columns: 62px 1fr; }
  .cart-row__image { width: 62px; height: 62px; }
  .cart-row > b { grid-column: 2; }
  .checkout { grid-template-columns: 1fr; overflow: auto; }
  .checkout > * { grid-column: 1 !important; }
  .toast { bottom: 84px; white-space: nowrap; }
}

@media print {
  .header-cart,.mobile-cart,.product-dialog,.cart-dialog,.toast { display: none !important; }
}

/* STADIUM BROADCAST V3 — first viewport */
.stadium-hero { --mx: 0px; --my: 0px; min-height: calc(100svh - var(--header)); background: radial-gradient(ellipse at 70% 5%,rgba(96,180,190,.14),transparent 42%),linear-gradient(115deg,#020506 0%,#071113 55%,#020506 100%); }
.stadium-hero::before { background: linear-gradient(90deg,#020506 0%,rgba(2,5,6,.95) 34%,rgba(2,5,6,.18) 74%,#020506 100%); }
.stadium-lights { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.stadium-lights i { position: absolute; top: -18%; width: 16vw; height: 105%; transform-origin: 50% 0; background: linear-gradient(to bottom,rgba(173,239,244,.2),rgba(96,180,190,.035) 48%,transparent 84%); filter: blur(10px); clip-path: polygon(42% 0,58% 0,100% 100%,0 100%); opacity: .72; animation: stadium-sweep 9s ease-in-out infinite alternate; }
.stadium-lights i:nth-child(1) { left: 2%; transform: rotate(-11deg); }
.stadium-lights i:nth-child(2) { left: 25%; transform: rotate(8deg); animation-delay: -3s; }
.stadium-lights i:nth-child(3) { right: 22%; transform: rotate(-7deg); animation-delay: -6s; }
.stadium-lights i:nth-child(4) { right: 0; transform: rotate(12deg); animation-delay: -1s; }
.stadium-pitch { position: absolute; z-index: -1; left: 50%; bottom: -38%; width: min(1500px,120vw); aspect-ratio: 2/1; transform: translateX(-50%) perspective(760px) rotateX(64deg); border: 1px solid rgba(96,180,190,.18); background: repeating-linear-gradient(90deg,rgba(96,180,190,.03) 0 9%,transparent 9% 18%); opacity: .58; }
.stadium-pitch::before,.stadium-pitch::after { content: ""; position: absolute; inset: 10% 4%; border: 1px solid rgba(96,180,190,.18); }
.stadium-pitch::after { inset: 50% auto auto 50%; width: 24%; aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; }
.stadium-pitch span { position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background: rgba(96,180,190,.18); }
.stadium-hero .hero__mark { transform: translate3d(calc(-7vw + var(--mx)),var(--my),0) rotate(-14deg); transition: transform .7s var(--ease); }
.stadium-hero .hero__grid { position: relative; z-index: 2; }
.live-kicker b { width: 8px; height: 8px; border-radius: 50%; background: #87f5ff; box-shadow: 0 0 0 0 rgba(135,245,255,.65); animation: live-pulse 1.7s ease-out infinite; }
.stadium-title { position: relative; isolation: isolate; line-height: .63; }
.stadium-title small { display: block; margin: 0 0 17px 7px; color: #7c9b9f; font-family: Inter,system-ui,sans-serif; font-size: clamp(10px,1vw,14px); font-style: normal; letter-spacing: .42em; text-transform: uppercase; }
.stadium-title .outline { transform: skewX(-8deg); }
.stadium-title .solid { position: relative; z-index: 1; transform: translateX(7%) skewX(-8deg); color: white; text-shadow: -14px 14px 0 rgba(96,180,190,.14); }
.stadium-title .solid::after { content: ""; position: absolute; left: -6%; right: 8%; bottom: -12px; height: 6px; transform: skewX(22deg); background: linear-gradient(90deg,var(--lime),transparent); }
.stadium-cta { border-radius: 8px 28px 8px 28px; }
.stadium-visual { transform: translate3d(calc(var(--mx) * -.45),calc(var(--my) * -.45),0); transition: transform .7s var(--ease); }
.stadium-visual .hero-photo { border-radius: 14px 90px 14px 90px; transform: rotate(-1.8deg); }
.stadium-visual .hero-photo::before { content: "MATCH CAM 01"; position: absolute; z-index: 3; left: 18px; top: 16px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.25); background: rgba(3,8,9,.66); color: white; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.broadcast-corners { position: absolute; z-index: 3; inset: 13px; pointer-events: none; background: linear-gradient(var(--lime),var(--lime)) left top/38px 2px no-repeat,linear-gradient(var(--lime),var(--lime)) left top/2px 38px no-repeat,linear-gradient(var(--lime),var(--lime)) right bottom/38px 2px no-repeat,linear-gradient(var(--lime),var(--lime)) right bottom/2px 38px no-repeat; opacity: .68; }
.lineup-card { border-radius: 8px 25px 8px 25px; }
.stadium-score { min-width: 212px; border-radius: 7px; box-shadow: 0 18px 55px rgba(0,0,0,.42),0 0 30px rgba(96,180,190,.16); }
.stadium-score strong { letter-spacing: .06em; }
.stadium-hero .hero__broadcast { background: linear-gradient(90deg,transparent,rgba(96,180,190,.055),transparent); }

@keyframes stadium-sweep { 0% { opacity: .28; transform: rotate(-12deg) translateX(-10%); } 100% { opacity: .82; transform: rotate(10deg) translateX(12%); } }
@keyframes live-pulse { 70% { box-shadow: 0 0 0 10px rgba(135,245,255,0); } 100% { box-shadow: 0 0 0 0 rgba(135,245,255,0); } }

@media (max-width:850px) {
  .stadium-pitch { bottom: -8%; width: 180vw; }
  .stadium-title .solid { transform: translateX(2%) skewX(-8deg); }
}
@media (max-width:600px) {
  .stadium-lights i:nth-child(n+3) { display: none; }
  .stadium-lights i { animation: none; opacity: .25; }
  .stadium-pitch { display: none; }
  .stadium-hero .hero__mark,.stadium-visual { transform: none; transition: none; }
  .stadium-title small { margin-bottom: 12px; }
  .stadium-title .solid::after { height: 4px; }
  .stadium-visual .hero-photo { transform: none; border-radius: 12px 54px 12px 54px; }
}

@media (prefers-reduced-motion:reduce) {
  .stadium-lights i,.live-kicker b { animation: none; }
}

/* STADIUM BROADCAST V3 — motion system */
:root { --pointer-x: 50vw; --pointer-y: 35vh; }
body::after { content: ""; position: fixed; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(360px circle at var(--pointer-x) var(--pointer-y),rgba(96,180,190,.075),transparent 70%); opacity: .8; }
.site-header { transition: height .35s var(--ease),background .35s ease,box-shadow .35s ease; }
.site-header.scrolled { background: rgba(2,7,8,.96); box-shadow: 0 16px 50px rgba(0,0,0,.34); }
.header-live { display: inline-flex; align-items: center; gap: 7px; padding: 5px 8px; border: 1px solid rgba(96,180,190,.3); border-radius: 999px; color: #9edce0; font-size: 8px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.header-live i { width: 6px; height: 6px; border-radius: 50%; background: #9ff7ff; box-shadow: 0 0 12px #9ff7ff; animation: live-blink 1.2s ease-in-out infinite alternate; }
.nav a::before { content: ""; position: absolute; left: 12px; right: 100%; bottom: 5px; height: 2px; background: var(--lime); transition: right .35s var(--ease); }
.nav a:hover::before { right: 12px; }


.stadium-hero .hero__copy { transform: translateY(calc(var(--scroll,0px) * .18)); }
.stadium-hero .stadium-visual { margin-top: calc(var(--scroll,0px) * -.15); }
.ready .stadium-title .outline { animation: title-off .8s var(--ease) both; }
.ready .stadium-title .solid { animation: title-side .85s var(--ease) .08s both; }
.ready .stadium-hero .hero__subtitle,.ready .stadium-hero .cta-row,.ready .stadium-hero .hero__facts { animation: stadium-copy .7s var(--ease) .35s both; }
.stadium-hero .hero-photo img { animation: match-cam 8s ease-in-out infinite alternate; }
.stadium-score::after { content: "LIVE"; position: absolute; right: 7px; top: -18px; padding: 3px 6px; border-radius: 3px 3px 0 0; background: #081012; color: #86dbe2; font-size: 7px; font-weight: 950; letter-spacing: .14em; }

main > .section { overflow: clip; }
main > .section::after { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--lime),transparent); box-shadow: 0 0 15px rgba(96,180,190,.45); transition: width 1.2s var(--ease); }
main > .section.in-play::after { width: 100%; }
.section-head .kicker { transform: translateX(-12px); opacity: .5; transition: transform .6s var(--ease),opacity .6s ease; }
.in-play .section-head .kicker { transform: none; opacity: 1; }
.section-title { position: relative; }
.section-title::after { content: ""; display: inline-block; width: .17em; height: .17em; margin-left: .12em; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); vertical-align: .18em; }

.category-grid { perspective: none; }
.category-card { transform-style: flat; border-radius: 8px 32px 8px 32px; background: linear-gradient(145deg,rgba(22,45,49,.94),rgba(5,12,14,.98)); }
.motion-ready .category-card.visible { transform: none; }
.motion-ready .category-card.visible:hover { transform: translateY(-4px); }
.category-card::after { content: ""; position: absolute; width: 170px; aspect-ratio: 1; right: -70px; bottom: -84px; border: 1px solid rgba(96,180,190,.22); border-radius: 50%; box-shadow: 0 0 0 24px rgba(96,180,190,.02); transition: transform .6s var(--ease); }
.category-card:hover::after { transform: scale(1.18) rotate(20deg); }
.category-card__role { position: absolute; right: 18px; top: 17px; color: #54757a; font-size: 8px; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }
.category-card h3,.category-card p,.category-card__count { transform: none; }

.dish-grid { perspective: none; }
.dish-card { transform-style: flat; border-radius: 8px 25px 8px 25px; }
.motion-ready .dish-card.visible { transform: none; }
.motion-ready .dish-card.visible:hover { transform: translateY(-4px); }
.dish-card__media::after { content: ""; position: absolute; z-index: 2; left: -70%; top: 0; width: 38%; height: 100%; transform: skewX(-18deg); background: linear-gradient(90deg,transparent,rgba(157,235,241,.2),transparent); transition: left .75s var(--ease); }
.dish-card:hover .dish-card__media::after { left: 135%; }
.dish-card__badge { border-radius: 4px 12px 4px 12px; }
.dish-card__add { position: relative; }
.dish-card__add::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(96,180,190,.2); border-radius: 50%; animation: add-orbit 5s linear infinite; }

.product-dialog[open] .product-dialog__media > img { animation: replay-in .72s var(--ease) both; }
.product-dialog[open] .product-dialog__copy > * { animation: replay-copy .55s var(--ease) both; }
.product-dialog[open] .product-dialog__copy > *:nth-child(2) { animation-delay: .06s; }
.product-dialog[open] .product-dialog__copy > *:nth-child(3) { animation-delay: .12s; }
.product-dialog[open] .product-dialog__copy > *:nth-child(n+4) { animation-delay: .18s; }
.product-dialog__media::after { content: "REPLAY"; position: absolute; z-index: 4; left: 18px; bottom: 18px; padding: 7px 10px; border-left: 3px solid var(--lime); background: rgba(2,7,8,.76); color: white; font-size: 8px; font-weight: 950; letter-spacing: .18em; }
.cart-row { animation: squad-row .42s var(--ease) both; }
.cart-row:nth-child(2) { animation-delay: .04s; }
.cart-row:nth-child(3) { animation-delay: .08s; }
.cart-row:nth-child(4) { animation-delay: .12s; }


.sport-ripple { position: absolute; width: 10px; height: 10px; margin: -5px; border-radius: 50%; background: rgba(255,255,255,.55); pointer-events: none; animation: sport-ripple .6s ease-out forwards; }

@keyframes live-blink { to { opacity: .35; } }
@keyframes title-off { from { opacity: 0; transform: translate3d(-80px,45px,0) skewX(-8deg); filter: blur(8px); } }
@keyframes title-side { from { opacity: 0; transform: translate3d(100px,55px,0) skewX(-8deg); filter: blur(8px); } }
@keyframes stadium-copy { from { opacity: 0; transform: translateY(24px); } }
@keyframes match-cam { from { transform: scale(1.02) translate3d(-.8%,0,0); } to { transform: scale(1.075) translate3d(.8%,-.6%,0); } }
@keyframes add-orbit { to { transform: rotate(360deg); } }
@keyframes replay-in { from { transform: scale(1.16); filter: contrast(1.3) brightness(.35) saturate(0); } }
@keyframes replay-copy { from { opacity: 0; transform: translateX(28px); } }
@keyframes squad-row { from { opacity: 0; transform: translateX(32px); } }
@keyframes sport-ripple { to { transform: scale(16); opacity: 0; } }

@media (max-width:850px) {
  .header-live { display: none; }
}
@media (max-width:600px) {
  body::after { display: none; }
  .stadium-hero .hero-photo img { animation: none; }
  .ready .stadium-title .outline,.ready .stadium-title .solid,.ready .stadium-hero .hero__subtitle,.ready .stadium-hero .cta-row,.ready .stadium-hero .hero__facts { animation-duration: .45s; }
  main > .section::after { transition-duration: .6s; }
  .motion-ready .category-card.visible,.motion-ready .category-card.visible:hover,.motion-ready .dish-card.visible,.motion-ready .dish-card.visible:hover { transform: none; }
  .dish-card__add::before { animation: none; }
}

@media (prefers-reduced-motion:reduce) {
  .stadium-hero .hero-photo img,.dish-card__add::before,.header-live i { animation: none; }
  .motion-ready .category-card.visible,.motion-ready .dish-card.visible { transform: none; }
}

/* Stadium Broadcast v3: full-page visual system */
body {
  background:
    linear-gradient(115deg,transparent 0 67%,rgba(96,180,190,.025) 67% 72%,transparent 72%),
    radial-gradient(circle at 12% 12%,rgba(96,180,190,.08),transparent 27rem),
    radial-gradient(circle at 86% 48%,rgba(35,104,112,.08),transparent 34rem),
    #020708;
}
main > .section { border-top: 1px solid rgba(96,180,190,.13); }
main > .section:nth-of-type(even) {
  background:
    linear-gradient(90deg,rgba(96,180,190,.026) 1px,transparent 1px),
    linear-gradient(rgba(96,180,190,.022) 1px,transparent 1px),
    linear-gradient(135deg,#061012,#020708 58%);
  background-size: 72px 72px,72px 72px,auto;
}
main > .section::before {
  content: "OFFSIDE / MATCHDAY";
  position: absolute;
  left: max(20px,calc((100vw - 1320px)/2));
  top: 16px;
  color: rgba(158,220,224,.32);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .24em;
}
.section-head { position: relative; padding-top: 24px; border-top: 3px solid rgba(96,180,190,.72); }
.section-head::after { content: "47"; position: absolute; right: 0; top: -13px; padding-left: 12px; background: #020708; color: rgba(158,220,224,.42); font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: 18px; letter-spacing: .08em; }

.page-hero {
  min-height: 430px;
  border-bottom: 1px solid rgba(96,180,190,.26);
  background:
    linear-gradient(105deg,rgba(2,7,8,.15) 0 58%,rgba(96,180,190,.08) 58% 58.5%,transparent 58.5%),
    repeating-linear-gradient(90deg,transparent 0 11.5%,rgba(96,180,190,.035) 11.5% 11.7%),
    radial-gradient(ellipse at 85% 50%,rgba(96,180,190,.15),transparent 33%);
}
.page-hero::before { content: "90:00"; position: absolute; right: clamp(24px,8vw,130px); bottom: -1.5vw; color: rgba(96,180,190,.075); font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(120px,20vw,310px); font-style: italic; line-height: .7; }
.page-hero::after { width: 44vw; right: -3vw; border-radius: 0; transform: skewX(-16deg) rotate(-4deg); box-shadow: 40px 0 0 rgba(96,180,190,.025),80px 0 0 rgba(96,180,190,.018); }
.page-hero__inner { position: relative; z-index: 2; max-width: 1160px; }

.category-grid { gap: 10px; }
.category-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 0;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 24px),calc(100% - 24px) 100%,0 100%);
  background:
    linear-gradient(90deg,var(--lime) 0 4px,transparent 4px),
    linear-gradient(145deg,#102529,#061012 72%);
}
.category-card::before { content: attr(data-count); display: none; }
.category-card::after { width: 190px; right: -82px; bottom: -102px; border-width: 2px; }
.category-card__role { right: auto; left: 22px; top: 22px; padding: 5px 8px; background: rgba(96,180,190,.12); color: #a6dce0; }
.category-card__count { position: absolute; right: 18px; top: 13px; color: rgba(158,220,224,.2); font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: 68px; font-style: italic; line-height: 1; letter-spacing: -.04em; }
.category-card h3 { max-width: 10ch; margin: 92px 0 8px; font-size: clamp(27px,2.5vw,38px); }
.category-card p { position: relative; z-index: 1; margin: 0; color: #769599; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.category-card:hover { border-color: #8cdae1; box-shadow: inset 0 0 0 1px rgba(158,220,224,.28),0 26px 60px rgba(0,0,0,.4); }

.dish-grid { gap: 20px 12px; }
.dish-card {
  border-radius: 18px;
  clip-path: none;
  background: linear-gradient(155deg,rgba(11,28,31,.94),rgba(4,13,15,.98));
  box-shadow: inset 0 -2px 0 rgba(96,180,190,.14),0 16px 44px rgba(0,0,0,.16);
}
.dish-card::after { content: ""; position: absolute; z-index: 1; left: 0; bottom: 0; width: 42%; height: 3px; background: var(--lime); transition: width .5s var(--ease); }
.dish-card:hover::after { width: 100%; }
.dish-card__media { aspect-ratio: 16/10; border-bottom: 1px solid rgba(96,180,190,.32); }
.dish-card__media::before { display: none; }
.dish-card__badge { left: 0; top: 0; padding: 9px 13px; border-radius: 0; border-right: 1px solid rgba(158,220,224,.3); border-bottom: 1px solid rgba(158,220,224,.3); background: rgba(2,8,9,.88); }
.dish-card__body { position: relative; padding: 22px 19px 20px; }
.dish-card__body::before { display: none; }
.dish-card__meta { padding-bottom: 9px; border-bottom: 1px solid rgba(96,180,190,.12); }
.dish-card h3 { max-width: 15ch; font-size: clamp(18px,1.45vw,21px); font-weight: 650; line-height: 1.16; letter-spacing: -.02em; }
.dish-card__price { font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: 24px; font-style: italic; font-weight: 400; letter-spacing: .02em; }
.dish-card__add { border-radius: 4px 14px 4px 14px; background: rgba(96,180,190,.08); }

.menu-toolbar {
  border-radius: 0;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,0 100%);
  border-color: rgba(96,180,190,.34);
  background: rgba(5,15,17,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.32),inset 4px 0 0 var(--lime);
}
.search input,.filter-button { border-radius: 0; }
.filter-button { transform: skewX(-8deg); }
.filter-button[aria-pressed="true"] { box-shadow: 5px 5px 0 rgba(96,180,190,.15); }
.category-chips a { border-radius: 0; background: rgba(96,180,190,.035); font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.category-chips a span { color: var(--lime); }

.btn { border-radius: 3px 17px 3px 17px; text-transform: uppercase; letter-spacing: .04em; }
.product-dialog { border-radius: 4px 36px 4px 36px; }
.product-dialog__media { border-radius: 3px 0 0 34px; }
.product-dialog__copy h2 { max-width: 13ch; }

@media (max-width:850px) {
  .page-hero { min-height: 350px; }
  .category-card__count { font-size: 56px; }
  .dish-card__body { padding-top: 22px; }
}
@media (max-width:600px) {
  main > .section::before { left: 12px; }
  .section-head { padding-top: 18px; }
  .page-hero { min-height: 300px; background: radial-gradient(ellipse at 95% 30%,rgba(96,180,190,.12),transparent 42%); }
  .page-hero::before { right: -12px; bottom: 16px; font-size: 118px; }
  .category-card { min-height: 190px; }
  .category-card h3 { margin-top: 78px; }
  .dish-card { grid-template-columns: 124px minmax(0,1fr); clip-path: none; }
  .dish-card__media { min-height: 164px; border-bottom: 0; border-right: 1px solid rgba(96,180,190,.24); }
  .dish-card__media::before { display: none; }
  .dish-card__body { padding: 15px 13px; }
  .dish-card__body::before { left: 13px; top: 9px; }
  .dish-card__meta { padding-bottom: 6px; }
  .dish-card h3 { font-size: 17px; }
  .dish-card__price { font-size: 19px; }
  .product-dialog { border-radius: 0; }
  .product-dialog__media { border-radius: 0; }
}

/* Integrated football pitch blueprint */
#content { position: relative; isolation: isolate; }
#content > section { position: relative; z-index: 1; }
.field-blueprint {
  position: fixed;
  z-index: 0;
  inset: calc(var(--header) + 22px) 3.2vw 34px;
  overflow: hidden;
  border: 1px solid rgba(111,198,207,.12);
  opacity: .52;
  pointer-events: none;
  mask-image: linear-gradient(to bottom,transparent 0,#000 13%,#000 82%,transparent 100%);
}
.field-blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,rgba(96,180,190,.025) 0 8.33%,transparent 8.33% 16.66%);
}
.field-blueprint::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: linear-gradient(112deg,transparent 42%,rgba(158,220,224,.045) 48%,transparent 54%);
  animation: field-light-sweep 12s ease-in-out infinite alternate;
}
.field-blueprint i { position: absolute; display: block; }
.field-blueprint__mid { left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(111,198,207,.16); }
.field-blueprint__circle { left: 50%; top: 50%; width: min(29vw,390px); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(111,198,207,.18); border-radius: 50%; box-shadow: inset 0 0 60px rgba(96,180,190,.018); }
.field-blueprint__circle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 6px; aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(158,220,224,.26); box-shadow: 0 0 18px rgba(158,220,224,.2); }
.field-blueprint__box { top: 25%; width: 15%; height: 50%; border: 1px solid rgba(111,198,207,.16); }
.field-blueprint__box::after { content: ""; position: absolute; top: 21%; width: 44%; height: 58%; border: 1px solid rgba(111,198,207,.14); }
.field-blueprint__box--left { left: -1px; border-left: 0; }
.field-blueprint__box--left::after { left: -1px; border-left: 0; }
.field-blueprint__box--right { right: -1px; border-right: 0; }
.field-blueprint__box--right::after { right: -1px; border-right: 0; }
.field-blueprint__goal { top: 40%; width: 1.6%; height: 20%; border: 1px solid rgba(111,198,207,.13); }
.field-blueprint__goal--left { left: 0; transform: translateX(-100%); }
.field-blueprint__goal--right { right: 0; transform: translateX(100%); }
.field-blueprint__spot { top: 50%; width: 5px; aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(158,220,224,.24); }
.field-blueprint__spot--left { left: 10.5%; }
.field-blueprint__spot--right { left: 89.5%; }
.field-blueprint__corner { width: 42px; aspect-ratio: 1; border: 1px solid rgba(111,198,207,.14); border-radius: 50%; }
.field-blueprint__corner--tl { left: -21px; top: -21px; }
.field-blueprint__corner--tr { right: -21px; top: -21px; }
.field-blueprint__corner--bl { left: -21px; bottom: -21px; }
.field-blueprint__corner--br { right: -21px; bottom: -21px; }

.stadium-hero::after { content: ""; position: absolute; z-index: 0; left: 50%; top: 50%; width: min(38vw,520px); aspect-ratio: 1; transform: translate(-50%,-50%) rotateX(68deg); border: 2px solid rgba(135,226,234,.1); border-radius: 50%; box-shadow: 0 0 0 15vw rgba(96,180,190,.012); pointer-events: none; }
.stadium-hero__grid { position: relative; z-index: 2; }
.page-hero__inner::after { content: ""; position: absolute; right: 3%; top: 50%; width: clamp(150px,20vw,290px); aspect-ratio: 1; transform: translateY(-50%); border: 1px solid rgba(132,218,225,.11); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(132,218,225,.025),0 0 0 48px rgba(132,218,225,.018); pointer-events: none; }
.dish-card__media { background-image: linear-gradient(rgba(96,180,190,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(96,180,190,.035) 1px,transparent 1px); background-size: 28px 28px; }
.dish-card__media::before { border-left: 2px solid var(--lime); }
.category-card { background-image: linear-gradient(90deg,var(--lime) 0 4px,transparent 4px),linear-gradient(90deg,transparent 49.7%,rgba(96,180,190,.05) 49.7% 50.3%,transparent 50.3%),linear-gradient(145deg,#102529,#061012 72%); }

@keyframes field-light-sweep { from { transform: translateX(-7%); } to { transform: translateX(7%); } }

@media (max-width:850px) {
  .field-blueprint { inset-inline: 20px; opacity: .38; }
  .page-hero__inner::after { right: -7%; }
}
@media (max-width:600px) {
  .field-blueprint { inset: calc(var(--header) + 12px) 11px 76px; opacity: .3; }
  .field-blueprint::before { background: repeating-linear-gradient(0deg,rgba(96,180,190,.024) 0 12.5%,transparent 12.5% 25%); }
  .field-blueprint__mid { left: 0; right: 0; top: 50%; bottom: auto; width: auto; height: 1px; }
  .field-blueprint__circle { width: 62vw; }
  .field-blueprint__box,.field-blueprint__goal,.field-blueprint__spot,.field-blueprint__corner { display: none; }
  .page-hero__inner::after { width: 48vw; right: -22%; opacity: .7; }
}
@media (prefers-reduced-motion:reduce) {
  .field-blueprint::after { animation: none; }
  .hero-photo__video { display: none; }
}

/* Selective stadium glass */
.site-header,
.menu-toolbar,
.category-card,
.stats,
.feature-panel,
.article-card,
.toc,
.product-dialog,
.cart-panel {
  border-color: rgba(164,229,234,.2);
  background-color: rgba(7,18,20,.72);
  box-shadow: inset 0 1px 0 rgba(225,252,255,.055),0 20px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.site-header { background: linear-gradient(90deg,rgba(3,10,11,.9),rgba(8,24,26,.72),rgba(3,10,11,.9)); }
.menu-toolbar { background: linear-gradient(120deg,rgba(12,31,34,.86),rgba(4,13,15,.76)); }
.category-card { background-color: rgba(8,24,27,.74); }
.stats { position: relative; background: linear-gradient(115deg,rgba(13,34,37,.76),rgba(4,13,15,.7)); }
.feature-panel,.article-card,.toc { background: linear-gradient(145deg,rgba(14,35,38,.75),rgba(4,12,14,.78)); }
.product-dialog { background: linear-gradient(120deg,rgba(9,24,26,.9),rgba(3,10,11,.86)); box-shadow: inset 0 1px 0 rgba(225,252,255,.07),0 40px 120px rgba(0,0,0,.72); }
.cart-panel { background: linear-gradient(145deg,rgba(10,28,30,.94),rgba(3,11,12,.92)); }
.product-dialog::before,.menu-toolbar::before,.stats::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  top: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(198,247,250,.5),transparent);
  pointer-events: none;
}
.product-dialog::backdrop,.cart-dialog::backdrop { background: rgba(0,5,6,.72); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }

@media (max-width:600px) {
  .site-header,.menu-toolbar,.category-card,.stats,.feature-panel,.article-card,.toc,.product-dialog,.cart-panel {
    backdrop-filter: blur(8px) saturate(112%);
    -webkit-backdrop-filter: blur(8px) saturate(112%);
  }
  .product-dialog::backdrop,.cart-dialog::backdrop { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}
@media (prefers-reduced-transparency:reduce) {
  .site-header,.menu-toolbar,.category-card,.stats,.feature-panel,.article-card,.toc,.product-dialog,.cart-panel { background-color: #081416; backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* Warm matchday accent: beer, floodlights and scoreboard */
.header-live { border-color: rgba(242,184,75,.3); color: var(--amber-soft); }
.header-live i { background: var(--amber); box-shadow: 0 0 14px var(--amber); }
.kicker::before { border-right-color: rgba(242,184,75,.62); }
.live-kicker b { background: var(--amber); box-shadow: 0 0 15px var(--amber-glow); }
.stadium-score strong,.stadium-score__time,.section-head::after { color: var(--amber); }
.category-card__count { color: rgba(242,184,75,.34); }
.category-card__role { background: rgba(242,184,75,.1); color: var(--amber-soft); }
.dish-card::after { background: linear-gradient(90deg,var(--lime),var(--amber)); }
.dish-card__price,.dish-price,.product-dialog__meta strong,.checkout__total strong,.cart-row__total { color: var(--amber); text-shadow: 0 0 22px rgba(242,184,75,.08); }
.dish-card__meta span:last-child:not(:first-child),.product-dialog__meta span,.tag { border-color: rgba(242,184,75,.3); background: rgba(242,184,75,.075); color: var(--amber-soft); }
.menu-count strong,.category-chips a span { color: var(--amber); }
.toast { border-color: rgba(242,184,75,.34); }
.stat:nth-child(even) strong { color: var(--amber); }
.filter-button[aria-pressed="true"] { box-shadow: 5px 5px 0 rgba(242,184,75,.18); }

/* Calm brand palette: turquoise structure with a warm matchday accent */
.category-card,.dish-card { --card-accent: var(--lime); --card-accent-soft: var(--teal); }
.category-card {
  background-image:
    linear-gradient(90deg,var(--card-accent) 0 4px,transparent 4px),
    linear-gradient(90deg,transparent 49.7%,color-mix(in srgb,var(--card-accent) 13%,transparent) 49.7% 50.3%,transparent 50.3%),
    linear-gradient(145deg,color-mix(in srgb,var(--card-accent) 10%,#0b2023),#061012 72%);
}
.category-card__role { color: var(--card-accent-soft); background: color-mix(in srgb,var(--card-accent) 12%,transparent); }
.category-card__count { color: color-mix(in srgb,var(--card-accent) 38%,transparent); }
.category-card:hover { border-color: color-mix(in srgb,var(--card-accent) 70%,white); }
.dish-card::after { background: linear-gradient(90deg,var(--card-accent),color-mix(in srgb,var(--card-accent) 45%,var(--amber))); }
.dish-card__badge { color: var(--card-accent-soft); border-color: color-mix(in srgb,var(--card-accent) 34%,transparent); }
.dish-card__add { border-color: color-mix(in srgb,var(--card-accent) 56%,transparent); color: var(--card-accent-soft); background: color-mix(in srgb,var(--card-accent) 8%,transparent); }
.dish-card__add::before { border-color: color-mix(in srgb,var(--card-accent) 22%,transparent); }
.dish-card__add:hover { background: var(--card-accent); color: #031012; }
.article-card { border-top: 3px solid var(--lime); }
.article-card:nth-child(3n+2) { border-top-color: var(--amber); }
.article-card:nth-child(3n+3) { border-top-color: var(--lime); }
.article-card:nth-child(3n+2) .article-card__meta span:first-child { color: var(--amber-soft); }
.article-card:nth-child(3n+3) .article-card__meta span:first-child { color: var(--teal); }
.stat:nth-child(3) strong { color: var(--lime); }
.stat:nth-child(4) strong { color: var(--amber); }
.stadium-lights i:nth-child(2) { background: linear-gradient(to bottom,rgba(242,184,75,.18),rgba(242,184,75,.025) 48%,transparent 84%); }
.stadium-lights i:nth-child(3) { background: linear-gradient(to bottom,rgba(116,136,245,.18),rgba(116,136,245,.025) 48%,transparent 84%); }
.stadium-lights i:nth-child(4) { background: linear-gradient(to bottom,rgba(233,123,102,.13),rgba(233,123,102,.018) 48%,transparent 84%); }
.feature-panel__lines span:nth-child(2) { border-color: rgba(116,136,245,.28); color: var(--stadium-blue-soft); }
.feature-panel__lines span:nth-child(3) { border-color: rgba(233,123,102,.25); color: var(--coral-soft); }

/* Final spacing and alignment pass */
.category-chips { padding-bottom: 0; scrollbar-width: none; -ms-overflow-style: none; mask-image: linear-gradient(90deg,#000 0,#000 calc(100% - 30px),transparent); }
.category-chips::-webkit-scrollbar { display: none; }
.menu-toolbar > * { min-width: 0; }
.dish-card__body,.product-dialog__copy,.cart-panel { min-width: 0; }

@media (min-width:1121px) and (max-height:820px) {
  .stadium-hero { min-height: calc(100svh - var(--header)); }
  .stadium-hero .hero__grid { padding: 30px 0 46px; }
  .stadium-hero .hero__visual { min-height: 540px; }
  .stadium-title { font-size: clamp(78px,10.8vw,150px); }
  .stadium-hero .hero__subtitle { margin: 24px 0; }
  .stadium-hero .hero__facts { margin-top: 24px; }
  .stadium-visual .hero-photo { bottom: 28px; }
}

@media (min-width:601px) and (max-width:1120px) {
  .stadium-hero { min-height: auto; }
  .stadium-hero .hero__grid { padding: 72px 0 82px; }
}

@media (max-width:600px) {
  .category-chips { margin-bottom: 24px; }
  .dish-card { align-items: stretch; min-height: 166px; }
  .dish-card__media { width: 100%; min-width: 0; height: 100%; min-height: 164px; aspect-ratio: auto; }
  .dish-card__media img { width: 100%; height: 100%; object-fit: cover; }
  .dish-card__body { width: 100%; min-width: 0; }
  .dish-card h3 { max-width: 100%; overflow-wrap: anywhere; }
  .menu-count { padding-left: 2px; }
  .cart-dialog { inset: 0; width: auto; max-width: none; }
  .cart-items { overflow-x: hidden; }
  .cart-row { width: 100%; max-width: 100%; }
}

/* Unified lightweight product-first pass */
:root {
  --radius: 18px;
  --line: rgba(159,218,224,.12);
  --line-hot: rgba(96,180,190,.42);
}
body, input, textarea { cursor: auto; }
a, button, [role="button"] { cursor: pointer; }
.cursor { display: none !important; }

main > .section::before,
.section-head::after { display: none; }
.section-head { padding-top: 22px; border-top: 1px solid rgba(159,218,224,.16); }
.field-blueprint { opacity: .3; }
.field-blueprint::after,
.stadium-lights i { animation: none; }
.stadium-lights i { opacity: .34; filter: blur(14px); }

.menu-toolbar {
  border: 1px solid rgba(159,218,224,.14);
  border-radius: 18px;
  clip-path: none;
  background: rgba(8,22,24,.94);
  box-shadow: 0 14px 42px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
}
.search input {
  border-color: rgba(159,218,224,.13);
  border-radius: 12px;
  background: rgba(3,11,12,.7);
}
.filter-button {
  transform: none;
  border-color: rgba(159,218,224,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  box-shadow: none;
}
.filter-button[aria-pressed="true"] {
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(96,180,190,.16);
}
.category-chips a {
  border-color: rgba(159,218,224,.12);
  border-radius: 999px;
  background: rgba(96,180,190,.035);
  text-transform: none;
  letter-spacing: 0;
}

.category-grid { gap: 16px; }
.category-card {
  min-height: 194px;
  padding: 22px;
  border: 1px solid rgba(159,218,224,.12);
  border-radius: 18px;
  clip-path: none;
  background:
    radial-gradient(circle at 100% 100%,rgba(96,180,190,.085),transparent 43%),
    linear-gradient(145deg,rgba(14,37,40,.92),rgba(5,15,17,.98));
  box-shadow: 0 16px 42px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform .28s var(--ease),border-color .28s ease,box-shadow .28s ease;
}
.category-card::after {
  right: -88px;
  bottom: -114px;
  width: 190px;
  border-width: 1px;
  border-color: rgba(96,180,190,.12);
  box-shadow: 0 0 0 28px rgba(96,180,190,.012);
}
.category-card__role { display: none; }
.category-card__count {
  right: 20px;
  top: 18px;
  color: rgba(158,220,224,.18);
  font-family: Inter,ui-sans-serif,system-ui,sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.055em;
}
.category-card h3 {
  max-width: 14ch;
  margin: 72px 0 8px;
  font-family: Inter,ui-sans-serif,system-ui,sans-serif;
  font-size: clamp(23px,2vw,30px);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-transform: none;
}
.category-card p {
  color: #7f9b9e;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .025em;
  text-transform: none;
}
.motion-ready .category-card.visible:hover,
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126,204,211,.3);
  box-shadow: 0 22px 52px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.04);
}

.dish-grid { gap: 18px; }
.dish-card {
  border-color: rgba(159,218,224,.11);
  border-radius: 18px;
  background: linear-gradient(155deg,rgba(11,28,31,.96),rgba(4,13,15,.99));
  box-shadow: 0 15px 38px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.025);
}
.motion-ready .dish-card.visible:hover,
.dish-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126,204,211,.28);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}
.dish-card:hover .dish-card__media img { transform: scale(1.025); }
.dish-card::after { height: 2px; opacity: .68; }
.dish-card__badge { border-radius: 0 0 10px 0; }
.dish-card__add {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.dish-card__add::before { display: none; }

.btn { border-radius: 14px; }
.product-dialog {
  overflow: hidden;
  border-color: rgba(159,218,224,.16);
  border-radius: 24px;
  box-shadow: 0 38px 100px rgba(0,0,0,.62);
}
.product-dialog__media { border-radius: 23px 0 0 23px; }
.product-dialog__add { position: relative; z-index: 10; pointer-events: auto; }
.dialog-close { border-color: rgba(159,218,224,.16); box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.cart-row { border-color: rgba(159,218,224,.11); box-shadow: 0 9px 22px rgba(0,0,0,.14); }

.category-card,
.stats,
.feature-panel,
.article-card,
.toc { backdrop-filter: none; -webkit-backdrop-filter: none; }

@media (max-width:600px) {
  .menu-toolbar { border-radius: 16px; }
  .category-grid { gap: 12px; }
  .category-card { min-height: 164px; padding: 18px; border-radius: 16px; }
  .category-card__count { right: 16px; top: 14px; font-size: 34px; }
  .category-card h3 { margin-top: 58px; font-size: 22px; }
  .dish-card { border-radius: 16px; }
  .product-dialog { border-radius: 0; }
  .product-dialog__media { border-radius: 0; }
}

/* Premium Matchday — product-first refinement */
:root {
  --black: #050b0c;
  --black-2: #071012;
  --panel: #0d1a1c;
  --panel-2: #112124;
  --white: #f3f1ea;
  --muted: #91a4a6;
  --dim: #657b7e;
  --lime: #64b8c0;
  --teal: #a8dfe3;
  --amber: #f2b84b;
  --amber-soft: #ffda8b;
}
body {
  background:
    radial-gradient(circle at 78% 7%,rgba(100,184,192,.06),transparent 28rem),
    radial-gradient(circle at 12% 44%,rgba(242,184,75,.025),transparent 34rem),
    #050b0c;
}
body::after { display: none; }
.field-blueprint { opacity: .2; }
.site-header { border-color: rgba(168,223,227,.1); background: rgba(5,13,14,.9); }
.site-header.scrolled { height: 64px; background: rgba(4,11,12,.97); box-shadow: 0 12px 36px rgba(0,0,0,.26); }
.nav a { color: #a7b3b3; font-size: 13px; font-weight: 700; }
.header-cart { border-color: rgba(100,184,192,.22); background: rgba(100,184,192,.055); box-shadow: 0 8px 24px rgba(0,0,0,.16); }

.btn--lime {
  border-color: var(--amber);
  background: var(--amber);
  color: #10100d;
  box-shadow: 0 14px 34px rgba(242,184,75,.16);
}
.btn--lime:hover { border-color: var(--amber-soft); background: var(--amber-soft); }
.stadium-cta { min-width: 176px; }

.stadium-hero { min-height: calc(100svh - var(--header)); }
.stadium-hero .hero__grid {
  grid-template-columns: minmax(0,.8fr) minmax(520px,1.2fr);
  gap: clamp(34px,4vw,64px);
  padding: 54px 0 62px;
}
.stadium-title { font-size: clamp(78px,10.4vw,150px); line-height: .74; }
.stadium-title small { margin-bottom: 14px; color: #778b8d; font-size: 10px; letter-spacing: .3em; }
.stadium-hero .hero__subtitle { max-width: 560px; margin: 28px 0 28px; color: #acb9b9; font-size: clamp(17px,1.4vw,20px); line-height: 1.55; }
.hero__quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(168,223,227,.11);
  color: #718688;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.hero__quickstats span { display: inline-flex; align-items: baseline; gap: 6px; }
.hero__quickstats strong { color: var(--white); font-size: 17px; font-weight: 760; letter-spacing: -.03em; }
.stadium-hero .hero__facts { margin-top: 18px; gap: 12px; font-size: 9px; }
.stadium-hero .hero__facts span::before { width: 5px; height: 5px; border-width: 1px; }
.stadium-hero .hero__visual { min-height: 610px; }
.stadium-visual { transform: none; transition: none; }
.stadium-visual .hero-photo {
  inset: 8px 0 8px;
  border-color: rgba(168,223,227,.14);
  border-radius: 28px;
  transform: none;
  box-shadow: 0 34px 80px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.035);
}
.stadium-visual .hero-photo::before { left: 16px; top: 14px; border: 0; border-radius: 7px; background: rgba(3,10,11,.56); color: #d6e6e6; }
.stadium-visual .hero-photo::after { background: linear-gradient(180deg,rgba(3,9,10,.04),rgba(3,9,10,.16)); }
.stadium-score { top: 24px; right: 16px; grid-template-columns: repeat(3,auto); transform: none; opacity: .92; }
.stadium-score span { padding: 8px 10px; }
.stadium-score strong { min-width: 68px; background: var(--amber); color: #10100d !important; }
.hero__broadcast { color: #536b6e; opacity: .65; }

.stadium-hero + .section { padding-top: 82px; }
.section-title { font-size: clamp(42px,5.2vw,72px); }
.section-head { margin-bottom: 32px; }
.section-head > p { max-width: 520px; font-size: 15px; line-height: 1.65; }
.accent { color: var(--lime); }

.category-grid { gap: 14px; }
.category-card {
  min-height: 150px;
  padding: 20px;
  border-color: rgba(168,223,227,.1);
  background:
    radial-gradient(circle at 108% 112%,rgba(100,184,192,.075),transparent 45%),
    linear-gradient(145deg,rgba(13,31,34,.97),rgba(6,17,19,.99));
  box-shadow: 0 12px 32px rgba(0,0,0,.17),inset 0 1px 0 rgba(255,255,255,.022);
}
.category-card__count { right: 18px; top: 15px; font-size: 30px; color: rgba(168,223,227,.13); }
.category-card h3 { margin: 43px 0 6px; font-size: clamp(20px,1.55vw,25px); font-weight: 680; }
.category-card p { font-size: 10px; color: #71878a; }
.category-card::after { right: -105px; bottom: -133px; opacity: .55; }

.dish-card { border-color: rgba(168,223,227,.1); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.dish-card__media { aspect-ratio: 4/3; border-color: rgba(168,223,227,.1); }
.dish-card__badge { padding: 8px 11px; border-color: rgba(168,223,227,.14); background: rgba(4,12,13,.72); color: #bddfe1; font-size: 8px; backdrop-filter: blur(5px); }
.dish-card__body { padding: 20px; }
.dish-card__meta { margin-bottom: 11px; padding-bottom: 8px; border-color: rgba(168,223,227,.08); color: #6d8385; font-size: 9px; letter-spacing: .07em; }
.dish-card h3 { max-width: 100%; font-size: clamp(18px,1.35vw,21px); font-weight: 680; }
.dish-card p { margin-bottom: 16px; color: #87999a; -webkit-line-clamp: 2; }
.dish-card__price-group { display: flex; align-items: center; gap: 9px; min-width: 0; }
.dish-card__price { color: var(--amber); font-family: Inter,ui-sans-serif,system-ui,sans-serif; font-size: 21px; font-style: normal; font-weight: 800; }
.dish-card__amount { padding: 5px 8px; border: 1px solid rgba(242,184,75,.2); border-radius: 999px; background: rgba(242,184,75,.055); color: var(--amber-soft); font-size: 11px; font-weight: 800; white-space: nowrap; }
.dish-card__add { width: 44px; border-color: rgba(100,184,192,.28); color: var(--teal); }
.dish-card__add:hover { background: var(--amber); color: #11100d; }

@media (max-width:1120px) {
  .stadium-hero .hero__grid { grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); }
  .stadium-title { font-size: clamp(72px,10vw,118px); }
}
@media (max-width:850px) {
  .stadium-hero .hero__grid { grid-template-columns: 1fr; padding: 64px 0 72px; }
  .stadium-hero .hero__visual { min-height: 500px; }
  .stadium-visual .hero-photo { inset: 0; }
}
@media (max-width:600px) {
  .stadium-hero .hero__grid { padding: 46px 0 54px; }
  .stadium-title { font-size: clamp(72px,23vw,104px); }
  .stadium-hero .hero__subtitle { margin: 23px 0; }
  .hero__quickstats { gap: 7px 16px; margin-top: 22px; }
  .hero__quickstats strong { font-size: 15px; }
  .stadium-hero .hero__facts { gap: 10px; }
  .stadium-hero .hero__visual { min-height: 360px; }
  .stadium-visual .hero-photo { border-radius: 20px; }
  .stadium-visual .hero-photo::before,
  .hero-photo__video { display: none; }
  .stadium-score { top: 14px; right: 12px; }
  .hero__broadcast { display: none; }
  .stadium-hero + .section { padding-top: 60px; }
  .section-head { margin-bottom: 24px; }
  .category-card { min-height: 138px; padding: 17px; }
  .category-card__count { right: 15px; top: 13px; font-size: 27px; }
  .category-card h3 { margin-top: 38px; font-size: 20px; }
  .dish-card__media { aspect-ratio: auto; }
  .dish-card__body { padding: 15px; }
  .dish-card__price { font-size: 18px; }
  .dish-card__amount { padding: 4px 7px; font-size: 10px; }
}

/* Cinematic full-bleed hero background */
.hero--cinema { min-height: calc(100svh - var(--header)); background: #050b0c; }
.hero--cinema::before {
  z-index: -2;
  background:
    linear-gradient(90deg,rgba(3,10,11,.96) 0%,rgba(3,10,11,.86) 28%,rgba(3,10,11,.48) 52%,rgba(3,10,11,.18) 76%,rgba(3,10,11,.28) 100%),
    linear-gradient(180deg,rgba(3,10,11,.16),rgba(3,10,11,.03) 50%,rgba(3,10,11,.68) 100%);
}
.hero--cinema::after {
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  background:
    radial-gradient(circle at 20% 45%,rgba(3,10,11,.18),transparent 48%),
    linear-gradient(90deg,rgba(100,184,192,.025),transparent 40%);
  box-shadow: none;
}
.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
  background: #050b0c;
  pointer-events: none;
}
.hero-backdrop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.06) brightness(.62);
  transform: scale(1.015);
}
.hero-backdrop .hero-photo__video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  max-width: none;
  border: 0;
  opacity: 0;
  transform: translate(-50%,-50%) scale(1.02);
  filter: saturate(.82) contrast(1.06) brightness(.68);
  animation: hero-video-reveal 1.1s ease 4s forwards;
  pointer-events: none;
}
.hero--cinema .hero__grid {
  grid-template-columns: minmax(0,720px);
  align-items: center;
  min-height: calc(100svh - var(--header));
  padding: 58px 0 72px;
}
.hero--cinema .hero__copy { max-width: 680px; text-shadow: 0 3px 26px rgba(0,0,0,.42); }
.hero--cinema .stadium-title { font-size: clamp(88px,12vw,172px); }
.hero--cinema .hero__subtitle { color: #d0d7d5; }
.hero--cinema .btn--dark {
  border-color: rgba(255,255,255,.16);
  background: rgba(5,13,14,.62);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}
.hero--cinema .hero__quickstats { max-width: 560px; border-color: rgba(255,255,255,.15); }
.hero--cinema .hero__quickstats strong { color: #fffdfa; }
.hero--cinema .hero__facts { color: #a9b8b7; }
.hero--cinema .stadium-lights { opacity: .28; }
.hero--cinema .stadium-pitch { opacity: .34; }

@media (max-width:850px) {
  .hero--cinema .hero__grid { grid-template-columns: 1fr; min-height: auto; padding: 64px 0 72px; }
  .hero--cinema .stadium-title { font-size: clamp(82px,21vw,140px); }
  .hero--cinema::before {
    background:
      linear-gradient(90deg,rgba(3,10,11,.93),rgba(3,10,11,.68)),
      linear-gradient(180deg,rgba(3,10,11,.22),rgba(3,10,11,.75));
  }
}
@media (max-width:600px) {
  .hero--cinema { min-height: auto; }
  .hero--cinema .hero__grid { padding: 48px 0 58px; }
  .hero--cinema .stadium-title { font-size: clamp(76px,24vw,108px); }
  .hero-backdrop .hero-photo__video { display: none; }
  .hero-backdrop > img { object-position: 58% center; filter: saturate(.76) contrast(1.08) brightness(.42); }
  .hero--cinema::before {
    background:
      linear-gradient(90deg,rgba(3,10,11,.9),rgba(3,10,11,.66)),
      linear-gradient(180deg,rgba(3,10,11,.2),rgba(3,10,11,.82));
  }
  .hero--cinema .hero__quickstats { border-color: rgba(255,255,255,.12); }
}

/* Desktop product modal always keeps a comfortable viewport gutter. */
@media (min-width:851px) {
  .product-dialog {
    width: min(1060px,calc(100vw - 40px));
    max-height: calc(100dvh - 48px);
    margin: auto;
    overflow: hidden;
  }
  .product-dialog__grid {
    height: min(610px,calc(100dvh - 48px));
    min-height: 0;
  }
  .product-dialog__media {
    height: 100%;
    min-height: 0;
  }
  .product-dialog__copy {
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--lime) transparent;
  }
}

@media (min-width:851px) and (max-height:720px) {
  .product-dialog__copy { justify-content: flex-start; padding: 30px 40px; }
  .product-dialog__copy h2 { margin-bottom: 12px; font-size: clamp(30px,6vh,46px); }
  .product-dialog__copy > p:not(.kicker) { line-height: 1.5; }
  .product-dialog__meta { margin: 16px 0 12px; padding-top: 13px; }
  .quantity { margin-bottom: 12px; }
  .product-dialog__detail { margin-top: 12px; }
}

/* Cart: one continuous scroll surface keeps the complete checkout reachable. */
.cart-dialog {
  width: min(640px,100vw);
  overflow: hidden;
}
.cart-panel {
  display: block;
  height: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #071012;
}
.cart-panel::-webkit-scrollbar { width: 9px; }
.cart-panel::-webkit-scrollbar-track { background: #071012; }
.cart-panel::-webkit-scrollbar-thumb { border: 2px solid #071012; border-radius: 999px; background: var(--lime); }
.cart-panel__header {
  position: sticky;
  z-index: 5;
  top: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg,#09191b 0%,rgba(9,25,27,.97) 82%,rgba(9,25,27,.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cart-items {
  max-height: clamp(230px,36vh,390px);
  margin: 0 24px;
  padding: 16px 8px 16px 0;
}
.cart-row {
  grid-template-columns: 76px minmax(0,1fr);
  gap: 14px;
  min-height: 96px;
  padding: 10px;
}
.cart-row__image { width: 76px; height: 76px; border-radius: 12px; }
.cart-row__content { min-width: 0; }
.cart-row__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.cart-row h3 {
  margin: 0 0 6px;
  overflow: visible;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}
.cart-row__total { flex: 0 0 auto; color: var(--amber); font-size: 14px; white-space: nowrap; }
.cart-row p { margin-bottom: 8px; }
.cart-row__controls { flex-wrap: wrap; gap: 7px; }
.cart-row__controls [data-cart-remove] { margin-left: 4px; padding: 0 10px; }
.cart-empty { min-height: calc(100dvh - 150px); padding: 32px 24px; }
.checkout {
  margin: 0 24px;
  padding: 22px 0 max(32px,env(safe-area-inset-bottom));
  overflow: visible;
}
.checkout__total { margin-bottom: 4px; }
.checkout input,.checkout textarea { min-height: 50px; }
.checkout textarea { resize: vertical; }

@media (max-width:600px) {
  .cart-panel { display: block; padding: 0; }
  .cart-panel__header { padding: 18px 14px 16px; }
  .cart-items { max-height: 34vh; margin: 0 14px; padding-right: 5px; }
  .cart-row { grid-template-columns: 66px minmax(0,1fr); min-height: 88px; padding: 8px; }
  .cart-row__image { width: 66px; height: 66px; }
  .cart-row__head { gap: 8px; }
  .cart-row h3 { font-size: 13px; }
  .cart-row__total { font-size: 12px; }
  .cart-row__controls [data-cart-remove] { margin-left: 0; }
  .checkout { grid-template-columns: 1fr; margin: 0 14px; overflow: visible; }
  .checkout > * { grid-column: 1 !important; }
}

/* Photo-led category tiles keep the food visible and the label readable. */
.category-grid--visual .category-card {
  isolation: isolate;
  min-height: 210px;
  background: #071012;
}
.category-grid--visual .category-card__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.05) brightness(.56);
  transform: scale(1.01);
  transition: transform .7s var(--ease),filter .35s ease;
}
.category-grid--visual .category-card::before {
  z-index: -2;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg,rgba(3,10,11,.16) 0%,rgba(3,10,11,.28) 38%,rgba(3,10,11,.76) 100%),
    linear-gradient(90deg,rgba(3,10,11,.38),transparent 72%);
  box-shadow: none;
}
.category-grid--visual .category-card::after { z-index: -1; }
.category-grid--visual .category-card__count,
.category-grid--visual .category-card__content { position: relative; z-index: 1; }
.category-grid--visual .category-card__count {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(5,15,17,.46);
  color: #e7fbfc;
  font-size: 15px;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}
.category-grid--visual .category-card__content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(8,22,24,.5),rgba(3,10,11,.34));
  box-shadow: 0 10px 26px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.category-grid--visual .category-card h3 { margin: 0 0 5px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.category-grid--visual .category-card p { color: #c2d3d4; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.category-grid--visual .category-card__link { z-index: 3; }
.category-grid--visual .category-card:hover .category-card__image { transform: scale(1.065); filter: saturate(.88) contrast(1.07) brightness(.63); }

/* Purpose-built brand panel replaces the oversized square logo crop. */
.feature-photo--brand {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 20%,rgba(242,184,75,.16),transparent 28%),
    radial-gradient(circle at 22% 72%,rgba(100,184,192,.2),transparent 34%),
    linear-gradient(145deg,#0d2528,#050c0d 74%);
}
.feature-photo--brand::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  right: -26%;
  top: -18%;
  border: 1px solid rgba(168,223,227,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(168,223,227,.022),0 0 0 88px rgba(168,223,227,.014);
}
.feature-photo--brand::after { z-index: 2; background: linear-gradient(180deg,transparent 42%,rgba(2,8,9,.9) 100%); }
.feature-photo--brand .feature-photo__brand {
  position: absolute;
  z-index: 1;
  inset: 12% 8% 28%;
  display: grid;
  place-items: center;
}
.feature-photo--brand .feature-photo__brand img {
  width: min(78%,500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.42));
}

/* The legal note stays horizontal instead of being forced into a 42px circle. */
.footer-bottom .age {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: min(100%,470px);
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: #7d8e8f;
  font-weight: 650;
  line-height: 1.45;
}
.footer-bottom .age b {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(100,184,192,.28);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}
.footer-bottom .age span { min-width: 0; }

/* One-time adult confirmation shown only before adding beer. */
.age-dialog {
  width: min(520px,calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(242,184,75,.28);
  border-radius: 24px;
  background: #081416;
  box-shadow: 0 38px 110px rgba(0,0,0,.7);
}
.age-dialog[open] { animation: dialog-in .38s var(--ease); }
.age-dialog__panel { padding: clamp(28px,5vw,48px); text-align: center; }
.age-dialog__mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(242,184,75,.42);
  border-radius: 50%;
  background: rgba(242,184,75,.08);
  color: var(--amber);
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(242,184,75,.09);
}
.age-dialog h2 { margin: 8px 0 14px; font-size: clamp(28px,4vw,40px); font-weight: 700; line-height: 1.06; letter-spacing: -.035em; }
.age-dialog p:not(.kicker) { margin: 0 auto; max-width: 420px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.age-dialog__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.age-dialog__actions .btn { width: 100%; min-width: 0; padding-inline: 16px; }

@media (max-width:600px) {
  .category-grid--visual .category-card { min-height: 188px; }
  .category-grid--visual .category-card__content { left: 10px; right: 10px; bottom: 10px; padding: 10px 12px 9px; }
  .category-grid--visual .category-card h3 { margin: 0 0 4px; }
  .feature-photo--brand { min-height: 300px; border-radius: 22px; }
  .feature-photo--brand .feature-photo__brand { inset: 12% 5% 34%; }
  .feature-photo--brand .feature-photo__brand img { width: min(84%,360px); }
  .feature-photo--brand .feature-photo__copy { left: 22px; right: 22px; bottom: 22px; }
  .footer-bottom { gap: 16px; }
  .footer-bottom .age { align-items: flex-start; width: 100%; font-size: 10px; }
  .footer-bottom .age b { flex-basis: 38px; width: 38px; height: 38px; }
  .age-dialog__actions { grid-template-columns: 1fr; }
}

/* Compact cinema hero and editorial home-menu showcase. */
.hero--cinema {
  min-height: clamp(620px,82svh,780px);
}
.hero--cinema .hero__grid {
  min-height: clamp(620px,82svh,780px);
  padding: 42px 0 54px;
}
.hero--cinema .stadium-title { font-size: clamp(80px,10.5vw,148px); }
.hero--cinema .hero__subtitle { margin: 22px 0 23px; }
.hero--cinema .hero__quickstats { margin-top: 20px; padding-top: 14px; }
.hero--cinema .hero__facts { margin-top: 14px; }

.stadium-hero + .menu-home { padding-top: clamp(54px,6vw,76px); }
.menu-home__frame {
  position: relative;
  isolation: isolate;
  padding: clamp(22px,3vw,38px);
  overflow: hidden;
  border: 1px solid rgba(168,223,227,.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 0%,rgba(100,184,192,.1),transparent 32%),
    radial-gradient(circle at 96% 100%,rgba(242,184,75,.055),transparent 28%),
    linear-gradient(145deg,rgba(13,29,31,.83),rgba(5,13,14,.9));
  box-shadow: 0 30px 80px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.menu-home__frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -28%;
  width: 44%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(168,223,227,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(100,184,192,.012),0 0 0 200px rgba(100,184,192,.008);
}
.menu-home__topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(168,223,227,.1);
  color: #829698;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.menu-home__topline span:first-child { display: inline-flex; align-items: center; gap: 8px; color: #bcd4d5; }
.menu-home__topline i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 14px rgba(242,184,75,.75); }
.menu-home .section-head { margin-bottom: 26px; }
.menu-home .category-grid--visual {
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 12px;
}
.menu-home .category-grid--visual .category-card {
  grid-column: span 4;
  min-height: 198px;
  padding: 15px;
  overflow: hidden;
  border-color: rgba(168,223,227,.14);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
}
.menu-home .category-grid--visual .category-card:nth-child(-n+2) {
  grid-column: span 6;
  min-height: 246px;
}
.menu-home .category-grid--visual .category-card__image {
  filter: saturate(.76) contrast(1.05) brightness(.58);
}
.menu-home .category-grid--visual .category-card::before {
  background:
    linear-gradient(180deg,rgba(2,8,9,.08),rgba(2,8,9,.12) 34%,rgba(2,8,9,.76) 100%),
    linear-gradient(90deg,rgba(2,8,9,.24),transparent 62%);
}
.menu-home .category-grid--visual .category-card__count {
  left: 14px;
  right: auto;
  top: 14px;
  padding: 6px 9px;
  border-color: rgba(255,255,255,.17);
  background: rgba(5,15,17,.38);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}
.menu-home .category-grid--visual .category-card__content {
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) 38px;
  align-items: end;
  min-height: 78px;
  padding: 15px 16px 14px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: linear-gradient(90deg,rgba(7,18,20,.56),rgba(5,13,14,.34));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}
.menu-home .category-card__content::after {
  content: "↗";
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(168,223,227,.2);
  border-radius: 50%;
  color: var(--teal);
  font-size: 15px;
  transition: transform .3s var(--ease),background .3s ease,color .3s ease;
}
.menu-home .category-card h3 {
  grid-column: 1;
  margin: 0 0 4px;
  font-size: clamp(21px,1.7vw,27px);
  font-weight: 690;
  line-height: 1;
}
.menu-home .category-card p { grid-column: 1; font-size: 9px; letter-spacing: .035em; }
.menu-home .category-card:hover { border-color: rgba(242,184,75,.36); box-shadow: 0 20px 46px rgba(0,0,0,.3); }
.menu-home .category-card:hover .category-card__image { transform: scale(1.045); filter: saturate(.88) contrast(1.06) brightness(.64); }
.menu-home .category-card:hover .category-card__content::after { transform: translate(2px,-2px); background: var(--amber); color: #10100d; }
.menu-home__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.menu-home__footer > span { color: #738789; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width:1120px) {
  .hero--cinema,.hero--cinema .hero__grid { min-height: 660px; }
  .menu-home .category-grid--visual { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .menu-home .category-grid--visual .category-card,
  .menu-home .category-grid--visual .category-card:nth-child(-n+2) { grid-column: auto; min-height: 210px; }
}
@media (max-width:850px) {
  .hero--cinema,.hero--cinema .hero__grid { min-height: auto; }
  .hero--cinema .hero__grid { padding: 50px 0 58px; }
  .menu-home__frame { border-radius: 24px; }
  .menu-home__footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width:600px) {
  .hero--cinema .hero__grid { padding: 36px 0 44px; }
  .hero--cinema .stadium-title { font-size: clamp(68px,22vw,98px); }
  .hero--cinema .hero__subtitle { margin: 18px 0; }
  .hero--cinema .hero__quickstats { margin-top: 17px; padding-top: 12px; }
  .stadium-hero + .menu-home { padding-top: 44px; }
  .menu-home__frame { margin-inline: -4px; padding: 18px 10px 20px; border-radius: 20px; }
  .menu-home__topline { margin-inline: 4px; margin-bottom: 22px; }
  .menu-home__topline span:last-child { display: none; }
  .menu-home .section-head { padding-inline: 4px; }
  .menu-home .category-grid--visual { grid-template-columns: 1fr; gap: 10px; }
  .menu-home .category-grid--visual .category-card,
  .menu-home .category-grid--visual .category-card:nth-child(-n+2) { min-height: 180px; border-radius: 17px; }
  .menu-home .category-grid--visual .category-card__content { min-height: 70px; padding: 12px 13px 11px; }
  .menu-home .category-card h3 { font-size: 21px; }
  .menu-home__footer { padding-inline: 4px; }
  .menu-home__footer .cta-row { width: 100%; }
}

/* Second home-menu direction: compact scoreboard rows, no floating glass tiles. */
.hero--cinema,
.hero--cinema .hero__grid {
  min-height: clamp(540px,68svh,650px);
}
.hero--cinema .hero__grid { padding: 28px 0 40px; }
.hero--cinema .stadium-title { font-size: clamp(72px,9.2vw,126px); }
.hero--cinema .stadium-title small { margin-bottom: 9px; }
.hero--cinema .hero__subtitle { max-width: 530px; margin: 17px 0 19px; font-size: clamp(15px,1.25vw,18px); }
.hero--cinema .btn { min-height: 46px; }
.hero--cinema .hero__quickstats { margin-top: 15px; padding-top: 11px; }
.hero--cinema .hero__facts { margin-top: 10px; }

.stadium-hero + .menu-home { padding-top: clamp(48px,5vw,66px); }
.menu-home__heading {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  gap: clamp(28px,6vw,90px);
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(168,223,227,.11);
}
.menu-home__heading .section-title { margin-bottom: 0; }
.menu-home__intro { justify-self: end; width: min(100%,520px); }
.menu-home__intro > p { margin: 0 0 15px; color: #9caeaf; font-size: 15px; line-height: 1.6; }
.menu-home__switch { display: flex; gap: 7px; }
.menu-home__switch a {
  padding: 8px 13px;
  border: 1px solid rgba(168,223,227,.13);
  border-radius: 999px;
  color: #bad0d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .25s ease,color .25s ease,background .25s ease;
}
.menu-home__switch a:hover { border-color: rgba(242,184,75,.45); background: rgba(242,184,75,.07); color: var(--amber-soft); }
.menu-home .category-grid--scoreboard {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
}
.menu-home .category-grid--scoreboard .category-card,
.menu-home .category-grid--scoreboard .category-card:nth-child(-n+2) {
  grid-column: auto;
  min-height: 164px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(168,223,227,.11);
  border-radius: 17px;
  background: #071113;
  box-shadow: 0 10px 26px rgba(0,0,0,.17);
}
.menu-home .category-grid--scoreboard .category-card__image {
  object-position: center;
  filter: saturate(.82) contrast(1.05) brightness(.68);
  transform: scale(1.02);
}
.menu-home .category-grid--scoreboard .category-card::before {
  background:
    radial-gradient(ellipse 118% 112% at 0% 100%,rgba(2,8,9,.96) 0%,rgba(2,8,9,.82) 33%,rgba(2,8,9,.42) 58%,rgba(2,8,9,.08) 78%,transparent 90%),
    linear-gradient(180deg,rgba(3,10,11,.04),rgba(3,10,11,.2));
}
.menu-home .category-grid--scoreboard .category-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border: 0;
  border-radius: 0;
  background: var(--lime);
  opacity: .72;
  transform: none;
  transition: width .3s var(--ease),background .3s ease;
}
.menu-home .category-grid--scoreboard .category-card__count {
  left: 18px;
  right: auto;
  top: 15px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.menu-home .category-grid--scoreboard .category-card__count::before { content: "№ "; color: #6f8587; }
.menu-home .category-grid--scoreboard .category-card__content {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 0;
  padding: 50px 58px 17px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.menu-home .category-grid--scoreboard .category-card__content::after {
  content: "↗";
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168,223,227,.18);
  border-radius: 50%;
  color: #a8dfe3;
  font-size: 14px;
  transition: transform .3s var(--ease),border-color .3s ease,background .3s ease,color .3s ease;
}
.menu-home .category-grid--scoreboard .category-card h3 {
  margin: 0 0 6px;
  color: #f6f5ef;
  font-size: clamp(21px,1.7vw,27px);
  font-weight: 680;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
}
.menu-home .category-grid--scoreboard .category-card p {
  color: #91a5a6;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .05em;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
  text-transform: uppercase;
}
.menu-home .category-grid--scoreboard .category-card:hover {
  border-color: rgba(242,184,75,.28);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}
.menu-home .category-grid--scoreboard .category-card:hover::after { width: 5px; background: var(--amber); }
.menu-home .category-grid--scoreboard .category-card:hover .category-card__image { transform: scale(1.055); filter: saturate(.92) contrast(1.07) brightness(.68); }
.menu-home .category-grid--scoreboard .category-card:hover .category-card__content::after { transform: translate(2px,-2px); border-color: var(--amber); background: var(--amber); color: #10100d; }
.menu-home__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(168,223,227,.08);
}
.menu-home__footer > span { color: #6f8385; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-home__all { display: inline-flex; align-items: center; gap: 10px; color: #edf3f1; font-size: 13px; font-weight: 780; }
.menu-home__all b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--amber); color: #10100d; font-size: 14px; }
.menu-home__all:hover { color: var(--amber-soft); }

@media (max-width:1120px) {
  .menu-home .category-grid--scoreboard { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:850px) {
  .hero--cinema,.hero--cinema .hero__grid { min-height: auto; }
  .hero--cinema .hero__grid { padding: 38px 0 46px; }
  .menu-home__heading { grid-template-columns: 1fr; gap: 15px; }
  .menu-home__intro { justify-self: start; }
}
@media (max-width:600px) {
  .hero--cinema .hero__grid { padding: 26px 0 34px; }
  .hero--cinema .stadium-title { font-size: clamp(62px,20vw,88px); }
  .hero--cinema .hero__subtitle { margin: 15px 0; font-size: 15px; }
  .hero--cinema .hero__quickstats { margin-top: 13px; }
  .hero--cinema .hero__facts { display: none; }
  .stadium-hero + .menu-home { padding-top: 40px; }
  .menu-home__heading { margin-bottom: 20px; padding-bottom: 18px; }
  .menu-home__intro > p { font-size: 14px; }
  .menu-home .category-grid--scoreboard { grid-template-columns: 1fr; gap: 8px; }
  .menu-home .category-grid--scoreboard .category-card,
  .menu-home .category-grid--scoreboard .category-card:nth-child(-n+2) { min-height: 116px; border-radius: 15px; }
  .menu-home .category-grid--scoreboard .category-card__content { padding: 38px 62px 15px 16px; }
  .menu-home .category-grid--scoreboard .category-card__count { left: 16px; top: 13px; }
  .menu-home .category-grid--scoreboard .category-card h3 { font-size: 21px; }
  .menu-home .category-grid--scoreboard .category-card__content::after { right: 13px; bottom: 13px; width: 32px; height: 32px; }
  .menu-home__footer { align-items: flex-start; flex-direction: column; }
}

@media print { .age-dialog { display: none !important; } }

/* Empty cart — compact matchday composition instead of a stretched logo. */
.cart-empty {
  position: relative;
  display: grid;
  grid-template-rows: repeat(6,auto);
  align-content: center;
  justify-items: center;
  gap: 0;
  min-height: calc(100dvh - 150px);
  margin: 0;
  padding: 44px 32px 56px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%,rgba(100,184,192,.09),transparent 210px),
    linear-gradient(180deg,rgba(255,255,255,.008),transparent 42%);
}
.cart-empty::before {
  content: "";
  position: absolute;
  width: 410px;
  aspect-ratio: 2/1;
  left: 50%;
  top: 42%;
  border: 1px solid rgba(100,184,192,.07);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(-7deg);
  box-shadow: 0 0 0 38px rgba(100,184,192,.012),0 0 0 76px rgba(100,184,192,.008);
  pointer-events: none;
}
.cart-empty__visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: 164px;
  height: 164px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(100,184,192,.25);
  border-radius: 50%;
  background: radial-gradient(circle,rgba(100,184,192,.13),rgba(4,15,17,.82) 67%);
  box-shadow: inset 0 0 0 10px rgba(100,184,192,.025),0 22px 55px rgba(0,0,0,.32);
}
.cart-empty__visual::before,
.cart-empty__visual::after { content: ""; position: absolute; background: rgba(100,184,192,.13); }
.cart-empty__visual::before { width: 1px; height: 100%; }
.cart-empty__visual::after { width: 100%; height: 1px; }
.cart-empty__visual span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  background: #061214;
}
.cart-empty .cart-empty__visual img {
  display: block;
  width: 94px;
  height: 88px;
  max-width: none;
  object-fit: contain;
  opacity: .82;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.cart-empty > .kicker { position: relative; z-index: 1; margin: 0 0 10px; color: var(--lime); }
.cart-empty h3 { position: relative; z-index: 1; max-width: 390px; margin: 0 0 10px; font-size: clamp(27px,4vw,34px); line-height: 1.05; letter-spacing: -.035em; }
.cart-empty > p:not(.kicker) { position: relative; z-index: 1; max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.cart-empty__suggestions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 20px 0; }
.cart-empty__suggestions span { padding: 7px 10px; border: 1px solid rgba(100,184,192,.14); border-radius: 999px; background: rgba(100,184,192,.045); color: #a9c3c5; font-size: 10px; font-weight: 750; }
.cart-empty > .btn { position: relative; z-index: 1; width: min(100%,290px); }

@media (max-width:600px) {
  .cart-empty { min-height: calc(100dvh - 130px); padding: 34px 20px 48px; }
  .cart-empty__visual { width: 142px; height: 142px; margin-bottom: 18px; }
  .cart-empty__visual span { width: 100px; height: 100px; }
  .cart-empty .cart-empty__visual img { width: 82px; height: 77px; }
  .cart-empty h3 { max-width: 300px; font-size: 27px; }
  .cart-empty > p:not(.kicker) { max-width: 310px; font-size: 13px; }
}

/* V3 refinement: tighter matchday hero and navigation that never dead-ends. */
.hero--cinema,
.hero--cinema .hero__grid {
  min-height: clamp(500px,60svh,570px);
}
.hero--cinema .hero__grid { padding: 20px 0 28px; }
.hero--cinema .stadium-title {
  font-size: clamp(72px,9.2vw,126px);
  line-height: .58;
}
.hero--cinema .stadium-title .solid {
  margin-top: -.12em;
  transform: translate(7%,-.035em) skewX(-8deg);
}
.hero--cinema .hero__subtitle { margin: 14px 0 18px; }
.hero--cinema .hero__quickstats { margin-top: 14px; padding-top: 10px; }
.hero--cinema .hero__facts { margin-top: 9px; }

.page-hero {
  min-height: 0;
  padding: clamp(32px,3.8vw,52px) 0 clamp(36px,4vw,56px);
}
.page-hero .breadcrumbs { margin-bottom: 18px; }
.page-hero .kicker { margin-bottom: 13px; }
.page-hero .lead { margin-top: 18px; }
.page-hero + .section--tight { padding-top: clamp(26px,3vw,42px); }

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.filter-button[aria-current="page"] {
  border-color: transparent;
  background: var(--lime);
  color: #061008;
  box-shadow: 0 8px 22px rgba(96,180,190,.16);
}
.category-chips { margin-bottom: 16px; }
.category-chips a[aria-current="page"] {
  border-color: rgba(242,184,75,.48);
  background: rgba(242,184,75,.1);
  color: var(--amber-soft);
}

@media (max-width:850px) {
  .hero--cinema,
  .hero--cinema .hero__grid { min-height: auto; }
  .hero--cinema .hero__grid { padding: 34px 0 40px; }
  .hero--cinema .stadium-title .solid { transform: translate(2%,-.035em) skewX(-8deg); }
  .page-hero { min-height: 0; padding: 34px 0 42px; }
}

@media (max-width:600px) {
  .hero--cinema .hero__grid { padding: 24px 0 31px; }
  .hero--cinema .stadium-title { font-size: clamp(62px,20vw,88px); line-height: .6; }
  .hero--cinema .stadium-title .solid { margin-top: -.08em; }
  .hero--cinema .hero__subtitle { margin: 13px 0 15px; }
  .page-hero { min-height: 0; padding: 26px 0 34px; }
  .page-hero .breadcrumbs { margin-bottom: 14px; }
  .page-hero .lead { margin-top: 14px; }
  .page-hero + .section--tight { padding-top: 22px; }
  .category-chips { margin-bottom: 13px; }
}

/* Quantity controls stay visible even when a product has a long title or description. */
.product-dialog__copy { justify-content: flex-start; overflow-y: auto; }
.product-dialog__copy > * { flex-shrink: 0; }
.product-dialog__copy .quantity {
  flex: 0 0 auto;
  min-height: 52px;
}

/* Rebalance the compressed OFF/SIDE lockup without touching nearby copy. */
.hero--cinema .stadium-title {
  line-height: .66;
}
.hero--cinema .stadium-title small {
  margin-bottom: 11px;
  line-height: 1.2;
}
.hero--cinema .stadium-title .solid {
  margin-top: -.06em;
  transform: translate(7%,-.02em) skewX(-8deg);
}
.hero--cinema .hero__subtitle { margin-top: 24px; }

/* Fine broadcast grain: static and lightweight, above the video but below content. */
.hero--cinema::after {
  pointer-events: none;
  opacity: .32;
  background-image:
    repeating-radial-gradient(circle at 20% 30%,rgba(255,255,255,.075) 0 .45px,transparent .7px 3px),
    repeating-radial-gradient(circle at 80% 70%,rgba(0,0,0,.14) 0 .55px,transparent .8px 4px),
    linear-gradient(90deg,rgba(100,184,192,.025),transparent 42%);
  background-size: 3px 3px,4px 4px,100% 100%;
  mix-blend-mode: soft-light;
}

@media (max-width:850px) {
  .hero--cinema .stadium-title .solid { transform: translate(2%,-.02em) skewX(-8deg); }
}

@media (max-width:600px) {
  .hero--cinema .stadium-title { line-height: .67; }
  .hero--cinema .stadium-title small { margin-bottom: 9px; }
  .hero--cinema .stadium-title .solid { margin-top: -.035em; }
  .hero--cinema .hero__subtitle { margin-top: 19px; }
  .hero--cinema::after { opacity: .24; }
}

/* Final one-line hero lockup with balanced top and bottom breathing room. */
.hero--cinema,
.hero--cinema .hero__grid {
  min-height: clamp(490px,59svh,545px);
}
.hero--cinema .hero__grid {
  padding: clamp(34px,4.5svh,46px) 0 clamp(66px,7svh,78px);
}
.hero--cinema .stadium-title {
  white-space: nowrap;
  line-height: .82;
}
.hero--cinema .stadium-title .outline,
.hero--cinema .stadium-title .solid {
  display: inline-block;
  margin: 0;
  vertical-align: baseline;
}
.hero--cinema .stadium-title .outline { transform: skewX(-8deg); }
.hero--cinema .stadium-title .solid {
  transform: skewX(-8deg);
}
.hero--cinema .stadium-title .solid::after {
  left: -100%;
  right: 3%;
  bottom: -9px;
  height: 4px;
}
.hero--cinema .hero__subtitle { margin: 25px 0 18px; }

@media (max-width:850px) {
  .hero--cinema,
  .hero--cinema .hero__grid { min-height: auto; }
  .hero--cinema .hero__grid { padding: 34px 0 42px; }
  .hero--cinema .stadium-title .solid { transform: skewX(-8deg); }
}

@media (max-width:600px) {
  .hero--cinema .hero__grid { padding: 27px 0 34px; }
  .hero--cinema .stadium-title { font-size: clamp(51px,15.6vw,72px); line-height: .84; }
  .hero--cinema .stadium-title small { margin-bottom: 10px; }
  .hero--cinema .stadium-title .solid { margin: 0; }
  .hero--cinema .stadium-title .solid::after { bottom: -7px; height: 3px; }
  .hero--cinema .hero__subtitle { margin-top: 21px; }
}

/* Mobile navigation remains attached to the viewport at every scroll position. */
@media (max-width:850px) {
  body.nav-open .site-header,
  .site-header.nav-active {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    height: var(--header);
  }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    width: 100%;
    height: calc(100dvh - var(--header));
    align-content: start;
    max-height: none;
    padding: 18px max(14px,env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) max(14px,env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-14px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(5,13,14,.985);
  }
  .nav.open {
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { min-height: 48px; }
}
