/* Шашлык CiTY — тёплая тёмная палитра, без «нейросетевого» глянца */

:root {
  --bg: #14110f;
  --bg-elevated: #1e1916;
  --bg-card: #231e1a;
  --cream: #f3e8dc;
  --cream-muted: #b8a99a;
  --ember: #e85a2c;
  --ember-dark: #c44520;
  --gold: #c9a55c;
  --olive: #6d7a52;
  --border: rgba(243, 232, 220, 0.08);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Rubik", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --mobile-bar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.logo__sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
}
.nav {
  display: none;
  gap: 2rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--cream); }
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__phone {
  display: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gold);
}
.cart-trigger {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--cream);
  transition: transform 0.2s, background 0.2s;
}
.cart-trigger:hover { background: var(--ember); transform: scale(1.05); }
.cart-trigger__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  background: var(--ember);
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-trigger__count.is-visible {
  opacity: 1;
  transform: scale(1);
}
.burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav-backdrop {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 8px 20px 20px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 899px) {
  .header.is-menu-open {
    background: rgba(20, 17, 15, 0.98);
    backdrop-filter: blur(12px);
  }
  .header.is-menu-open,
  body.is-menu-open .header {
    z-index: 101;
  }
  .header__inner {
    position: relative;
    z-index: 2;
  }
  .mobile-nav {
    position: relative;
    z-index: 2;
  }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    animation: mobileBackdropIn 0.3s var(--ease);
  }
  .mobile-nav-backdrop[hidden] {
    display: none !important;
  }
}

@keyframes mobileBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__phone { display: block; }
  .burger, .mobile-nav, .mobile-nav-backdrop { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn--primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 90, 44, 0.35);
}
.btn--primary:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 90, 44, 0.4);
}
.btn--ghost {
  border: 1px solid rgba(243, 232, 220, 0.35);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,0.05); }
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 48px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: heroKen 18s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(20,17,15,0.55) 0%, rgba(20,17,15,0.15) 45%, rgba(20,17,15,0.92) 100%),
    linear-gradient(90deg, rgba(20,17,15,0.7) 0%, transparent 55%);
}
.embers {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 120px;
  height: 80px;
  pointer-events: none;
}
.embers span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
  opacity: 0;
  animation: ember 4s ease-in infinite;
}
.embers span:nth-child(1) { left: 10%; animation-delay: 0s; }
.embers span:nth-child(2) { left: 30%; animation-delay: 0.8s; width: 3px; height: 3px; }
.embers span:nth-child(3) { left: 50%; animation-delay: 1.6s; }
.embers span:nth-child(4) { left: 70%; animation-delay: 2.2s; width: 5px; height: 5px; }
.embers span:nth-child(5) { left: 85%; animation-delay: 3s; }
@keyframes ember {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  15% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.3); }
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.hero__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: 100px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  color: var(--ember);
}
.hero__lead {
  max-width: 42ch;
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--cream-muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.hero__badges li {
  font-size: 0.88rem;
  color: var(--cream-muted);
}
.hero__badges strong {
  display: block;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
}
.hero__hours {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1180px) / 2 + 20px));
  bottom: 48px;
  padding: 16px 20px;
  background: rgba(35, 30, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: right;
  min-width: 140px;
}
.hero__hours-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}
.hero__hours-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 4px 0;
}
.hero__hours-value.is-open { color: #7cb87a; }
.hero__hours-value.is-closed { color: var(--cream-muted); }
.hero__hours-note {
  font-size: 0.75rem;
  color: var(--cream-muted);
  line-height: 1.3;
}

/* Strip */
.strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin-inline: auto;
}
.strip__item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.strip__item:last-child { border-right: none; }
.strip__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
}
.strip__text {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.35;
}
/* Section head */
.section-head { margin-bottom: 40px; }
.section-head__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 10px;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 12px;
}
.section-head__desc {
  margin: 0;
  color: var(--cream-muted);
  max-width: 50ch;
}
.section-head--light .section-head__title { color: var(--cream); }

/* Menu */
.menu-section {
  padding: 100px 0 80px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-search {
  margin-bottom: 20px;
}
.menu-search__wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.menu-search__icon {
  position: absolute;
  left: 16px;
  color: var(--cream-muted);
  pointer-events: none;
}
.menu-search__input {
  width: 100%;
  min-height: 52px;
  padding: 14px 48px 14px 48px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.menu-search__input::placeholder {
  color: var(--cream-muted);
  opacity: 0.75;
}
.menu-search__input:focus {
  outline: none;
  border-color: rgba(232, 90, 44, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 90, 44, 0.15);
}
.menu-search__input::-webkit-search-cancel-button,
.menu-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}
.menu-search__clear {
  position: absolute;
  right: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--cream-muted);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.menu-search__clear:hover {
  background: var(--bg-elevated);
  color: var(--cream);
}
.menu-search__meta {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

.filters-scroll {
  position: relative;
  margin-bottom: 36px;
}
.filters-scroll::before,
.filters-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.filters-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.filters-scroll::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.filter:hover { color: var(--cream); border-color: rgba(243,232,220,0.2); }
.filter.is-active {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  opacity: 0;
  transform: translateY(24px);
}
.product-card--clickable {
  cursor: pointer;
}
.product-card--clickable:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 90, 44, 0.25);
}
.product-card.is-hit {
  grid-column: span 1;
}
@media (min-width: 900px) {
  .product-card.is-hit:first-of-type {
    grid-column: span 2;
    grid-row: span 1;
  }
  .product-card.is-hit:first-of-type .product-card__img { aspect-ratio: 16/9; }
}
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #2a2420;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}
.product-card__badge {
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
}
.product-card__badge--discount {
  background: var(--ember);
  color: #fff;
}
.product-card__badge--status {
  color: #fff;
}
.product-card__badge--hit {
  background: var(--gold);
  color: var(--bg);
}
.product-card__badge--new {
  background: var(--olive);
}
.product-card__badge--popular {
  background: #2f6db3;
}
.product-card__badge--chef {
  background: #7447a8;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 6px;
}
.product-card__weight {
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-card__price-old {
  margin: 0;
  font-size: 0.8rem;
  color: var(--cream-muted);
  text-decoration: line-through;
}
.product-card__price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.product-card__price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-muted);
}
.product-card__add {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--ember);
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.product-card__add:hover { background: var(--ember-dark); transform: scale(1.04); }
.product-card__add:active { transform: scale(0.98); }

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--cream-muted);
}

/* About */
.about {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.about__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 800px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about__visual {
  position: relative;
}
.about__visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__stamp {
  position: absolute;
  bottom: -12px;
  right: -8px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bg);
  background: var(--ember);
  border-radius: var(--radius-sm);
  transform: rotate(-3deg);
}
.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
}
.about__text p {
  margin: 0 0 16px;
  color: var(--cream-muted);
}
.about__links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.social:hover { border-color: var(--ember); color: var(--ember); }

/* Delivery */
.delivery {
  padding: 80px 0;
  background: var(--olive);
  background: linear-gradient(135deg, #3d4530 0%, #2a3020 100%);
}
.delivery__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .delivery__grid { grid-template-columns: repeat(3, 1fr); }
}
.delivery-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.delivery-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.delivery-card p, .delivery-card ul {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(243, 232, 220, 0.85);
}
.delivery-card ul { padding-left: 18px; }
.delivery-card li { margin-bottom: 6px; }
.delivery-card__muted {
  margin-top: 12px !important;
  font-size: 0.8rem !important;
  opacity: 0.7;
}
.link-arrow {
  display: inline-block;
  margin-top: 12px;
  font-weight: 500;
  color: var(--gold);
}
.link-arrow:hover { text-decoration: underline; }

/* Contacts */
.contacts {
  padding: 80px 0 100px;
}
.contacts__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 800px) {
  .contacts__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contacts__info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0 0 20px;
}
.contacts__addr {
  font-size: 1.05rem;
  margin: 0 0 20px;
}
.contacts__addr span { color: var(--cream-muted); font-size: 0.9rem; }
.contacts__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contacts__phones a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
}
.contacts__socials {
  display: flex;
  gap: 16px;
}
.contacts__socials a {
  font-weight: 500;
  color: var(--cream-muted);
}
.contacts__socials a:hover { color: var(--ember); }

.order-form {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.order-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.order-form__hint {
  margin: 0 0 24px;
  font-size: 0.88rem;
  color: var(--cream-muted);
}
.order-form label {
  display: block;
  margin-bottom: 16px;
}
.order-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream-muted);
}
.order-form input,
.order-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.order-form textarea { resize: vertical; min-height: 72px; }

.checkout-modal[hidden] {
  display: none !important;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(11, 10, 10, 0.72);
}

.checkout-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  background: linear-gradient(180deg, rgba(26, 22, 20, 0.98) 0%, rgba(16, 14, 13, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.checkout-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.checkout-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}

.checkout-modal__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
}

.checkout-modal__close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.checkout-modal__order,
.checkout-form {
  min-width: 0;
}

.checkout-modal__order {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.checkout-modal__items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-modal__empty {
  margin: 0;
  color: var(--cream-muted);
}

.checkout-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.checkout-item__main {
  min-width: 0;
}

.checkout-item__name,
.checkout-item__meta,
.checkout-item__old-price {
  margin: 0;
}

.checkout-item__name {
  font-size: 0.98rem;
  font-weight: 500;
}

.checkout-item__meta {
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--cream-muted);
}

.checkout-item__old-price {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--cream-muted);
  text-decoration: line-through;
}

.checkout-item__price {
  font-size: 1rem;
  white-space: nowrap;
}

.checkout-modal__summary {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-modal__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--cream-muted);
}

.checkout-modal__summary-row strong {
  color: var(--cream);
}

.checkout-modal__summary-row.is-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}

.checkout-modal__summary-row.is-total strong {
  font-size: 1.45rem;
}

.checkout-modal__note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.checkout-modal__note.is-free {
  color: #7cb87a;
}

.checkout-form {
  margin: 0;
}

.checkout-form__row {
  display: grid;
  gap: 12px;
}

.checkout-form__row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-form__payments {
  margin: 0 0 18px;
  padding: 0;
  border: none;
}

.checkout-form__payments legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream-muted);
}

.checkout-form__payments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checkout-form__payment-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.checkout-form__payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-form__payment-option .checkout-form__payment-button {
  display: grid;
  place-items: center;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  line-height: 1;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.checkout-form__payment-option input:checked + .checkout-form__payment-button {
  background: rgba(194, 83, 40, 0.18);
  border-color: var(--ember);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(194, 83, 40, 0.14);
}

.checkout-form__payment-option:hover .checkout-form__payment-button {
  border-color: rgba(243, 232, 220, 0.28);
}

.payment-page {
  min-height: calc(100vh - 160px);
  padding: 120px 0 48px;
}

.payment-card {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.payment-card--error {
  text-align: center;
}

.payment-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}

.payment-card h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.payment-card__lead,
.payment-card__note,
.payment-card--error p {
  margin: 0 0 20px;
  color: var(--cream-muted);
  line-height: 1.6;
}

.payment-card__items {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-card__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.payment-card__item:last-child {
  border-bottom: none;
}

.payment-card__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.payment-card__total strong {
  font-size: 1.5rem;
  color: var(--cream);
}

.payment-card__actions {
  display: grid;
  gap: 12px;
}

/* Footer */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

/* Cart */
.cart { pointer-events: none; }
.cart.is-open { pointer-events: auto; }
.cart__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 200;
}
.cart.is-open .cart__backdrop { opacity: 1; }
.cart__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.cart__panel::before {
  display: none;
}
.cart.is-open .cart__panel { transform: translateX(0); }
.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart__head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}
.cart__close {
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--cream-muted);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.cart__close:hover { background: var(--bg-card); color: var(--cream); }
.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-item__name {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3;
}
.cart-item__old-price {
  margin: 0 0 6px;
  font-size: 0.75rem;
  color: var(--cream-muted);
  text-decoration: line-through;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item__qty button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1;
}
.cart-item__qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}
.cart-item__price {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.cart-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--cream-muted);
}
.cart__foot {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
}
.cart__summary {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.cart__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--cream-muted);
}
.cart__summary-row strong {
  color: var(--cream);
  font-size: 0.98rem;
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}
.cart__total strong {
  font-size: 1.4rem;
  color: var(--cream);
}
.cart__delivery {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: var(--cream-muted);
}
.cart__delivery.is-free { color: #7cb87a; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  z-index: 300;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Mobile cart bar (hidden on desktop) */
.mobile-bar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg img { animation: none; }
  .reveal, .product-card { opacity: 1; transform: none; }
}

/* Touch devices: no sticky hover */
@media (hover: none) {
  .product-card:hover {
    transform: translateY(0);
    box-shadow: none;
    border-color: var(--border);
  }
  .product-card:hover .product-card__img img { transform: none; }
  .btn--primary:hover { transform: none; }
}

/* ——— Mobile ——— */
@media (max-width: 768px) {
  :root {
    --header-h: 58px;
    --mobile-bar-h: 68px;
  }

  body {
    font-size: 14px;
    padding-bottom: var(--safe-bottom);
  }

  body.has-cart-bar {
    padding-bottom: calc(var(--mobile-bar-h) + var(--safe-bottom));
  }

  body.is-scroll-locked {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .container {
    width: calc(100% - 32px);
  }

  /* Header */
  .header {
    padding-top: var(--safe-top);
  }
  .header__inner {
    width: calc(100% - 20px);
    height: var(--header-h);
  }
  .logo__mark { font-size: 1.35rem; }
  .logo__sub {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
  .cart-trigger,
  .burger {
    width: 40px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav {
    padding: 4px 20px calc(16px + var(--safe-bottom));
  }
  .mobile-nav a {
    padding: 16px 0;
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Buttons */
  .btn {
    min-height: 48px;
    padding: 14px 22px;
  }

  /* Hero */
  .hero {
    min-height: max(580px, 100svh);
    padding: calc(var(--header-h) + var(--safe-top) + 24px) 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(20,17,15,0.35) 0%, rgba(20,17,15,0.5) 40%, rgba(20,17,15,0.97) 88%);
  }
  .hero__bg img {
    object-position: center 20%;
    animation: none;
    transform: scale(1.05);
  }
  .embers { display: none; }
  .hero__content {
    width: calc(100% - 32px);
    order: 1;
  }
  .hero__tag {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .hero__title {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    max-width: none;
    margin-bottom: 14px;
  }
  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__badges {
    flex-direction: column;
    gap: 10px;
  }
  .hero__badges li { font-size: 0.82rem; }
  .hero__hours {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    width: calc(100% - 32px);
    margin: 16px auto 0;
    text-align: left;
    min-width: 0;
  }

  /* Strip — horizontal swipe */
  .strip__inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }
  .strip__inner::-webkit-scrollbar { display: none; }
  .strip__item {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: center;
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 22px 16px;
  }
  .strip__item:last-child { border-right: none; }
  .strip__num { font-size: 1.85rem; }

  /* Menu */
  .menu-section {
    padding: 56px 0 40px;
  }
  .menu-search {
    margin-bottom: 16px;
  }
  .menu-search__input {
    min-height: 48px;
    font-size: 16px;
    padding-left: 44px;
  }
  .menu-search__icon {
    left: 14px;
    width: 18px;
    height: 18px;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head__title br { display: none; }
  .section-head__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .filters-scroll {
    margin: 0 -16px 24px;
    padding: 0 16px;
  }
  .filters-scroll::after { opacity: 1; }
  .filters {
    flex-wrap: nowrap;
    gap: 6px;
    scroll-snap-type: x proximity;
    padding-right: 24px;
  }
  .filter {
    scroll-snap-align: start;
    padding: 11px 16px;
    min-height: 44px;
    font-size: 0.84rem;
  }

  .catalog {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card__body { padding: 14px 16px 16px; }
  .product-card__title { font-size: 1.1rem; }
  .product-card__add {
    min-height: 44px;
    padding: 12px 18px;
    flex-shrink: 0;
  }

  /* About */
  .about { padding: 56px 0; }
  .about__grid { gap: 32px; }
  .about__stamp {
    right: 4px;
    bottom: -6px;
    font-size: 1.15rem;
    padding: 10px 16px;
  }
  .about__links {
    flex-direction: column;
  }
  .social {
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Delivery & contacts */
  .delivery { padding: 56px 0; }
  .delivery-card { padding: 22px 18px; }
  .contacts {
    padding: 56px 0 calc(24px + var(--mobile-bar-h) + var(--safe-bottom));
  }
  .contacts__info h2 { font-size: 1.85rem; }
  .contacts__phones a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 1.1rem;
  }
  .order-form {
    padding: 22px 18px;
  }
  .order-form input,
  .order-form textarea {
    font-size: 16px;
    padding: 14px;
    min-height: 48px;
  }
  .order-form textarea { min-height: 88px; }
  .checkout-modal {
    padding: 12px;
  }
  .checkout-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 18px;
    border-radius: 22px;
  }
  .checkout-modal__grid {
    grid-template-columns: 1fr;
  }
  .checkout-modal__order {
    padding: 18px;
  }
  .checkout-form__row--3 {
    grid-template-columns: 1fr;
  }
  .checkout-form__payments {
    gap: 8px;
  }
  .checkout-form__payment-option .checkout-form__payment-button {
    height: 38px;
    padding: 0 8px;
    font-size: 0.78rem;
  }
  .checkout-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .checkout-item__price {
    grid-column: 2;
    justify-self: start;
  }
  .checkout-form__payment-option {
    min-height: 50px;
  }

  body.has-cart-bar .footer {
    padding-bottom: calc(12px + var(--mobile-bar-h) + var(--safe-bottom));
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Cart — bottom sheet */
  .cart__panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: min(88svh, 640px);
    max-height: 88svh;
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    padding-bottom: var(--safe-bottom);
  }
  .cart.is-open .cart__panel { transform: translateY(0); }
  .cart__panel::before {
    content: "";
    display: block !important;
    width: 36px;
    height: 4px;
    margin: 10px auto 4px;
    flex-shrink: 0;
    background: rgba(243, 232, 220, 0.25);
    border-radius: 2px;
  }
  .cart__head {
    padding: 12px 20px 16px;
  }
  .cart__body { padding: 12px 20px; }
  .cart__foot {
    padding: 16px 20px calc(16px + var(--safe-bottom));
  }
  .cart-item {
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    padding: 14px 0;
  }
  .cart-item__img { width: 56px; height: 56px; }
  .cart-item__qty button {
    width: 36px;
    height: 36px;
  }

  /* Toast */
  .toast {
    bottom: calc(var(--mobile-bar-h) + var(--safe-bottom) + 12px);
    max-width: calc(100% - 32px);
    text-align: center;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  /* Sticky mobile bar */
  .mobile-bar {
    display: flex;
    align-items: stretch;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 10px 12px calc(10px + var(--safe-bottom));
    background: rgba(20, 17, 15, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(110%);
    transition: transform 0.35s var(--ease);
  }
  .mobile-bar.is-visible {
    transform: translateY(0);
  }
  .mobile-bar[hidden] {
    display: none !important;
  }
  .mobile-bar__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px;
    background: var(--ember);
    color: #fff;
    border-radius: 12px;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bar__label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.95;
  }
  .mobile-bar__sum {
    font-size: 1.05rem;
    font-weight: 600;
  }
  .mobile-bar__call {
    display: grid;
    place-items: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--gold);
    border: 1px solid var(--border);
    -webkit-tap-highlight-color: transparent;
  }
  body.is-cart-open .mobile-bar {
    transform: translateY(110%);
  }
}

/* Compact product cards on narrow phones */
@media (max-width: 480px) {
  .product-card {
    flex-direction: row;
    align-items: stretch;
  }
  .product-card__img {
    width: 108px;
    min-height: 108px;
    aspect-ratio: 1;
    flex-shrink: 0;
  }
  .product-card__body {
    padding: 12px 12px 12px 0;
    min-width: 0;
  }
  .product-card__desc {
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
    font-size: 0.78rem;
  }
  .product-card__foot {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-card__price {
    font-size: 1.1rem;
    width: 100%;
  }
  .product-card__add {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .filters-scroll::before,
  .filters-scroll::after { display: none; }
}

/* SEO: страница контактов */
.contacts-page {
  padding-top: calc(var(--header-h) + var(--safe-top, 0px) + 24px);
  padding-bottom: 64px;
}
.contacts-page__head {
  max-width: 720px;
  margin-bottom: 40px;
}
.contacts-page__head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.contacts-page__lead {
  color: var(--cream-muted);
  max-width: 56ch;
}
.contacts-page__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .contacts-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contacts-page__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contacts-page__card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.contacts-page__address {
  font-size: 1.05rem;
  line-height: 1.5;
}
.contacts-page__region,
.contacts-page__note {
  color: var(--cream-muted);
  margin-top: 10px;
}
.contacts-page__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts-page__phones a {
  font-size: 1.15rem;
  font-weight: 600;
}
.contacts-page__hours {
  display: grid;
  gap: 8px;
  color: var(--cream-muted);
}
.contacts-page__cta {
  margin-top: 32px;
}
.contacts__region {
  margin-top: 8px;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

/* SEO: 404 */
.not-found-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 48px 0 80px;
}
.not-found-page__inner {
  text-align: center;
  max-width: 520px;
}
.not-found-page__code {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ember);
  margin: 0 0 8px;
}
.not-found-page__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 12px;
}
.not-found-page__lead {
  color: var(--cream-muted);
  margin-bottom: 24px;
}
.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
