/* ===== Дизайн-токены (из dungeon-site-plan.md, раздел 4) ===== */
:root{
  --bg:      #111112;
  --surface: rgba(5, 83, 86, 1);
  --fg:      oklch(0.96 0.010 100);
  --muted:   oklch(0.71 0.018 150);
  --border:  oklch(0.34 0.030 165);
  --accent:  oklch(0.932 0.152 104);
  --accent-h: oklch(0.85 0.152 104);
  --emerald: oklch(54.363% 0.09266 203.561);
  --emerald-deep: rgba(0, 60, 78, 1);
  --wood:     oklch(0.82 0.050  80);
  --wood-deep: oklch(0.62 0.060  75);
  --success: oklch(0.70 0.150 150);
  --warning: oklch(0.78 0.150  75);
  --danger:  oklch(0.62 0.190  25);
  --shadow-s: 0 2px 8px rgb(0 0 0 / .35);
  --shadow-m: 0 8px 24px rgb(0 0 0 / .45);
  --glow: 0 0 24px oklch(0.932 0.152 104 / .55);
  --r-input:4px; --r-card:12px; --r-media:20px; --r-pill:999px;
  --container:1280px;
  --ease: cubic-bezier(.2,.7,.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  background:var(--bg); color:var(--fg);
  font-family:"Manrope",system-ui,-apple-system,sans-serif;
  font-size:17px; line-height:1.65; font-weight:400;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%; display:block; height:auto}
svg{display:block}
button,input,textarea,select{font:inherit; color:inherit; background:none; border:none}
button{cursor:pointer; border-radius:0}
a{color:inherit; text-decoration:none}
ul,ol{list-style:none}
:focus{outline:none}
:focus-visible{outline:2px solid var(--accent); outline-offset:2px; border-radius:4px}
::selection{background:var(--accent); color:var(--bg)}

/* ===== Типографика ===== */
.display{font-family:"Unbounded",sans-serif; font-weight:700; letter-spacing:-.02em; line-height:.92}
.mono{font-family:"JetBrains Mono",ui-monospace,monospace; font-feature-settings:"tnum" 1}
.label{font-family:"JetBrains Mono",monospace; font-size:13px; letter-spacing:.08em; text-transform:uppercase; font-weight:500}
h1,.h1{font-family:"Unbounded",sans-serif; font-weight:700; font-size:clamp(34px,5vw,56px); line-height:1.05; letter-spacing:-.015em}
h2,.h2{font-family:"Unbounded",sans-serif; font-weight:600; font-size:clamp(28px,3.6vw,40px); line-height:1.15; letter-spacing:-.01em}
h3,.h3{font-family:"Unbounded",sans-serif; font-weight:600; font-size:clamp(21px,2vw,26px); line-height:1.25}
.lead{font-size:clamp(17px,1.4vw,19px); line-height:1.6; color:var(--fg)}
.muted{color:var(--muted)}
.accent{color:var(--accent)}

/* ===== Контейнер и секции ===== */
.container{max-width:var(--container); margin:0 auto; padding:0 40px}
.section{padding:12px 0}
.section--tight{padding:80px 0}
.eyebrow{display:inline-flex; align-items:center; gap:10px; padding:6px 12px; border:1px solid var(--border); border-radius:var(--r-pill); color:var(--muted); margin-bottom:20px}
.eyebrow::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--accent)}
.section-head{margin-bottom:48px; max-width:760px}
.section-head .lead{margin-top:16px; color:var(--muted)}

/* ===== Кнопки ===== */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 24px; border-radius:var(--r-pill); font-weight:600; font-size:16px; line-height:1; min-height:48px; transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease); white-space:nowrap; text-align:center}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--accent); color:var(--bg); box-shadow:var(--glow)}
.btn-primary:hover{background:var(--accent-h); color:var(--bg)}
.btn-primary:focus-visible{outline:2px solid var(--fg); outline-offset:3px}
.btn-secondary{background:var(--surface); border:1px solid var(--border); color:var(--fg)}
.btn-secondary:hover{background:oklch(0.30 0.030 165); border-color:oklch(0.44 0.030 165)}
.btn-ghost{background:transparent; border:1px solid var(--border); color:var(--fg)}
.btn-ghost:hover{background:var(--surface); border-color:oklch(0.44 0.030 165)}
.btn-text{display:inline-flex; align-items:center; gap:8px; padding:6px 2px; min-height:auto; color:var(--fg); border-bottom:1px solid var(--border); border-radius:0}
.btn-text:hover{color:var(--accent); border-bottom-color:var(--accent)}
.btn-text .arr{transition:transform .2s var(--ease)}
.btn-text:hover .arr{transform:translateX(4px)}
.btn[disabled]{background:var(--surface); color:var(--muted); box-shadow:none; cursor:not-allowed; border-color:var(--border)}

/* ===== Шапка ===== */
.site-header{position:fixed; top:0; left:0; right:0; z-index:50; height:80px; display:flex; align-items:center; transition:background .25s var(--ease), border-color .25s var(--ease), height .25s var(--ease); border-bottom:1px solid transparent}
.site-header.scrolled{background:oklch(0.17 0.020 165 / .82); backdrop-filter:blur(14px) saturate(1.2); -webkit-backdrop-filter:blur(14px) saturate(1.2); border-bottom-color:var(--border); height:64px}
.site-header .container{width:100%; display:flex; align-items:center; gap:24px; justify-content:space-between}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{ height:40px; border-radius:8px; object-fit:cover;  filter: invert(100%);}
.brand-name{font-family:"Unbounded",sans-serif; font-weight:700; font-size:18px; letter-spacing:.04em}
.nav{display:flex; gap:6px}
.nav a{padding:10px 14px; border-radius:var(--r-pill); color:var(--muted); font-weight:500; font-size:15px; transition:color .2s, background .2s}
.nav a:hover{color:var(--fg); background:var(--surface)}
.nav a.active{color:var(--fg)}
.header-actions{display:flex; align-items:center; gap:12px}
.header-phone{display:flex; align-items:center; gap:8px; font-family:"JetBrains Mono",monospace; font-size:14px; font-weight:500; color:var(--fg); padding:8px 12px; border-radius:var(--r-pill); border:1px solid var(--border); min-height:44px; white-space:nowrap; transition:border-color .2s, color .2s}
.header-phone:hover{border-color:oklch(0.44 0.030 165)}
.burger{display:none; width:44px; height:44px; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:var(--r-pill); color:var(--fg)}
.burger svg{width:22px; height:22px}

/* ===== Hero ===== */
.hero{position:relative; height:100svh; min-height:640px; overflow:hidden; background:var(--bg)}
.hero-slides{position:absolute; inset:0}
.hero-slide{position:absolute; inset:0; opacity:0; transition:opacity 1.1s var(--ease); overflow:hidden}
.hero-slide.is-active{opacity:1}
.hero-slide img{width:100%; height:100%; object-fit:cover; will-change:transform}
.hero-slide.is-active img{animation:kenburns 7s var(--ease) forwards}
@keyframes kenburns{from{transform:scale(1)} to{transform:scale(1.08)}}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, oklch(0.10 0.020 165 / .55) 0%, oklch(0.10 0.020 165 / .15) 38%, oklch(0.10 0.020 165 / .9) 100%)}
.hero-content{position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:0 40px 120px; max-width:var(--container); margin:0 auto; width:100%}
.hero-eyebrow{display:inline-flex; align-items:center; gap:10px; color:var(--fg); margin-bottom:24px; font-family:"JetBrains Mono",monospace; font-size:14px; letter-spacing:.08em; text-transform:uppercase}
.hero-eyebrow::before{content:""; width:32px; height:1px; background:var(--accent)}
.hero-title{font-family:"Unbounded",sans-serif; font-weight:800; font-size:clamp(44px,11vw,120px); line-height:.92; letter-spacing:-.03em; margin-bottom:20px}
.hero-title .accent{color:var(--accent)}
.hero-tagline{max-width:560px; font-size:clamp(17px,1.8vw,22px); line-height:1.4; color:oklch(0.96 0.010 100 / .92); margin-bottom:36px; font-weight:400}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap}
.hero-controls{position:absolute; z-index:3; bottom:36px; right:40px; display:flex; align-items:center; gap:20px; font-family:"JetBrains Mono",monospace; font-size:14px; color:var(--muted)}
.hero-dots{position:absolute; z-index:3; bottom:40px; left:50%; transform:translateX(-50%); display:flex; gap:10px}
.hero-dots button{width:10px; height:10px; border-radius:50%; background:oklch(0.96 0.010 100 / .25); transition:background .2s, transform .2s; padding:0}
.hero-dots button.is-active{background:var(--accent); transform:scale(1.2)}
.hero-arrows{position:absolute; z-index:3; top:50%; transform:translateY(-50%); width:100%; display:flex; justify-content:space-between; padding:0 24px; pointer-events:none}
.hero-arrows button{pointer-events:auto; width:52px; height:52px; border-radius:50%; background:oklch(0.10 0.020 165 / .5); backdrop-filter:blur(8px); border:1px solid var(--border); color:var(--fg); display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s}
.hero-arrows button:hover{background:oklch(0.10 0.020 165 / .75); border-color:var(--accent)}
.hero-arrows svg{width:22px; height:22px}
.hero-counter{font-family:"JetBrains Mono",monospace; font-size:14px; letter-spacing:.06em}
.hero-counter .cur{color:var(--fg); font-weight:500}

/* ===== Сдержанное движение ===== */
.motion-ready .hero-eyebrow,
.motion-ready .hero-title,
.motion-ready .hero-tagline,
.motion-ready .hero-cta{
  opacity:0;
  transform:translateY(18px);
  animation:heroReveal .72s var(--ease) forwards;
}
.motion-ready .hero-title{animation-delay:.08s}
.motion-ready .hero-tagline{animation-delay:.16s}
.motion-ready .hero-cta{animation-delay:.24s}
@keyframes heroReveal{to{opacity:1; transform:translateY(0)}}

.motion-ready .section.motion-reveal > .container{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .68s var(--ease), transform .68s var(--ease);
}
.motion-ready .section.motion-reveal.is-revealed > .container{
  opacity:1;
  transform:translateY(0);
}

/* ===== Меню-мозаика ===== */
.menu-mosaic-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; grid-auto-rows:240px}
.menu-card{position:relative; border-radius:var(--r-media); overflow:hidden; background:var(--surface); border:1px solid var(--border); transition:border-color .25s var(--ease), transform .25s var(--ease); cursor:pointer}
.menu-card:hover{border-color:var(--accent)}
.menu-card img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease)}
.menu-card:hover img{transform:scale(1.04)}
.menu-card.wide{grid-column:span 2}
.menu-card::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 40%, oklch(0.10 0.020 165 / .85) 100%); pointer-events:none}
.menu-card-caption{position:absolute; left:20px; bottom:20px; right:20px; z-index:2; display:flex; align-items:flex-end; justify-content:space-between; gap:12px}
.menu-card-caption .titles{background:var(--wood); color:var(--bg); padding:10px 16px; border-radius:var(--r-card); max-width:75%}
.menu-card-caption h3{font-family:"Unbounded",sans-serif; font-weight:600; font-size:18px; line-height:1.15; color:var(--bg)}
.menu-card-caption p{font-size:13px; color:oklch(0.30 0.020 75); margin-top:2px; line-height:1.3}
.menu-card-caption .arrow{width:44px; height:44px; border-radius:50%; background:var(--bg); color:var(--fg); display:flex; align-items:center; justify-content:center; flex-shrink:0}
.menu-card-caption .arrow svg{width:18px; height:18px}
.menu-cta-row{display:flex; justify-content:center; margin-top:48px}
.menu-card--all{background:var(--accent); border-color:var(--accent); transition:background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease)}
.menu-card--all::after{display:none}
.menu-card--all:hover{background:var(--accent-h); border-color:var(--accent)}
.menu-card--all:focus-visible{outline-color:var(--bg)}
.menu-card--all .titles{background:none; padding:0; max-width:80%}
.menu-card--all .arrow{color:var(--accent)}

/* ===== Чем заняться ===== */
.things-slider{position:relative; margin:0 -16px; padding:0 16px}
.things-track{display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:4px 4px 24px; -webkit-overflow-scrolling:touch}
.things-track::-webkit-scrollbar{display:none}
.things-card{flex:0 0 78%; max-width:340px; scroll-snap-align:start; position:relative; aspect-ratio:4/5; border-radius:var(--r-media); overflow:hidden; background:var(--surface); border:1px solid var(--border)}
.things-card img{width:100%; height:100%; object-fit:cover}
.things-card::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 45%, oklch(0.10 0.020 165 / .9) 100%)}
.things-card-info{position:absolute; left:18px; right:18px; bottom:18px; z-index:2}
.things-card .label{color:var(--accent); margin-bottom:8px}
.things-card h3{color:var(--fg); font-size:22px; line-height:1.2}
.things-card .more{display:inline-flex; align-items:center; gap:6px; margin-top:10px; color:var(--fg); font-size:14px; font-weight:500; border-bottom:1px solid var(--border); padding-bottom:2px}
.things-card .more:hover{color:var(--accent); border-bottom-color:var(--accent)}

.things-head{display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:40px}
.things-head .section-head{margin-bottom:0}
.things-nav{display:flex; gap:10px; flex-shrink:0}
.things-nav button{width:48px; height:48px; border-radius:50%; border:1px solid var(--border); color:var(--fg); display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s, color .2s, opacity .2s}
.things-nav button:hover{background:var(--surface); border-color:var(--accent); color:var(--accent)}
.things-nav button:disabled{opacity:.35; cursor:default}
.things-nav svg{width:20px; height:20px}
.things-dots{display:flex; gap:8px; justify-content:center; margin-top:28px}
.things-dots button{width:8px; height:8px; border-radius:999px; background:oklch(0.96 0.010 100 / .25); padding:0; transition:background .25s, width .25s}
.things-dots button.is-active{background:var(--accent); width:26px}

/* ===== Схема зала ===== */
.hall-layout{display:grid; grid-template-columns:1fr; gap:24px; align-items:start}
.hall-svg-wrap{background-color:var(--surface); border:1px solid var(--border); border-radius:var(--r-media); padding:24px; position:relative; overflow:hidden}
.hall-svg-wrap::before{content:""; position:absolute; inset:0; background-image:var(--hall-img); background-size:cover; background-position:center; opacity:.5; z-index:0; pointer-events:none}
.hall-svg-wrap::after{content:""; position:absolute; inset:0; background:oklch(0.10 0.018 165 / .30); z-index:0; pointer-events:none}
.hall-book-group{cursor:pointer}
.hall-book-zone{fill:var(--accent); stroke:var(--accent); stroke-width:1.5; transition:fill .25s var(--ease), stroke .25s var(--ease), filter .25s var(--ease)}
.hall-book-group:hover .hall-book-zone{fill:var(--accent-h)}
.hall-book-group:focus-visible .hall-book-zone{stroke:var(--fg); stroke-width:2.5}
.hall-book-label{font-family:"Manrope",sans-serif; font-size:15px; font-weight:700; fill:var(--bg); pointer-events:none}
.hall-book-label.sub{font-size:11px; font-weight:600; fill:var(--bg); fill-opacity:.68}
.hall-svg{position:relative; z-index:1; width:100%; height:auto}
.hall-zone{fill:var(--surface); fill-opacity:.5; stroke:var(--border); stroke-width:1.5; cursor:pointer; transition:fill-opacity .25s var(--ease), stroke .25s var(--ease), stroke-width .25s var(--ease), filter .25s var(--ease)}
.hall-zone:hover{fill-opacity:.72; stroke:oklch(0.50 0.035 165)}
.hall-zone.is-selected{fill-opacity:.5; stroke:var(--accent); stroke-width:2.5; filter:drop-shadow(0 0 14px oklch(0.932 0.152 104 / .6))}
.hall-zone-label{font-family:"Manrope",sans-serif; font-size:13px; font-weight:600; fill:var(--fg); pointer-events:none; paint-order:stroke; stroke:oklch(0.13 0.02 165 / .85); stroke-width:3px; stroke-linejoin:round}
.hall-zone:focus-visible{outline:none; stroke:var(--accent); stroke-width:3}
.hall-zone-card{max-width:760px; padding:24px 32px; }
.hall-zone-card .body{padding:0}
.hall-zone-card h3{margin-bottom:6px}
.hall-zone-card .meta{display:flex; gap:16px; margin:10px 0 14px; flex-wrap:wrap}
.hall-zone-card .meta span{font-family:"JetBrains Mono",monospace; font-size:13px; color:var(--muted)}
.hall-zone-card .meta b{color:var(--fg); font-weight:500}
.hall-zone-card .desc{color:var(--muted); font-size:15px; line-height:1.55}

/* ===== Акция дня ===== */
.promo-layout{display:grid; grid-template-columns:6fr 6fr; gap:40px; align-items:stretch}
.promo-photo{aspect-ratio:4/3; border-radius:var(--r-media); overflow:hidden; background:var(--surface); border:1px solid var(--border); position:relative}
.promo-photo img{width:100%; height:100%; object-fit:cover; transition:opacity .4s var(--ease)}
.promo-photo .badge{position:absolute; top:20px; left:20px; padding:8px 14px; border-radius:var(--r-pill); background:oklch(0.10 0.020 165 / .78); backdrop-filter:blur(8px); color:var(--accent); font-family:"JetBrains Mono",monospace; font-size:13px; letter-spacing:.08em; text-transform:uppercase; font-weight:500; border:1px solid oklch(0.932 0.152 104 / .35)}
.promo-info{display:flex; flex-direction:column; justify-content:center}
.promo-ticker{display:flex; align-items:baseline; gap:14px; margin-bottom:20px; flex-wrap:wrap}
.promo-ticker .day{font-family:"Unbounded",sans-serif; font-weight:700; font-size:clamp(32px,3vw,44px); color:var(--fg); letter-spacing:-.01em; line-height:1}
.promo-ticker .tag{font-family:"JetBrains Mono",monospace; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted)}
.promo-ticker .date{color:var(--muted); font-size:14px; margin-left:auto; font-family:"JetBrains Mono",monospace}
.promo-title{font-family:"Unbounded",sans-serif; font-weight:600; font-size:clamp(24px,2.6vw,34px); line-height:1.2; letter-spacing:-.01em; margin-bottom:14px; min-height:2.6em}
.promo-title .hl{color:var(--accent)}
.promo-sub{color:var(--muted); font-size:16px; line-height:1.55; margin-bottom:28px; max-width:480px}
.promo-pills{display:flex; gap:8px; margin-bottom:24px; flex-wrap:wrap}
.promo-pill{padding:10px 14px; border-radius:var(--r-pill); border:1px solid var(--border); color:var(--muted); font-family:"JetBrains Mono",monospace; font-size:13px; font-weight:500; min-height:40px; transition:color .2s, border-color .2s, background .2s}
.promo-pill:hover{color:var(--fg); border-color:oklch(0.44 0.030 165)}
.promo-pill.is-active{background:var(--accent); border-color:var(--accent); color:var(--bg)}
.promo-pill:focus-visible{outline:2px solid var(--accent); outline-offset:2px}
.promo-pills-wrap{overflow-x:auto; scrollbar-width:none; margin:0 -8px; padding:0 8px}
.promo-pills-wrap::-webkit-scrollbar{display:none}
.promo-link{align-self:flex-start}

/* ===== Лояльность ===== */
.loyalty{background:var(--surface); border:1px solid var(--border); border-radius:var(--r-media); padding:48px; position:relative; overflow:hidden}
.loyalty::before{content:""; position:absolute; inset:0; background:linear-gradient(135deg, oklch(0.38 0.100 160 / .35), transparent 60%); pointer-events:none}
.loyalty-row{display:grid; grid-template-columns:auto 1fr auto; gap:40px; align-items:center; position:relative}
.loyalty-head{max-width:380px}
.loyalty-head h2{font-size:32px}
.loyalty-head p{color:var(--muted); margin-top:10px}
.loyalty-points{display:flex; gap:32px; flex-wrap:wrap}
.loyalty-point{display:flex; align-items:flex-start; gap:14px; max-width:220px}
.loyalty-point .ico{width:44px; height:44px; border-radius:12px; background:var(--emerald-deep); display:flex; align-items:center; justify-content:center; color:var(--fg); flex-shrink:0}
.loyalty-point .ico svg{width:22px; height:22px}
.loyalty-point h4{font-size:16px; font-weight:600; margin-bottom:4px}
.loyalty-point p{font-size:14px; color:var(--muted); line-height:1.45}

/* ===== Расположение ===== */
.location-layout{display:grid; grid-template-columns:6fr 6fr; gap:40px}
.location-map{aspect-ratio:1/1; max-height:480px; border-radius:var(--r-media); overflow:hidden; background:var(--surface); border:1px solid var(--border); position:relative}
.location-map iframe{width:100%; height:100%; border:0; filter:grayscale(.4) invert(.92) hue-rotate(180deg) saturate(.7)}
.location-map .placeholder{position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--muted); text-align:center; padding:24px; background:var(--surface)}
.location-map .placeholder svg{width:48px; height:48px; color:var(--accent)}
.location-info h3{margin-bottom:16px}
.location-list{display:flex; flex-direction:column; gap:18px; margin-bottom:28px}
.location-list li{display:flex; gap:14px; align-items:flex-start}
.location-list .ico{width:36px; height:36px; border-radius:10px; background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--accent)}
.location-list .ico svg{width:18px; height:18px}
.location-list .text{display:flex; flex-direction:column; gap:2px; padding-top:4px}
.location-list .text b{font-weight:600; color:var(--fg)}
.location-list .text span{color:var(--muted); font-size:15px}
.location-list .text .mono{font-family:"JetBrains Mono",monospace; font-size:15px}
.route-steps{display:flex; gap:14px; align-items:center; padding:20px; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-card); margin-bottom:24px; flex-wrap:wrap}
.route-step{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--muted)}
.route-step b{color:var(--fg); font-family:"JetBrains Mono",monospace}
.route-arrow{color:var(--accent); font-family:"JetBrains Mono",monospace}

/* ===== Отзывы ===== */
.reviews-head{display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:40px}
.reviews-head .section-head{margin-bottom:0}
.reviews-nav{display:flex; gap:10px; flex-shrink:0}
.reviews-nav button{width:48px; height:48px; border-radius:50%; border:1px solid var(--border); color:var(--fg); display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s, color .2s, opacity .2s}
.reviews-nav button:hover{background:var(--surface); border-color:var(--accent); color:var(--accent)}
.reviews-nav button:focus-visible{outline:2px solid var(--accent); outline-offset:2px}
.reviews-nav button:disabled{opacity:.35; cursor:default}
.reviews-nav svg{width:20px; height:20px}
.reviews-slider{position:relative}
.reviews-track{display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:2px 2px 10px; -webkit-overflow-scrolling:touch}
.reviews-track::-webkit-scrollbar{display:none}
.review-card{flex:0 0 calc((100% - 32px)/3); min-width:0; scroll-snap-align:start; background:rgb(35, 35, 35); border:1px solid var(--border); border-radius:var(--r-card); padding:28px; display:flex; flex-direction:column; gap:18px}
.review-head{display:flex; align-items:center; gap:14px}
.review-avatar{width:48px; height:48px; border-radius:50%; background:var(--emerald-deep); color:var(--fg); display:flex; align-items:center; justify-content:center; flex-shrink:0}
.review-avatar svg{width:24px; height:24px; fill:currentColor}
.review-head-main{display:flex; flex-direction:column; gap:2px; min-width:0}
.review-rating{display:flex; align-items:center; gap:8px}
.review-stars{display:inline-flex; gap:2px}
.review-stars svg{width:16px; height:16px; fill:var(--warning)}
.review-stars svg.is-off{fill:oklch(0.46 0.03 165)}
.review-mark{font-family:"JetBrains Mono",monospace; font-size:13px; color:var(--muted)}
.review-name{font-weight:600; font-size:16px}
.review-text{color:var(--fg); font-size:15px; line-height:1.55; flex:1}
.review-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto; padding-top:14px; border-top:1px solid var(--border); flex-wrap:wrap}
.review-date{color:var(--muted); font-size:12px; font-family:"JetBrains Mono",monospace}
.review-source{color:var(--muted); font-size:12px}
.reviews-dots{display:flex; gap:8px; justify-content:center; margin-top:28px}
.reviews-dots button{width:8px; height:8px; border-radius:999px; background:oklch(0.96 0.010 100 / .25); padding:0; transition:background .25s, width .25s}
.reviews-dots button.is-active{background:var(--accent); width:26px}
.awards-strip{margin-top:64px; padding-top:48px; border-top:1px solid var(--border)}
.awards-strip .section-head{margin-bottom:32px}
.awards-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:16px}
.award-card{aspect-ratio:3/4; border-radius:var(--r-card); background:var(--wood); color:var(--bg); padding:24px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid oklch(0.62 0.060 75); position:relative; overflow:hidden; cursor:pointer; transition:transform .25s var(--ease)}
.award-card:hover{transform:translateY(-4px)}
.award-card .ico{width:56px; height:56px; color:oklch(0.38 0.100 160)}
.award-card .year{font-family:"JetBrains Mono",monospace; font-size:13px; font-weight:500; color:oklch(0.30 0.020 75)}
.award-card h4{font-family:"Unbounded",sans-serif; font-weight:600; font-size:16px; line-height:1.2; color:var(--bg)}
.award-card .tag{font-size:12px; color:oklch(0.30 0.020 75); font-family:"JetBrains Mono",monospace; text-transform:uppercase; letter-spacing:.08em}

/* ===== Контакты + финал ===== */
.contacts{background:var(--surface); border-radius:var(--r-media); padding:64px; border:1px solid var(--border)}
.contacts-grid{display:grid; grid-template-columns:1.4fr 1fr; gap:48px; align-items:start}
.contacts-left h2{margin-bottom:24px}
.contacts-rows{display:grid; grid-template-columns:1fr 1fr; gap:20px 32px; margin-bottom:36px}
.contacts-row{display:flex; flex-direction:column; gap:4px}
.contacts-row .label{color:var(--muted); margin-bottom:4px}
.contacts-row .val{font-size:18px; color:var(--fg); font-weight:500}
.contacts-row .val.mono{font-family:"JetBrains Mono",monospace; font-size:17px}
.contacts-row a.val:hover{color:var(--accent)}
.socials{display:flex; gap:12px}
.social-link{width:48px; height:48px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--fg); transition:background .2s, border-color .2s, color .2s}
.social-link:hover{background:var(--bg); border-color:var(--accent); color:var(--accent)}
.social-link svg{width:22px; height:22px}
.contacts-cta{display:flex; flex-direction:column; gap:16px; align-items:flex-start; padding:32px; background:var(--bg); border-radius:var(--r-media); border:1px solid var(--border)}
.contacts-cta h3{font-size:24px; line-height:1.2; margin-bottom:6px}
.contacts-cta p{color:var(--muted); font-size:15px; margin-bottom:8px}

/* ===== Футер ===== */
.footer{padding:64px 0 32px; border-top:1px solid var(--border); margin-top:96px}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid var(--border)}
.footer-brand{display:flex; flex-direction:column; gap:16px; max-width:280px}
.footer-brand .brand{margin-bottom:8px}
.footer-brand p{color:var(--muted); font-size:14px; line-height:1.55}
.footer-col h4{font-family:"JetBrains Mono",monospace; font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:18px; font-weight:500}
.footer-col ul{display:flex; flex-direction:column; gap:10px}
.footer-col a{color:var(--fg); font-size:15px; transition:color .2s}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:32px; gap:24px; flex-wrap:wrap}
.footer-bottom .legal{color:var(--muted); font-size:13px; font-family:"JetBrains Mono",monospace}
.footer-18{display:inline-flex; align-items:center; padding:6px 12px; border:1px solid var(--border); border-radius:var(--r-pill); font-family:"JetBrains Mono",monospace; font-size:12px; letter-spacing:.08em; color:var(--accent); text-transform:uppercase}

/* ===== Модальные окна ===== */
.modal{position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center; padding:24px}
.modal.is-open{display:flex}
.modal-backdrop{position:absolute; inset:0; background:oklch(0.08 0.020 165 / .85); backdrop-filter:blur(6px)}
.modal-card{position:relative; z-index:1; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-media); max-width:640px; width:100%; max-height:88vh; overflow-y:auto; box-shadow:var(--shadow-m); animation:modalIn .25s var(--ease)}
@keyframes modalIn{from{opacity:0; transform:translateY(12px) scale(.98)} to{opacity:1; transform:none}}
.modal-card.lg{max-width:880px}
.modal-close{position:absolute; top:16px; right:16px; width:44px; height:44px; border-radius:50%; background:var(--bg); border:1px solid var(--border); color:var(--fg); display:flex; align-items:center; justify-content:center; z-index:2; transition:border-color .2s, color .2s}
.modal-close:hover{border-color:var(--accent); color:var(--accent)}
.modal-close svg{width:20px; height:20px}
.modal-body{padding:40px}
.modal-body.lg{padding:48px}

/* 18+ */
.modal-18{overflow-y:auto; align-items:flex-start}
.modal-18 .modal-card{text-align:center; max-width:440px; padding:48px 40px; margin:auto; max-height:none; overflow:visible}
.modal-18 .modal-close{display:none}
.modal-18 .logo{width:70%;   margin:0 auto 24px; object-fit:cover; filter: invert(100%) sepia(48%) saturate(484%) contrast(121%); }
.modal-18 h2{font-family:"Unbounded",sans-serif; font-weight:700; font-size:28px; margin-bottom:12px}
.modal-18 p{color:var(--muted); margin-bottom:32px; max-width:340px; margin-left:auto; margin-right:auto}

/* Все акции недели */
.promos-modal-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:24px 0}
.promos-modal-card{display:grid; grid-template-columns:96px 1fr; gap:14px; padding:14px; background:var(--bg); border:1px solid var(--border); border-radius:var(--r-card); align-items:center; text-align:left}
.promos-modal-card.today{border-color:var(--accent)}
.promos-modal-card .thumb{width:96px; height:72px; border-radius:8px; object-fit:cover; background:var(--surface)}
.promos-modal-card .day{font-family:"JetBrains Mono",monospace; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); margin-bottom:4px}
.promos-modal-card h4{font-size:15px; line-height:1.3; margin-bottom:4px; font-weight:600}
.promos-modal-card p{font-size:13px; color:var(--muted); line-height:1.4}
.promos-modal-footer{text-align:center; margin-top:16px}

/* Бронь */
.booking-modal .modal-card{max-width:560px}
.booking-widget{min-height:280px; background:var(--bg); border:1px solid var(--border); border-radius:var(--r-card); padding:24px; margin-top:24px; display:flex; align-items:center; justify-content:center; text-align:center; color:var(--muted)}
.booking-form{display:grid; gap:14px; margin-top:20px}
.field{display:flex; flex-direction:column; gap:6px}
.field label{font-family:"JetBrains Mono",monospace; font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted)}
.field input,.field textarea,.field select{padding:12px 14px; border-radius:var(--r-input); background:var(--bg); border:1px solid var(--border); color:var(--fg); font-size:15px; min-height:44px; transition:border-color .2s}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--accent); outline:none}
.field textarea{resize:vertical; min-height:96px}

/* Отзыв */
.review-modal .modal-card{max-width:560px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.rating-input{display:flex; gap:6px; padding:10px 0}
.rating-input button{width:32px; height:32px; padding:0; color:var(--border); transition:color .15s}
.rating-input button svg{width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:2}
.rating-input button.is-on{color:var(--warning)}
.rating-input button.is-on svg{fill:var(--warning); stroke:var(--warning)}
.form-note{color:var(--muted); font-size:13px; margin-top:8px; display:flex; align-items:center; gap:8px}
.form-success{padding:48px 24px; text-align:center}
.form-success svg{width:56px; height:56px; color:var(--success); margin:0 auto 16px}

/* Лайтбокс */
.lightbox{padding:0}
.lightbox .modal-card{background:transparent; border:none; max-width:1200px; box-shadow:none; max-height:100vh}
.lightbox-img{width:100%; max-height:88vh; object-fit:contain; border-radius:var(--r-media)}
.lightbox .modal-close{background:var(--bg)}
.lightbox-counter{position:absolute; bottom:24px; left:50%; transform:translateX(-50%); padding:8px 14px; background:oklch(0.10 0.020 165 / .7); backdrop-filter:blur(8px); border-radius:var(--r-pill); font-family:"JetBrains Mono",monospace; font-size:13px; color:var(--fg)}

/* ===== Анонсы висящих тостов ===== */
.toast{position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(calc(100% + 40px)); z-index:200; background:var(--surface); border:1px solid var(--accent); border-radius:var(--r-pill); padding:12px 20px; display:flex; align-items:center; gap:10px; color:var(--fg); font-size:14px; box-shadow:var(--shadow-m); opacity:0; visibility:hidden; pointer-events:none; transition:transform .35s var(--ease), opacity .35s var(--ease), visibility 0s linear .35s}
.toast.show{transform:translateX(-50%) translateY(0); opacity:1; visibility:visible; pointer-events:auto; transition:transform .35s var(--ease), opacity .35s var(--ease), visibility 0s}
.toast svg{width:18px; height:18px; color:var(--success)}

/* ===== Адаптив ===== */
@media (max-width:1280px){
  .container{padding:0 32px}
  .section{padding:12px 0}
}
@media (max-width:1024px){
  .container{padding:0 24px}
  .section{padding:6px 0}
  .nav{display:none}
  .burger{display:flex}
  .header-phone .num{display:none}
  .header-phone{padding:8px}
  .menu-mosaic-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:220px}
  .menu-card.wide{grid-column:span 2}
  .hall-layout{grid-template-columns:1fr; gap:32px}
  .promo-layout{grid-template-columns:1fr; gap:32px}
  .promo-photo{order:2; aspect-ratio:16/10}
  .location-layout{grid-template-columns:1fr; gap:32px}
  .location-map{aspect-ratio:4/3; max-height:360px}
  .review-card{flex:0 0 calc((100% - 16px)/2)}
  .awards-grid{grid-template-columns:repeat(3,1fr)}
  .contacts{padding:40px}
  .contacts-grid{grid-template-columns:1fr; gap:36px}
  .loyalty{padding:36px}
  .loyalty-row{grid-template-columns:1fr; gap:28px}
  .loyalty-points{gap:24px}
  .footer-top{grid-template-columns:1fr 1fr; gap:32px}
}
@media (max-width:768px){
  .section{padding:6px 0}
  .hall-svg-wrap{padding:0}
  .hero-content{padding:0 24px 80px}
  .hero-arrows{display:none}
  .hero-controls{right:24px; bottom:24px}
  .hero-dots{bottom:64px}
  .menu-mosaic-grid{grid-template-columns:1fr 1fr; gap:12px; grid-auto-rows:180px}
  .things-card{flex:0 0 70vw}
  .things-nav{display:none}
  .reviews-nav{display:none}
  .awards-grid{grid-template-columns:repeat(2,1fr)}
  .contacts-rows{grid-template-columns:1fr}
  .contacts{padding:28px}
  .loyalty{padding:28px}
  .footer-top{grid-template-columns:1fr; gap:28px}
  .modal-body{padding:28px}
  .modal-body.lg{padding:32px}
  .modal-18 .modal-card{padding:36px 24px}
  .promos-modal-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}
@media (max-width:480px){
  .container{padding:0 16px}
  .hero-title{font-size:clamp(40px,16vw,64px)}
  .hero-tagline{font-size:16px}
  .btn{padding:12px 20px; font-size:15px; width:100%}
  .hero-cta{flex-direction:column; gap:10px; align-items:stretch}
  .menu-mosaic-grid{grid-template-columns:1fr; gap:12px; grid-auto-rows:200px}
  .menu-card.wide{grid-column:span 1}
  .things-card{flex:0 0 78vw}
  .review-card{flex:0 0 84%}
  .promo-pills-wrap{display:block}
  .awards-grid{grid-template-columns:1fr 1fr}
  .location-list{gap:14px}
  .footer-bottom{flex-direction:column; align-items:flex-start; gap:12px}
}

/* Респект к настройкам пользователя */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important}
  .hero-slide.is-active img{animation:none}
  .motion-ready .hero-eyebrow,
  .motion-ready .hero-title,
  .motion-ready .hero-tagline,
  .motion-ready .hero-cta,
  .motion-ready .section.motion-reveal > .container{opacity:1; transform:none}
}