/*
 * Restoo — оформление «Мой Дом».
 * Полная замена второго предоставленного CSS-файла, не дополнение к нему.
 * Все исходные классы, идентификаторы и состояния Restoo сохранены.
 * Монохромные цвета, типографика, радиусы и переходы перенесены
 * из итогового каскада предоставленного референса.
 * Изображения берутся из существующей разметки темы; новых файлов не требуется.
 */

:root {
  --restoo-brand: #171717;
  --restoo-brand-strong: #171717;
  --restoo-brand-pale: #f1f1f1;
  --restoo-ink: #171717;
  --restoo-muted: #666666;
  --restoo-soft: #f2f2f2;
  --restoo-line: #e8e8e8;
  --restoo-white: #ffffff;
  --restoo-dark: #171717;
  --restoo-green: #292929;
  --restoo-red: #333333;
  --restoo-shadow-card: 0 8px 30px rgba(0,0,0,.025);
  --restoo-shadow-soft: 0 8px 30px rgba(0,0,0,.035);
  --restoo-radius-sm: 15px;
  --restoo-radius: 28px;
  --restoo-radius-lg: 30px;
  --restoo-container: 1180px;
  --restoo-header-height: 82px;
  --restoo-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --restoo-bg: #f2f2f2;
  --restoo-motion: .18s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--restoo-bg);
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--restoo-bg);
  color: var(--restoo-ink);
  font-family: var(--restoo-font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
}

body.restoo-dialog-open,
body.restoo-filter-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font: inherit;
}

button:disabled {
  cursor: default;
  opacity: .48;
}

:focus-visible {
  outline: 3px solid #737373;
  outline-offset: 4px;
}

::selection {
  background: var(--restoo-brand-pale);
  color: var(--restoo-ink);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--restoo-dark);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.skip-link:focus {
  transform: none;
}

.restoo-container {
  width: min(var(--restoo-container),calc(100% - 60px));
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
}

.restoo-shell {
  padding: 140px 0 64px;
}

.eyebrow,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

.eyebrow::before,
.article-kicker::before {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: var(--restoo-brand);
  content: none;
}

.restoo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  transition: background .18s,transform .18s;
  font-size: 14px;
  text-align: center;
  white-space: normal;
  text-decoration: none;
  box-shadow: none;
}

.restoo-button:hover {
  transform: none;
  background: #333333;
  box-shadow: none;
  color: #fff;
  filter: brightness(.98);
}

.restoo-button--small {
  min-height: 43px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.restoo-button--large {
  min-height: 50px;
  padding: 15px 23px;
  border-radius: 999px;
  font-size: 14px;
}

.restoo-button--ghost {
  border-color: var(--restoo-line);
  background: #f0f0f0;
  color: #171717;
  box-shadow: none;
  border: 0;
}

.restoo-button--ghost:hover {
  border-color: transparent;
  background: #eaeaea;
  color: #171717;
  box-shadow: none;
}

.restoo-button--light {
  border-color: #fff;
  background: #fff;
  color: #171717;
  border: 0;
}

.text-link,
.section-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--restoo-ink);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
}

.text-link:hover,
.section-link:hover,
.card-link:hover {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.restoo-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .18s,transform .18s;
}

.restoo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Шапка и навигация */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  right: 0;
  left: 0;
  transition: top .18s ease;
}

.admin-bar .site-header {
  top: 50px;
}

.site-header__inner {
  display: flex;
  min-height: var(--restoo-header-height);
  align-items: center;
  gap: 12px;
  padding: 11px 16px 11px 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--restoo-shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  top: 8px;
}

.admin-bar .site-header.is-scrolled {
  top: 40px;
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 142px;
}

.site-logo > a,
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
  width: 142px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.site-logo .custom-logo-link {
  display: contents;
}

.region-trigger {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #171717;
  font-size: 14px;
  font-weight: 400;
  transition: background .18s;
}

.region-trigger__pin {
  color: #171717;
  font-size: 14px;
}

.primary-nav {
  margin-left: 0;
  min-width: 0;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  padding: 14px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 49px;
  border-radius: 999px;
  color: #686868;
  line-height: 1.5;
  transition: background .18s,color .18s;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--restoo-brand);
  content: none;
  transform: scaleX(0);
  transition: transform .18s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: var(--restoo-ink);
  transition: background .18s,transform .18s;
}

.header-icon-button:hover {
  background: #eaeaea;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  margin: 8px auto 0;
}

.mobile-menu > div {
  padding: 18px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.mobile-menu__list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.mobile-menu__list a {
  display: block;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 400;
  min-height: 46px;
  font-size: 14px;
  transition: background .18s,color .18s;
}

.mobile-menu__list a:hover {
  background: var(--restoo-soft);
}

.mobile-region-button {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--restoo-soft);
  text-align: left;
  font-weight: 400;
  min-height: 46px;
  font-size: 14px;
}

/* Подвал */

.site-footer__links { padding: 48px 0; border-top: 0; background: #fff; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-columns h2 { margin: 0 0 18px; font-size: 16px; font-weight: 500; }
.footer-columns ul { display: grid; gap: 11px; margin: 0; padding: 0; color: var(--restoo-muted); font-size: 14px; list-style: none; }
.footer-columns a:hover, .footer-link-button:hover { color: var(--restoo-ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-link-button { padding: 0; border: 0; background: none; color: inherit; text-align: left; }
.site-footer__dark { padding: 48px 0; background: var(--restoo-dark); color: #fff; }
.footer-bottom { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 460px); align-items: center; gap: 48px; }
.footer-logo { width: 200px; height: auto; object-fit: contain; object-position: left; }
.footer-bottom > div:first-child > p { max-width: 610px; margin: 28px 0 0; color: #c7c7c7; font-size: 15px; line-height: 1.7; }
.footer-bottom .footer-legal { font-size: 12px; color: #b7b7b7; line-height: 1.7; }
.footer-discover { padding: 26px; border: 0; border-radius: 28px; background: #333; }
.footer-discover__eyebrow { color: #c7c7c7; font-size: 12px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.footer-discover h2 { margin: 9px 0; font-size: 24px; line-height: 1.2; font-weight: 500; }
.footer-discover p { margin: 0 0 20px; color: #c7c7c7; font-size: 15px; line-height: 1.65; }
.weather-credit { display: block; width: fit-content; margin-top: 14px; color: #b7b7b7; font-size: 12px; }
.footer-discover .weather-disclaimer { max-width: 520px; margin: 8px 0 0; color: #b7b7b7; font-size: 12px; line-height: 1.65; }

/* Диалоги, поиск, переключатели и уведомления */

.restoo-dialog {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
}

.restoo-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.restoo-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(520px,100%);
  max-height: calc(100dvh - 60px);
  overflow: auto;
  padding: 28px 25px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 80px rgba(28,28,28,.2);
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.restoo-dialog__panel h2 {
  margin: 9px 42px 20px 0;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 500;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  transition: background .18s;
}

.global-search-form {
  display: flex;
  gap: 8px;
  margin-top: 25px;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: #f7f7f7;
}

.global-search-form input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
  border: 0;
  outline: 0;
  min-height: 46px;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
}

.search-suggestions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.search-suggestion {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px;
  border-radius: 18px;
  transition: background .18s;
  font-size: 14px;
}

.search-suggestion:hover {
  background: var(--restoo-soft);
}

.search-suggestion img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: cover;
}

.search-suggestion span {
  display: grid;
}

.search-suggestion small {
  color: var(--restoo-muted);
  font-size: 12px;
}

.region-suggestion {
  margin: 18px 0 24px;
  padding: 24px;
  border-radius: 24px;
  background: #f2f2f2;
  font-size: 26px;
  font-weight: 500;
  color: #171717;
}

.region-dialog__actions,
.preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-manual {
  margin-top: 24px;
}

.region-manual > label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.region-manual > div {
  display: flex;
  gap: 8px;
}

.region-manual input {
  min-width: 0;
  flex: 1;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  min-height: 47px;
  background: #f7f7f7;
  font-size: 16px;
  transition: border-color .15s;
  line-height: 1.4;
}

.dialog-note {
  margin: 20px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.75;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 18px 0;
  border-radius: 0;
  background: transparent;
  min-height: 95px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  border: 0;
}

.toggle-row span {
  display: grid;
}

.toggle-row small {
  color: var(--restoo-muted);
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
}

.toggle-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--restoo-brand-strong);
}

.text-button {
  padding: 10px;
  border: 0;
  background: none;
  color: #171717;
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.restoo-toast {
  position: fixed;
  z-index: 5000;
  right: auto;
  bottom: 30px;
  max-width: min(540px,calc(100% - 36px));
  padding: 15px 23px;
  border-radius: 999px;
  background: #252525;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,.13);
  opacity: 0;
  transform: translate(-50%,20px);
  transition: opacity .18s,transform .18s;
  left: 50%;
  width: max-content;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  pointer-events: none;
}

.restoo-toast.is-visible {
  opacity: 1;
  transform: translate(-50%,0);
}

/* Главная страница: фотографическая обложка и белые карточки */

.home-hero {
  position: relative;
  overflow: visible;
  padding: 136px 0 0;
  background: var(--restoo-bg);
  color: #171717;
}

.home-hero__glow {
  position: absolute;
  top: 40px;
  left: 48%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: none;
  pointer-events: none;
  display: none;
}

.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) 215px;
  align-items: stretch;
  gap: 20px;
  grid-template-rows: repeat(2,minmax(0,1fr));
  min-height: 360px;
}

.context-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.context-chip__icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.home-hero h1 {
  max-width: 580px;
  margin: 40px 0 12px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.045em;
}

.home-hero__copy > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.home-hero__visual {
  position: static;
  min-height: 0;
  display: contents;
  width: auto;
  margin: 0;
  transform: none;
}

.hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--restoo-shadow-card);
  inset: auto;
  transform: none;
}

.hero-tile--gold {
  top: auto;
  left: auto;
  z-index: 2;
  display: flex;
  width: auto;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  background: #fff;
  color: #171717;
  transform: none;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  gap: 18px;
}

.hero-tile--gold span {
  font-size: 18px;
  font-weight: 500;
}

.hero-tile--gold strong {
  max-width: none;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}

.hero-tile--photo {
  right: 0;
  bottom: 28px;
  width: auto;
  height: 100%;
  border: 0;
  transform: none;
  grid-column: 1;
  grid-row: 1 / 3;
  z-index: 0;
  inset: auto;
  min-height: 360px;
  border-radius: 30px;
  background: #404040;
}

.hero-tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-tile--rating {
  right: 10px;
  top: 0;
  z-index: 2;
  display: grid;
  width: auto;
  min-height: 0;
  padding: 24px 20px;
  border: 0;
  background: #fff;
  transform: none;
  grid-column: 2;
  grid-row: 2;
  align-content: center;
  gap: 9px;
  inset: auto;
  border-radius: 28px;
  color: #171717;
}

.hero-tile--rating span {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.hero-tile--rating strong {
  font-size: 49px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.04em;
}

.hero-tile--rating small {
  color: #666666;
  font-weight: 400;
  font-size: 12px;
}

.home-finder {
  position: relative;
  z-index: 4;
  margin-bottom: 38px;
  margin-top: 20px;
}

.finder-card {
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.finder-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.finder-card__heading h2 {
  margin: 7px 0 0;
  font-size: 24px;
  letter-spacing: -.035em;
  font-weight: 500;
  line-height: 1.2;
}

.finder-card__heading > p {
  max-width: 410px;
  margin: 0;
  color: #666666;
  text-align: right;
  font-size: 15px;
  line-height: 1.7;
}

.quick-finder {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.quick-finder label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.quick-finder label > span {
  padding-left: 0;
  color: #171717;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.quick-finder select {
  width: 100%;
  min-height: 47px;
  padding: 13px 30px 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color .15s;
}

.quick-finder__open {
  display: none !important;
}

.scenario-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--restoo-muted);
  font-size: 14px;
}

.scenario-row > span {
  font-weight: 400;
}

.scenario-row a {
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: #171717;
  font-weight: 400;
  border: 1px solid #171717;
  font-size: 14px;
  line-height: 1.4;
  transition: background .18s,color .18s;
}

.scenario-row a:hover {
  background: #171717;
  color: #fff;
}

.home-section {
  padding-block: 34px;
}

.home-section--soft {
  background: var(--restoo-bg);
  color: var(--restoo-ink);
}

.home-section--ink {
  background: var(--restoo-bg);
  color: var(--restoo-ink);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.section-heading__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 400;
  font-size: 14px;
}

.section-heading--light .eyebrow,
.home-section--ink .section-link {
  color: #666666;
}

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

.restaurant-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.award-story {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 38px;
  padding-block: 38px;
}

.award-story__intro {
  align-self: center;
}

.award-story__intro h2 {
  margin: 9px 0 18px;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.award-story__intro p {
  margin: 0 0 26px;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.award-story__list {
  display: grid;
  gap: 12px;
}

.award-big {
  display: grid;
  grid-template-columns: 47px minmax(0,1fr);
  gap: 15px;
  padding: 23px;
  border: 0;
  border-radius: 28px;
  transition: background .18s;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.award-big:hover {
  transform: none;
  border-color: transparent;
  background: #fafafa;
}

.award-big > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  background: #f2f2f2;
  color: #171717;
  font-size: 24px;
}

.award-big small {
  color: #666666;
  font-weight: 400;
  font-size: 12px;
}

.award-big h3 {
  margin: 3px 0 5px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.award-big p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.editorial-home {
  border-block: 1px solid var(--restoo-line);
  border: 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}

.editorial-feature__media {
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 23px;
}

.editorial-feature__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .2s;
}

.editorial-feature__media:hover img {
  transform: scale(1.025);
}

.editorial-feature h3 {
  margin: 12px 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.editorial-feature > p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.news-stack {
  display: grid;
  align-content: start;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.news-line {
  display: grid;
  grid-template-columns: 104px minmax(0,1fr);
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid #e8e8e8;
}

.news-line:first-child {
  padding-top: 22px;
}

.news-line__image {
  overflow: hidden;
  border-radius: 18px;
}

.news-line__image img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
}

.news-line h3 {
  margin: 5px 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.news-line p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 14px;
  line-height: 1.65;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-business {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-block: 38px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.home-business h2 {
  max-width: 800px;
  margin: 8px 0 14px;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.home-business p {
  max-width: 760px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.home-business__actions {
  display: grid;
  gap: 8px;
}

.page-feedback {
  padding: 28px 0 50px;
  text-align: center;
}

.page-feedback h2 {
  font-size: 23px;
  font-weight: 500;
}

.page-feedback > div {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.page-feedback button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 25px;
  transition: background .18s,transform .18s;
}

.page-feedback button:hover {
  transform: none;
  background: #eaeaea;
}

/* Карточки ресторанов, материалов, экспертов и событий */

.restaurant-card,
.article-card,
.expert-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
  transition: box-shadow .2s;
  padding: 8px;
}

.restaurant-card:hover,
.article-card:hover,
.expert-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: 0 9px 24px rgba(0,0,0,.04);
}

.restaurant-card--promoted,
.expert-card--featured {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px #d6d6d6,var(--restoo-shadow-card);
}

.expert-card--partner {
  border-color: transparent;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d6d6d6,var(--restoo-shadow-card);
}

.restaurant-card__media,
.article-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.38;
  background: #e9e9e9;
  border-radius: 23px;
}

.restaurant-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.restaurant-card__media img,
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}

.restaurant-card:hover .restaurant-card__media img,
.article-card:hover .article-card__media img {
  transform: scale(1.025);
}

.content-disclosure {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #171717;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 78px);
  line-height: 1.4;
  -webkit-backdrop-filter: blur(8px);
}

.favorite-button {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #666666;
  box-shadow: none;
  font-size: 19px;
  transition: background .18s,color .18s,transform .18s;
}

.favorite-button.is-active {
  background: #171717;
  color: #fff;
}

.restaurant-card__media .restoo-awards {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

.restoo-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.restoo-award {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #171717;
  font-size: 12px;
  font-weight: 400;
  box-shadow: none;
  max-width: 100%;
  line-height: 1.4;
}

.restaurant-card__body,
.article-card__body {
  padding: 16px 12px 14px;
}

.restaurant-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  flex-wrap: wrap;
}

.open-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #454545;
  font-size: 12px;
  font-weight: 400;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ededed;
  line-height: 1.3;
}

.open-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999999;
  flex: 0 0 6px;
  box-shadow: none;
}

.open-state--open {
  color: #fff;
  background: #292929;
}

.open-state--open i {
  background: #fff;
  box-shadow: none;
}

.open-state--closing {
  color: #171717;
  background: #dedede;
}

.open-state--closing i {
  background: #171717;
  box-shadow: none;
}

.open-state--closed {
  color: #666666;
  background: #f1f1f1;
}

.open-state--closed i {
  background: #666666;
  box-shadow: none;
}

.rating-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #171717;
  line-height: 1.3;
}

.rating-pill strong {
  font-size: 14px;
  font-weight: 500;
}

.rating-pill span {
  font-size: 12px;
  font-weight: 400;
}

.restaurant-card__title {
  margin: 13px 0 4px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -.025em;
  font-weight: 500;
}

.restaurant-card__tagline {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.restaurant-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}

.restaurant-card__facts span:not(:last-child)::after {
  margin-left: 12px;
  color: #d6d6d6;
  content: "·";
}

.restaurant-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--restoo-line);
  flex-wrap: wrap;
}

.owner-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.owner-verified b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #292929;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 500;
}

.restaurant-card .card-link {
  flex: 0 0 auto;
  font-size: 14px;
}

.context-reason {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 18px;
  background: #f0f0f0;
  color: #505050;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  flex-wrap: wrap;
  line-height: 1.5;
}

.article-card__meta span {
  color: #666666;
}

.article-card h2 {
  margin: 11px 0 7px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.035em;
  font-weight: 500;
}

.article-card p {
  margin: 0 0 15px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.article-card .card-link {
  font-size: 14px;
}

.expert-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e9e9e9;
  border-radius: 23px;
}

.expert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .2s;
}

.expert-card:hover img {
  transform: scale(1.025);
}

.expert-card__body {
  position: relative;
  padding: 16px 12px 14px;
}

.expert-card__body > .content-disclosure {
  position: static;
  display: inline-flex;
  margin-bottom: 10px;
}

.expert-card h2 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -.03em;
  font-weight: 500;
  line-height: 1.3;
}

.expert-card__role {
  min-height: 0;
  margin: 9px 0;
  color: var(--restoo-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.expert-card__body > p:not(.expert-card__role) {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.restoo-verified {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #171717;
  font-size: 12px;
  font-weight: 400;
}

.restoo-verified__icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #292929;
  color: #fff;
  font-size: 12px;
}

.restoo-verified__tip {
  position: absolute;
  z-index: 20;
  top: calc(100% + 9px);
  left: 0;
  width: min(310px,calc(100vw - 48px));
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fff;
  color: var(--restoo-ink);
  box-shadow: var(--restoo-shadow-card);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s,transform .18s;
}

.restoo-verified:hover .restoo-verified__tip,
.restoo-verified:focus .restoo-verified__tip {
  opacity: 1;
  transform: none;
}

.event-card {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: #171717;
  min-width: 0;
  padding: 8px;
  box-shadow: var(--restoo-shadow-card);
  transition: box-shadow .2s;
}

.event-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.5;
  border-radius: 23px;
  background: #e9e9e9;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}

.event-card:hover img {
  transform: scale(1.025);
}

.event-card__body {
  display: grid;
  grid-template-columns: 50px minmax(0,1fr);
  gap: 13px;
  padding: 17px 12px 14px;
}

.event-date {
  display: grid;
  width: 50px;
  height: auto;
  place-items: center;
  align-content: center;
  border-radius: 18px;
  background: #f2f2f2;
  color: #171717;
  line-height: 1;
  min-height: 58px;
  padding: 10px 5px;
}

.event-date strong {
  font-size: 20px;
  font-weight: 500;
}

.event-date span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.3;
}

.event-card h2 {
  margin: 5px 0 2px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.event-card p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.event-grid--compact .event-card,
.event-grid--archive .event-card {
  border-color: var(--restoo-line);
  background: #fff;
  color: var(--restoo-ink);
}

.event-grid--compact .event-card p,
.event-grid--archive .event-card p {
  color: var(--restoo-muted);
}

.restoo-empty {
  grid-column: 1 / -1;
  padding: 43px 24px 45px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: var(--restoo-shadow-card);
}

.restoo-empty > span {
  color: #666666;
  font-size: 38px;
}

.restoo-empty h2 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.restoo-empty p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Рекламные блоки */

.restoo-ad-slot {
  width: min(var(--restoo-container),calc(100% - 60px));
  margin: 28px auto;
}

.restaurant-grid .restoo-ad-slot {
  width: auto;
  margin: 0;
  grid-column: 1 / -1;
}

.restoo-ad {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--restoo-shadow-card);
}

.restoo-ad__link {
  display: grid;
  grid-template-columns: minmax(220px,.6fr) minmax(0,1fr);
  align-items: center;
  min-height: 210px;
  gap: 4px;
}

.restoo-ad__media {
  height: 100%;
  min-height: 210px;
  overflow: hidden;
  border-radius: 23px;
}

.restoo-ad__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restoo-ad__body {
  padding: 24px;
}

.restoo-ad__label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--restoo-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
}

.restoo-ad h3 {
  margin: 10px 0 7px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.restoo-ad p {
  margin: 0 0 14px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.restoo-ad__cta {
  font-size: 14px;
  font-weight: 500;
}

/* Архивы и пагинация */

.archive-hero {
  padding: 145px 0 36px;
}

.archive-hero .restoo-container {
  display: grid;
  gap: 16px;
}

.archive-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.archive-hero p {
  max-width: 770px;
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.archive-hero--experts {
  background: var(--restoo-bg);
  color: #171717;
}

.archive-hero--news {
  background: var(--restoo-bg);
  color: #171717;
}

.archive-hero--events {
  background: var(--restoo-bg);
  color: #171717;
}

.archive-hero--awards {
  background: var(--restoo-bg);
  color: #171717;
}

.archive-hero--awards p {
  color: #666666;
}

.archive-heading {
  margin-bottom: 26px;
}

.archive-heading h1 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 15px;
}

.topic-nav a {
  padding: 11px 18px;
  border: 1px solid #171717;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  min-height: 41px;
  color: #171717;
  line-height: 1.3;
  transition: background .18s,color .18s;
}

.topic-nav a:hover {
  border-color: #171717;
  background: #eaeaea;
}

.topic-nav a.is-active {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

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

.article-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid--news .article-card:nth-child(1) {
  grid-column: span 2;
}

.article-grid--news .article-card:nth-child(1) .article-card__media {
  aspect-ratio: 2;
}

.restoo-pagination {
  margin-top: 28px;
}

.restoo-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.restoo-pagination a,
.restoo-pagination span {
  display: grid;
  min-width: 43px;
  height: 43px;
  place-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  transition: background .18s;
}

.restoo-pagination .current {
  border-color: transparent;
  background: #171717;
  color: #fff;
}

/* Каталог и фильтры */

.catalog-hero {
  padding: 145px 0 26px;
  background: var(--restoo-bg);
}

.catalog-hero .restoo-container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-hero h1 {
  margin: 8px 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.catalog-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.catalog-name-search {
  display: flex;
  min-width: 320px;
  gap: 8px;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.catalog-name-search input {
  min-width: 0;
  flex: 1;
  padding: 8px 12px;
  border: 0;
  outline: 0;
  min-height: 43px;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap: 24px;
  padding-block: 22px 54px;
}

.catalog-filters {
  align-self: start;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.catalog-filters__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 23px;
  border-bottom: 1px solid var(--restoo-line);
}

.catalog-filters__header h2 {
  margin: 3px 0 0;
  font-size: 21px;
  font-weight: 500;
}

.catalog-filters__header button {
  display: none;
  border: 0;
  background: #f2f2f2;
  font-size: 23px;
  width: 32px;
  height: 32px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.filter-group {
  margin: 0;
  padding: 0 23px;
  border: 0;
  border-bottom: 1px solid var(--restoo-line);
  min-width: 0;
}

.filter-group legend {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 13px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.filter-options {
  display: grid;
  gap: 12px;
  max-height: 220px;
  overflow: auto;
  padding-bottom: 18px;
  scrollbar-width: thin;
}

.filter-options label,
.filter-toggles label {
  display: grid;
  grid-template-columns: 18px minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  color: var(--restoo-muted);
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}

.filter-options input,
.filter-toggles input {
  width: 17px;
  height: 17px;
  accent-color: var(--restoo-brand-strong);
}

.filter-options small {
  color: #666666;
  font-size: 12px;
}

.filter-group.is-collapsed .filter-options {
  display: none;
}

.filter-group.is-collapsed legend {
  padding-bottom: 18px;
}

.filter-group.is-collapsed legend span {
  transform: rotate(-90deg);
}

.price-range {
  display: flex;
  align-items: end;
  gap: 9px;
  padding-bottom: 18px;
}

.price-range label {
  min-width: 0;
  flex: 1;
}

.price-range span {
  display: block;
  margin-bottom: 4px;
  color: var(--restoo-muted);
  font-size: 14px;
}

.price-range input {
  width: 100%;
  min-height: 47px;
  padding: 11px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color .15s;
}

.rating-options {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  clip-path: inset(50%);
}

.rating-options span {
  display: block;
  padding: 9px 13px;
  border: 1px solid #171717;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  transition: background .18s,color .18s;
}

.rating-options input:checked + span {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.filter-toggles {
  display: grid;
  gap: 16px;
  padding: 20px 23px;
}

.catalog-filter-actions {
  display: grid;
  gap: 11px;
  padding: 18px 23px 24px;
  text-align: center;
}

.catalog-filter-actions a {
  color: var(--restoo-muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  margin-bottom: 17px;
  flex-wrap: wrap;
}

.catalog-toolbar > div,
.catalog-toolbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.catalog-toolbar strong {
  font-size: 14px;
  font-weight: 500;
}

.catalog-toolbar select {
  min-height: 46px;
  padding: 10px 30px 10px 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  max-width: 100%;
  font-size: 16px;
}

.filter-mobile-button {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  background: #171717;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  transition: background .18s,transform .18s;
}

.view-switch {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
}

.view-switch button {
  min-height: 38px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: background .18s,color .18s;
}

.view-switch button.is-active {
  background: #171717;
  box-shadow: none;
  color: #fff;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.active-filters span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #e5e5e5;
  color: #171717;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.catalog-results .restaurant-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-loading {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #666666;
  font-size: 14px;
}

.catalog-loading span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--restoo-brand);
  animation: none;
  display: none;
}

.catalog-loading span:nth-child(2) {
  animation-delay: .16s;
}

.catalog-loading span:nth-child(3) {
  animation-delay: .32s;
}

@keyframes restooPulse {
  to {
    opacity: .25;
    transform: translateY(-7px);
  }
}

.catalog-map #restoo-map {
  min-height: 600px;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #e9e9e9;
}

.map-consent {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: var(--restoo-shadow-card);
}

.map-consent p {
  max-width: 520px;
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.filter-more {
  width: 100%;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--restoo-brand-strong);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.map-popup {
  display: grid;
  gap: 5px;
  min-width: 150px;
  font-size: 14px;
}

.map-popup span {
  color: var(--restoo-brand-strong);
  font-weight: 500;
}

.catalog-seo {
  padding-bottom: 54px;
}

.catalog-seo h2 {
  max-width: 760px;
  margin: 0 0 15px;
  font-size: 26px;
  letter-spacing: -.04em;
  font-weight: 500;
  line-height: 1.25;
}

.catalog-seo p {
  max-width: 900px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Страница ресторана */

.restaurant-page {
  padding-top: 136px;
}

.restaurant-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--restoo-muted);
  font-size: 12px;
  line-height: 1.6;
}

.restaurant-hero {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
  padding: 8px;
  gap: 4px;
}

.restaurant-hero__media {
  position: relative;
  min-height: 414px;
  overflow: hidden;
  border-radius: 23px;
  background: #e9e9e9;
}

.restaurant-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.favorite-button--hero {
  top: 18px;
  right: 18px;
}

.restaurant-hero__media > .restoo-awards {
  position: absolute;
  bottom: 18px;
  left: 18px;
}

.restaurant-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.restaurant-socials a {
  padding: 10px 15px;
  border: 1px solid #171717;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  transition: background .18s,color .18s;
}

.restaurant-gallery {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
  margin-top: 18px;
}

.restaurant-gallery a {
  overflow: hidden;
  border-radius: 23px;
}

.restaurant-gallery a:first-child {
  grid-row: 1 / -1;
}

.restaurant-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}

.restaurant-gallery a:hover img {
  transform: scale(1.025);
}

.restaurant-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  min-width: 0;
}

.restaurant-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.restaurant-hero h1 {
  margin: 15px 0 10px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 500;
}

.restaurant-hero__tagline {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.restaurant-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 19px;
  color: var(--restoo-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.restaurant-hero__facts span:not(:last-child)::after {
  margin-left: 17px;
  color: #d6d6d6;
  content: "·";
}

.restaurant-hero__rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 24px 0;
}

.rating-orbit {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: baseline;
  justify-content: center;
  padding-top: 17px;
  border: 5px solid #e5e5e5;
  border-radius: 50%;
  color: #171717;
  flex-shrink: 0;
}

.rating-orbit strong {
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
}

.rating-orbit span {
  font-size: 12px;
  font-weight: 400;
}

.restaurant-hero__rating b {
  font-size: 16px;
  font-weight: 500;
}

.restaurant-hero__rating p {
  margin: 2px 0;
  color: var(--restoo-muted);
  font-size: 12px;
  line-height: 1.6;
}

.restaurant-hero__rating a {
  color: var(--restoo-brand-strong);
  font-size: 14px;
  font-weight: 400;
}

.restaurant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.restaurant-anchor-nav {
  position: sticky;
  z-index: 30;
  top: 106px;
  margin-top: 22px;
  border-block: 1px solid var(--restoo-line);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--restoo-shadow-card);
  -webkit-backdrop-filter: blur(16px);
}

.admin-bar .restaurant-anchor-nav {
  top: 138px;
}

.restaurant-anchor-nav > div {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  align-items: center;
  width: 100%;
  max-width: var(--restoo-container);
  padding: 7px;
  scrollbar-width: thin;
}

.restaurant-anchor-nav a {
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 999px;
  color: #666666;
  line-height: 1.4;
  transition: background .18s,color .18s;
}

.restaurant-content-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 24px;
  padding-block: 26px 48px;
}

.restaurant-content-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.content-panel {
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  min-width: 0;
  box-shadow: var(--restoo-shadow-card);
  scroll-margin-top: 185px;
}

.content-panel > h2,
.panel-heading h2 {
  margin: 8px 0 18px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 500;
}

.prose-content {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.8;
  min-width: 0;
  overflow-wrap: anywhere;
}

.prose-content > *:first-child {
  margin-top: 0;
}

.prose-content > *:last-child {
  margin-bottom: 0;
}

.prose-content h2 {
  margin-top: 1.7em;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 500;
}

.prose-content h3 {
  margin-top: 1.5em;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.prose-content a {
  color: var(--restoo-brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-content blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  border-left: 3px solid #171717;
  color: #505050;
  font-size: 16px;
  border-radius: 0 18px 18px 0;
  background: #f2f2f2;
  line-height: 1.75;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.feature-chips span {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
  color: #505050;
  line-height: 1.5;
}

.restaurant-awards > div,
.award-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.award-detail {
  display: grid;
  grid-template-columns: 43px minmax(0,1fr);
  gap: 13px;
  padding: 17px;
  border: 0;
  border-radius: 22px;
  background: #f7f7f7;
}

.award-detail > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #171717;
}

.award-detail small {
  color: #666666;
  font-weight: 400;
  font-size: 12px;
}

.award-detail h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.award-detail p {
  margin: 4px 0 0;
  color: var(--restoo-muted);
  font-size: 14px;
  line-height: 1.65;
}

.rating-breakdown > p {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.rating-bars {
  display: grid;
  gap: 13px;
  margin: 24px 0;
}

.rating-bars > div {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr) 36px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
}

.rating-bars i {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9e9e9;
}

.rating-bars i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #171717;
}

.restaurant-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
}

.sidebar-card {
  padding: 24px 20px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  min-width: 0;
  box-shadow: var(--restoo-shadow-card);
}

.sidebar-card h2 {
  margin: 0 0 15px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}

.sidebar-card > p {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.sidebar-card--contact > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--restoo-line);
}

.sidebar-card--contact > div > span {
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
}

.sidebar-card--contact > div > p {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hours-list {
  display: grid;
  gap: 6px;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--restoo-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hours-list b {
  color: var(--restoo-ink);
  font-weight: 500;
}

.restaurant-sidebar .restoo-ad-slot {
  width: auto;
  margin: 0;
}

.restaurant-sidebar .restoo-ad__link {
  display: block;
}

.restaurant-sidebar .restoo-ad__media {
  min-height: 170px;
}

.restaurant-sidebar .restoo-ad__body {
  padding: 18px;
}

.restaurant-sidebar .restoo-ad h3 {
  font-size: 21px;
}

.review-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.review {
  padding: 21px;
  border-radius: 24px;
  background: #f7f7f7;
}

.review__head {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
}

.review__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #e7e7e7;
  color: #171717;
  font-weight: 500;
}

.review__head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.review__head time {
  color: var(--restoo-muted);
  font-size: 12px;
}

.review__head > strong {
  color: var(--restoo-brand-strong);
}

.review > p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.verified-visit {
  color: #666666;
  font-size: 12px;
  font-weight: 400;
}

.review-form {
  display: grid;
  gap: 17px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  background: #fff;
}

.review-form h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.review-criteria {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
}

.review-form label,
.claim-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.review-form label > span,
.claim-form label > span {
  color: #171717;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 1.5;
}

.review-form input,
.review-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: #f7f7f7;
  min-width: 0;
  min-height: 47px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: none;
  transition: border-color .15s,background .15s;
}

.review-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #f7f7f7;
  min-width: 0;
  min-height: 110px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: none;
  transition: border-color .15s,background .15s;
  resize: vertical;
}

.claim-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: #f7f7f7;
  min-width: 0;
  min-height: 47px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: none;
  transition: border-color .15s,background .15s;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.review-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.review-form .consent-check input {
  width: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  height: 17px;
  min-height: 17px;
  margin: 3px 0 0;
  padding: 0;
  border-radius: 3px;
}

.review-form .consent-check span {
  text-transform: none;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-message {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.form-message.is-success {
  color: #171717;
  padding: 12px 14px;
  border-radius: 18px;
  background: #ededed;
}

.form-message.is-error {
  color: #171717;
  padding: 12px 14px;
  border-radius: 18px;
  background: #ededed;
}

.claim-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.restaurant-map-section {
  padding-bottom: 54px;
}

.restaurant-map-section > div:first-child {
  margin-bottom: 18px;
}

.restaurant-map-section h2 {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 500;
}

#restoo-place-map {
  min-height: 420px;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #e9e9e9;
}

.mobile-sticky-actions {
  display: none;
}

.review-reply {
  margin: 18px 0 0 26px;
  padding: 17px 18px;
  border-left: 2px solid #d6d6d6;
  border-radius: 0 18px 18px 0;
  background: #f0f0f0;
}

.review-reply strong {
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.review-reply p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.7;
}

.review-reply time {
  color: var(--restoo-muted);
  font-size: 12px;
}

.review-reply-form {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--restoo-line);
}

.review-reply-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.review-reply-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 1.5;
  resize: vertical;
}

.review-reply-form .restoo-button {
  justify-self: start;
}

/* Контекстные классы сохранены. Время суток и погода не меняют монохромную палитру. */

.ctx-time-evening .home-hero,
.ctx-time-night .home-hero {
  background: var(--restoo-bg);
  color: #171717;
}

.ctx-time-evening .home-hero__copy > p,
.ctx-time-night .home-hero__copy > p {
  color: rgba(255,255,255,.86);
}

.ctx-time-evening .home-hero .text-link,
.ctx-time-night .home-hero .text-link {
  color: #fff;
}

.ctx-time-morning .home-hero {
  background: var(--restoo-bg);
  color: #171717;
}

.ctx-weather-rain .home-hero__glow,
.ctx-weather-storm .home-hero__glow {
  background: none;
}

.ctx-weather-snow .home-hero {
  background-image: linear-gradient(145deg, rgba(0, 0, 0, .82), rgba(255, 255, 255, .95));
  background: var(--restoo-bg);
  color: #171717;
}

.ctx-temp-hot .home-hero__glow {
  background: none;
}

.ctx-temp-cold .finder-card {
  border-color: transparent;
  box-shadow: var(--restoo-shadow-card);
}

.ctx-mood-cozy .home-hero .restoo-button {
  box-shadow: none;
}

/* Архивы городов и тематик. */

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

.taxonomy-grid > .restoo-ad-slot {
  grid-column: 1 / -1;
}

.archive-hero--taxonomy {
  background: var(--restoo-bg);
  color: #171717;
}

.archive-description {
  max-width: 760px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Эксперты */

.trust-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 15px;
}

.trust-legend > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--restoo-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.promotion-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid #171717;
  border-radius: 50%;
}

.archive-filter-bar {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.archive-filter-bar form {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 23px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.archive-filter-bar label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.archive-filter-bar label span {
  padding-left: 0;
  color: #171717;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.archive-filter-bar select {
  min-height: 47px;
  padding: 13px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  background: #f7f7f7;
  width: 100%;
  min-width: 0;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color .15s;
}

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

.verification-explainer {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 45px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.verification-explainer h2 {
  margin: 7px 0 0;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.045em;
  font-weight: 500;
}

.verification-explainer p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.expert-profile-hero {
  padding: 140px 0 38px;
  background: var(--restoo-bg);
}

.expert-profile-hero__inner {
  display: grid;
  grid-template-columns: minmax(240px,350px) minmax(0,1fr);
  align-items: center;
  gap: 32px;
}

.expert-profile-hero__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 8px solid #fff;
  border-radius: 30px;
  box-shadow: var(--restoo-shadow-card);
}

.expert-profile-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-profile-hero h1 {
  margin: 8px 0 10px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 500;
}

.expert-profile-role {
  margin: 16px 0 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.expert-profile-lead {
  max-width: 700px;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.8;
}

.expert-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.expert-socials a {
  padding: 10px 15px;
  border: 1px solid #171717;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  transition: background .18s,color .18s;
}

.expert-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  padding-block: 20px 54px;
}

.expert-profile-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.expert-profile-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.verification-card {
  background: #fff;
}

.verification-card small {
  color: var(--restoo-muted);
}

/* Материалы и непрерывное чтение */

.single-editorial {
  padding: 140px 0 54px;
}

.news-article,
.article-stream {
  max-width: 900px;
}

.article-header {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: left;
  margin-bottom: 26px;
}

.article-header h1,
.article-header h2 {
  margin: 12px 0 16px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.article-header > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--restoo-muted);
  font-size: 16px;
  margin-left: 0;
  line-height: 1.7;
}

.article-byline {
  display: flex;
  justify-content: flex-start;
  gap: 8px 15px;
  margin-top: 18px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  flex-wrap: wrap;
  line-height: 1.7;
}

.article-byline span {
  color: var(--restoo-ink);
}

.article-hero-image {
  overflow: hidden;
  margin: 0 0 38px;
  border-radius: 28px;
  margin-bottom: 28px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-article > .prose-content,
.stream-article > .prose-content {
  max-width: 740px;
  margin-inline: auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.related-place-inline {
  max-width: 740px;
  margin: 25px auto;
  padding: 25px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.related-place-inline h2,
.related-place-inline h3 {
  margin: 6px 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
}

.related-place-inline p {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  max-width: 740px;
  margin: 36px auto 0;
}

.article-share > span {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
}

.article-share button {
  padding: 10px 16px;
  border: 1px solid #171717;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  min-height: 41px;
  transition: background .18s,color .18s;
}

.reading-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--restoo-brand);
  transform: scaleX(0);
  transform-origin: left;
}

.stream-article {
  scroll-margin-top: 130px;
}

.stream-article:first-child .article-boundary {
  display: none;
}

.stream-article .article-header h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.article-boundary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 64px 0 34px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.article-boundary::before,
.article-boundary::after {
  height: 1px;
  flex: 1;
  background: var(--restoo-line);
  content: "";
}

.article-stream__sentinel {
  height: 1px;
}

.article-stream__status {
  min-height: 30px;
  margin: 30px 0;
  color: var(--restoo-muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

.article-stream__more {
  display: flex;
  margin: 0 auto;
}

.article-next-fallback {
  margin-top: 50px;
  text-align: center;
}

/* Рейтинги */

.archive-hero--ratings {
  background: var(--restoo-bg);
  color: #171717;
}

.rating-method-note {
  display: grid;
  grid-template-columns: .75fr 1.25fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: 26px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.rating-method-note h2 {
  margin: 6px 0 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.rating-method-note p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.rating-method-note > a {
  color: var(--restoo-brand-strong);
  font-size: 14px;
  font-weight: 400;
  white-space: normal;
}

.ranking-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: restoo-rank calc(var(--ranking-start, 1) - 1);
  list-style: none;
}

.ranking-row {
  display: grid;
  grid-template-columns: 58px 128px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 14px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  counter-increment: restoo-rank;
  transition: background .18s;
  box-shadow: var(--restoo-shadow-card);
}

.ranking-row:hover {
  border-color: transparent;
  transform: none;
  background: #fafafa;
}

.ranking-row__position::before {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #f2f2f2;
  color: #171717;
  content: counter(restoo-rank);
  font-size: 20px;
  font-weight: 500;
}

.ranking-row:nth-child(-n + 3) .ranking-row__position::before {
  background: #292929;
  color: #fff;
}

.ranking-row__image {
  overflow: hidden;
  aspect-ratio: 1.3;
  border-radius: 20px;
}

.ranking-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-row__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 22px;
}

.ranking-row h2 {
  margin: 3px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.ranking-row p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ranking-row__score {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: end;
  color: #171717;
  text-align: right;
}

.ranking-row__score strong {
  font-size: 33px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
}

.ranking-row__score > span {
  font-size: 12px;
  font-weight: 400;
}

.ranking-row__score small {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.4;
}

/* События и награды */

.event-grid--archive {
  grid-template-columns: repeat(3, 1fr);
}

.event-page {
  padding: 140px 0 54px;
}

.event-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  box-shadow: var(--restoo-shadow-card);
  padding: 8px;
  gap: 4px;
  background: #fff;
}

.event-detail__media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 23px;
  background: #e9e9e9;
  position: relative;
}

.event-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.event-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  min-width: 0;
}

.event-detail h1 {
  margin: 10px 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.event-detail__date {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--restoo-brand-strong);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.event-detail__place {
  display: grid;
  margin: 22px 0;
}

.event-detail__place span {
  color: var(--restoo-muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.event-detail__place a {
  font-size: 18px;
  font-weight: 500;
}

.award-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.award-archive-card a {
  display: grid;
  min-height: 280px;
  align-content: start;
  padding: 26px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
  transition: background .18s;
}

.award-archive-card > a > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #171717;
  font-size: 26px;
}

.award-archive-card small {
  color: #666666;
  font-weight: 400;
  font-size: 12px;
}

.award-archive-card h2 {
  margin: 5px 0 8px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.award-archive-card p {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.award-archive-card b {
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
}

.award-page {
  padding: 140px 0 54px;
}

.award-page__article {
  max-width: 900px;
}

.award-page__article > header {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: var(--restoo-shadow-card);
}

.award-page__symbol {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #171717;
  font-size: 33px;
}

.award-page h1 {
  margin: 10px 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.award-page__article > .prose-content {
  max-width: 740px;
  margin: 45px auto;
}

.award-recipients {
  margin-top: 45px;
}

.award-recipients > h2 {
  font-size: 26px;
  font-weight: 500;
}

/* Страницы, поиск и ошибки */

.page-article {
  max-width: 900px;
}

.page-hero {
  margin-bottom: 28px;
  text-align: center;
}

.page-hero h1 {
  margin: 10px 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 500;
}

.page-hero p {
  color: var(--restoo-muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-article > .prose-content {
  max-width: 740px;
  margin-inline: auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.search-results-list {
  display: grid;
  gap: 12px;
}

.search-result {
  display: grid;
  grid-template-columns: 130px minmax(0,1fr);
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.search-result__image {
  overflow: hidden;
  aspect-ratio: 1.25;
  border-radius: 20px;
}

.search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result h2 {
  margin: 4px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.search-result p {
  margin: 0;
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.error-page {
  padding-block: 50px;
  text-align: center;
}

.error-page__code {
  display: block;
  color: var(--restoo-brand);
  font-size: clamp(90px,16vw,150px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.error-page h1 {
  margin: 25px 0 8px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
}

.error-page p {
  color: var(--restoo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.error-page > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

/* Адаптация к размеру экрана */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

p {
  overflow-wrap: anywhere;
}

small {
  font-size: 12px;
}

sub,
sup {
  font-size: 12px;
  line-height: 0;
}

input[type=checkbox],
input[type=radio] {
  accent-color: var(--restoo-brand);
}

input::placeholder,
textarea::placeholder {
  color: var(--restoo-muted);
  opacity: 1;
}

button svg,
a svg {
  flex-shrink: 0;
}

.restoo-button:active {
  transform: translateY(1px);
}

.restoo-button:disabled,
.restoo-button[aria-disabled=true] {
  transform: none;
  box-shadow: none;
  filter: none;
  opacity: .48;
  cursor: default;
}

.restoo-button--light:hover {
  background: #f2f2f2;
  color: #171717;
}

.restoo-button > svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.region-trigger:hover {
  background: #eaeaea;
}

.primary-nav a:hover {
  color: #171717;
  background: #f2f2f2;
}

.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav a[aria-current=page] {
  color: #fff;
  background: #252525;
}

.header-icon-button:active {
  transform: translateY(1px);
}

.mobile-menu__list .current-menu-item > a,
.mobile-menu__list a[aria-current=page] {
  background: #252525;
  color: #fff;
}

.dialog-close:hover {
  background: #eaeaea;
}

.global-search-form input:focus-visible,
.catalog-name-search input:focus-visible {
  outline: 3px solid #737373;
  outline-offset: 1px;
}

.toggle-row strong,
.toggle-row b {
  font-size: 14px;
  font-weight: 500;
}

.toggle-row input[type=checkbox] {
  position: relative;
  width: 44px;
  height: 27px;
  flex: 0 0 44px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 30px;
  background: #d6d6d6;
  cursor: pointer;
  transition: background .18s;
}

.toggle-row input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.13);
  transition: transform .18s;
}

.toggle-row input[type=checkbox]:checked {
  background: #171717;
}

.toggle-row input[type=checkbox]:checked::before {
  transform: translateX(17px);
}

.toggle-row input[type=checkbox]:disabled {
  opacity: .4;
  cursor: default;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 360px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg,rgba(0,0,0,.16) 0%,rgba(0,0,0,.26) 28%,rgba(0,0,0,.69) 100%);
  color: #fff;
  text-align: left;
}

.home-hero .restoo-button {
  min-height: 55px;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-hero .restoo-button:hover {
  background: rgba(255,255,255,.23);
  color: #fff;
  box-shadow: none;
}

.home-hero .text-link,
.home-hero .eyebrow {
  color: #fff;
}

.editorial-feature {
  min-width: 0;
  padding: 8px 8px 23px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--restoo-shadow-card);
}

.editorial-feature > :not(.editorial-feature__media) {
  margin-left: 15px;
  margin-right: 15px;
}

.news-line:last-child {
  border-bottom: 0;
}

.page-feedback button:active {
  transform: translateY(1px);
}

.favorite-button:hover {
  background: #f2f2f2;
  color: #171717;
}

.favorite-button:active {
  transform: translateY(1px);
}

.restoo-verified:focus-within .restoo-verified__tip {
  opacity: 1;
  transform: none;
}

.event-card:hover {
  box-shadow: 0 9px 24px rgba(0,0,0,.04);
}

.restoo-pagination a:hover {
  background: #eaeaea;
}

.catalog-results {
  min-width: 0;
}

.rating-options label {
  position: relative;
  cursor: pointer;
}

.rating-options input:focus-visible + span {
  outline: 3px solid #737373;
  outline-offset: 4px;
}

.filter-mobile-button:hover {
  background: #333333;
}

.catalog-loading::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 2px solid #e8e8e8;
  border-top-color: #171717;
  border-radius: 50%;
  animation: restooSpin .7s linear infinite;
}

.restaurant-socials a:hover,
.expert-socials a:hover,
.article-share button:hover {
  background: #171717;
  color: #fff;
}

.restaurant-anchor-nav a:hover {
  background: #f2f2f2;
  color: #171717;
}

.restaurant-anchor-nav a.is-active,
.restaurant-anchor-nav a[aria-current=true],
.restaurant-anchor-nav a[aria-current=location] {
  background: #171717;
  color: #fff;
}

.form-message:empty {
  display: none;
}

.award-archive-card a:hover {
  background: #fafafa;
}

.favorite-button.is-active:hover {
  background: #171717;
  color: #fff;
}

.toggle-row + .toggle-row {
  border-top: 1px solid #e8e8e8;
}

@media (max-width: 1180px) {
  .primary-nav__list {
    gap: 1px;
  }

  .primary-nav a {
    font-size: 14px;
    padding: 11px 10px;
  }

  .region-trigger {
    display: none;
  }

  .home-hero__inner {
    gap: 20px;
  }

  .home-hero__visual {
    transform: none;
    transform-origin: center;
    display: contents;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    min-height: 76px;
  }

  .primary-nav,
  .header-choose {
    display: none;
  }

  .region-trigger {
    display: flex;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .home-hero {
    padding-top: 124px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0,1fr) 205px;
  }

  .home-hero__copy {
    text-align: left;
    padding: 28px;
  }

  .home-hero__copy > p,
  .home-hero h1 {
    margin-inline: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .home-hero__visual {
    width: auto;
    min-height: 0;
    margin-inline: auto;
    display: contents;
    margin: 0;
    transform: none;
  }

  .quick-finder {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .quick-finder .restoo-button {
    grid-column: 1 / -1;
  }

  .restaurant-grid,
  .restaurant-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-split {
    gap: 30px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    position: fixed;
    z-index: 2200;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(390px,92vw);
    overflow: auto;
    border: 0;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 20px 80px rgba(0,0,0,.2);
    transform: translateX(-105%);
    transition: transform .18s;
    padding-top: env(safe-area-inset-top,0px);
    padding-bottom: env(safe-area-inset-bottom,0px);
    background: #fff;
    overscroll-behavior: contain;
  }

  .catalog-filters.is-open {
    transform: none;
  }

  .catalog-filters__header button,
  .filter-mobile-button {
    display: flex;
  }

  .catalog-results .restaurant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-content-layout {
    grid-template-columns: minmax(0,1fr) 260px;
  }

  .restaurant-hero {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .restaurant-hero__content {
    padding: 25px;
  }

  .expert-profile-hero__inner {
    grid-template-columns: minmax(240px,300px) minmax(0,1fr);
    gap: 28px;
  }

  .event-grid--archive,
  .award-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-method-note {
    grid-template-columns: 1fr 1.4fr;
  }

  .rating-method-note > a {
    grid-column: 1 / -1;
  }

  .catalog-filters__header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
  }

  .catalog-filter-actions {
    padding-bottom: 24px;
  }
}

@media (max-width: 780px) {
  :root {
    --restoo-radius: 26px;
    --restoo-radius-lg: 28px;
    --restoo-header-height: 68px;
  }

  .restoo-container {
    width: min(var(--restoo-container),calc(100% - 36px));
  }

  .admin-bar .site-header,
  .admin-bar .site-header.is-scrolled {
    top: 54px;
  }

  .site-header {
    top: 8px;
  }

  .site-header__inner {
    gap: 9px;
    padding: 9px 12px 9px 17px;
    border-radius: 999px;
    min-height: 68px;
  }

  .site-logo,
  .site-logo img,
  .site-logo .custom-logo {
    width: 118px;
  }

  .region-trigger {
    max-width: 130px;
    overflow: hidden;
  }

  .region-trigger span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header__actions {
    gap: 5px;
  }

  .header-icon-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .site-header__actions > a.header-icon-button {
    display: none;
  }

  .home-hero {
    padding: 110px 0 0;
  }

  .home-hero h1 {
    font-size: 28px;
    max-width: 480px;
    line-height: 1.15;
    margin: 40px 0 12px;
  }

  .home-hero__copy > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-hero__visual {
    min-height: 0;
    display: contents;
    width: auto;
    margin: 0;
    transform: none;
  }

  .hero-tile--gold {
    width: auto;
    height: auto;
    grid-column: 1;
    grid-row: 2;
    inset: auto;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-tile--photo {
    width: auto;
    height: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
    inset: auto;
    min-height: 300px;
    border: 0;
    border-radius: 28px;
    transform: none;
  }

  .hero-tile--rating {
    width: auto;
    min-height: 0;
    grid-column: 2;
    grid-row: 2;
    inset: auto;
    padding: 22px 20px;
    border-radius: 24px;
    gap: 8px;
  }

  .hero-tile--rating strong {
    font-size: 38px;
  }

  .finder-card {
    padding: 23px 20px;
    border-radius: 26px;
  }

  .finder-card__heading {
    display: block;
  }

  .finder-card__heading > p {
    margin-top: 8px;
    text-align: left;
  }

  .quick-finder {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .quick-finder .restoo-button {
    grid-column: 1 / -1;
  }

  .home-section {
    padding-block: 25px;
  }

  .section-heading {
    align-items: center;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .award-story {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 28px;
  }

  .editorial-split {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .home-business {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 25px;
    gap: 22px;
    margin-block: 28px;
    border-radius: 26px;
  }

  .home-business__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-hero .restoo-container {
    display: block;
  }

  .catalog-name-search {
    min-width: 0;
    margin-top: 20px;
  }

  .catalog-toolbar {
    align-items: center;
  }

  .catalog-toolbar__right {
    align-items: center;
    flex-direction: row;
  }

  .restaurant-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
  }

  .restaurant-hero__media {
    min-height: 330px;
    border-radius: 23px;
  }

  .restaurant-content-layout {
    grid-template-columns: 1fr;
    padding-block: 22px 38px;
    gap: 20px;
  }

  .restaurant-gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: 260px 150px;
  }

  .restaurant-gallery a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .restaurant-sidebar {
    grid-row: auto;
  }

  .restaurant-anchor-nav {
    top: 88px;
    border-radius: 999px;
  }

  .admin-bar .restaurant-anchor-nav {
    top: 134px;
  }

  .mobile-sticky-actions {
    position: fixed;
    z-index: 900;
    right: 18px;
    bottom: calc(14px + env(safe-area-inset-bottom,0px));
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 11px 14px;
    border-top: 1px solid var(--restoo-line);
    background: rgba(35,35,35,.97);
    backdrop-filter: blur(16px);
    max-width: 530px;
    margin: 0 auto;
    min-height: 66px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-sticky-actions > a:first-child {
    margin-right: auto;
    font-weight: 400;
    min-width: 0;
    color: #fff;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .restaurant-page {
    padding-bottom: calc(100px + env(safe-area-inset-bottom,0px));
    padding-top: 110px;
  }

  .expert-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .verification-explainer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expert-profile-hero__inner {
    grid-template-columns: minmax(0,1fr);
    gap: 24px;
  }

  .expert-profile-hero__photo {
    width: min(390px, 100%);
  }

  .expert-profile-layout {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .expert-profile-sidebar {
    grid-row: auto;
  }

  .archive-filter-bar form {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid--news .article-card:nth-child(1) {
    grid-column: auto;
  }

  .article-grid--news .article-card:nth-child(1) .article-card__media {
    aspect-ratio: 1.38;
  }

  .event-detail {
    grid-template-columns: 1fr;
  }

  .event-detail__media {
    min-height: 330px;
  }

  .rating-method-note {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .rating-method-note > a {
    grid-column: auto;
  }

  .taxonomy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body {
    font-size: 16px;
  }

  .restoo-ad-slot {
    width: min(var(--restoo-container),calc(100% - 36px));
  }

  .home-hero__inner {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: auto auto;
    gap: 14px;
    min-height: 0;
  }

  .home-hero__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 300px;
    padding: 23px;
    border-radius: 28px;
  }

  .hero-tile--gold span {
    font-size: 16px;
  }

  .hero-tile--gold strong {
    font-size: 20px;
    line-height: 1.3;
  }

  .finder-card__heading h2 {
    font-size: 22px;
  }

  .home-finder {
    margin-top: 16px;
    margin-bottom: 22px;
  }

  .award-story__intro h2,
  .home-business h2 {
    font-size: 25px;
  }

  .catalog-hero {
    padding: 115px 0 22px;
  }

  .catalog-hero h1 {
    font-size: 29px;
  }

  .catalog-map #restoo-map {
    min-height: 480px;
  }

  .restaurant-gallery a {
    border-radius: 20px;
  }

  .mobile-sticky-actions .restoo-button {
    flex-shrink: 0;
    min-height: 43px;
    padding: 12px 18px;
    border: 0;
    background: #fff;
    color: #171717;
    font-size: 14px;
  }

  .mobile-sticky-actions .restoo-button:hover {
    background: #eaeaea;
  }

  .restoo-toast {
    bottom: calc(105px + env(safe-area-inset-bottom,0px));
    border-radius: 22px;
  }

  .restoo-dialog {
    align-items: end;
    padding: 25px 0 0;
  }

  .restoo-dialog__backdrop {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .restoo-dialog__panel {
    width: 100%;
    max-height: calc(100dvh - 35px - env(safe-area-inset-top,0px));
    padding: 26px 22px calc(28px + env(safe-area-inset-bottom,0px));
    border-radius: 25px 25px 0 0;
  }

  .restoo-dialog__panel h2 {
    font-size: 21px;
  }

  .expert-profile-hero {
    padding: 115px 0 25px;
  }

  .expert-profile-hero h1 {
    font-size: 30px;
  }

  .archive-hero,
  .event-page,
  .award-page,
  .single-editorial,
  .restoo-shell {
    padding-top: 115px;
  }

  .archive-hero h1,
  .archive-heading h1,
  .page-hero h1 {
    font-size: 29px;
  }

  .article-header h1,
  .article-header h2,
  .event-detail h1 {
    font-size: 30px;
  }

  .content-panel,
  .sidebar-card {
    border-radius: 26px;
  }

  .restaurant-card,
  .article-card,
  .expert-card,
  .event-card {
    padding: 6px;
    border-radius: 23px;
  }

  .restaurant-card__media,
  .article-card__media,
  .expert-card__media,
  .event-card__media {
    border-radius: 18px;
  }

  .region-manual input,
  .quick-finder select,
  .price-range input,
  .archive-filter-bar select,
  .review-form input:not([type=checkbox]),
  .review-form select,
  .claim-form input {
    min-height: 48px;
  }

  .restaurant-grid--home {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-right: -18px;
    padding-right: 18px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .restaurant-grid--home::-webkit-scrollbar {
    display: none;
  }

  .restaurant-grid--home .restaurant-card {
    flex: 0 0 76%;
    scroll-snap-align: start;
    padding: 8px;
    border-radius: 28px;
  }

  .restaurant-grid--home .restaurant-card__media {
    height: 205px;
    aspect-ratio: auto;
    border-radius: 23px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .region-trigger {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .text-link {
    justify-content: flex-start;
  }

  .home-hero__visual {
    min-height: 0;
    display: contents;
  }

  .hero-tile--gold {
    width: auto;
    height: auto;
    padding: 20px 18px;
    border-radius: 24px;
    inset: auto;
  }

  .hero-tile--gold strong {
    font-size: 18px;
  }

  .hero-tile--photo {
    width: auto;
    height: 100%;
    border-width: 7px;
    border-radius: 28px;
    inset: auto;
    min-height: 300px;
    border: 0;
  }

  .hero-tile--rating {
    right: 0;
    width: auto;
    min-height: 0;
    padding: 20px 18px;
    border-radius: 24px;
    inset: auto;
  }

  .hero-tile--rating span {
    font-size: 14px;
  }

  .hero-tile--rating small {
    font-size: 12px;
  }

  .hero-tile--rating strong {
    font-size: 36px;
  }

  .restaurant-grid,
  .restaurant-grid--home,
  .catalog-results .restaurant-grid,
  .expert-grid,
  .expert-grid--archive,
  .article-grid,
  .article-grid--compact,
  .event-grid--archive,
  .award-archive-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section-heading .section-link,
  .section-heading__links {
    margin-top: 0;
  }

  .news-line {
    grid-template-columns: 80px minmax(0,1fr);
    gap: 13px;
    padding: 19px 17px;
  }

  .award-big {
    grid-template-columns: 43px minmax(0,1fr);
    padding: 21px 18px;
  }

  .award-big > span {
    width: 43px;
    height: 43px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
  }

  .restoo-dialog__panel {
    padding: 26px 22px calc(28px + env(safe-area-inset-bottom,0px));
    border-radius: 25px 25px 0 0;
  }

  .global-search-form {
    display: flex;
    border-radius: 999px;
  }

  .global-search-form input {
    min-height: 46px;
    width: 0;
    padding: 10px;
  }

  .catalog-hero h1 {
    font-size: 29px;
  }

  .catalog-toolbar {
    display: block;
  }

  .catalog-toolbar__right {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .catalog-toolbar select {
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  .restaurant-hero__media {
    min-height: 290px;
  }

  .restaurant-gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: auto;
  }

  .restaurant-gallery a {
    grid-column: auto;
    aspect-ratio: 1.2;
  }

  .restaurant-gallery a:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.45;
  }

  .restaurant-hero__content {
    padding: 23px 18px;
  }

  .restaurant-hero h1 {
    font-size: 30px;
  }

  .restaurant-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .content-panel {
    padding: 23px 20px;
    border-radius: 26px;
  }

  .restaurant-awards > div,
  .award-detail-grid {
    grid-template-columns: 1fr;
  }

  .review-criteria,
  .form-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
  }

  .rating-bars > div {
    grid-template-columns: 82px minmax(0,1fr) 28px;
    gap: 9px;
  }

  .archive-filter-bar form {
    grid-template-columns: 1fr;
  }

  .expert-profile-hero h1 {
    font-size: 29px;
  }

  .article-header h1,
  .article-header h2 {
    font-size: 29px;
  }

  .article-header > p {
    font-size: 15px;
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: row;
    gap: 8px 12px;
    flex-wrap: wrap;
  }

  .event-detail__content {
    padding: 23px 18px;
  }

  .award-page__article > header {
    padding: 28px 23px;
  }

  .ranking-row {
    grid-template-columns: 42px 70px minmax(0,1fr);
    gap: 9px;
    padding: 13px;
    border-radius: 24px;
  }

  .ranking-row__position::before {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
  }

  .ranking-row__body {
    grid-template-columns: minmax(0,1fr);
    gap: 10px;
  }

  .ranking-row h2 {
    font-size: 18px;
  }

  .ranking-row p {
    display: none;
  }

  .ranking-row__score strong {
    font-size: 26px;
  }

  .search-result {
    grid-template-columns: 86px minmax(0,1fr);
    gap: 14px;
  }

  .search-result h2 {
    font-size: 18px;
  }

  .search-result p {
    display: none;
  }

  .restoo-ad__link {
    grid-template-columns: 1fr;
  }

  .restoo-ad__media {
    min-height: 180px;
  }

  .home-hero .restoo-button {
    min-height: 53px;
    padding: 14px 16px;
  }

  .quick-finder {
    grid-template-columns: minmax(0,1fr);
  }

  .quick-finder .restoo-button {
    grid-column: auto;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .news-line:first-child {
    padding-top: 19px;
  }

  .news-line h3 {
    font-size: 16px;
  }

  .global-search-form .restoo-button {
    flex-shrink: 0;
    padding: 13px 15px;
  }

  .restaurant-actions .restoo-button {
    flex: 1 1 145px;
  }

  .restaurant-card,
  .article-card,
  .expert-card,
  .event-card {
    padding: 6px;
    border-radius: 23px;
  }

  .restaurant-card__media,
  .article-card__media,
  .expert-card__media,
  .event-card__media {
    border-radius: 18px;
  }

  .content-panel > h2,
  .panel-heading h2 {
    font-size: 23px;
  }

  .review-form {
    padding: 19px 16px;
  }

  .stream-article .article-header h2 {
    font-size: 27px;
  }

  .news-article > .prose-content,
  .stream-article > .prose-content,
  .page-article > .prose-content {
    padding: 23px 20px;
    border-radius: 26px;
  }

  .event-detail h1 {
    font-size: 29px;
  }

  .ranking-row__score {
    justify-content: start;
    text-align: left;
    width: fit-content;
  }

  .ranking-row__score small {
    font-size: 12px;
  }
}

/* Поля, клавиатурный фокус и состояние нажатия. */
.region-manual input:hover,
.quick-finder select:hover,
.price-range input:hover,
.review-form input:not([type=checkbox]):hover,
.review-form select:hover,
.review-form textarea:hover,
.claim-form input:hover,
.archive-filter-bar select:hover,
.review-reply-form textarea:hover { border-color:#cecece; }
.region-manual input:focus,
.quick-finder select:focus,
.price-range input:focus,
.review-form input:not([type=checkbox]):focus,
.review-form select:focus,
.review-form textarea:focus,
.claim-form input:focus,
.archive-filter-bar select:focus,
.review-reply-form textarea:focus { border-color:#6f6f6f; background:#fff; }
.filter-mobile-button:active,
.mobile-region-button:active,
.view-switch button:active,
.article-share button:active { transform:translateY(1px); }
.review-form .consent-check a { text-decoration:underline; text-underline-offset:3px; }
.restoo-dialog__panel p { font-size:15px; line-height:1.75; color:var(--restoo-muted); }
.restoo-dialog__panel .dialog-note { font-size:14px; }
.restoo-dialog__panel .form-message { font-size:14px; }
.restoo-dialog__panel .form-message.is-error,
.restoo-dialog__panel .form-message.is-success { color:#171717; }
.restoo-dialog__panel .region-suggestion { font-size:26px; color:#171717; }
.region-manual > div { min-width:0; }
.region-manual > div > .restoo-button { flex-shrink:0; }
.news-line > div,.news-line > article,.event-card__body > div,
.ranking-row__body,.search-result > div,.footer-columns > div,
.footer-bottom > div,.finder-card__heading > div,.event-detail__content > div { min-width:0; }
.restaurant-hero__media > .restoo-awards { right:18px; }
.prose-content :where(img,video,iframe) { max-width:100%; border-radius:18px; }
.prose-content :where(pre,.wp-block-table) { max-width:100%; overflow-x:auto; }
.prose-content pre { padding:18px; border-radius:18px; background:#f2f2f2; font-size:14px; }
.prose-content table { width:100%; border-collapse:collapse; font-size:14px; line-height:1.6; }
.prose-content th,.prose-content td { padding:13px 12px; border-bottom:1px solid #e8e8e8; text-align:left; }
.prose-content th { font-weight:500; background:#f7f7f7; }
.prose-content figcaption,.prose-content .wp-caption-text { color:#666666; font-size:12px; line-height:1.6; }
.prose-content .wp-block-button__link { min-height:46px; padding:13px 20px; border:0; border-radius:999px; background:#171717; color:#fff; font-size:14px; font-weight:500; line-height:1.3; text-decoration:none; transition:background .18s,transform .18s; }
.prose-content .wp-block-button__link:hover { background:#333333; }
.prose-content .wp-block-button__link:active { transform:translateY(1px); }
@keyframes restooSpin { to { transform:rotate(360deg); } }

/* Панель WordPress сохраняет свою высоту и не перекрывает меню. */
@media (min-width:781px) and (max-width:782px) {
 .admin-bar .site-header { top:64px; }
 .admin-bar .site-header.is-scrolled { top:54px; }
 .admin-bar .restaurant-anchor-nav { top:152px; }
}
@media (max-width:600px) {
 .admin-bar .site-header.is-scrolled { top:8px; }
 .admin-bar .site-header.is-scrolled ~ .site-main .restaurant-anchor-nav { top:88px; }
}
@media (min-width:1450px) {
 .home-hero__inner { grid-template-columns:minmax(0,1fr) 245px; gap:26px; }
 .home-hero__copy { min-height:360px; padding:34px; }
 .hero-tile--photo { min-height:360px; }
}
@media (max-width:370px) {
 .restoo-container,.restoo-ad-slot { width:calc(100% - 32px); }
 .site-header__inner { padding-left:14px; padding-right:10px; }
 .site-logo,.site-logo img,.site-logo .custom-logo { width:105px; }
 .home-hero__copy { min-height:305px; padding:22px 20px; }
 .home-hero h1 { font-size:27px; }
 .hero-tile--photo { min-height:305px; }
 .hero-tile--gold,.hero-tile--rating { padding:19px 16px; }
 .hero-tile--gold strong { font-size:17px; }
 .home-hero .restoo-button { padding:14px 12px; }
 .review-criteria,.form-grid { grid-template-columns:minmax(0,1fr); }
 .review__head { grid-template-columns:36px minmax(0,1fr) auto; gap:9px; }
 .review__avatar { width:36px; height:36px; }
 .review-reply { margin-left:10px; }
 .restaurant-hero__content { padding:21px 14px; }
 .restaurant-hero h1 { font-size:27px; }
 .restaurant-hero__rating { gap:12px; }
 .rating-orbit { width:70px; height:70px; padding-top:14px; }
 .ranking-row { grid-template-columns:36px 58px minmax(0,1fr); padding:11px; gap:8px; }
 .ranking-row__position::before { width:34px; height:34px; }
 .ranking-row h2 { font-size:16px; }
 .ranking-row__score small { font-size:12px; }
 .news-line { grid-template-columns:64px minmax(0,1fr); }
 .mobile-sticky-actions { left:12px; right:12px; gap:8px; padding:10px 12px; }
 .mobile-sticky-actions .restoo-button { padding:12px 14px; }
 .region-manual > div { flex-wrap:wrap; }
 .region-manual input { flex-basis:100%; }
 .region-manual > div > .restoo-button { width:100%; }
 .footer-columns { grid-template-columns:minmax(0,1fr); }
 .restoo-dialog__panel { padding-left:20px; padding-right:20px; }
}

@media (prefers-reduced-motion:reduce) {
 html { scroll-behavior:auto; }
 *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
 .restoo-reveal { opacity:1; transform:none; }
}

@media print {
 html,body { background:#fff; color:#171717; }
 .site-header,.site-footer,.mobile-menu,.mobile-sticky-actions,
 .restoo-dialog,.restoo-toast,.catalog-filters,.catalog-toolbar,
 .restaurant-anchor-nav,.favorite-button,.restoo-ad-slot,
 .reading-progress,.review-form,.claim-form,.article-share { display:none!important; }
 .restoo-container { width:100%; }
 .restoo-shell,.restaurant-page,.single-editorial,.event-page,
 .award-page,.archive-hero,.catalog-hero,.expert-profile-hero { padding:0; }
 .restaurant-content-layout,.expert-profile-layout,.catalog-layout { display:block; padding:0; }
 .content-panel,.sidebar-card,.restaurant-card,.article-card,.expert-card,
 .restaurant-hero,.event-detail { box-shadow:none; break-inside:avoid; }
 .restaurant-hero__media > img,.event-detail__media img { position:static; height:auto; }
 .restoo-reveal { opacity:1; transform:none; }
}

@media (max-width:370px) {
 .restaurant-grid--home { margin-right:-16px; padding-right:16px; }
 .restaurant-grid--home .restaurant-card { flex-basis:83%; }
 .restaurant-grid--home .restaurant-card__media { height:192px; }
}
