/* ============ Кафе «Лёд» — hockey ice landing ============ */
:root {
  --bg: #050d1a;
  --bg-2: #0a1729;
  --card: rgba(13, 30, 53, 0.78);
  --card-border: rgba(125, 211, 252, 0.16);
  --text: #e8f1fa;
  --muted: #8fa8c4;
  --ice: #7dd3fc;
  --ice-2: #38bdf8;
  --neon: #4da6ff;
  --neon-deep: #1e6fd9;
  --red-line: #e2394b;
  --eda: #e2394b;
  --eda-2: #b91c30;
  --eda-text: #ffffff;
  --radius: 20px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --container: min(1140px, calc(100% - 32px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: var(--container); margin: 0 auto; }

/* ---------- neon logo text (tube effect like the real sign) ---------- */
.neon-text {
  font-family: Pacifico, cursive;
  font-weight: 400;
  color: #3d6bff;
  -webkit-text-stroke: 0.035em rgba(255, 255, 255, 0.92);
  paint-order: stroke fill;
  text-decoration: none;
  white-space: nowrap;
  text-shadow:
    0 0 4px rgba(120, 160, 255, 0.95),
    0 0 12px rgba(61, 107, 255, 0.9),
    0 0 28px rgba(37, 78, 235, 0.75),
    0 0 60px rgba(30, 64, 217, 0.55),
    0 0 110px rgba(30, 64, 217, 0.35);
}
.neon-text--xl { font-size: clamp(3rem, 8.6vw, 6rem); line-height: 1.25; padding-bottom: 0.15em; }
.neon-text--sm { font-size: 1.5rem; }

/* ---------- ice background ---------- */
.ice-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(56, 189, 248, 0.16), transparent 62%),
    linear-gradient(180deg, #050d1a 0%, #081527 45%, #050d1a 100%);
}
.ice-bg__rink {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.05) 0 2px, transparent 2px 130px),
    repeating-linear-gradient(0deg, rgba(125, 211, 252, 0.035) 0 1px, transparent 1px 110px);
}
.ice-bg__lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent calc(50% - 2px), rgba(226, 57, 75, 0.8) calc(50% - 2px), rgba(226, 57, 75, 0.8) calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(90deg, transparent calc(22% - 2px), rgba(56, 189, 248, 0.7) calc(22% - 2px), rgba(56, 189, 248, 0.7) calc(22% + 2px), transparent calc(22% + 2px)),
    linear-gradient(90deg, transparent calc(78% - 2px), rgba(56, 189, 248, 0.7) calc(78% - 2px), rgba(56, 189, 248, 0.7) calc(78% + 2px), transparent calc(78% + 2px));
}
.ice-bg__glow {
  position: absolute;
  width: 62vmax;
  height: 62vmax;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.09), transparent 65%);
}

/* ---------- rink divider lines ---------- */
.rink-line {
  height: 4px;
  margin: 0 auto;
  width: min(720px, 80%);
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--red-line) 22%, var(--red-line) 78%, transparent);
  box-shadow: 0 0 18px rgba(226, 57, 75, 0.5);
  position: relative;
}
.rink-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px solid var(--red-line);
  background: var(--bg);
  box-shadow: 0 0 14px rgba(226, 57, 75, 0.55);
}
.rink-line--blue {
  background: linear-gradient(90deg, transparent, var(--ice-2) 22%, var(--ice-2) 78%, transparent);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}
.rink-line--blue::after {
  border-color: var(--ice-2);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
}
.rink-line--hero {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 13, 26, 0.8);
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
}
.logo { font-size: 1.9rem; line-height: 1; }
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav a {
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover, .nav a.is-active {
  color: var(--text);
  background: rgba(125, 211, 252, 0.1);
}
.nav__eda { display: none; }
.site-header__actions { display: flex; align-items: center; gap: 10px; }

/* burger as a hockey puck */
.burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.burger__puck {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 40px;
  border-radius: 50% / 42%;
  background:
    radial-gradient(ellipse 90% 60% at 50% 22%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #1b2637 0%, #0b1420 55%, #05090f 100%);
  border: 1px solid rgba(125, 211, 252, 0.45);
  box-shadow:
    0 3px 0 rgba(2, 6, 12, 0.9),
    0 6px 16px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(56, 189, 248, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.burger__puck i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ice);
  box-shadow: 0 0 6px rgba(125, 211, 252, 0.8);
  transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}
.burger:active .burger__puck { transform: scale(0.94); }
.burger.is-open .burger__puck { transform: rotate(-8deg); }
.burger.is-open .burger__puck i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open .burger__puck i:nth-child(2) { opacity: 0; width: 6px; }
.burger.is-open .burger__puck i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* animated phone button */
.phone-btn {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--eda), var(--eda-2));
  box-shadow: 0 6px 18px rgba(226, 57, 75, 0.4);
}
.phone-btn svg {
  width: 21px;
  height: 21px;
  animation: phone-wiggle 2.6s ease-in-out infinite;
  transform-origin: 50% 55%;
}
.phone-btn::before,
.phone-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(226, 57, 75, 0.65);
  animation: phone-ripple 2.6s ease-out infinite;
  pointer-events: none;
}
.phone-btn::after { animation-delay: 0.9s; }
@keyframes phone-ripple {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
@keyframes phone-wiggle {
  0%, 76%, 100% { transform: rotate(0deg); }
  80% { transform: rotate(-14deg); }
  84% { transform: rotate(11deg); }
  88% { transform: rotate(-9deg); }
  92% { transform: rotate(6deg); }
  96% { transform: rotate(-3deg); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #f4f9ff;
  color: #0a1729;
  box-shadow: 0 10px 30px rgba(125, 211, 252, 0.25);
}
.btn--primary:hover { background: #ffffff; box-shadow: 0 14px 36px rgba(125, 211, 252, 0.4); }
.btn--eda {
  background: linear-gradient(135deg, var(--eda), var(--eda-2));
  color: var(--eda-text);
  box-shadow: 0 10px 30px rgba(226, 57, 75, 0.35);
}
.btn--eda:hover { box-shadow: 0 14px 36px rgba(226, 57, 75, 0.5); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(125, 211, 252, 0.35);
}
.btn--ghost:hover { background: rgba(125, 211, 252, 0.08); }
.btn--lg { padding: 12px 20px; font-size: 0.98rem; }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 45%, rgba(5, 13, 26, 0.45) 0%, rgba(5, 13, 26, 0.82) 78%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.65), rgba(5, 13, 26, 0.35) 40%, rgba(5, 13, 26, 0.9) 100%);
}
.hero__content {
  position: relative;
  padding: 96px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero__venue {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ice);
}
.hero__venue span {
  display: block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.7));
}
.hero__venue span:last-child {
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.7), transparent);
}
.hero__logo { margin: 0; }
.hero__tag {
  margin: 0;
  max-width: 580px;
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  font-weight: 500;
  color: #d7e7f7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}
.hero__meta {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #b8cee3;
}
.hero__meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ice-2);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}
.hero__plates {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  margin-top: clamp(28px, 5vh, 52px);
}
.plate {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.plate:hover { transform: translateY(-6px); }
.plate--lift:hover { transform: translateY(-24px); }
.plate img {
  width: clamp(110px, 15vw, 170px);
  height: clamp(110px, 15vw, 170px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(226, 57, 75, 0.85);
  box-shadow:
    0 0 0 6px rgba(5, 13, 26, 0.85),
    0 0 0 7px rgba(226, 57, 75, 0.35),
    0 24px 50px rgba(0, 0, 0, 0.55);
}
.plate--blue img {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow:
    0 0 0 6px rgba(5, 13, 26, 0.85),
    0 0 0 7px rgba(56, 189, 248, 0.35),
    0 24px 50px rgba(0, 0, 0, 0.55);
}
.plate--lift { transform: translateY(-18px); }
.plate span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bcd3e8;
}
.plate:hover span { color: var(--ice); }

/* ---------- sections ---------- */
.section { padding: 68px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--muted); }
.ice-word {
  font-family: Pacifico, cursive;
  font-weight: 400;
  color: var(--ice);
  text-shadow: 0 0 12px rgba(77, 166, 255, 0.6), 0 0 30px rgba(30, 111, 217, 0.4);
}
.faceoff-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--red-line);
  position: relative;
  box-shadow: 0 0 16px rgba(226, 57, 75, 0.45), inset 0 0 10px rgba(226, 57, 75, 0.3);
}
.faceoff-dot::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--red-line);
}

/* ---------- features ---------- */
.section--features { padding: 54px 0 34px; }
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  text-align: center;
  padding: 10px 26px;
  border-right: 1px solid rgba(125, 211, 252, 0.14);
}
.feature:last-child { border-right: 0; }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--ice);
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.12), transparent 70%);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.12), inset 0 0 14px rgba(56, 189, 248, 0.08);
}
.feature__icon svg { width: 32px; height: 32px; }
.feature h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feature p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ---------- menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-margin-top: 90px;
}
.menu-card__photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.menu-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 13, 26, 0.9) 100%);
}
.menu-card__title {
  position: absolute;
  left: 20px;
  bottom: 12px;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
.menu-card__title--plain { margin: 20px 22px 0; font-size: 1.35rem; }
.menu-card__note {
  margin: 12px 22px 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.price-list {
  list-style: none;
  margin: 0;
  padding: 14px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.95rem;
}
.price-list__name { font-weight: 600; }
.price-list__tag {
  display: inline-block;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(226, 57, 75, 0.18);
  color: #ff8c98;
  border: 1px solid rgba(226, 57, 75, 0.4);
  vertical-align: middle;
}
.price-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(143, 168, 196, 0.45);
  transform: translateY(-4px);
  min-width: 16px;
}
.price-list__price {
  font-weight: 800;
  color: var(--ice);
  white-space: nowrap;
}

.cta-strip {
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.14), rgba(30, 111, 217, 0.1));
  border: 1px solid rgba(125, 211, 252, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-strip p { margin: 0; font-weight: 700; font-size: 1.05rem; }

/* ---------- gallery ---------- */
.section--gallery { padding-bottom: 54px; }
.gallery-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px max(16px, calc((100vw - 1140px) / 2)) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 211, 252, 0.4) transparent;
}
.gallery-strip__item {
  margin: 0;
  flex: 0 0 auto;
  width: min(420px, 82vw);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  scroll-snap-align: center;
  box-shadow: var(--shadow);
}
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__stars { color: #ff6b7c; letter-spacing: 3px; font-size: 1.05rem; }
.review-card p { margin: 0; font-size: 0.93rem; color: #cfe0f0; }
.review-card footer { font-size: 0.83rem; color: var(--muted); font-weight: 700; }
.section-foot { text-align: center; margin: 30px 0 0; }

/* ---------- contacts ---------- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.contact-list strong { font-size: 0.98rem; }
.contact-list a { text-decoration: none; color: var(--ice); }
.contact-note { margin: 0; font-size: 0.88rem; color: var(--muted); }
.contact-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  min-height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- footer ---------- */
.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(125, 211, 252, 0.14);
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(56, 189, 248, 0.08), transparent 70%),
    rgba(4, 10, 20, 0.6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  padding: 48px 16px 40px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-footer__brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 340px;
}
.site-footer h4 {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f8aa8;
}
.site-footer__nav { display: flex; flex-direction: column; }
.site-footer__nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 5px 0;
  transition: color 0.2s;
}
.site-footer__nav a:hover { color: var(--ice); }
.site-footer__contacts { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.site-footer__phone:hover { color: var(--ice); }
.site-footer__contacts p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.site-footer__bottom { border-top: 1px solid rgba(125, 211, 252, 0.1); }
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(143, 168, 196, 0.65);
}

/* ============ mobile: centered ============ */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature { padding: 18px 16px; }
  .feature:nth-child(2n) { border-right: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 16px 22px;
    background: rgba(5, 13, 26, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { font-size: 1.05rem; width: 100%; text-align: center; }
  .nav__eda {
    display: block;
    background: linear-gradient(135deg, var(--eda), var(--eda-2));
    color: var(--eda-text) !important;
    font-weight: 800;
  }

  /* mobile header: puck-burger left · logo center · phone right */
  .burger { display: block; order: -1; }
  .site-header .btn--eda { display: none; }
  .phone-btn { display: inline-flex; }
  .site-header__inner { gap: 12px; }
  .logo {
    margin: 0 auto;
    transform: translateX(-2px);
    font-size: 1.7rem;
  }
  .site-header__actions { margin-left: 0; }

  .hero__content { padding: 72px 0 88px; }
  .hero__venue { font-size: 0.68rem; letter-spacing: 0.18em; }
  .hero__venue span { width: 26px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn--lg {
    padding: 11px 12px;
    font-size: 0.84rem;
    white-space: nowrap;
    flex: 0 1 auto;
  }
  .hero__plates { gap: 14px; }
  .plate--lift { transform: translateY(-10px); }
  .plate span { font-size: 0.66rem; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }

  /* centered content on phones */
  .feature-strip { grid-template-columns: 1fr; gap: 6px; }
  .feature {
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid rgba(125, 211, 252, 0.12);
    padding: 22px 16px;
  }
  .feature:last-child { border-bottom: 0; }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 40px 16px 32px;
  }
  .site-footer__brand { align-items: center; }
  .site-footer__brand p { max-width: none; }
  .site-footer__contacts { align-items: center; }
  .site-footer__bottom-inner { justify-content: center; text-align: center; }
  .menu-card__note { text-align: center; }
  .menu-card__title { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .menu-card__title--plain { text-align: center; }
  .cta-strip { flex-direction: column; text-align: center; }
  .review-card { text-align: center; align-items: center; }
  .contact-card { text-align: center; align-items: center; }
  .contact-list li { align-items: center; }
  .contact-card__actions { justify-content: center; }
  .site-footer__inner { text-align: center; }
  .price-list li { font-size: 0.92rem; }
}
