/* =========================================================
   IL CANTO — стили
   Палитра по скриншоту: тёмная шапка, золото, кремовый фон
   Шрифты: Playfair Display (заголовки) + Inter (текст)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black:       #2b1410;
  --black-soft:  #3d1f17;
  --gold:        #c9922a;
  --gold-light:  #e0b050;
  --gold-deep:   #9c6a15; /* тёмное золото для текста на светлом фоне — контраст 4.68:1 (WCAG AA) */
  --gold-deeper: #875a10; /* для мелкого текста (eyebrow, 11.5px) — держит AA даже на --cream-dark */
  --wine:        #8b3a1a;
  --wine-light:  #a85030;
  --cream:       #faf0de;
  --cream-dark:  #f3e8d2;
  --white:       #fffcf5;
  --text:        #2a1a0a;
  --muted:       #7a6245;
  --border:      #e0cfa8;
  --shadow:      0 8px 28px rgba(43,20,16, 0.13);
  --shadow-lg:   0 18px 48px rgba(43,20,16, 0.22);
  --radius:      4px;
  --transition:  0.22s ease;
  /* "Ночная" сторона IL CANTO — караоке-холл. Взято не абстрактно, а с реального
     сценического света на фото зала (см. assets/img/muzyka) — тёплый ресторан
     днём и холодный сценический свет ночью — это два акцента одного бренда. */
  --violet:      #4a3a82;
  --violet-deep: #241a4a;
  --violet-light:#9a85e0;
  --night-black: #130b26;
  --violet-peak: #362a63;
  --plum-mid:    #2c2130;
  --brown-deep:  #1f150f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream) url('../assets/img/fon.webp') top center / 100% auto repeat-y;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.sans { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   ШАПКА
   ========================================================= */
header.site-header {
  background: #2b1410;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,146,42,0.35);
}
.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  height: 68px;
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; display: block; }
.logo b { display: none; }
.logo small { display: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem; font-weight: 600; letter-spacing: 0.12em;
  color: #fff;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

nav.main-nav { display: flex; gap: 0; flex: 1; justify-content: center; }
nav.main-nav a {
  font-family: 'Inter', sans-serif;
  color: #d4c9b8;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--gold-light); background: rgba(201,146,42,0.1); }

.header-actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.header-phone-block { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; }
.header-phone {
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-reserve-small {
  font-family: 'Inter', sans-serif;
  background: var(--gold);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-reserve-small:hover { background: var(--gold-light); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--gold); display: block; }

@media (max-width: 980px) {
  nav.main-nav { display: none; }
  .burger { display: flex; }
  nav.main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #2b1410;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(201,146,42,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  nav.main-nav.mobile-open a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #d4c9b8;
    font-size: 0.9rem;
  }
  /* Скрываем телефон в шапке на мобильном, оставляем только кнопку брони */
  .header-phone-block { display: none; }
  .btn-reserve-small {
    display: inline-flex !important;
    align-items: center;
    font-size: 0.8rem;
    padding: 12px 16px;
    min-height: 44px;
  }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 14px; gap: 8px; }
  .logo img { height: 36px; }
  .logo-text { display: none; }
}

/* =========================================================
   КНОПКИ
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,146,42,0.4); }
.btn-wine { background: var(--wine); color: var(--white); }
.btn-wine:hover { background: var(--wine-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-dark { border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-light { border: 1px solid var(--black); color: var(--black); }
.btn-outline-light:hover { background: var(--black); color: var(--white); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   ОБЩИЕ БЛОКИ
   ========================================================= */
.section { padding: 88px 24px; background: transparent; }
.section-tight { padding: 56px 24px; background: transparent; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deeper);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}
.eyebrow.on-dark { color: var(--gold-light); }

h1.section-title,
h2.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--black);
}
.section-lede {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head-row .section-lede { margin-bottom: 0; }

.bg-dark { background: var(--black); color: var(--white); }
.bg-dark .muted-on-dark { color: #bbb5a8; }
.bg-cream-dark { background: rgba(237, 228, 212, 0.72); }

/* =========================================================
   HERO (главный герой-блок index.html) — правила теперь только
   в home.css, который подключён единственной страницей, где эти
   классы используются. Раньше здесь дублировался конфликтующий
   набор правил с другой специфичностью (.hero h1 / .hero p.hero-desc),
   который из-за более высокой специфичности побеждал каскад и глушил
   актуальные стили из home.css — это и было исправлено.
   ========================================================= */

/* page-hero */
.page-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  height: 380px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 56px;
}
.page-hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
}
.page-hero > *:not(.hero-bg) { position: relative; z-index: 2; }
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 280px;
    padding-top: 96px;
    padding-bottom: 40px;
  }
}
.page-hero .eyebrow { color: var(--gold-light); display: block; text-align: center; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.page-hero .lede {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 300;
}

/* =========================================================
   4 СТОЛПА
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: -90px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-lg);
}
.pillar {
  background: var(--white);
  padding: 32px 26px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition), transform var(--transition);
}
.pillar:hover { background: var(--cream); transform: translateY(-4px); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.pillar p { font-family: 'Inter', sans-serif; font-size: 0.84rem; color: var(--muted); line-height: 1.55; font-weight: 300; }

@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); margin-top: 0; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   КАРУСЕЛЬ
   ========================================================= */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.carousel-card:hover { transform: translateY(-6px); }
.carousel-card .photo-wrap {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.carousel-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  font-family: 'Inter', sans-serif;
  color: #a89f8c;
  background: repeating-linear-gradient(135deg, #ece4d4, #ece4d4 10px, #e3d9c4 10px, #e3d9c4 20px);
  font-size: 0.74rem; text-align: center; padding: 12px;
}
.photo-placeholder .ph-icon { font-size: 1.6rem; opacity: 0.6; }
.carousel-card-body { padding: 20px; }
.carousel-card-body p { font-family: 'Inter', sans-serif; font-size: 0.86rem; color: var(--muted); font-weight: 300; }

.carousel-nav { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; }
.carousel-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
  color: var(--text);
  background: var(--white);
}
.carousel-nav button:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }

/* =========================================================
   ТЕГИ
   ========================================================= */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.12);
}
.tag.tag-gold { background: var(--gold); color: #fff; border: 1px solid var(--gold-light); font-weight: 600; }
.tag.tag-wine { background: rgba(139,58,26,0.12); color: var(--wine-light); border: 1px solid rgba(139,58,26,0.3); }

/* =========================================================
   КАРТОЧКИ УСЛУГ
   ========================================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
}
.service-card .photo-wrap { aspect-ratio: auto; height: 100%; min-height: 220px; }
.service-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 28px 32px; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card-body p.desc { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 0.92rem; margin-bottom: auto; font-weight: 300; line-height: 1.65; }
.service-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px dotted var(--border);
  font-family: 'Inter', sans-serif;
}
.service-price { font-size: 1.1rem; font-weight: 600; color: var(--black); }
.service-price span { font-size: 0.76rem; color: var(--muted); font-weight: 300; }
@media (max-width: 720px) {
  .service-card { grid-template-columns: 1fr; }
  .service-card .photo-wrap { aspect-ratio: 16/9; min-height: 0; }
}

/* =========================================================
   ОТЗЫВЫ
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}
.review-stars { color: var(--gold-deep); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.65;
  font-weight: 300;
}
.review-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.review-tags { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.review-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  background: var(--cream-dark);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 12px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  background: none;
}
.faq-question .faq-plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
  font-weight: 300;
}

/* =========================================================
   ПРОМО
   ========================================================= */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promo-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}
.promo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--black);
}
.promo-card p { font-family: 'Inter', sans-serif; font-size: 0.86rem; color: var(--muted); font-weight: 300; }
.promo-card ul { margin-top: 12px; }
.promo-card li {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--text);
  padding: 5px 0 5px 18px;
  position: relative;
  font-weight: 300;
}
.promo-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold-deep); }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; } }

/* =========================================================
   КАРТА
   ========================================================= */
.map-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-frame { min-height: 420px; background: var(--cream-dark); position: relative; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; position: relative; z-index: 2; }
.map-fallback {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 10px;
  background: var(--cream-dark);
}
.map-fallback p { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 0.9rem; }
.map-fallback a { font-family: 'Inter', sans-serif; color: var(--wine); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.map-fallback a:hover { text-decoration: underline; }
.map-info { background: var(--black); color: var(--white); padding: 44px 40px; }
.map-external-link {
  display: inline-block; margin-top: 16px;
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 500;
  color: var(--gold-light); text-decoration: none;
  border-bottom: 1px solid rgba(224,176,80,0.4);
}
.map-external-link:hover { border-color: var(--gold-light); }
.map-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.map-info p { font-family: 'Inter', sans-serif; color: #b8b2a6; font-size: 0.9rem; margin-bottom: 24px; font-weight: 300; line-height: 1.65; }
.map-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.map-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 14px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
@media (max-width: 880px) { .map-block { grid-template-columns: 1fr; } }

/* =========================================================
   ФОРМЫ
   ========================================================= */
.form-card {
  background: rgba(255,255,255,0.90);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 3px;
  transition: background var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
  font-weight: 300;
}
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .icon { font-size: 2.4rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 10px;
}
.form-success p { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 0.9rem; font-weight: 300; }
@media (max-width: 560px) {
  .form-row-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* =========================================================
   ГАЛЕРЕЯ
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-grid .photo-wrap { height: 100%; border-radius: var(--radius); overflow: hidden; }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

/* =========================================================
   CTA
   ========================================================= */
.cta-block {
  background: var(--black);
  background-image: radial-gradient(circle at 20% 20%, rgba(201,146,42,0.1), transparent 50%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 14px;
}
.cta-block p {
  font-family: 'Inter', sans-serif;
  color: #c8c0b0;
  font-size: 0.96rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}
.cta-block .btn-row { justify-content: center; }

/* =========================================================
   ПОДВАЛ
   ========================================================= */
footer.site-footer {
  background: #1a120a;
  color: #a09585;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-col h3 {
  font-family: 'Inter', sans-serif;
  color: #d8d3c8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p { line-height: 1.65; margin-bottom: 10px; color: #8a7e6a; font-weight: 300; }
.footer-col a { display: block; color: #a09585; text-decoration: none; margin-bottom: 9px; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--gold-light); }
.footer-rating { color: var(--gold-light); font-size: 0.9rem; margin-top: 4px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #555;
  font-size: 0.76rem;
  font-weight: 300;
}
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* =========================================================
   ПЛАВАЮЩИЕ КНОПКИ
   ========================================================= */
.float-btns { position: fixed; bottom: 22px; right: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 300; }
.float-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  background: rgba(43,20,16,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 3px 10px rgba(0,0,0,0.28);
  opacity: 0.88;
  color: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.float-btn svg { width: 18px; height: 18px; display: block; }
/* Тонкий цветной акцент вместо кислотных заливок на всю кнопку — платформа узнаётся,
   но кнопки больше не спорят по яркости с золотыми CTA-кнопками на сайте */
.float-btn:hover { transform: scale(1.08); opacity: 1; }
.float-ph:hover { background: var(--gold); }

/* =========================================================
   НОЧНАЯ ЗОНА (караоке-холл) — второй визуальный язык бренда.
   Применяется к секциям про караоке на главной и целиком на karaoke.html,
   чтобы "вторая комната" ощущалась последовательно на обеих страницах.
   ========================================================= */
.section-night {
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(154,133,224,0.14), transparent 60%),
    var(--violet-peak);
  color: #f0ebe1;
}
.section-night .eyebrow { color: var(--violet-light); }

/* Тёплый вариант секции для блока "живая музыка / ужин" (19:00-23:00) —
   логика дня и ночи: тёплые тона для более раннего, "дневного" времени,
   холодные фиолетовые — для караоке после полуночи. Так весь раздел
   не выглядит одним сплошным синим пятном. */
.section-warm {
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(224,176,80,0.16), transparent 60%),
    var(--brown-deep);
  color: #f0ebe1;
}
.section-warm .eyebrow { color: var(--gold-light); }
.section-warm .tag { background: rgba(224,176,80,0.1); border-color: rgba(224,176,80,0.28); }
.section-warm .tag.tag-gold { background: var(--gold); color: #241608; border-color: var(--gold-light); }

/* Секция "Ведущие и музыканты" — мост между тёплой и холодной частью вечера */
.section-bridge {
  background: linear-gradient(100deg, var(--brown-deep) 0%, var(--plum-mid) 45%, var(--violet-peak) 100%);
}

#reviews.section-night {
  background: linear-gradient(180deg, var(--violet-peak) 0%, var(--plum-mid) 45%, var(--brown-deep) 100%);
  position: relative;
}
#reviews.section-night::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 140px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(224,176,80,0.4), rgba(154,133,224,0.55), transparent);
}
#reviews.section-night::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 5px; height: 5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold-light);
  opacity: 0.55;
}
#faq.section-night {
  background: linear-gradient(180deg, var(--brown-deep) 0%, #1c110a 45%, var(--black) 100%);
}
.section-night h2.section-title,
.section-night h2.section-title-center,
.section-night h1 { color: #fff; }
.section-night p,
.section-night .sans { color: rgba(240,235,225,0.68); }
/* Светлые карточки (белый/кремовый фон) внутри тёмных секций должны сохранять
   тёмный текст — иначе унаследуют светлый цвет выше и станут нечитаемыми
   на своём же светлом фоне. Специфичность выше, чем у .section-night p,
   поэтому побеждает независимо от порядка правил в файле. */
.section-night .promo-card p,
.section-night .review-card p,
.section-night .dish-card p { color: var(--muted); }
.section-night .btn-outline-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.section-night .btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Кнопки и теги в ночной зоне — фиолетовый вместо золота, это её собственный "боевой" цвет */
.section-night .btn-gold,
.section-night .hbtn-gold {
  background: var(--violet);
  box-shadow: 0 8px 26px rgba(74,58,130,0.45);
}
.section-night .btn-gold:hover,
.section-night .hbtn-gold:hover { background: var(--violet-light); }
.section-night .tag { background: rgba(255,255,255,0.07); color: #f0ebe1; border-color: rgba(255,255,255,0.16); }
.section-night .tag.tag-gold { background: var(--violet); border-color: var(--violet-light); color: #fff; }

/* FAQ в ночной версии */
.section-night .faq-list { border-top-color: rgba(255,255,255,0.14); }
.section-night .faq-item { border-bottom-color: rgba(255,255,255,0.12); }
.section-night .faq-question { color: #f0ebe1; }
.section-night .faq-question .faq-plus { border-color: rgba(255,255,255,0.28); color: var(--violet-light); }
.section-night .faq-item.open .faq-plus { background: var(--violet); border-color: var(--violet); color: #fff; }
.section-night .faq-answer p { color: rgba(240,235,225,0.6); }

/* Отзывы в ночной версии — карточки чуть теплее чёрного, с фиолетовым отливом при наведении */
.section-night .rev-card { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.09); }
.section-night .rev-arrow { border-color: rgba(255,255,255,0.16); }
.section-night .rev-arrow:hover { background: var(--violet); border-color: var(--violet); }
/* Звёзды намеренно остаются золотыми — это узнаваемый цвет рейтинга, его лучше не трогать */

/* cta-block: та же чёрная секция, что и на других страницах, но с фиолетовым отсветом
   вместо золотого — модификатор, а не замена базового класса, т.к. .cta-block используется
   и на "тёплых" страницах (банкеты, доставка и т.д.), которые мы не трогаем */
.cta-block.night {
  background-image: radial-gradient(circle at 20% 20%, rgba(74,58,130,0.28), transparent 55%);
}

/* page-hero: модификатор только для karaoke.html, остальные страницы используют обычный page-hero */
.page-hero.page-hero-night {
  background:
    radial-gradient(ellipse 700px 400px at 20% 0%, rgba(154,133,224,0.2), transparent 60%),
    var(--violet-peak);
}
.page-hero-night::after {
  background: linear-gradient(180deg, rgba(19,11,38,0.06) 0%, rgba(19,11,38,0.1) 40%, rgba(19,11,38,0.3) 100%);
}
/* Караоке-описание на karaoke.html — тоже "пик", ведёт прямо в FAQ той же страницы */
.page-karaoke-content.section-night {
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(154,133,224,0.14), transparent 60%),
    var(--violet-peak);
}
/* FAQ на karaoke.html темнеет до чёрного в одну секцию (короче путь, чем на главной) */
.page-karaoke-faq.section-night {
  background: linear-gradient(180deg, var(--violet-peak) 0%, var(--plum-mid) 40%, var(--brown-deep) 72%, var(--black) 100%);
}

/* Фирменный знак: микрофон с "макаронным" проводом — единственный по-настоящему
   авторский графический элемент бренда, соединяющий еду и караоке в одном штрихе.
   Переиспользуется на главной и на karaoke.html. */
.brand-mark { display: block; color: var(--violet-light); }
.brand-mark svg { width: 100%; height: 100%; display: block; }

/* Галерея "Наши гости на сцене" — три фото в ряд, на мобильном складывается в один столбец */
.gosti-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.gosti-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
}
.gosti-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gosti-gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .gosti-gallery { grid-template-columns: 1fr 1fr; gap: 14px; max-width: 560px; }
  .gosti-gallery-item:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .gosti-gallery { grid-template-columns: 1fr; gap: 14px; max-width: 420px; }
  .gosti-gallery-item:nth-child(3) { grid-column: auto; }
}

/* Галерея "Ведущие и музыканты" — фото с подписью роли поверх нижнего края */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.team-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-card-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,6,18,0.88) 100%);
}
.team-card-caption .role {
  font-family: 'Inter', sans-serif; font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-light);
}
.team-card-caption .name {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: #fdf7ee; margin-top: 2px;
}
@media (max-width: 900px) {
  .team-gallery { grid-template-columns: 1fr 1fr; gap: 14px; max-width: 560px; }
}
@media (max-width: 560px) {
  .team-gallery { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 420px; }
}

/* =========================================================
   СКРОЛЛ-АНИМАЦИИ
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   ВКЛАДКИ МЕНЮ
   ========================================================= */
.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  padding: 15px 18px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--gold-deep); border-color: var(--gold); font-weight: 600; }

.menu-panel { display: none; padding-top: 36px; }
.menu-panel.active { display: block; }

.dish {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--border);
}
.dish:last-child { border-bottom: none; }
.dish-left { flex: 1; min-width: 0; }
.dish-name { font-size: 0.98rem; font-weight: 500; font-family: 'Inter', sans-serif; color: var(--black); }
.dish-desc { font-size: 0.83rem; color: var(--muted); margin-top: 3px; font-family: 'Inter', sans-serif; font-weight: 300; }
.menu-note { font-size: 0.83rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 300; font-style: italic; margin: 4px 0 8px; }
.dish-weight { font-size: 0.76rem; color: #aaa; font-family: 'Inter', sans-serif; white-space: nowrap; }
.dish-price { font-size: 0.98rem; font-weight: 600; font-family: 'Inter', sans-serif; white-space: nowrap; color: var(--gold-deep); }
.menu-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 44px 0 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--gold);
}
.menu-subhead:first-child { margin-top: 0; }

/* Карточки блюд */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.dish-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  backdrop-filter: blur(2px);
}
.dish-card:hover { transform: translateY(-4px); }
.dish-card .photo-wrap { aspect-ratio: 4/3; background: var(--cream-dark); position: relative; overflow: hidden; cursor: zoom-in; }
.js-lightbox { cursor: zoom-in; }
.js-lightbox:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.dish-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dish-card-body { padding: 14px 16px 16px; }
.dish-card-name { font-size: 0.94rem; font-weight: 500; font-family: 'Inter', sans-serif; margin-bottom: 4px; line-height: 1.3; color: var(--black); }
.dish-card-desc { font-size: 0.78rem; color: var(--muted); font-family: 'Inter', sans-serif; margin-bottom: 10px; line-height: 1.4; font-weight: 300; }
.dish-card-desc-en { display: block; font-style: italic; opacity: 0.9; margin-top: 2px; }
.dish-card-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding-top: 8px; border-top: 1px dotted var(--border); }
.dish-card-weight { font-size: 0.72rem; color: #aaa; font-family: 'Inter', sans-serif; white-space: nowrap; }
.dish-card-price { font-size: 0.96rem; font-weight: 600; font-family: 'Inter', sans-serif; white-space: nowrap; color: var(--gold-deep); }
@media (max-width: 640px) { .dish-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; } }

/* Уменьшенные карточки для раздела напитков */
.dish-grid--drinks {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.dish-grid--drinks .dish-card .photo-wrap {
  aspect-ratio: 1/1;
}
.dish-grid--drinks .dish-card-name { font-size: 0.82rem; }
.dish-grid--drinks .dish-card-body { padding: 10px 12px 12px; }
.dish-grid--drinks .dish-card-price { font-size: 0.88rem; }
@media (max-width: 640px) {
  .dish-grid--drinks { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
}

/* =========================================================
   УТИЛИТЫ
   ========================================================= */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =========================================================
   ЛАЙТБОКС
   ========================================================= */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.7); cursor: default; }
.lightbox-close { position: fixed; top: 20px; right: 28px; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; z-index: 10000; background: none; border: none; }
.lightbox-close:hover { opacity: 1; }

/* =========================================================
   АДАПТИВ — двухколоночные секции (контент + фото)
   используется на главной, банкетах, караоке, доставке, контактах
   ========================================================= */
@media (max-width: 860px) {
  .two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* =========================================================
   БРЕНД-ЭЛЕМЕНТЫ v2 — фирменные, не библиотечные
   1) badge-stub   — плашка-жетон (вход/билет) вместо дефолтной пилюли
   2) voice-line   — рукописная "поющая" линия под акцентным словом
   3) micon        — контейнер для кастомных парных-обводкой иконок
   ========================================================= */

.badge-stub {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,146,42,0.4);
  color: #fdf7ee;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.03em;
  padding: 8px 16px 8px 13px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 63%, 7px 50%, 0 37%);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.badge-stub:hover { background: rgba(255,255,255,0.14); border-color: rgba(201,146,42,0.7); }
.badge-stub.on-light {
  background: rgba(43,20,16,0.05); border-color: rgba(139,58,26,0.3); color: var(--text);
}
.badge-stub.on-light:hover { background: rgba(43,20,16,0.09); }
.badge-stub svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-light); display: block; }
.badge-stub.on-light svg { color: var(--wine); }

.voice-line {
  font-style: italic; color: var(--gold-light);
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M0 7 C15 1,25 1,35 7 C45 13,55 13,65 7 C75 1,85 1,95 7 C105 13,115 13,125 7 C135 1,145 1,155 7 C165 13,175 13,185 7 C190 4,195 4,200 7' fill='none' stroke='%23e0b050' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom 3px;
  background-size: 100% 11px;
  padding-bottom: 15px;
}

.micon { width: 30px; height: 30px; display: block; }
.micon-wrap { color: var(--gold); display: flex; align-items: center; justify-content: center; }

/* =========================================================
   Иллюстрация как фоновая текстура — на "ночных" секциях
   главной (тизер караoke, отзывы, вопросы) и на базовых
   секциях страницы бронирования/караoke (таймлайн, блок
   караoke, галерея гостей). Блок живой музыки, блок ведущих
   и FAQ на странице караoke — намеренно БЕЗ обоев, на своих
   исходных плоских/градиентных фонах (см. определения выше).
   background-attachment:fixed на широких экранах держит
   картинку неподвижной относительно окна — секции разных
   страниц читаются как окна в один и тот же большой лист.
   ========================================================= */
.section-night:not(.section-warm):not(.section-bridge):not(.page-karaoke-faq) {
  background-image:
    linear-gradient(rgba(54,42,99,0.68), rgba(54,42,99,0.68)),
    url('../assets/img/brand/dusk-illustration-bright.webp');
  background-attachment: scroll, scroll;
  background-size: cover, cover;
  background-position: center, center 30%;
  background-repeat: no-repeat, no-repeat;
}
#reviews.section-night {
  background-image:
    linear-gradient(180deg, rgba(54,42,99,0.68) 0%, rgba(44,33,48,0.68) 45%, rgba(31,21,15,0.72) 100%),
    url('../assets/img/brand/dusk-illustration-bright.webp');
}
#faq.section-night {
  background-image:
    linear-gradient(180deg, rgba(31,21,15,0.72) 0%, rgba(20,13,8,0.82) 45%, rgba(8,5,3,0.92) 100%),
    url('../assets/img/brand/dusk-illustration-bright.webp');
}
/* Картинка теперь физически 1920×2560 (апскейл с резкостью), поэтому
   background-size ровно совпадает с её родным размером — браузеру больше
   не нужно её растягивать в реальном времени, а значит не размывает.
   Картинка всё ещё "прибита" к окну, а не к секции. */
@media (min-width: 861px) {
  .section-night:not(.section-warm):not(.section-bridge):not(.page-karaoke-faq),
  #reviews.section-night,
  #faq.section-night {
    background-attachment: fixed, fixed;
    background-size: cover, 1920px auto;
  }
}

/* Реквизиты: длинные номера счетов/ИНН не должны ломать вёрстку на узких экранах */
.reqs-table td { word-break: break-word; overflow-wrap: anywhere; }
@media (max-width: 480px) {
  .reqs-table td { width: auto !important; }
  .reqs-table tr { display: flex; flex-direction: column; padding: 8px 0; }
  .reqs-table td:first-child { padding-bottom: 2px !important; font-size: 0.8rem; }
  .reqs-table td:last-child { padding-top: 0 !important; }
}

/* why-grid на очень узких экранах: 2 колонки становятся тесными */
@media (max-width: 380px) {
  .why-grid { grid-template-columns: 1fr !important; }
}
