

:root {
  --c-wine-950: #070103;
  --c-wine-900: #120306;
  --c-wine-850: #1d050a;
  --c-wine-800: #2d0710;
  --c-wine-700: #440b17;
  --c-wine-600: #621021;
  --c-wine-100: #f5e4e7;
  --c-wine-50:  #faf1f3;

  --c-gold-700: #8a6c25;
  --c-gold-600: #ab8634;
  --c-gold-500: #c59f4e;
  --c-gold-400: #dcbe7c;
  --c-gold-300: #eed8aa;
  --c-gold-100: #fbf5e7;

  --c-bg-light: #fbf9f5;
  --c-bg-card:  #ffffff;
  --c-paper-100: #f4efe6;
  --c-paper-200: #e8e0d2;
  --c-paper-300: #d6cbba;

  --c-text-main: #140d0c;
  --c-text-muted: #2e2321;
  --c-text-light: #f5eee4;

  --font-heading: 'Bellota', cursive, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', 'Marck Script', cursive, serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(7, 1, 3, 0.06);
  --shadow-hover: 0 12px 30px rgba(7, 1, 3, 0.1);

  --trans: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: #f7f1e6;
  background-image: url('../assets/images/bg-linen-texture.jpg');
  background-repeat: repeat;
  background-size: 340px auto;
  color: var(--c-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-wine-900);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

p {
  color: var(--c-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-paper-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--trans);
}

.site-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.site-navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 92px;
}

.nav-left-col {
  display: flex;
  align-items: center;
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
}

.nav-item-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-wine-900);
  letter-spacing: 0.03em;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-item-link:hover {
  color: var(--c-gold-600);
}

.brand-center-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.brand-logo-img:hover {
  opacity: 0.88;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: nowrap;
}

.nav-phone-link {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--c-wine-900);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 4px 6px;
}

.nav-phone-link:hover {
  color: var(--c-gold-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-gold-fill {
  background: linear-gradient(135deg, var(--c-gold-400), var(--c-gold-600));
  color: var(--c-wine-950);
  box-shadow: 0 3px 12px rgba(197, 159, 78, 0.25);
}

.btn-gold-fill:hover {
  background: linear-gradient(135deg, var(--c-gold-300), var(--c-gold-500));
}

.btn-gold-outline {
  background: rgba(7, 1, 3, 0.4);
  color: var(--c-gold-300);
  border: 1px solid rgba(220, 190, 124, 0.4);
}

.btn-gold-outline:hover {
  background: rgba(220, 190, 124, 0.15);
  border-color: var(--c-gold-400);
  color: #ffffff;
}

.btn-wine {
  background: var(--c-wine-800);
  color: #ffffff;
}

.btn-wine:hover {
  background: var(--c-wine-700);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-wine-900);
  border: 1px solid var(--c-paper-300);
}

.btn-outline-dark:hover {
  border-color: var(--c-wine-800);
  background: #ffffff;
}

.btn-yandex-delivery {
  background: #ffcc00;
  color: #111111;
  font-weight: 700;
}

.btn-yandex-delivery:hover {
  background: #ffd633;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  color: #ffffff;
  font-size: 1.4rem;
}

.hero-centerpiece-section {
  position: relative;
  background-color: var(--c-wine-950);
  background-image: 
    linear-gradient(180deg, rgba(7, 1, 3, 0.7) 0%, rgba(18, 3, 6, 0.6) 45%, rgba(7, 1, 3, 0.95) 100%),
    url('../assets/images/phon.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 0 0;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.hero-inner-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-headline-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  max-width: 980px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-headline-title em {
  font-style: normal;
  color: var(--c-gold-400);
}

.hero-headline-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-bottom-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 12;
}

.hero-bottom-actions .btn {
  position: relative;
  overflow: hidden;
  padding: 12px 32px;
  min-width: 210px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.hero-bottom-actions .btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.hero-bottom-actions .btn:hover::before {
  left: 140%;
  opacity: 1;
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.25s ease;
}

.hero-bottom-actions .btn-gold-fill {
  background: linear-gradient(135deg, #e5ca89 0%, #c59f4e 50%, #9a762b 100%);
  color: #120306;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 18px rgba(197, 159, 78, 0.3);
}

.hero-bottom-actions .btn-gold-fill:hover {
  background: linear-gradient(135deg, #f5dfa8 0%, #d8b261 50%, #ad8534 100%);
  box-shadow: 0 0 26px rgba(220, 190, 124, 0.65), 0 0 10px rgba(255, 255, 255, 0.4);
  border-color: #ffffff;
}

.hero-bottom-actions .btn-gold-outline {
  background: rgba(18, 3, 6, 0.6);
  color: var(--c-gold-300);
  border: 1px solid rgba(220, 190, 124, 0.45);
  backdrop-filter: blur(8px);
}

.hero-bottom-actions .btn-gold-outline:hover {
  background: rgba(220, 190, 124, 0.22);
  border-color: #ffd88a;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(197, 159, 78, 0.45), inset 0 0 12px rgba(220, 190, 124, 0.2);
}

.hero-dish-half-cut-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 15px;
  height: 380px;
  overflow: hidden;
}

.hero-dish-big-glow {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220, 190, 124, 0.2) 0%, rgba(98, 16, 33, 0.25) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(45px);
}

.hero-dish-big-img {
  width: min(840px, 95vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.95));
  position: relative;
  z-index: 5;
}

.about-story-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
  border-bottom: 1px solid rgba(197, 159, 78, 0.2);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-label-tag {
  display: inline-block;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7d5000;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-story-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #140307;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-story-desc {
  font-size: 1.08rem;
  color: #0f0504;
  font-weight: 650;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 24px;
}

.about-script-phrase {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 600;
  color: #4a0c17;
  margin-bottom: 28px;
  display: block;
}

.btn-about-action {
  background: transparent;
  color: #1a060a;
  border: 1.5px solid #4a0c17;
  padding: 12px 28px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--trans);
}

.btn-about-action:hover {
  background: #4a0c17;
  color: #ffffff;
}

.about-single-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-single-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.08));
}

.categories-header-strip {
  text-align: center;
  margin-bottom: 32px;
}

.categories-section-heading {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-wine-900);
  font-weight: 700;
}

.categories-section-heading::before,
.categories-section-heading::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--c-gold-500);
}

.categories-icon-nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--c-paper-200);
  padding-bottom: 12px;
}

.cat-icon-tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 12px;
  position: relative;
  transition: var(--trans);
  color: var(--c-text-muted);
}

.cat-icon-svg-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c6e28;
  transition: var(--trans);
  pointer-events: none;
}

.cat-icon-svg-box svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-icon-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

.cat-icon-tab-btn:hover {
  color: var(--c-wine-900);
}

.cat-icon-tab-btn:hover .cat-icon-svg-box {
  color: var(--c-wine-700);
}

.cat-icon-tab-btn.active {
  color: var(--c-wine-800);
}

.cat-icon-tab-btn.active .cat-icon-svg-box {
  color: var(--c-wine-700);
}

.cat-icon-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--c-wine-700);
}

.site-section {
  padding: 80px 0;
  position: relative;
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.georgian-decor-phrase {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: #b87800 !important;
  display: block;
  margin: -14px auto 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap !important;
  text-align: center;
  width: 100%;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7d5000;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: var(--c-wine-900);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.section-subtext {
  font-size: 1rem;
  color: #1f1514;
  font-weight: 600;
  line-height: 1.6;
}

.menu-search-bar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.search-field-wrap {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.menu-search-input {
  width: 100%;
  padding: 11px 18px 11px 42px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--c-paper-200);
  font-size: 0.88rem;
  color: var(--c-text-main);
  transition: var(--trans);
}

.menu-search-input:focus {
  border-color: var(--c-wine-700);
}

.search-icon-symbol {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .menu-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .menu-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.dish-gastro-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(220, 190, 124, 0.38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-gastro-card:hover {
  box-shadow: 0 16px 36px rgba(197, 159, 78, 0.18);
  border-color: var(--c-gold-500);
}

.dish-photo-frame {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #140407;
}

.dish-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dish-gastro-card:hover .dish-photo {
  transform: scale(1.04);
}

.dish-badge-wrapper {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.dish-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  line-height: 1;
}

.dish-tag-badge.badge-hit {
  background: #480c18;
  color: #ffffff;
  border: 1px solid rgba(220, 190, 124, 0.45);
  border-radius: 8px;
}

.dish-tag-badge.badge-hit svg {
  color: #dcb360;
}

.dish-tag-badge.badge-leader {
  background: linear-gradient(135deg, #d89f38 0%, #b87c1c 100%);
  color: #120306;
  border-radius: 20px;
}

.dish-tag-badge.badge-new {
  background: #360710;
  color: #ffffff;
  border: 1px solid rgba(220, 190, 124, 0.35);
  border-radius: 20px;
}

.dish-tag-badge.badge-new svg {
  color: #fca5a5;
}

.dish-tag-badge.badge-gold {
  background: #1c050a;
  color: var(--c-gold-300);
  border: 1px solid var(--c-gold-500);
  border-radius: 20px;
}

.dish-fav-heart-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.dish-fav-heart-btn:hover {
  background: rgba(197, 159, 78, 0.35);
  border-color: var(--c-gold-300);
  color: var(--c-gold-300);
}

.dish-fav-heart-btn.active {
  background: #e11d48;
  border-color: #e11d48;
  color: #ffffff;
}

.dish-fav-heart-btn.active svg {
  fill: #ffffff;
}

.dish-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 36px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.dish-wave-svg {
  display: block;
  width: 100%;
  height: 36px;
}

.dish-gastro-body {
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  background: #ffffff;
}

.dish-title-text {
  font-family: var(--font-heading);
  font-size: 1.34rem;
  color: #1a0808;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
  min-height: 2.5em;
}

.dish-desc-text {
  font-size: 0.85rem;
  color: #6e655f;
  line-height: 1.5;
  margin-bottom: 22px;
  flex-grow: 1;
}

.dish-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.dish-price-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a0808;
  line-height: 1;
  letter-spacing: 0.02em;
}

.dish-quick-order-pill {
  background: #480c18;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(72, 12, 24, 0.2);
}

.dish-quick-order-pill:hover {
  background: #681424;
  box-shadow: 0 4px 16px rgba(72, 12, 24, 0.35);
}

.dish-quick-order-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.delivery-ribbon-bar {
  margin-top: 40px;
  background: var(--c-wine-900);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(197, 159, 78, 0.25);
}

.delivery-text-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
}

.delivery-text-wrap p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.delivery-buttons-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.two-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.meal-set-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-paper-200);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.meal-photo-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #0d0205;
}

.meal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.meal-tag-ribbon {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(7, 1, 3, 0.88);
  color: var(--c-gold-300);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(197, 159, 78, 0.35);
  backdrop-filter: blur(10px);
}

.meal-body-content {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.meal-time-hint {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7d5000;
  font-weight: 800;
  margin-bottom: 8px;
}

.meal-title-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--c-wine-900);
  font-weight: 700;
  margin-bottom: 12px;
}

.meal-body-content p {
  font-size: 1.02rem !important;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.meal-body-content .btn-wine {
  margin-top: auto;
  padding: 13px 28px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.meal-items-menu {
  list-style: none;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meal-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--c-paper-200);
  font-size: 0.88rem;
}

.meal-item-name {
  color: var(--c-text-main);
  font-weight: 500;
}

.meal-item-gram {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.promos-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promo-banner-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--c-paper-200);
  background: #ffffff;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.promo-banner-card:hover {
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-hover);
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.promo-banner-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #ffffff;
  border-top: 1px solid var(--c-paper-200);
}

.promo-action-note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.promo-action-btn {
  background: var(--c-wine-50);
  color: var(--c-wine-800);
  border: 1px solid var(--c-wine-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.promo-action-btn:hover {
  background: var(--c-wine-800);
  color: #ffffff;
}

.events-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 36px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--c-paper-200);
  border-bottom: 1px solid var(--c-paper-200);
}

.events-slider-track {
  position: relative;
  width: 100%;
  height: 600px;
  background: #0d0205;
  overflow: hidden;
}

@media (max-width: 768px) {
  .events-slider-track {
    height: 460px;
  }
}

.events-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.events-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-blur-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(32px) brightness(0.38) saturate(1.2);
  transform: scale(1.15);
  z-index: 1;
  pointer-events: none;
}

.events-slide img.slide-main-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.7));
  border-radius: 4px;
}

.events-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 1, 3, 0.88) 100%);
  color: #ffffff;
  padding: 28px 30px 48px;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: 500;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 1, 3, 0.45);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--c-wine-800);
  border-color: var(--c-gold-300);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--trans);
}

.slider-dot.active {
  background: var(--c-gold-400);
  transform: scale(1.25);
}

.events-capabilities-block {
  margin-top: 40px;
}

.events-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .events-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.capability-item {
  background: #ffffff;
  border: 1px solid var(--c-paper-200);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  text-align: center;
}

.capability-item h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--c-wine-900);
  margin-bottom: 8px;
}

.capability-item p {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.events-cta-row {
  text-align: center;
  margin-top: 24px;
}

.contacts-map-section {
  padding: 90px 0 0;
  background: var(--c-paper-100);
  position: relative;
}

.contacts-interactive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.contact-luxury-card {
  background: #ffffff;
  border: 1px solid var(--c-paper-200);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--trans);
}

.contact-luxury-card:hover {
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-hover);
}

.contact-card-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--c-paper-100);
  color: var(--c-wine-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-bubble svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-category-pill {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7d5000;
  font-weight: 800;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--c-wine-900);
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-card-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.contact-phone-bignum {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-wine-900);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  transition: var(--trans);
}

.contact-phone-bignum:hover {
  color: var(--c-gold-600);
}

.contact-phone-subnum {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.contact-phone-subnum:hover {
  color: var(--c-wine-800);
}

.contact-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--c-paper-200);
}

.contact-hours-days {
  color: var(--c-text-muted);
}

.contact-hours-val {
  font-weight: 600;
  color: var(--c-wine-900);
}

.contact-status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.contact-status-live.closed {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.contact-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-action-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  background: var(--c-paper-100);
  color: var(--c-wine-900);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--trans);
  border: 1px solid transparent;
}

.social-action-tile:hover {
  background: var(--c-wine-800);
  color: #ffffff;
}

.social-action-tile.wa:hover {
  background: #25d366;
  color: #ffffff;
}

.social-action-tile.vk:hover {
  background: #0077ff;
  color: #ffffff;
}

.social-action-tile.ig:hover {
  background: #e1306c;
  color: #ffffff;
}

.btn-card-action {
  width: 100%;
  padding: 10px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  background: var(--c-wine-50);
  color: var(--c-wine-800);
  border: 1px solid var(--c-wine-100);
  transition: var(--trans);
}

.btn-card-action:hover {
  background: var(--c-wine-800);
  color: #ffffff;
}

.full-width-map-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 460px;
  border-top: 1px solid var(--c-paper-200);
}

.full-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.main-footer {
  background: #ffffff;
  color: var(--c-text-muted);
  padding: 55px 0 35px;
  border-top: 1px solid var(--c-paper-200);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand-wrap {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.footer-logo-img:hover {
  opacity: 0.85;
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  margin-top: 2px;
  max-width: 300px;
  line-height: 1.5;
}

.footer-col-head {
  color: var(--c-wine-900);
  font-size: 0.86rem;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-list a, .footer-nav-list span {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  transition: var(--trans);
}

.footer-nav-list a:hover {
  color: var(--c-wine-900);
}

.admin-login-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.74rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}

.admin-login-link:hover {
  color: var(--c-gold-300);
}

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 1, 3, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-gold-600);
  padding: 8px 12px;
  z-index: 999;
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mobile-bar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  border-radius: var(--radius-xs);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 500;
  text-align: center;
}

.mobile-bar-link.cta-highlight {
  background: var(--c-gold-500);
  color: var(--c-wine-950);
  font-weight: 600;
}

.modal-layer {
  position: fixed;
  inset: 0;
  background: rgba(7, 1, 3, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}

.modal-layer.active {
  opacity: 1;
  visibility: visible;
}

.modal-layer.active .modal-window {
  transform: translateY(0);
}

.modal-window {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-hover);
  transform: translateY(16px);
  transition: var(--trans);
}

.modal-close-trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-paper-100);
  color: var(--c-text-main);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans);
}

.modal-close-trigger:hover {
  background: var(--c-wine-800);
  color: #ffffff;
}

.contact-hub-modal {
  max-width: 480px;
  padding: 32px 26px 26px;
}

.contact-hub-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-hub-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-700);
  margin-bottom: 6px;
}

.contact-hub-modal .modal-head-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--c-wine-900);
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-hub-modal .modal-head-sub {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.modal-phones-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.modal-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--c-paper-100);
  border: 1px solid var(--c-paper-300);
  border-radius: var(--radius-sm);
  transition: var(--trans);
  color: var(--c-wine-900);
}

.modal-phone-card:hover {
  background: var(--c-wine-50);
  border-color: var(--c-gold-400);
}

.modal-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-wine-800);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-phone-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-phone-text {
  display: flex;
  flex-direction: column;
}

.modal-phone-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  font-weight: 600;
}

.modal-phone-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-wine-900);
  line-height: 1.1;
}

.modal-socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

@media (max-width: 520px) {
  .modal-socials-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.modal-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  transition: var(--trans);
  text-align: center;
}

.modal-social-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.modal-social-btn.wa {
  background: #25d366;
}

.modal-social-btn.wa:hover {
  background: #1eb956;
}

.modal-social-btn.vk {
  background: #0077ff;
}

.modal-social-btn.vk:hover {
  background: #0066dc;
}

.modal-social-btn.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.modal-social-btn.ig:hover {
  opacity: 0.9;
}

.modal-social-btn.yandex {
  background: #ffcc00;
  color: #120306;
}

.modal-social-btn.yandex:hover {
  background: #f0c000;
}

.modal-footer-info {
  background: var(--c-paper-100);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px dashed var(--c-paper-300);
}

.lightbox-window {
  max-width: 880px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.lightbox-img-el {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-xs);
}

.lightbox-text-caption {
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  font-size: 0.95rem;
}

.admin-window-size {
  max-width: 800px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--c-paper-200);
  margin-bottom: 16px;
  overflow-x: auto;
}

.admin-tab-btn {
  padding: 8px 14px;
  background: transparent;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--c-text-muted);
  cursor: pointer;
}

.admin-tab-btn.active {
  color: var(--c-wine-800);
  border-bottom-color: var(--c-wine-800);
  font-weight: 600;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.admin-table th, .admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--c-paper-200);
  text-align: left;
}

.admin-table th {
  background: var(--c-paper-100);
  color: var(--c-wine-900);
  font-weight: 600;
}

.admin-editable-input {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid var(--c-paper-200);
  border-radius: var(--radius-xs);
  background: #ffffff;
}

@media (max-width: 1100px) {
  .nav-links-list {
    gap: 14px;
  }

  .promos-banners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .site-navbar {
    background: #ffffff;
    height: 74px;
  }

  .site-navbar .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 74px !important;
    padding: 0 16px !important;
    gap: 8px !important;
    position: relative !important;
  }

  .nav-left-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 44px !important;
    order: 1 !important;
    position: static !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background: var(--c-paper-100);
    color: var(--c-wine-900);
    border: 1px solid var(--c-paper-300);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex-shrink: 0;
  }

  .brand-center-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    text-align: center !important;
    order: 2 !important;
    margin: 0 auto !important;
  }

  .brand-logo-img {
    height: 52px !important;
    max-width: 145px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .nav-right-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    order: 3 !important;
    position: static !important;
    transform: none !important;
    gap: 0 !important;
  }

  .nav-right-actions .btn-gold-fill {
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    border-radius: 20px !important;
  }

  .nav-phone-link {
    display: none !important;
  }

  .nav-links-list {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--c-paper-300);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-160%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 1000;
  }

  .nav-links-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item-link {
    font-size: 1.05rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--c-paper-100);
    display: block;
    width: 100%;
  }

  .hero-dish-half-cut-wrap {
    height: 300px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contacts-interactive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 48px !important;
    max-width: 130px !important;
  }

  .nav-right-actions .btn-gold-fill {
    padding: 7px 11px !important;
    font-size: 0.74rem !important;
  }

  .hero-centerpiece-section {
    padding: 40px 0 0;
    min-height: auto;
  }

  .hero-dish-half-cut-wrap {
    height: 200px;
    margin-top: 16px;
  }

  .hero-dish-big-img {
    width: 360px;
  }

  .about-single-img {
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
  }

  .two-cards-row {
    grid-template-columns: 1fr;
  }

  .promos-banners-grid {
    grid-template-columns: 1fr;
  }

  .categories-icon-nav {
    gap: 12px;
  }

  .cat-icon-tab-btn {
    padding: 6px 8px;
  }

  .cat-icon-svg-box {
    width: 36px;
    height: 36px;
  }

  .cat-icon-svg-box svg {
    width: 30px;
    height: 30px;
  }

  .contacts-interactive-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-tile.col-span-2 {
    grid-column: span 1;
  }

  .gallery-tile.row-span-2 {
    grid-row: span 1;
  }

  .georgian-decor-phrase {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    color: #b87800 !important;
    white-space: nowrap !important;
  }
}
