:root {
  color-scheme: dark;
  --black: #050706;
  --black-2: #0a0d0b;
  --panel: #101511;
  --panel-2: #151c17;
  --white: #f4f0e6;
  --muted: #a5aea5;
  --dim: #6f7b71;
  --lime: #c8ff31;
  --green: #1eac69;
  --teal: #64c0c7;
  --orange: #ff8b3d;
  --line: rgba(225, 239, 222, .13);
  --line-hot: rgba(200, 255, 49, .5);
  --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 h3 { margin: 0 0 10px; font-size: clamp(18px,1.6vw,23px); line-height: 1.05; letter-spacing: -.03em; }
.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: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #b4bdb4; font-size: 11px; }

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