/* ============================================================
   «Старый Амбар» — стили лендинга (dark-luxe)
   ============================================================ */

:root{
  --bg: #0C0906;
  --surface: #14100B;
  --surface-2: #1B150E;
  --text: #F2E9DC;
  --text-muted: rgba(242, 233, 220, .62);
  --text-faint: rgba(242, 233, 220, .38);
  --amber: #E3A34B;
  --amber-bright: #F0B961;
  --amber-deep: #B87B2E;
  --on-amber: #1A1207;
  --hairline: rgba(227, 163, 75, .22);
  --hairline-soft: rgba(242, 233, 220, .12);
  --focus: #F0B961;
  --ok: #8FBF7F;
  --pad-x: clamp(20px, 4vw, 56px);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection{ background: var(--amber); color: var(--on-amber); }

a{ color: inherit; text-decoration: none; }
/* якоря не прячутся под фиксированной шапкой */
[id]{ scroll-margin-top: 88px; }
button{ font: inherit; cursor: pointer; background:none; border:none; color:inherit; }
img{ display:block; max-width:100%; }

.serif{ font-family: 'Playfair Display', 'Times New Roman', serif; }

/* ---------- section primitives ---------- */
.section{ position: relative; padding: clamp(80px, 10vw, 150px) var(--pad-x); }
.section-inner{ max-width: 1400px; margin: 0 auto; }
.sec-head{ margin-bottom: clamp(40px, 5vw, 72px); }
.sec-eyebrow{
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.sec-eyebrow::before{ content:""; width: 44px; height: 1px; background: var(--amber); opacity:.7; }
.sec-title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: .002em;
  max-width: 18em;
}
.sec-title em{ font-style: italic; font-weight: 600; color: var(--amber-bright); }
.sec-lede{
  max-width: 58ch;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.15vw, 17px);
}

/* scroll reveal */
.rv{ opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rv.is-in{ opacity: 1; transform: none; }
.rv-d1{ transition-delay: .08s; } .rv-d2{ transition-delay: .16s; } .rv-d3{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  .rv{ opacity:1; transform:none; transition:none; }
}

/* ---------- grain ---------- */
.grain{
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px var(--pad-x);
  transition: background .5s ease, backdrop-filter .5s ease, padding .4s ease;
}
.nav::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
  opacity: 0;
  transition: opacity .5s ease;
}
.nav.is-scrolled{
  background: rgba(12, 9, 6, .8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
}
.nav.is-scrolled::after{ opacity:1; }

.nav-brand{
  justify-self: start;
  display: flex; align-items: baseline; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-brand em{
  font-style: italic; font-weight: 500;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--amber);
  font-size: 17px;
}
.nav-brand img{
  height: 46px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
  transition: transform .3s ease;
}
.nav-brand:hover img{ transform: scale(1.04); }

.nav-links{
  justify-self: center;
  display: flex; gap: clamp(16px, 2.2vw, 32px);
  list-style: none;
}
.nav-links a{
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .3s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:100%; height:1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover{ color: var(--text); }
.nav-links a:hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-right{ justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-phone{
  font-size: 14px; font-weight: 600;
  letter-spacing: .03em;
  transition: color .3s ease;
}
.nav-phone:hover{ color: var(--amber-bright); }
.nav-phone span{
  display:block;
  font-size: 11px; font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-faint);
  text-align: right;
}

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{ outline: 2px solid var(--focus); outline-offset: 3px; }
.btn-solid{ background: var(--amber); color: var(--on-amber); }
.btn-solid:hover{ background: var(--amber-bright); }
.btn-ghost{
  border-color: var(--hairline);
  color: var(--text);
  background: rgba(12,9,6,.25);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover{ border-color: var(--amber); color: var(--amber-bright); }
.btn-sm{ padding: 10px 20px; font-size: 12px; }
.link-arrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber);
  transition: color .3s ease, gap .3s ease;
}
.link-arrow::after{ content:"→"; transition: transform .3s ease; }
.link-arrow:hover{ color: var(--amber-bright); }
.link-arrow:hover::after{ transform: translateX(6px); }

/* ---------- hero ---------- */
.hero-track{ position: relative; height: 480vh; }
.hero-stage{
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  overflow: hidden;
}
.hero-video-wrap{ position: absolute; inset: 0; }
.hero-video-wrap video{ width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-shade{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,6,.68) 0%, rgba(12,9,6,.30) 30%, rgba(12,9,6,.16) 55%, rgba(12,9,6,.80) 100%),
    linear-gradient(90deg, rgba(12,9,6,.52) 0%, rgba(12,9,6,.18) 42%, transparent 68%),
    radial-gradient(120% 90% at 50% 110%, rgba(12,9,6,.55) 0%, transparent 55%);
  pointer-events: none;
}
.hero-vignette{
  position: absolute; inset: 0;
  background: radial-gradient(140% 140% at 50% 50%, transparent 55%, rgba(12,9,6,.62) 100%);
  pointer-events: none;
}

.chapter{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad-x) clamp(96px, 13vh, 150px);
  pointer-events: none;
}
.chapter > *{ pointer-events: auto; }
.chapter[data-hidden="true"] > *{ pointer-events: none; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(16px, 2.4vh, 28px);
}
.eyebrow::before{ content:""; width: 44px; height: 1px; background: var(--amber); opacity: .7; }

.hero-h1{ font-weight: 400; line-height: 1; }
.hero-h1 .h1-script{
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(28px, 4.6vw, 64px);
  color: var(--amber-bright);
  margin-bottom: clamp(2px, .8vh, 10px);
  letter-spacing: .01em;
}
.hero-h1 .h1-display{
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 11.5vw, 175px);
  line-height: .96;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--text);
}
/* маска строки с запасом сверху, чтобы не резать выносные элементы («Й») */
.h1-line{
  display: block;
  overflow: hidden;
  padding-top: .18em;
  margin-top: -.18em;
}
.h1-line > span{ display: inline-block; will-change: transform; }

.hero-sub-row{
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 28px;
  margin-top: clamp(24px, 4vh, 44px);
}
.hero-lede{
  max-width: 52ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
}
.hero-lede strong{ color: var(--text); font-weight: 600; }
.hero-facts{
  display: flex; flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 18px;
  font-size: 13px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-faint);
}
.hero-facts span{ display: inline-flex; align-items: center; }
.hero-facts span + span::before{ content:"·"; margin: 0 12px; color: var(--amber-deep); }
.hero-cta{ display: flex; gap: 14px; flex-shrink: 0; }

.chapter-quote{ justify-content: center; align-items: flex-start; padding-bottom: 0; }
.chapter-quote .q-inner{ max-width: 780px; }
.chapter-quote h2{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.12;
  letter-spacing: .002em;
}
.chapter-quote h2 em{ font-style: italic; font-weight: 600; color: var(--amber-bright); }
.chapter-quote p{
  max-width: 52ch;
  margin-top: 22px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-muted);
}
.chapter-3{ align-items: center; text-align: center; justify-content: center; }
.chapter-3 .q-inner{ display: flex; flex-direction: column; align-items: center; }
.chapter-3 .eyebrow::before{ display:none; }
.chapter-3 .hero-cta{ margin-top: 34px; justify-content: center; }
.chapter-3 p{ margin-left:auto; margin-right:auto; }

.rail{
  position: absolute;
  right: clamp(20px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.rail-num{
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  transition: color .4s ease;
}
.rail-num.is-active{ color: var(--amber-bright); }
.rail-line{
  width: 1px; height: clamp(90px, 16vh, 160px);
  background: var(--hairline-soft);
  position: relative; overflow: hidden;
}
.rail-line i{
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: top;
}

.hero-util{
  position: absolute;
  left: var(--pad-x); right: var(--pad-x);
  bottom: clamp(22px, 3.6vh, 36px);
  z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.util-open{ display: inline-flex; align-items: center; gap: 10px; }
.util-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-bright);
  animation: breathe 2.6s ease-out infinite;
}
@keyframes breathe{
  0%{ box-shadow: 0 0 0 0 rgba(240,185,97,.45); }
  70%{ box-shadow: 0 0 0 9px rgba(240,185,97,0); }
  100%{ box-shadow: 0 0 0 0 rgba(240,185,97,0); }
}
.util-scroll{ display: inline-flex; align-items: center; gap: 12px; }
.util-scroll .scroll-line{
  width: 1px; height: 34px;
  background: var(--hairline-soft);
  position: relative; overflow: hidden;
}
.util-scroll .scroll-line::after{
  content:"";
  position:absolute; left:0; top:-100%;
  width:100%; height:100%;
  background: var(--amber-bright);
  animation: scrollHint 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes scrollHint{ 0%{ top:-100%; } 55%{ top:100%; } 100%{ top:100%; } }

.curtain{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s ease, visibility .9s;
}
.curtain.is-done{ opacity: 0; visibility: hidden; }
.curtain .c-mark{
  width: clamp(180px, 24vw, 300px);
  height: auto;
  opacity: 0;
  animation: markIn 1.1s ease .15s forwards;
}
@keyframes markIn{ from{ opacity:0; transform: translateY(12px);} to{ opacity:1; transform:none;} }

/* ---------- trust ---------- */
.trust{
  position: relative; z-index: 10;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.trust-inner{
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(4, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.trust-title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}
.trust-title em{ font-style: italic; color: var(--amber-bright); font-weight: 600; }
.stat b{
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.stat span{ font-size: 14px; color: var(--text-muted); max-width: 22ch; display: block; }

/* ---------- scenarios: expanding panels ---------- */
.scenarios .sec-head{ display:flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.scen-row{
  display: flex;
  gap: 6px;
  height: clamp(420px, 56vh, 560px);
}
.scen-panel{
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  transition: flex 0.7s cubic-bezier(.22,1,.36,1);
}
.scen-panel.is-open{ flex: 3.2; }
.scen-panel img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.9);
  transition: filter .7s ease, transform 1.2s cubic-bezier(.22,1,.36,1);
}
.scen-panel.is-open img{ filter: brightness(.75) saturate(1); transform: scale(1.04); }
.scen-panel::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,9,6,.88) 100%);
}
.scen-body{
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.scen-num{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 8px;
}
.scen-title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scen-panel.is-open .scen-title{ white-space: normal; }
.scen-more{
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height .7s cubic-bezier(.22,1,.36,1), opacity .5s ease .1s;
}
.scen-panel.is-open .scen-more{ max-height: 220px; opacity: 1; }
.scen-more p{
  font-size: 14px;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 10px 0 16px;
}

/* ---------- menu ledger ---------- */
.menu-sec .sec-head{ display:flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.dish-list{ list-style: none; border-top: 1px solid var(--hairline-soft); }
.dish{
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--hairline-soft);
  transition: background .4s ease, padding .4s ease;
}
.dish:hover{ background: rgba(227,163,75,.045); padding-left: 18px; }
.dish-thumb{
  width: 84px; height: 84px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(.95);
}
.dish-name{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.2;
  margin-bottom: 4px;
}
.dish-desc{ font-size: 14px; color: var(--text-muted); max-width: 60ch; }
.dish-price{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--amber);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish-price small{
  display:block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-faint);
  text-align: right;
}
/* плавающее превью за курсором (desktop) */
.dish-float{
  position: fixed;
  z-index: 60;
  width: 250px; height: 170px;
  border-radius: 3px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border: 1px solid rgba(242,233,220,.1);
}
.dish-float img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
}
.dish-float img.is-on{ opacity: 1; }
.dish-float.is-on{ opacity: 1; transform: scale(1); }
.menu-note{
  margin-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 13px;
}

/* ---------- beer band ---------- */
.beer-band{
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.beer-grid{
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.beer-media{
  position: relative;
  height: clamp(420px, 60vh, 620px);
  border-radius: 3px;
  overflow: hidden;
}
.beer-media img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover;
}
.beer-media::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(90% 70% at 60% 40%, transparent 40%, rgba(12,9,6,.55) 100%);
}
.beer-glow{
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  left: -18%; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(227,163,75,.14) 0%, transparent 60%);
  pointer-events: none;
}
.beer-copy .sec-title{ max-width: 13em; }
.beer-points{ list-style:none; margin-top: 30px; display: grid; gap: 16px; }
.beer-points li{
  display: flex; gap: 16px;
  font-size: 15px; color: var(--text-muted);
  max-width: 52ch;
}
.beer-points li::before{
  content:"";
  flex-shrink: 0;
  width: 22px; height: 1px;
  background: var(--amber);
  margin-top: .75em;
}
.beer-points strong{ color: var(--text); font-weight: 600; }
.beer-quote{
  margin-top: 34px;
  padding-left: 22px;
  border-left: 2px solid var(--amber);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--amber-bright);
  max-width: 40ch;
}

/* ---------- lunch ---------- */
.lunch-grid{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.lunch-price-block{ position: sticky; top: 120px; }
.lunch-price{
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(90px, 11vw, 170px);
  line-height: .9;
  color: var(--amber);
  letter-spacing: -.01em;
}
.lunch-price sup{
  font-size: .32em;
  font-weight: 700;
  vertical-align: super;
}
.lunch-price-cap{
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint);
}
.lunch-live{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
}
.lunch-live .util-dot{ background: var(--ok); }
.lunch-live[data-live="off"] .util-dot{ background: var(--text-faint); animation: none; }
.lunch-list{ list-style: none; display: grid; gap: 0; border-top: 1px solid var(--hairline-soft); }
.lunch-list li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--hairline-soft);
}
.lunch-list .l-num{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--amber);
  font-size: 18px;
  min-width: 34px;
}
.lunch-list h3{
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 700;
  margin-bottom: 6px;
}
.lunch-list p{ font-size: 14.5px; color: var(--text-muted); max-width: 56ch; }
.lunch-cta-row{ margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- banquet ---------- */
.banquet{
  background:
    linear-gradient(90deg, rgba(12,9,6,.94) 0%, rgba(12,9,6,.82) 45%, rgba(12,9,6,.6) 100%),
    url('../img/scen-banquet.jpg') center/cover no-repeat;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.banquet-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.banq-checks{ list-style:none; margin-top: 28px; display: grid; gap: 14px; }
.banq-checks li{
  display: flex; gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 54ch;
}
.banq-checks li::before{
  content:"✓";
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.banq-checks strong{ color: var(--text); font-weight: 600; }

.calc{
  background: rgba(20, 16, 11, .88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: clamp(24px, 2.6vw, 40px);
}
.calc h3{
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 700;
  margin-bottom: 6px;
}
.calc-sub{ font-size: 13.5px; color: var(--text-faint); margin-bottom: 26px; }
.calc label{
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.calc-guests-row{
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 6px;
}
.calc-guests-val{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
input[type="range"]{
  width: 100%;
  appearance: none; -webkit-appearance: none;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) var(--fill, 20%), var(--hairline-soft) var(--fill, 20%));
  border-radius: 2px;
  outline: none;
  margin: 10px 0 28px;
}
input[type="range"]::-webkit-slider-thumb{
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber-bright);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--amber);
  cursor: grab;
}
/* Firefox */
input[type="range"]::-moz-range-thumb{
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber-bright);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--amber);
  cursor: grab;
}
input[type="range"]::-moz-range-track{
  height: 2px;
  background: var(--hairline-soft);
  border-radius: 2px;
}
input[type="range"]::-moz-range-progress{
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.calc-tiers{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
.tier{
  position: relative;
  border: 1px solid var(--hairline-soft);
  border-radius: 2px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease;
}
.tier input{ position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.tier b{
  display:block;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
}
.tier span{ font-size: 12px; color: var(--text-faint); }
.tier:has(input:checked){
  border-color: var(--amber);
  background: rgba(227,163,75,.07);
}
.calc-total{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline-soft);
  margin-bottom: 20px;
}
.calc-total span{ font-size: 13px; color: var(--text-faint); letter-spacing: .06em; text-transform: uppercase; }
.calc-total b{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc .field{ margin-bottom: 16px; }
.field input, .field select{
  width: 100%;
  background: rgba(12,9,6,.5);
  border: 1px solid var(--hairline-soft);
  border-radius: 2px;
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  transition: border-color .3s ease;
  color-scheme: dark;
}
.field input:focus, .field select:focus{ outline: none; border-color: var(--amber); }
.field .err{ display:none; font-size: 12.5px; color: #E08A7A; margin-top: 6px; }
.field.has-err input{ border-color: rgba(224,138,122,.6); }
.field.has-err .err{ display: block; }
.calc .btn{ width: 100%; }
.calc-micro{ margin-top: 14px; font-size: 12.5px; color: var(--text-faint); text-align: center; }
.form-ok{
  display: none;
  padding: 26px 0 8px;
  text-align: center;
}
.form-ok.is-on{ display: block; }
.form-ok b{
  display:block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--amber-bright);
  margin-bottom: 8px;
}
.form-ok p{ font-size: 14px; color: var(--text-muted); }

/* ---------- kids room ---------- */
.kids{
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.kids-grid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.kids-media{
  position: relative;
  height: clamp(380px, 54vh, 560px);
  border-radius: 3px;
  overflow: hidden;
}
.kids-media img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.kids-media::after{
  content:"";
  position: absolute; inset: 0;
  background: radial-gradient(100% 80% at 50% 40%, transparent 50%, rgba(12,9,6,.45) 100%);
}
.kids-badge{
  position: absolute; left: 18px; top: 18px;
  z-index: 2;
  padding: 10px 16px;
  background: rgba(12,9,6,.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-bright);
}

/* ---------- atmosphere gallery ---------- */
.atmo-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 32vh));
  gap: 10px;
}
.atmo-item{
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.atmo-item:first-child{ grid-row: span 2; }
.atmo-item img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transition: transform 1.4s cubic-bezier(.22,1,.36,1), filter .6s ease;
}
.atmo-item:hover img{ transform: scale(1.05); filter: brightness(.95); }
.atmo-item figcaption{
  position: absolute; left: 18px; bottom: 14px;
  z-index: 2;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted);
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.atmo-quote{
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 900px;
}
.atmo-quote p{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--text);
}
.atmo-quote p em{ color: var(--amber-bright); }

/* ---------- promos: tickets ---------- */
.promo-list{ display: grid; gap: 14px; }
.promo{
  /* фиксированная колонка бейджа — перфорация у всех билетов на одной линии */
  --perf: clamp(160px, 18vw, 230px);
  display: grid;
  grid-template-columns: var(--perf) 1fr auto;
  align-items: center;
  gap: 0 clamp(24px, 3vw, 48px);
  padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.6vw, 40px) clamp(22px, 2.4vw, 34px) 0;
  border: 1px solid var(--hairline-soft);
  border-radius: 4px;
  position: relative;
  background: var(--surface);
  transition: border-color .35s ease, transform .35s ease;
}
.promo:hover{ border-color: var(--hairline); transform: translateX(6px); }
.promo-badge{
  justify-self: center;
  text-align: center;
  padding: 0 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--amber);
  white-space: nowrap;
  line-height: 1;
}
.promo-badge small{
  display:block;
  font-family:'Manrope',sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 8px;
  white-space: normal;
}
.promo-body h3{
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  margin-bottom: 4px;
}
.promo-body p{ font-size: 14px; color: var(--text-muted); max-width: 60ch; }
.promo .link-arrow{ margin-left: clamp(16px, 2vw, 32px); }
/* перфорация билета: пунктир по краю колонки бейджа */
.promo::before{
  content:"";
  position: absolute;
  left: var(--perf);
  top: 10px; bottom: 10px;
  border-left: 1px dashed rgba(227, 163, 75, .3);
}
/* вырезы-полукруги сверху и снизу перфорации */
.promo::after{
  content:"";
  position: absolute;
  left: var(--perf);
  top: -1px; bottom: -1px;
  width: 18px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle 8px at 50% 0, var(--bg) 6.5px, var(--hairline-soft) 7px 7.5px, transparent 8px) top no-repeat,
    radial-gradient(circle 8px at 50% 100%, var(--bg) 6.5px, var(--hairline-soft) 7px 7.5px, transparent 8px) bottom no-repeat;
  background-size: 18px 9px;
  pointer-events: none;
}

/* ---------- reviews ---------- */
.reviews{ background: var(--surface); border-top: 1px solid var(--hairline); }
.review-stack{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
}
.review{
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  background: var(--bg);
  transition: border-color .35s ease;
}
.review:hover{ border-color: var(--hairline); }
.review:nth-child(2){ margin-top: clamp(24px, 3vw, 56px); }
.review:nth-child(3){ margin-top: clamp(48px, 6vw, 112px); }
.review-stars{ color: var(--amber); letter-spacing: 4px; font-size: 14px; margin-bottom: 16px; }
.review p{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text);
}
.review footer{
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
}
.review footer b{ color: var(--text-muted); font-weight: 600; display: block; }
.reviews-foot{
  margin-top: clamp(32px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.reviews-foot p{ font-size: 14px; color: var(--text-faint); max-width: 52ch; }

/* ---------- contacts ---------- */
.addr-grid{
  display: grid;
  grid-template-columns: minmax(340px, 1fr) 1.2fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: stretch;
}
.contact-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px);
}
.contact-row{
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline-soft);
}
.contact-label{
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-faint);
}
.contact-value{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35;
}
.contact-value a{ transition: color .3s ease; }
.contact-value a:hover{ color: var(--amber-bright); }
.contact-cta{
  margin-top: auto;
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 8px;
}
.map-frame{
  position: relative;
  min-height: clamp(420px, 56vh, 600px);
  border: 1px solid var(--hairline-soft);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}
.map-frame iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- FAQ ---------- */
.faq-wrap{
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.4fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.faq-side{ position: sticky; top: 120px; }
.faq-list{ border-top: 1px solid var(--hairline-soft); }
.faq-item{ border-bottom: 1px solid var(--hairline-soft); }
.faq-q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 24px 4px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 700;
  line-height: 1.25;
  transition: color .3s ease;
}
.faq-q:hover{ color: var(--amber-bright); }
.faq-q .fx{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--hairline-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 400;
  color: var(--amber);
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.faq-item.is-open .fx{ transform: rotate(45deg); background: rgba(227,163,75,.1); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.22,1,.36,1);
}
.faq-a p{
  padding: 0 4px 26px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 64ch;
}

/* ---------- final CTA / booking ---------- */
.final{
  position: relative;
  background:
    linear-gradient(180deg, rgba(12,9,6,.88) 0%, rgba(12,9,6,.94) 100%),
    url('../img/atmo-1.jpg') center/cover no-repeat;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.final .sec-title{ margin: 0 auto; }
.final .sec-lede{ margin-left: auto; margin-right: auto; }
.book-form{
  max-width: 980px;
  margin: clamp(36px, 4vw, 56px) auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr 1.3fr auto;
  gap: 10px;
  text-align: left;
}
.book-form .field{ margin: 0; }
.book-form label{
  display:block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.final-micro{ margin-top: 18px; font-size: 12.5px; color: var(--text-faint); }
.final-phone{
  margin-top: clamp(40px, 5vw, 64px);
  font-size: 14px; color: var(--text-faint);
}
.final-phone a{
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-top: 6px;
  transition: color .3s ease;
}
.final-phone a:hover{ color: var(--amber-bright); }

/* ---------- footer ---------- */
.footer{
  border-top: 1px solid var(--hairline);
  padding: clamp(48px, 6vw, 80px) var(--pad-x) 40px;
  background: var(--bg);
}
.footer-inner{
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
}
.footer-brand .nav-brand img{ height: 72px; }
.footer-brand p{
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-faint);
  max-width: 34ch;
}
.footer h4{
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer ul{ list-style:none; display: grid; gap: 10px; }
.footer ul a{
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color .3s ease;
}
.footer ul a:hover{ color: var(--amber-bright); }
.footer-bottom{
  max-width: 1400px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- sticky CTA (mobile) ---------- */
.mobile-cta{
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  gap: 10px;
}
.mobile-cta .btn-solid{ flex: 1; padding: 16px 20px; }
.mobile-cta .btn-ghost{
  width: 54px; padding: 0;
  background: rgba(12,9,6,.7);
  flex-shrink: 0;
}
.mobile-cta .btn-ghost svg{ width: 20px; height: 20px; }

/* ---------- бургер + мобильное меню ---------- */
.nav-burger{
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  margin-right: -8px;
  background: none; border: 0;
  cursor: pointer;
}
.nav-burger span{
  display: block;
  width: 22px; height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.nav-burger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0;
  z-index: 79; /* под шапкой (80), чтобы бургер оставался кликабельным */
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(96px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 9, 6, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.mobile-menu.is-open{ opacity: 1; visibility: visible; }
body.mm-lock{ overflow: hidden; }

.mm-links{ list-style: none; }
.mm-links li{ border-bottom: 1px solid var(--hairline); }
.mm-links a{
  display: block;
  padding: 17px 0;
  font-family: 'Playfair Display', serif;
  font-size: 27px; font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  transform: translateY(14px); opacity: 0;
  transition: color .3s ease, transform .45s cubic-bezier(.4,0,.2,1), opacity .45s ease;
}
.mm-links li:nth-child(2) a{ transition-delay: .04s; }
.mm-links li:nth-child(3) a{ transition-delay: .08s; }
.mm-links li:nth-child(4) a{ transition-delay: .12s; }
.mm-links li:nth-child(5) a{ transition-delay: .16s; }
.mobile-menu.is-open .mm-links a{ transform: translateY(0); opacity: 1; }
.mm-links a:active{ color: var(--amber-bright); }

.mm-bottom{ display: flex; flex-direction: column; gap: 18px; }
.mm-phone{
  font-size: 19px; font-weight: 700;
  letter-spacing: .03em;
}
.mm-phone span{
  display: block;
  margin-top: 4px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-faint);
}
.mm-btn{ width: 100%; padding: 15px 20px; text-align: center; justify-content: center; }

/* ================= responsive ================= */
@media (max-width: 1180px){
  .book-form{ grid-template-columns: 1fr 1fr 1fr; }
  .book-form .btn{ grid-column: 1 / -1; }
}
@media (max-width: 1024px){
  .nav > nav{ display: none; }
  .nav{ grid-template-columns: 1fr auto; }
  .nav-burger{ display: flex; }
  .trust-inner{ grid-template-columns: 1fr 1fr; }
  .trust-title{ grid-column: 1 / -1; }
  .scen-row{ flex-direction: column; height: auto; gap: 8px; }
  .scen-panel{ min-height: 92px; flex: none; }
  .scen-panel.is-open{ min-height: 300px; flex: none; }
  .scen-title{ white-space: normal; }
  .beer-grid{ grid-template-columns: 1fr; }
  .beer-media{ height: clamp(300px, 44vh, 440px); order: -1; }
  .lunch-grid{ grid-template-columns: 1fr; }
  .lunch-price-block{ position: static; display:flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
  .banquet-grid{ grid-template-columns: 1fr; }
  .addr-grid{ grid-template-columns: 1fr; }
  .map-frame{ min-height: 400px; }
  .kids-grid{ grid-template-columns: 1fr; }
  .kids-media{ height: clamp(280px, 40vh, 420px); }
  .faq-wrap{ grid-template-columns: 1fr; }
  .faq-side{ position: static; }
  .review-stack{ grid-template-columns: 1fr; max-width: 640px; }
  .review:nth-child(2), .review:nth-child(3){ margin-top: 0; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  body{ font-size: 15px; }
  .nav{ padding: 14px 16px; }
  .nav-brand{ font-size: 17px; }
  .nav-brand em{ font-size: 15px; }
  .nav-brand img{ height: 38px; }
  .nav-phone{ font-size: 13px; }
  .nav-phone span{ display: none; }
  .nav .btn{ display: none; }

  .mobile-cta{ display: flex; }

  .hero-track{ height: 420vh; }
  .chapter{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }
  .eyebrow{ font-size: 11px; letter-spacing: .22em; margin-bottom: 14px; }
  .eyebrow::before{ width: 28px; }
  .hero-h1 .h1-script{ font-size: 24px; margin-bottom: 6px; }
  .hero-h1 .h1-display{ font-size: 18.5vw; line-height: .98; }
  .hero-sub-row{ flex-direction: column; align-items: stretch; gap: 20px; margin-top: 20px; }
  .hero-lede{ font-size: 15px; max-width: none; }
  .hero-facts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: .03em;
  }
  .hero-facts span + span::before{ display: none; }
  .hero-facts span{ padding-left: 12px; position: relative; }
  .hero-facts span::after{
    content:"";
    position: absolute; left: 0; top: .55em;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--amber-deep);
  }
  .chapter-1 .hero-cta{ width: 100%; }
  .chapter-1 .btn-solid{ display: none; }
  .chapter-1 .btn-ghost{ width: 100%; padding: 15px 20px; }
  .chapter-quote h2{ font-size: 31px; }
  .chapter-quote p{ font-size: 14.5px; margin-top: 16px; }
  .chapter-3 .hero-cta{ display: none; }
  .rail{ display: none; }
  .hero-util{
    left: 20px; right: 20px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    justify-content: space-between;
  }
  .util-open{ font-size: 10px; letter-spacing: .06em; }

  .section{ padding-left: 20px; padding-right: 20px; }
  .trust{ padding-top: 56px; padding-bottom: 64px; }
  .trust-inner{ gap: 32px 20px; }
  .stat b{ font-size: 38px; }
  .stat span{ font-size: 13px; }

  .dish{ grid-template-columns: 64px 1fr; }
  .dish-thumb{ width: 64px; height: 64px; }
  .dish-price{ grid-column: 2; text-align: left; margin-top: 2px; }
  .dish-price small{ display: inline; margin-right: 6px; }
  .dish:hover{ padding-left: 8px; }

  .calc-tiers{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; gap: 12px; padding-left: 20px; }
  .promo::before, .promo::after{ display: none; }
  .promo-badge{ font-size: 30px; justify-self: start; text-align: left; padding: 0; }
  .promo .link-arrow{ margin-left: 0; }

  /* контакты: подписи над значениями, кнопки во всю ширину */
  .contact-card{ padding: 24px 20px; }
  .contact-row{ grid-template-columns: 1fr; gap: 6px; padding-bottom: 14px; }
  .contact-value{ font-size: 18px; }
  .contact-cta{ flex-direction: column; }
  .contact-cta .btn{ width: 100%; }
  .map-frame{ min-height: 340px; }

  .kids-media{ height: 260px; }
  .kids-badge{ left: 12px; top: 12px; padding: 8px 12px; font-size: 11px; }

  .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
  .book-form{ grid-template-columns: 1fr; }
  .final{ text-align: left; }
  .final .sec-title, .final .sec-lede{ margin-left: 0; }
  .final .book-form{ text-align: left; }
  /* sticky-бар перекрывает низ — добавляем футеру запас */
  .footer{ padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 640px) and (max-height: 700px){
  .hero-facts{ display: none; }
  .hero-h1 .h1-display{ font-size: 18vw; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .util-dot, .util-scroll .scroll-line::after{ animation: none; }
  .hero-track{ height: auto; }
  .hero-stage{ position: relative; height: 100dvh; }
  .chapter-quote{ display: none; }
  .rail{ display: none; }
  .h1-line > span{ transform: none !important; }
}
