/* Страница «Меню» — «Пульс-кафе». Стили ТОЛЬКО этой страницы (общего CSS нет).
   Тёмная тема, акцент #2dd4bf. Кнопка «Позвонить» — строго по CONTRACTS/call-button.yaml. */

:root {
  --bg: #0b0f0e;
  --surface: #131a18;
  --surface-2: #182220;
  --text: #e6f2ef;
  --muted: #8aa39c;
  --accent: #2dd4bf;
  --accent-ink: #0b0f0e;
  --border: rgba(45, 212, 191, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

/* ---- Шапка ---- */
.page-head { margin-bottom: 32px; }

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: color .12s ease;
}
.back:hover { color: var(--accent); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.14);
}
.brand-kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .72rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--muted);
  margin: 0;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  max-width: 46ch;
}

/* ---- Сетка карточек ---- */
.menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.item:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-2);
}

.item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.item-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.item-desc {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ---- Футер + кнопка «Позвонить» ---- */
.page-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.foot-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}
/* Строка копирайта — значения строго из CONTRACTS/footer-copyright.yaml */
.copyright {
  color: #8aa39c;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Кнопка «Позвонить» — значения строго из CONTRACTS/call-button.yaml */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  background: #2dd4bf;
  color: #0b0f0e;
  transition: transform .12s ease, opacity .12s ease;
}
.call-btn:hover { opacity: 0.9; }
.call-btn:active { transform: translateY(1px); }
.call-ico { font-size: 1.1em; line-height: 1; }

/* ---- Мобилка 390px ---- */
@media (max-width: 640px) {
  .menu { grid-template-columns: 1fr; }
  .page { padding: 24px 16px 44px; }
  .item { padding: 18px; }
}
