/* ============================================================
   КОЗУ-ГРИЛЬ — style.css
   Кастомные стили поверх Bootstrap 5
   ============================================================ */

/* ── Переменные ── */
:root {
  --burgundy:       #7B1A1A;
  --burgundy-dk:    #5C1212;
  --burgundy-lt:    #9B2E2E;
  --gold:           #C9973A;
  --gold-lt:        #E8B85A;
  --gold-pale:      #F5E6C8;
  --beige:          #F5EFE0;
  --cream:          #FAF7F2;
  --text-dark:      #1E1208;
  --text-mid:       #4A3728;
  --text-light:     #8A7060;
  --border:         #E8DFD0;
  --white:          #ffffff;

  --font-h: 'Lora', Georgia, serif;
  --font-b: 'Montserrat', sans-serif;

  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.14);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

/* PageSpeed: font-display swap для системных шрифтов (подстраховка) */
@font-face {
  font-display: swap;
}

/* Запрет горизонтальной прокрутки */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* PageSpeed: содержит paint слои */
  contain: paint;
}
body {
  font-family: var(--font-b);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.72;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
  /* PageSpeed: улучшает FCP */
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* PageSpeed: оптимизация изображений */
img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Предотвращает CLS при загрузке */
  content-visibility: auto;
}
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Секции ── */
.section { padding: 88px 0; }

/* ── Типографика ── */
.section-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.light { color: var(--gold-lt); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-lt); }

.section-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.gold-line {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 22px 0;
}

/* ============================================================
   НАВИГАЦИЯ
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background .3s, padding .3s, box-shadow .3s;
  /* GPU-слой — убирает вертикальное дрожание при скролле на мобильных */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#mainNav.scrolled {
  background: rgba(24, 6, 3, .96);
  padding: 11px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}

/* Brand */
.brand-text {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .4px;
}
.brand-text em { color: var(--gold); font-style: italic; }

/* Nav links */
.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .4px;
  color: rgba(255,255,255,.82) !important;
  padding: 7px 11px !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }

/* Nav CTA button */
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.btn-nav-wa:hover {
  background: #1ebe5b;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
  border: none !important;
  padding: 4px !important;
  box-shadow: none !important;
  background: none !important;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* Animate on open */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
@media (max-width: 991px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(20, 5, 2, .97);
    margin: 12px -12px -12px;
    padding: 16px 24px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .btn-nav-wa { margin-top: 12px; width: 100%; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #230800 0%, #5C1212 45%, #3b1100 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  position: absolute; inset: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 5, 0, .78) 0%,
    rgba(90, 20, 8, .62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,151,58,.4);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--text-dark);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  transition: all .25s;
}
.btn-hero-primary:hover {
  background: var(--gold-lt);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,.4);
}

.btn-hero-outline {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all .25s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  color: var(--white);
}

.hero-phone-line {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-phone-line a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  transition: color .2s;
}
.hero-phone-line a:hover { color: var(--gold); }

/* Scroll indicator line */
.hero-scroll-line {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line span {
  display: block;
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45));
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity: .25; }
  50%      { opacity: 1; }
}

/* ============================================================
   О НАС
   ============================================================ */
.about-section { background: var(--cream); overflow: hidden; }

.about-text-wrap p {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Image wrap */
.about-img-wrap { position: relative; padding: 0 0 20px 20px; }

.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
/* Decorative offset frame */
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(201,151,58,.35);
  border-radius: calc(var(--radius) + 3px);
  z-index: -1;
}

.about-img-box {
  position: relative;
  height: 430px;
  overflow: hidden;
}
.about-img-box img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-float-badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: var(--burgundy);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-float-badge i { color: var(--gold); font-size: 15px; }

.about-deco-line {
  position: absolute;
  top: -20px; left: -20px;
  width: 70px; height: 70px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  opacity: .35;
  border-radius: 2px 0 0 0;
}

/* ============================================================
   МЕНЮ
   ============================================================ */
.menu-section { background: var(--beige); }

/* Карточка */
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card--featured { border-top: 3px solid var(--gold); }
.menu-card--turkey   { border-top: 3px solid var(--burgundy-lt); }

/* Изображение */
.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gold-pale);
}
.menu-card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .4s;
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.05); }

.menu-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.menu-badge--red  { background: var(--burgundy); color: var(--white); }
.menu-badge--gold { background: var(--gold); color: var(--text-dark); }

/* Body */
.menu-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.menu-card-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0;
}
.menu-card-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Блок с ценами — всегда открыт */
.price-block {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
}
.price-block-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 12.5px;
}
.price-table th {
  text-align: left;
  padding: 5px 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 6px 7px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(232,223,208,.5);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:last-child {
  font-weight: 700;
  color: var(--burgundy);
  text-align: right;
}
.sz {
  display: inline-block;
  background: var(--beige);
  color: var(--text-dark);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  min-width: 22px;
  text-align: center;
}

/* Кнопка заказа */
.btn-order {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: none;
  width: 100%;
  margin-top: 6px;
  transition: background .2s, transform .2s;
}
.btn-order:hover { background: var(--burgundy-dk); color: var(--white); transform: translateY(-1px); }
.btn-order--gold { background: var(--gold); color: var(--text-dark); }
.btn-order--gold:hover { background: var(--gold-lt); color: var(--text-dark); }

/* Блок цены индейки */
.turkey-price-wrap {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}
.turkey-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.turkey-cap  { font-size: 14px; font-weight: 600; color: var(--text-mid); }
.turkey-sum  {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
}
.turkey-note {
  font-size: 12px;
  color: var(--text-light);
  display: flex; align-items: center; gap: 5px;
  margin: 0;
}
.turkey-note i { color: var(--gold); }

/* Заметка о времени */
.menu-timing-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 32px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 14px;
  color: var(--text-mid);
}
.menu-timing-note i { color: var(--gold); }

/* ============================================================
   ПРЕИМУЩЕСТВА
   ============================================================ */
.advantages-section { background: var(--burgundy-dk); }

.adv-intro-text {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.adv-item {
  padding: 34px 26px;
  background: rgba(255,255,255,.03);
  transition: background .2s;
}
.adv-item:hover { background: rgba(255,255,255,.08); }
.adv-item--accent { background: rgba(201,151,58,.1); }
.adv-item--accent:hover { background: rgba(201,151,58,.16); }

.adv-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(201,151,58,.14);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  color: var(--gold);
  margin-bottom: 14px;
}
.adv-item h4 {
  font-family: var(--font-h);
  font-size: .98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 7px;
}
.adv-item p {
  font-size: 13px;
  color: rgba(255,255,255,.57);
  margin: 0; line-height: 1.6;
}

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services-section { background: var(--white); }

.services-lead {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 6px;
}

.btn-burgundy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: none;
  transition: background .2s, transform .2s;
}
.btn-burgundy:hover { background: var(--burgundy-dk); color: var(--white); transform: translateY(-1px); }

.services-list { display: flex; flex-direction: column; }

.svc-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.svc-item:first-child { padding-top: 0; }
.svc-item:last-child { border-bottom: none; padding-bottom: 0; }

.svc-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  transition: color .25s;
}
.svc-item:hover .svc-num { color: var(--gold-pale); }

.svc-info h4 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.svc-info p {
  font-size: 13.5px;
  color: var(--text-light);
  margin: 0; line-height: 1.62;
}

/* ============================================================
   ГАЛЕРЕЯ
   ============================================================ */
.gallery-section { background: var(--cream); overflow: hidden; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px;
}

/* Первый элемент занимает обе строки — высокий левый блок */
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }

.g-item--tall { grid-row: 1 / 3; }

.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Подпись */
.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(20,5,0,.72) 0%, transparent 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 28px 14px 12px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .g-caption { opacity: 1; }

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews-section { background: var(--beige); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.review-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.review-card--offset { margin-top: 36px; }

.review-q {
  font-size: 2.8rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 10px;
}

.review-text {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 22px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.review-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.review-author-info {
  flex: 1;
  display: flex; flex-direction: column;
}
.review-author-info strong { font-size: 12.5px; color: var(--text-dark); }
.review-author-info span  { font-size: 11px; color: var(--text-light); }
.review-stars { color: var(--gold); font-size: 11px; display: flex; gap: 2px; }

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts-section { background: var(--burgundy-dk); overflow: hidden; }

.contacts-info-col { display: flex; align-items: stretch; }
.contacts-info {
  padding: 76px 56px;
  flex: 1;
}

.contacts-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  background: rgba(201,151,58,.1);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 30px;
}
.contacts-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contacts-note span { flex: 1; line-height: 1.6; }
.contacts-note strong { color: rgba(255,255,255,.9); }

.contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-list > li > i {
  color: var(--gold); font-size: 18px;
  flex-shrink: 0; margin-top: 3px;
}
.cl-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 3px;
}
.cl-value {
  display: flex; flex-direction: column;
  font-size: 14.5px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}
.cl-value a {
  color: rgba(255,255,255,.82);
  transition: color .2s;
}
.cl-value a:hover { color: var(--gold); }

.btn-wa-contact {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  margin-top: 28px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-wa-contact:hover {
  background: #1ebe5b;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.contacts-map-col { position: relative; min-height: 460px; }
.contacts-map-col iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  filter: grayscale(15%);
}

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer { background: #0e0202; padding: 52px 0 24px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
}

.footer-brand .brand-text { font-size: 19px; }
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 6px; margin-bottom: 0;
}

.footer-nav, .footer-contacts-col {
  display: flex; flex-direction: column; gap: 7px;
}
.footer-nav a, .footer-contacts-col a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contacts-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,.3); margin: 0; }
.footer-note { color: rgba(201,151,58,.6) !important; }

/* ============================================================
   STICKY WHATSAPP (только мобильная)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 18px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  z-index: 998;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 26px rgba(37,211,102,.7), 0 0 0 9px rgba(37,211,102,.08); }
}
/* Скрыть на desktop */
@media (min-width: 992px) { .wa-float { display: none; } }

/* ============================================================
   PLACEHOLDER ДЛЯ ИЗОБРАЖЕНИЙ
   ============================================================ */
.img-ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--beige) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 0;
}
.img-ph i    { font-size: 22px; color: var(--gold); opacity: .6; }
.img-ph span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  padding: 0 12px;
  opacity: .75;
  line-height: 1.4;
}

/* Gallery placeholder (без absolute) */
.gallery-item .img-ph { position: absolute; inset: 0; z-index: 0; }

/* ============================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ (IntersectionObserver)
   ============================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.anim-fade.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

/* ─ Планшет ─ */
@media (max-width: 991px) {
  .section { padding: 64px 0; }

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

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--offset { margin-top: 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery-item { aspect-ratio: auto; }

  .contacts-info { padding: 52px 36px; }
  .contacts-map-col { min-height: 380px; }

  .footer-top { flex-direction: column; gap: 24px; }
}

/* ─ Мобильный ─ */
@media (max-width: 767px) {
  .section { padding: 52px 0; }

  .hero-content { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }

  .about-img-wrap { padding: 0; margin-top: 8px; }
  .about-img-box { height: 300px; }
  .about-float-badge { left: 8px; bottom: 8px; }
  .about-deco-line { display: none; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .contacts-info { padding: 40px 20px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .svc-num { font-size: 1.8rem; width: 42px; }

  .menu-timing-note { font-size: 13px; text-align: center; }
}

/* ─ Маленькие экраны ─ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 4/3; }
  .g-item--tall { grid-row: auto; }
  .about-stats { gap: 18px; }
  .contacts-info { padding: 36px 16px; }
}
