: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: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; }

.cursor { display: none; position: fixed; z-index: 12000; top: 0; left: 0; width: 32px; height: 32px; margin: -16px 0 0 -16px; border: 1px solid var(--lime); border-radius: 50%; pointer-events: none; opacity: 0; transition: width .25s var(--ease),height .25s var(--ease),margin .25s var(--ease),background .25s ease; }
.cursor::before, .cursor::after { content: ""; position: absolute; background: var(--lime); }
.cursor::before { left: 50%; top: -7px; width: 1px; height: 44px; }
.cursor::after { top: 50%; left: -7px; width: 44px; height: 1px; }
.cursor.focus { width: 50px; height: 50px; margin: -25px 0 0 -25px; background: rgba(200,255,49,.06); }
.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) {
  body.cursor-on, body.cursor-on a, body.cursor-on button, body.cursor-on input { cursor: none; }
  body.cursor-on .cursor { display: block; opacity: .92; }
}

@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: 44px 54px 44px; align-items: center; width: max-content; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 999px; }
.quantity button { height: 44px; border: 0; background: transparent; font-size: 22px; cursor: pointer; }
.quantity output { text-align: center; font-weight: 900; }
.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: 24px; height: 24px; padding: 0; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; cursor: pointer; }
.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; }
.cursor span { position: absolute; inset: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 22px var(--lime); }
.cursor::before,.cursor::after { display: none; }
.cursor.focus { background: rgba(96,180,190,.12); }

@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; }

.match-intro { position: fixed; z-index: 20000; inset: 0; display: grid; place-content: center; justify-items: center; background: #020607; transition: opacity .45s ease,clip-path .7s var(--ease); clip-path: inset(0); }
.match-intro::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg,transparent 0 4px,rgba(96,180,190,.025) 4px 5px),radial-gradient(circle at 50% 45%,rgba(96,180,190,.16),transparent 34%); }
.match-intro__scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg,transparent,#bdf9ff,transparent); box-shadow: 0 0 30px #60b4be; animation: intro-scan 1.15s linear both; }
.match-intro img { position: relative; width: min(360px,65vw); transform: translateY(18px) scale(.94); opacity: 0; }
.match-intro p { position: relative; margin: 22px 0 13px; color: #709196; font-size: 9px; font-weight: 900; letter-spacing: .3em; text-transform: uppercase; opacity: 0; }
.match-intro > span { position: relative; width: min(360px,65vw); height: 2px; overflow: hidden; background: rgba(96,180,190,.12); opacity: 0; }
.match-intro > span i { display: block; width: 0; height: 100%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.match-intro.playing img { animation: intro-logo .65s var(--ease) .12s forwards; }
.match-intro.playing p,.match-intro.playing > span { animation: intro-fade .35s ease .35s forwards; }
.match-intro.playing > span i { animation: intro-load .72s var(--ease) .42s forwards; }
.match-intro.finished { opacity: 0; clip-path: inset(0 0 100% 0); }

.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: 1200px; }
.category-card { --tilt-x: 0deg; --tilt-y: 0deg; transform-style: preserve-3d; 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: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.motion-ready .category-card.visible:hover { transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px); }
.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: translateZ(28px); }

.dish-grid { perspective: 1400px; }
.dish-card { --tilt-x: 0deg; --tilt-y: 0deg; transform-style: preserve-3d; border-radius: 8px 25px 8px 25px; }
.motion-ready .dish-card.visible { transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.motion-ready .dish-card.visible:hover { transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px); }
.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; }

.goal-flash { position: fixed; z-index: 21000; inset: 0; display: grid; place-content: center; justify-items: center; overflow: hidden; opacity: 0; pointer-events: none; background: radial-gradient(circle,rgba(96,180,190,.2),rgba(2,6,7,.92) 48%,rgba(2,6,7,.35)); }
.goal-flash strong { position: relative; z-index: 2; color: white; font-family: Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif; font-size: clamp(96px,20vw,290px); font-style: italic; line-height: .72; letter-spacing: -.05em; text-transform: uppercase; text-shadow: -18px 18px 0 rgba(96,180,190,.25); }
.goal-flash > span { position: relative; z-index: 2; margin-top: 30px; color: #b8e7ea; font-size: 11px; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }
.goal-flash__ring { position: absolute; width: min(58vw,720px); aspect-ratio: 1; border: 2px solid var(--lime); border-radius: 50%; box-shadow: 0 0 0 34px rgba(96,180,190,.035),0 0 90px rgba(96,180,190,.28); }
.goal-particles { position: absolute; left: 50%; top: 50%; }
.goal-particles i { position: absolute; width: 8px; height: 20px; margin: -10px -4px; transform: rotate(var(--a)) translateX(0); border-radius: 2px; background: var(--lime); opacity: 0; }
.goal-flash.active { animation: goal-screen 1.2s var(--ease) both; }
.goal-flash.active strong { animation: goal-word .8s var(--ease) both; }
.goal-flash.active .goal-flash__ring { animation: goal-ring .95s var(--ease) both; }
.goal-flash.active .goal-particles i { animation: goal-particle .72s var(--ease) var(--delay) both; }

.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; }
.cursor { border-color: rgba(158,220,224,.8); box-shadow: 0 0 0 5px rgba(96,180,190,.05); }
.cursor::before,.cursor::after { display: block; background: var(--lime); opacity: .45; }
.cursor span { inset: 13px; }
.cursor.focus { width: 58px; height: 58px; margin: -29px 0 0 -29px; transform-origin: center; background: rgba(96,180,190,.08); }

@keyframes live-blink { to { opacity: .35; } }
@keyframes intro-scan { from { top: 0; opacity: 0; } 15% { opacity: 1; } to { top: 100%; opacity: 0; } }
@keyframes intro-logo { to { transform: none; opacity: 1; } }
@keyframes intro-fade { to { opacity: 1; } }
@keyframes intro-load { to { width: 100%; } }
@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 goal-screen { 0%,100% { opacity: 0; visibility: hidden; } 10%,72% { opacity: 1; visibility: visible; } }
@keyframes goal-word { 0% { opacity: 0; transform: scale(2.2) rotate(-6deg); filter: blur(16px); } 48% { opacity: 1; transform: scale(.94) rotate(1deg); filter: none; } 100% { transform: none; } }
@keyframes goal-ring { from { opacity: 0; transform: scale(.18); } 55% { opacity: 1; } to { opacity: 0; transform: scale(1.45); } }
@keyframes goal-particle { 20% { opacity: 1; } to { opacity: 0; transform: rotate(var(--a)) translateX(var(--d)) rotate(240deg); } }
@keyframes sport-ripple { to { transform: scale(16); opacity: 0; } }

@media (max-width:850px) {
  .header-live { display: none; }
  .goal-flash strong { font-size: 30vw; }
}
@media (max-width:600px) {
  body::after { display: none; }
  .match-intro { transition-duration: .3s; }
  .match-intro__scan { animation-duration: .75s; }
  .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; }
  .goal-flash { background: rgba(2,7,8,.94); }
  .goal-flash strong { font-size: 34vw; text-shadow: -8px 8px 0 rgba(96,180,190,.25); }
  .goal-flash > span { max-width: 78vw; margin-top: 20px; font-size: 9px; text-align: center; }
  .goal-flash__ring { width: 82vw; }
  .goal-particles { display: none; }
}

@media (prefers-reduced-motion:reduce) {
  .match-intro,.goal-flash { display: none !important; }
  .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: 0;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%);
  background: #071214;
  box-shadow: inset 0 -3px 0 rgba(96,180,190,.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 { content: "MATCH CAM"; position: absolute; z-index: 3; right: 10px; bottom: 9px; padding: 4px 7px; background: rgba(2,7,8,.76); color: rgba(211,245,247,.78); font-size: 7px; font-weight: 900; letter-spacing: .18em; }
.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: 34px 19px 20px; }
.dish-card__body::before { content: "STARTING LINEUP"; position: absolute; left: 19px; top: 13px; color: #53777b; font-size: 7px; font-weight: 950; letter-spacing: .22em; }
.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: 32px; }
}
@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: polygon(0 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%); }
  .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: 27px 13px 15px; }
  .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; }
}

/* 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); }
.goal-flash strong { text-shadow: -18px 18px 0 rgba(242,184,75,.2); }
.goal-flash__ring { border-color: var(--amber); box-shadow: 0 0 0 34px rgba(96,180,190,.035),0 0 90px var(--amber-glow); }
.goal-particles i:nth-child(odd) { background: 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); }

/* Controlled multi-accent card rhythm */
.category-card,.dish-card { --card-accent: var(--lime); --card-accent-soft: var(--teal); }
.category-card:nth-child(4n+2),.dish-card:nth-child(4n+2) { --card-accent: var(--amber); --card-accent-soft: var(--amber-soft); }
.category-card:nth-child(4n+3),.dish-card:nth-child(4n+3) { --card-accent: var(--stadium-blue); --card-accent-soft: var(--stadium-blue-soft); }
.category-card:nth-child(4n+4),.dish-card:nth-child(4n+4) { --card-accent: var(--coral); --card-accent-soft: var(--coral-soft); }
.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(--stadium-blue); }
.article-card:nth-child(3n+3) { border-top-color: var(--coral); }
.article-card:nth-child(3n+2) .article-card__meta span:first-child { color: var(--stadium-blue-soft); }
.article-card:nth-child(3n+3) .article-card__meta span:first-child { color: var(--coral-soft); }
.stat:nth-child(3) strong { color: var(--stadium-blue); }
.stat:nth-child(4) strong { color: var(--coral); }
.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%; }
}
