/* ═══════════════ BURGER STORIES — global styles ═══════════════ */
:root {
  --acc: #FFC022;
  --ink: #141414;
  --paper: #F7F2E9;
  --cream: #EFE8DA;
  --hero-bg: #F7F2E9;
  --hero-ink: #141414;
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; -webkit-font-smoothing: antialiased;
  min-width: 320px; overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--acc); color: var(--ink); }

@keyframes bsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bsLoad    { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes bsFadeIn  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── type helpers ── */
.display { font-family: 'Anton', sans-serif; font-weight: 400; }
.script  { font-family: 'Yellowtail', cursive; transform: rotate(-2deg); }
.kicker  { font: 600 10.5px 'Space Grotesk', sans-serif; letter-spacing: .2em; }

/* ── buttons ── */
.btn-solid, .btn-accent, .btn-outline {
  display: inline-block; cursor: pointer; font-family: 'Anton', sans-serif;
  font-size: 17px; letter-spacing: .08em; padding: 16px 30px; transition: all .25s ease;
}
.btn-solid  { background: var(--ink); color: var(--paper); }
.btn-solid:hover  { background: var(--acc); color: var(--ink); }
.btn-accent { background: var(--acc); color: var(--ink); }
.btn-accent:hover { background: var(--paper); color: var(--ink); }
.btn-outline { border: 1px solid rgba(247,242,233,.55); color: var(--paper); }
.btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.link-under {
  cursor: pointer; font: 700 13px 'Space Grotesk', sans-serif; letter-spacing: .16em;
  border-bottom: 2px solid var(--ink); padding-bottom: 4px; white-space: nowrap; transition: all .2s ease;
}
.link-under:hover { color: var(--acc); border-color: var(--acc); }

/* ── loader ── */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader[hidden] { display: none; }
.loader img { width: clamp(92px, 12vw, 122px); height: auto; animation: bsFadeIn .5s ease both; }
.loader__txt { font-family: 'Yellowtail', cursive; font-size: clamp(24px, 3vw, 32px); color: var(--acc); transform: rotate(-2deg); animation: bsFadeIn .6s ease .12s both; }
.loader__bar { width: 170px; height: 3px; background: rgba(247,242,233,.16); border-radius: 99px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--acc); transform-origin: left; animation: bsLoad .9s cubic-bezier(.45,0,.2,1) both; }

/* ── nav ── */
.nav {
  position: sticky; top: 0; z-index: 60; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; background: var(--ink); color: var(--paper);
  padding: 0 clamp(16px, 4vw, 44px); height: 64px;
}
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 48px; width: 48px; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.8vw, 38px); }
.nav__link { display: flex; align-items: center; gap: 8px; font: 600 12px 'Space Grotesk', sans-serif; letter-spacing: .22em; transition: color .2s ease; }
.nav__link:hover { color: var(--acc); }
.nav__link .dot { color: var(--acc); }
.nav__phone {
  font: 600 12px 'Space Grotesk', sans-serif; letter-spacing: .14em; color: var(--acc);
  border: 1px solid var(--acc); border-radius: 999px; padding: 7px 14px; transition: all .2s ease;
}
.nav__phone:hover { background: var(--acc); color: var(--ink); }
.nav__burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 10px 2px; background: none; border: 0; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--paper); }
.nav__burger span:nth-child(2) { background: var(--acc); }

/* ── mobile menu ── */
.mmenu {
  position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; padding: 0 clamp(20px, 6vw, 40px) 32px; overflow: auto;
  visibility: hidden; transform: translateX(100%);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), visibility .5s;
}
.mmenu.is-open { visibility: visible; transform: none; }
.mmenu__links a, .mmenu__foot > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.mmenu.is-open .mmenu__links a, .mmenu.is-open .mmenu__foot > * { opacity: 1; transform: none; }
.mmenu.is-open .mmenu__links a:nth-child(1) { transition-delay: .08s; }
.mmenu.is-open .mmenu__links a:nth-child(2) { transition-delay: .14s; }
.mmenu.is-open .mmenu__links a:nth-child(3) { transition-delay: .20s; }
.mmenu.is-open .mmenu__links a:nth-child(4) { transition-delay: .26s; }
.mmenu.is-open .mmenu__foot > *:nth-child(1) { transition-delay: .32s; }
.mmenu.is-open .mmenu__foot > *:nth-child(2) { transition-delay: .38s; }
.mmenu.is-open .mmenu__foot > *:nth-child(3) { transition-delay: .44s; }
.mmenu__top { display: flex; align-items: center; justify-content: space-between; height: 64px; flex: none; }
.mmenu__top img { height: 44px; width: 44px; }
.mmenu__close {
  cursor: pointer; font: 700 12px 'Space Grotesk', sans-serif; letter-spacing: .2em; color: var(--paper);
  border: 1px solid rgba(247,242,233,.4); border-radius: 999px; padding: 8px 14px; background: none; transition: all .2s ease;
}
.mmenu__close:hover { border-color: var(--acc); color: var(--acc); }
.mmenu__links { display: flex; flex-direction: column; gap: 10px; margin-top: 8vh; animation: bsFadeIn .5s ease both; }
.mmenu__links a { display: flex; align-items: center; gap: 16px; font-family: 'Anton', sans-serif; font-size: clamp(42px, 10vw, 60px); line-height: 1.12; }
.mmenu__links a:hover { color: var(--acc); }
.mmenu__links .dot { color: var(--acc); font-size: .35em; }
.mmenu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 40px; }
.mmenu__foot .script { font-size: 26px; color: var(--acc); }
.mmenu__call {
  align-self: flex-start; font: 600 13px 'Space Grotesk', sans-serif; letter-spacing: .14em;
  color: var(--acc); border: 1px solid var(--acc); border-radius: 999px; padding: 10px 18px; transition: all .2s ease;
}
.mmenu__call:hover { background: var(--acc); color: var(--ink); }
.mmenu__info { font: 600 10.5px 'Space Grotesk', sans-serif; letter-spacing: .2em; color: rgba(247,242,233,.55); line-height: 1.8; }

.nav__call {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--acc); border-radius: 999px;
  color: var(--acc); transition: all .2s ease;
}
.nav__call:hover { background: var(--acc); color: var(--ink); }
.nav__call svg { width: 17px; height: 17px; }

@media (max-width: 880px) {
  .nav { height: 72px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; position: absolute; right: clamp(16px, 4vw, 44px); }
  .nav__call { display: flex; position: absolute; left: clamp(16px, 4vw, 44px); }
  .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav__logo img { height: 60px; width: 60px; }
}

/* ── hero: billboard ── */
.heroBB {
  position: relative; background: var(--ink); color: var(--paper);
  min-height: min(92vh, 880px); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.heroBB__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.heroBB__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: clamp(14px, 2vw, 22px); text-align: center; padding: clamp(56px, 9vw, 120px) 5vw; }
.heroBB__script { font-family: 'Yellowtail', cursive; font-size: clamp(24px, 2.8vw, 38px); color: var(--acc); transform: rotate(-2deg); }
.heroBB h1 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(76px, 13vw, 200px); line-height: .84; }
.heroBB__sub { font: 600 11px 'Space Grotesk', sans-serif; letter-spacing: .26em; color: rgba(247,242,233,.75); }
.heroBB__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

/* ── hero: poster ── */
.heroP { position: relative; background: var(--hero-bg); color: var(--hero-ink); padding: clamp(28px, 4vw, 56px) 5vw clamp(48px, 6vw, 84px); overflow: hidden; }
.heroP__corner { position: absolute; display: flex; gap: 10px; font: 600 10.5px 'Space Grotesk', sans-serif; letter-spacing: .2em; }
.heroP__corner b { color: var(--acc); font-weight: 600; }
.heroP__corner span { opacity: .7; }
.heroP__corner--tl { top: clamp(20px, 3.4vw, 44px); left: 5vw; }
.heroP__corner--tr { top: clamp(20px, 3.4vw, 44px); right: 5vw; text-align: right; }
.heroP__corner--bl { bottom: clamp(20px, 3.4vw, 44px); left: 5vw; }
.heroP__corner--br { bottom: clamp(20px, 3.4vw, 44px); right: 5vw; }
.heroP h1 { margin: clamp(18px, 2.6vw, 40px) 0 0; text-align: center; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(84px, 16.5vw, 236px); line-height: .84; letter-spacing: .005em; }
.heroP__figure { position: relative; display: flex; justify-content: center; margin-top: clamp(-46px, -3vw, -14px); }
.heroP__figure img { width: clamp(280px, 36vw, 470px); aspect-ratio: 3/4; object-fit: cover; object-position: 50% 42%; }
.heroP__word { position: absolute; left: 0; right: 0; top: 52%; transform: translateY(-50%); text-align: center; font-family: 'Anton', sans-serif; font-size: clamp(84px, 16.5vw, 236px); line-height: .84; color: var(--acc); pointer-events: none; }
.heroP__cta { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: clamp(24px, 3vw, 40px); }
.heroP__cta .script { font-size: clamp(26px, 3.2vw, 42px); }
.heroP__btns { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 880px) { .heroP__corner { display: none; } }

/* ── hero: split ── */
.heroS { background: var(--hero-bg); color: var(--hero-ink); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); align-items: stretch; }
.heroS__txt { padding: clamp(44px, 6vw, 96px) clamp(20px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; gap: clamp(18px, 2.4vw, 28px); }
.heroS__kicker { display: flex; gap: 10px; } .heroS__kicker b { color: var(--acc); font-weight: 600; } .heroS__kicker span { opacity: .7; }
.heroS h1 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(64px, 8.6vw, 148px); line-height: .86; }
.heroS h1 em { font-style: normal; color: var(--acc); }
.heroS__script { font-family: 'Yellowtail', cursive; font-size: clamp(24px, 2.6vw, 38px); transform: rotate(-2deg); }
.heroS p { margin: 0; font: 400 15px/1.7 'Space Grotesk', sans-serif; opacity: .75; max-width: 46ch; }
.heroS__btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.heroS__img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }

/* ── marquee ── */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: bsMarquee 32s linear infinite; padding: 16px 0; }
.marquee__seq { display: flex; gap: 30px; align-items: center; padding-right: 30px; font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: .06em; white-space: nowrap; }
.marquee__seq b { color: var(--acc); font-weight: 400; }

/* ── section shells ── */
.sec { padding: clamp(56px, 8vw, 110px) 5vw; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head__titles { display: flex; flex-direction: column; gap: 4px; }
.sec-head .script { font-size: clamp(22px, 2.4vw, 32px); opacity: .85; }
.sec-head h2 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(40px, 6vw, 84px); line-height: .92; }

/* ── home: featured cards ── */
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(20px, 2.4vw, 32px); }
.fcard { cursor: pointer; display: flex; flex-direction: column; gap: 12px; }
.fcard__imgwrap { position: relative; overflow: hidden; }
.fcard__imgwrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .5s ease; }
.fcard:hover .fcard__imgwrap img { transform: scale(1.04); }
.fcard__badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--paper); font: 700 10.5px 'Space Grotesk', sans-serif; letter-spacing: .14em; padding: 5px 9px; }
.fcard__badge--acc { background: var(--acc); color: var(--ink); }
.fcard__row { display: flex; align-items: baseline; gap: 12px; }
.fcard__name { font-family: 'Anton', sans-serif; font-size: clamp(20px, 1.8vw, 26px); }
.fcard__price { font: 700 15px 'Space Grotesk', sans-serif; }
.fcard__desc { font: 400 13px/1.55 'Space Grotesk', sans-serif; color: rgba(20,20,20,.62); }
.leader { flex: 1; border-bottom: 2px dotted rgba(20,20,20,.3); }

/* ── home: story ── */
.story { background: var(--ink); color: var(--paper); padding: clamp(64px, 9vw, 120px) 5vw; }
.story__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: center; max-width: 1240px; margin: 0 auto; }
.story__grid > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__txt { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.story__txt .script { font-size: clamp(26px, 2.6vw, 38px); color: var(--acc); transform: none; }
.story__txt h2 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(42px, 5.4vw, 80px); line-height: .94; }
.story__txt p { margin: 0; font: 400 16px/1.7 'Space Grotesk', sans-serif; color: rgba(247,242,233,.72); max-width: 50ch; }
.story__tag { font-family: 'Yellowtail', cursive; font-size: clamp(28px, 3vw, 42px); color: var(--acc); transform: rotate(-2deg); }
.story__btn { border: 1px solid rgba(247,242,233,.5); color: var(--paper); font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: .08em; padding: 14px 26px; transition: all .25s ease; }
.story__btn:hover { background: var(--acc); color: var(--ink); border-color: var(--acc); }

/* ── galleries / collage ── */
.collage { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2vw, 28px); align-items: start; }
.collage img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.collage img:nth-child(even) { margin-top: clamp(0px, 3vw, 44px); }

/* ── info strip ── */
.strip { background: var(--acc); color: var(--ink); padding: clamp(20px, 3vw, 30px) 5vw; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.strip > * { font-family: 'Anton', sans-serif; font-size: clamp(16px, 1.7vw, 22px); letter-spacing: .05em; }
.strip a:hover { color: var(--paper); }

/* ── menu page ── */
.mhead { padding: clamp(44px, 6vw, 80px) 5vw clamp(28px, 4vw, 44px); display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.mhead .script { font-size: clamp(24px, 2.6vw, 36px); }
.mhead h1 { margin: 0; display: flex; align-items: flex-start; gap: 14px; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(72px, 12vw, 170px); line-height: .84; }
.mhead h1 b { color: var(--acc); font-size: .22em; margin-top: .28em; font-weight: 400; }
.mhead__meta { display: flex; flex-direction: column; gap: 8px; font: 600 11px 'Space Grotesk', sans-serif; letter-spacing: .2em; text-align: right; padding-bottom: 10px; }
.mhead__meta b { color: var(--acc); font-weight: 600; }

.catbar { position: sticky; top: 64px; z-index: 50; background: var(--ink); color: var(--paper); display: flex; overflow-x: auto; padding: 0 5vw; scrollbar-width: none; }
.catbar::-webkit-scrollbar { display: none; }
.catbar a { cursor: pointer; flex: none; font: 700 11px 'Space Grotesk', sans-serif; letter-spacing: .18em; padding: 15px 18px; border-right: 1px solid rgba(247,242,233,.14); transition: color .2s ease, box-shadow .2s ease; }
.catbar a:last-child { border-right: 0; }
.catbar a:hover { color: var(--acc); }
.catbar a.active { color: var(--acc); box-shadow: inset 0 -3px 0 var(--acc); }
@media (max-width: 880px) { .catbar { top: 72px; } }

.msec { padding: clamp(48px, 6vw, 80px) 5vw; scroll-margin-top: 118px; }
.msec--alt { background: var(--cream); }
.msec--dark { background: var(--ink); color: var(--paper); }
.msec__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 12px; }
.msec__num { font-family: 'Anton', sans-serif; font-size: 15px; color: var(--acc); }
.msec__head h2 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1; }
.msec__rule { flex: 1; border-top: 2px solid var(--ink); transform: translateY(-6px); }
.msec--dark .msec__rule { border-color: var(--acc); }
.msec__note { font: 400 13px/1.5 'Space Grotesk', sans-serif; color: rgba(20,20,20,.6); margin-bottom: 32px; }
.msec--dark .msec__note { color: rgba(247,242,233,.65); }
.msec__intro { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.msec__intro .script { font-size: clamp(22px, 2.4vw, 30px); color: var(--acc); }

.dish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px 56px; align-items: start; }
.dish { display: flex; flex-direction: column; gap: 8px; }
.dish__row { display: flex; align-items: baseline; gap: 12px; }
.dish__name { font-family: 'Anton', sans-serif; font-size: 22px; }
.dish__tag { background: var(--acc); color: var(--ink); font: 700 9.5px 'Space Grotesk', sans-serif; letter-spacing: .12em; padding: 3px 7px; transform: translateY(-2px); white-space: nowrap; }
.dish__leader { flex: 1; border-bottom: 2px dotted rgba(20,20,20,.28); }
.msec--dark .dish__leader { border-color: rgba(247,242,233,.28); }
.dish__price { font: 700 15px 'Space Grotesk', sans-serif; white-space: nowrap; }
.dish__desc { font: 400 13px/1.55 'Space Grotesk', sans-serif; color: rgba(20,20,20,.62); max-width: 58ch; }
.msec--dark .dish__desc { color: rgba(247,242,233,.62); }
.dish-grid--withimg { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: start; }
.dish-grid--withimg > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dish-list { display: flex; flex-direction: column; gap: 18px; }

.cat-title { font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: .06em; }
.msec--dark .cat-title { color: var(--acc); }

.col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 3.4vw, 48px); align-items: start; }
.colgroup { display: flex; flex-direction: column; gap: 12px; }
.colgroup__head { display: flex; align-items: center; gap: 10px; }
.colgroup__head .rule { flex: 1; border-top: 1px solid rgba(20,20,20,.25); }
.msec--dark .colgroup__head .rule { border-color: rgba(247,242,233,.25); }
.colrow { display: flex; flex-direction: column; padding: 7px 0; border-bottom: 1px solid rgba(20,20,20,.12); }
.msec--dark .colrow { border-color: rgba(247,242,233,.12); }
.colrow__line { display: flex; align-items: baseline; gap: 8px; }
.colrow__name { font: 500 13.5px 'Space Grotesk', sans-serif; }
.colrow__gap { flex: 1; }
.colrow__price { font: 700 13px 'Space Grotesk', sans-serif; white-space: nowrap; }
.msec--dark .colrow__price { color: rgba(247,242,233,.85); }
.colrow__desc { font: 400 12px/1.45 'Space Grotesk', sans-serif; color: rgba(20,20,20,.55); }
.msec--dark .colrow__desc { color: rgba(247,242,233,.55); }

.msec__photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(16px, 2vw, 28px); margin-top: clamp(32px, 4vw, 52px); max-width: 760px; }
.msec__photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.mcta { background: var(--ink); color: var(--paper); padding: clamp(40px, 5vw, 64px) 5vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.mcta__t1 { font-family: 'Anton', sans-serif; font-size: clamp(26px, 3.4vw, 44px); line-height: 1; }
.mcta__t2 { font-family: 'Yellowtail', cursive; font-size: clamp(22px, 2.4vw, 32px); color: var(--acc); }
.mcta a { background: var(--acc); color: var(--ink); font-family: 'Anton', sans-serif; font-size: clamp(18px, 2vw, 26px); letter-spacing: .05em; padding: 18px 32px; transition: background .25s ease; }
.mcta a:hover { background: var(--paper); }

/* ── about ── */
.ahero { padding: clamp(48px, 7vw, 96px) 5vw clamp(40px, 5vw, 64px); text-align: center; position: relative; }
.ahero .heroP__corner--tl, .ahero .heroP__corner--tr { display: flex; }
@media (max-width: 880px) { .ahero .heroP__corner--tl, .ahero .heroP__corner--tr { display: none; } }
.ahero__script { font-family: 'Yellowtail', cursive; font-size: clamp(36px, 5.4vw, 72px); line-height: 1; transform: rotate(-2deg); }
.ahero h1 { margin: 8px 0 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(64px, 11vw, 168px); line-height: .88; }
.ahero h1 b { color: var(--acc); font-weight: 400; }
.ahero p { margin: clamp(24px, 3vw, 40px) auto 0; max-width: 620px; font: 400 clamp(15px, 1.5vw, 18px)/1.75 'Space Grotesk', sans-serif; color: rgba(20,20,20,.75); }
.ahero__est { margin-top: 18px; font: 600 11px 'Space Grotesk', sans-serif; letter-spacing: .22em; color: rgba(20,20,20,.55); }

.neon { background: var(--ink); color: var(--paper); padding: clamp(72px, 10vw, 140px) 5vw; text-align: center; overflow: hidden; }
.neon__txt { font-family: 'Yellowtail', cursive; font-size: clamp(44px, 8vw, 110px); line-height: 1.1; color: var(--acc); transform: rotate(-3deg); filter: drop-shadow(0 0 26px var(--acc)); }
.neon__sub { margin-top: 26px; font: 600 11px 'Space Grotesk', sans-serif; letter-spacing: .22em; color: rgba(247,242,233,.55); }

.numbers { padding: clamp(56px, 7vw, 96px) 5vw; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.numbers__cell { display: flex; flex-direction: column; gap: 8px; border-top: 2px solid var(--ink); padding-top: 16px; }
.numbers__big { font-family: 'Anton', sans-serif; font-size: clamp(44px, 5vw, 68px); line-height: 1; }
.numbers__lbl { font: 600 11px 'Space Grotesk', sans-serif; letter-spacing: .2em; color: rgba(20,20,20,.6); }

.acta { padding: 0 5vw clamp(64px, 8vw, 110px); display: flex; gap: 22px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* ── contact ── */
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); align-items: stretch; }
.contact__txt { padding: clamp(48px, 6vw, 88px) clamp(20px, 5vw, 72px); display: flex; flex-direction: column; gap: clamp(32px, 4vw, 48px); }
.contact__txt .script { font-size: clamp(28px, 3vw, 44px); }
.contact h1 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(48px, 6.4vw, 104px); line-height: .9; }
.contact h1 b { color: var(--acc); font-weight: 400; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(26px, 3vw, 40px); }
.cblock { display: flex; flex-direction: column; gap: 10px; border-top: 2px solid var(--ink); padding-top: 14px; }
.cblock__lbl { font: 600 10.5px 'Space Grotesk', sans-serif; letter-spacing: .22em; color: rgba(20,20,20,.55); }
.cblock__big { font-family: 'Anton', sans-serif; font-size: clamp(18px, 1.8vw, 24px); line-height: 1.25; }
a.cblock__big:hover { color: var(--acc); }
.cblock__phone { font-family: 'Anton', sans-serif; font-size: clamp(26px, 2.6vw, 38px); line-height: 1; }
.cblock__phone:hover { color: var(--acc); }
.cblock__sub { font: 400 13px 'Space Grotesk', sans-serif; color: rgba(20,20,20,.6); }
.cblock .link-under { align-self: flex-start; font-size: 12px; padding-bottom: 3px; }
.contact__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact__cta .btn-solid { font-size: 16px; padding: 15px 28px; }
.contact__cta .script { font-size: clamp(22px, 2.2vw, 30px); opacity: .85; }
.contact__img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }

/* ── footer ── */
.footer { background: var(--ink); color: var(--paper); padding: clamp(56px, 7vw, 90px) 5vw 0; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(32px, 4vw, 56px); max-width: 1240px; margin: 0 auto; }
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand img { width: 88px; height: 88px; }
.footer__brand .script { font-size: 26px; color: var(--acc); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__lbl { font: 600 10.5px 'Space Grotesk', sans-serif; letter-spacing: .22em; color: rgba(247,242,233,.5); }
.footer__col a, .footer__col div { font: 400 14px/1.7 'Space Grotesk', sans-serif; color: rgba(247,242,233,.85); }
.footer__col a:hover { color: var(--acc); }
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; max-width: 1240px;
  margin: clamp(36px, 5vw, 56px) auto 0; padding: 14px 0; border-top: 1px solid rgba(247,242,233,.15);
  font: 400 11.5px 'Space Grotesk', sans-serif; color: rgba(247,242,233,.45);
}
.footer__word {
  text-align: center; font-family: 'Anton', sans-serif; font-size: clamp(48px, 12.5vw, 182px);
  line-height: .8; color: #232323; white-space: nowrap; transform: translateY(14%); pointer-events: none;
}

/* ── reveal on scroll ── */
.reveal-init { opacity: 0; transform: translateY(30px); }
.reveal-in { opacity: 1 !important; transform: none !important; transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
