/* =========================================
   НАВИ - МАНИКЮР БОЛЬШЕВИКОВ
   Исправленные стили (версия 2.1)
   ========================================= */

/* === ПЕРЕМЕННЫЕ === */
:root {
  /* Цвета */
  --bg-primary: #faf9f7;
  --bg-secondary: #fff;
  --bg-warning: #fff8e6;
  
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-warning: #664d03;
  
  --accent: #b89c7d;
  --accent-hover: #9e8366;
  
  --border: #e8e2da;
  --border-warning: #ffc107;
  
  /* Эффекты */
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 6px 25px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Отступы */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-xxl: 3rem;
}

/* === СБРОС И БАЗА === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.img-cover, .hero-image, .slide img, .section-image, .geo-map, .gallery-item img, .gallery-slide img {
  object-fit: cover;
}

/* === УТИЛИТЫ === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  animation: fadeUp 1s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === КОНТЕЙНЕР === */
.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}

/* === КНОПКИ === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  gap: 0.4rem;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--back { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--back:hover { background: var(--accent); color: #fff; }

/* === ХЕДЕР === */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  transition: var(--transition);
}

#header.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--shadow-soft);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ✅ Логотип в две строки (восстановлено) */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}

.logo-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

nav ul {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav a {
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0.3rem;
}

/* === HERO === */
.hero {
  position: relative;
  margin-top: 100px;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(184,156,125,0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
}

.hero-left {
  text-align: left;
  padding-right: var(--space-lg);
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.hero-bullets p {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  text-align: center;
}
.cta-button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184,156,125,0.4);
}

.cta-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
  max-width: 320px;
  line-height: 1.5;
}

/* ✅ Hero image: фиксированная высота, ограничение ширины */
.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* === СЕКЦИИ: ОБЩИЕ СТИЛИ === */
section { padding: var(--space-xl) 0; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  width: 100%;
}

.section-title h2 {
  font-size: 2.1rem;
  margin-bottom: var(--space-xs);
}

.section-title p {
  color: var(--text-muted);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Заголовки слева */
.section-title--left {
  text-align: left;
  max-width: none;
}
.section-title--left h2 { margin-bottom: var(--space-sm); }
.section-title--left p {
  line-height: 1.7;
  margin-bottom: 0;
  padding: 0;
  max-width: none;
  text-align: left;
}

/* === БЛОК: ПРИВЕТСТВИЕ (#seo-promo) === */
#seo-promo {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: var(--space-xl) 0;
  border-radius: var(--radius);
  margin: var(--space-lg) auto;
  max-width: 1320px;
}

#seo-promo .section-title { margin-bottom: var(--space-lg); }

/* ✅ Текст с отступами и центрированием */
#seo-promo .section-title p {
  margin-bottom: var(--space-sm);
  text-align: center;
}

#seo-promo .section-title p:last-child {
  margin-bottom: var(--space-md);
}

.promo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.promo-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* === БЛОК: КАК МЕНЯ НАЙТИ === */
#geo-location {
  padding: var(--space-xxl) 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  width: 100%;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.address-card {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.address-icon { font-size: 1.8rem; flex-shrink: 0; }
.address-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}
.address-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.metro-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(184, 156, 125, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.metro-icon { font-size: 1.5rem; }
.metro-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}
.metro-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.location-hints {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.location-hints li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.location-note {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-warning);
  border-radius: var(--radius);
  border-left: 3px solid var(--border-warning);
}

.note-icon { font-size: 1.3rem; flex-shrink: 0; }
.location-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-warning);
  line-height: 1.5;
}

.location-map {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: #f5f5f5;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-actions {
  width: 100%;
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.btn-desktop-only { display: flex; }
.btn-mobile-only { display: none; }

/* === БЛОК: ПРЕИМУЩЕСТВА === */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.advantage-card {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-hover);
}

.adv-icon { font-size: 2.5rem; margin-bottom: var(--space-xs); }
.advantage-card h3 { margin-bottom: var(--space-xs); font-size: 1.15rem; }
.advantage-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* === БЛОК: УСЛУГИ (FLIP-КАРТОЧКИ) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 430px;
  cursor: pointer;
}

.flip-toggle { display: none; }

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.flip-toggle:checked + .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.flip-card-front { background: var(--bg-secondary); }
.flip-card:hover .flip-card-front { border-color: var(--border); }

.flip-card-back {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  transform: rotateY(180deg);
  border: 1px solid var(--border);
}

.service-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: var(--space-sm); }
.flip-card h3 { font-family: 'Playfair Display', serif; margin-bottom: var(--space-xs); font-size: 1.15rem; }
.flip-card h4 { font-size: 1rem; margin-bottom: var(--space-xs); font-weight: 600; }
.service-short { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: var(--space-sm); }

.flip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.flip-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.flip-card li:last-child { border-bottom: none; }

.back-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.back-footer { margin-top: auto; width: 100%; }

.service-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

/* === БЛОК: ГАЛЕРЕЯ-СЛАЙДЕР === */
.gallery-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0 50px;
}

.gallery-slider-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: var(--space-sm) 0;
  will-change: scroll-position;
  scroll-behavior: smooth;
}

.gallery-slider-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: var(--transition);
}

.gallery-slide:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.gallery-slide figcaption {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.gallery-slider-container .slider-prev,
.gallery-slider-container .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.gallery-slider-container .slider-prev { left: 0; }
.gallery-slider-container .slider-next { right: 0; }
.gallery-slider-container .slider-prev:hover,
.gallery-slider-container .slider-next:hover {
  background: var(--accent-hover);
  transform: translateY(-50%) scale(1.1);
}

/* === БЛОК: ОТЗЫВЫ === */
.review-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.review-card {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
}

.review-bubble {
  background: #e5ddd5;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
}

.review-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #e5ddd5;
}

.review-bubble.telegram-style { background: #f0f0f0; }
.review-bubble.telegram-style::after { border-top-color: #f0f0f0; }

.review-bubble .bubble-name {
  font-size: 0.75rem;
  color: #3b3b3b;
  margin-bottom: 4px;
  font-weight: 600;
}

.review-bubble .bubble-time {
  font-size: 0.65rem;
  color: #999;
  margin-left: 8px;
}

.review-bubble .bubble-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* === БЛОК: ПРАЙС-ЛИСТ === */
.price-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-lg);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-weight: 600;
  background: var(--bg-secondary);
  width: 70%;
}

.price-table .price-cell {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
  white-space: nowrap;
  width: 30%;
}

.price-table tbody tr:hover {
  background: rgba(184,156,125,0.05);
}

.price-note {
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: rgba(184,156,125,0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.price-note p:first-child {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.price-note p:last-child {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* === БЛОК: FAQ (исправленный аккордеон) === */
.faq-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  padding: var(--space-xs) 0;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-dark);
  font-family: inherit;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-toggle-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
}

/* === ИЗОБРАЖЕНИЯ СЕКЦИЙ === */
.section-image,
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: var(--space-md);
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-image img,
.about-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

/* === ФУТЕР === */
footer {
  background: #f3efe9;
  padding: var(--space-xxl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
  margin-top: var(--space-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: var(--space-sm);
}

.footer-col p,
.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--accent); }

iframe {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.copyright {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: #888;
  margin-top: var(--space-lg);
}

/* === МОБИЛЬНАЯ КНОПКА ЗВОНКА === */
.mobile-call-btn {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  width: 72px;
  height: 72px;
  background: transparent;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: var(--transition);
  z-index: 999 !important;
  border: 3px solid var(--accent-hover);
  cursor: pointer;
  text-decoration: none;
}

.mobile-call-btn:hover {
  background: rgba(158, 131, 102, 0.1);
  transform: scale(1.05);
}

.mobile-call-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* =========================================
   АДАПТИВ (МОБИЛЬНЫЕ СТИЛИ)
   ========================================= */

/* Планшет и ниже */
@media (max-width: 1024px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  /* ✅ Логотип на мобильном: компактный */
  .logo-main { font-size: 1.05rem; }
  .logo-subtitle { font-size: 0.65rem; }
  
  /* Навигация */
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    gap: var(--space-sm);
  }
  
  nav ul.open {
    display: flex;
    animation: fadeUp 0.3s ease-out;
  }
  
  .mobile-toggle { display: block; }
  
  /* Hero */
  .hero { margin-top: 90px; padding-top: var(--space-xl); padding-bottom: var(--space-lg); }
  .hero-layout { grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; }
  .hero-left { padding-right: 0; text-align: center; }
  .hero-bullets { align-items: center; }
  .hero-cta { align-items: center; }
  .cta-subtitle { text-align: center; margin: 0 auto; }
  .hero-right { justify-content: center; }
  .hero-image { max-width: 320px; margin: 0 auto; }
  
  /* Гео-локация */
  .location-wrapper { grid-template-columns: 1fr; gap: var(--space-lg); }
  .location-map { position: static; order: 2; }
  .location-info { order: 1; }
  .map-container { aspect-ratio: 16/9; }
  .address-card { flex-direction: column; text-align: center; align-items: center; }
  .metro-badge { justify-content: center; text-align: center; }
  
  /* Кнопки под картой */
  .btn-desktop-only { display: none; }
  .btn-mobile-only { display: flex; }
  
  /* Преимущества */
  .advantages-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  
  /* Прайс */
  .price-table th { width: auto; font-size: 0.95rem; }
  .price-table .price-cell { white-space: normal; font-size: 1rem; }
  
  /* Галерея */
  .gallery-slide { flex: 0 0 calc(50% - 0.75rem); }
  .gallery-slider-container { padding: 0 45px; }
  
  /* Услуги (карточки) */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  
  /* О нас */
  .section-title--left { text-align: center; }
  .section-title--left p { text-align: center; }
}

/* Мобильный */
@media (max-width: 768px) {
  /* Заголовки */
  .section-title h2 { font-size: 1.8rem; }
  
  /* Отзывы */
  .review-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .review-card { padding: 10px; }
  .review-bubble { padding: 8px; }
  .review-bubble .bubble-name { font-size: 0.7rem; }
  .review-bubble .bubble-text { font-size: 0.8rem; }
  
  /* Футер */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg) var(--space-sm); }
  
  /* Галерея */
  .gallery-slide { flex: 0 0 100%; }
  .gallery-slider-container { padding: 0 40px; }
  .gallery-slider-container .slider-prev,
  .gallery-slider-container .slider-next {
    width: 38px; height: 38px; font-size: 1.5rem;
  }
  
  /* Услуги */
  .services-grid { grid-template-columns: 1fr; }
  .flip-card { height: 460px; }
  .flip-card-front, .flip-card-back { padding: var(--space-md); }
  
  /* Приветствие */
  #seo-promo { padding: var(--space-xl) 0; margin: var(--space-md) auto; }
  #seo-promo .section-title h2 { font-size: 1.8rem; }
  
  /* О нас */
  .section-image { max-width: 100%; }
}

/* Маленький мобильный */
@media (max-width: 480px) {
  /* Общие отступы */
  .container { padding: var(--space-md) var(--space-sm); }
  section { padding: var(--space-lg) 0; }
  
  /* Заголовки */
  .section-title h2 { font-size: 1.65rem; }
  
  /* Отзывы */
  .review-grid { grid-template-columns: 1fr; }
  .review-bubble::after { display: none; }
  .review-bubble .bubble-name { font-size: 0.65rem; }
  .review-bubble .bubble-text { font-size: 0.75rem; }
  
  /* Футер */
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Услуги */
  .service-card { padding: var(--space-md); }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.85rem; }
  .service-card .price { font-size: 1rem; padding: 0.3rem 0.8rem; }
  
  /* Кнопки */
  .btn { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
  .btn--full { width: 100%; }
  
  /* Гео-локация */
  #geo-location { padding: var(--space-lg) 0; }
  .address-card { padding: var(--space-sm); }
  .location-hints li { font-size: 0.85rem; }
  
  /* Hero */
  .hero h1 { font-size: 2rem; }
  .hero-image { max-width: 280px; }
  
  /* FAQ */
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 0.95rem; }
}

/* =========================================
   ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ
   (добавить в конец style.css)
   ========================================= */

/* === 1. БЛОК "ПРИВЕТСТВИЕ": ВЫРАВНИВАНИЕ ТЕКСТА === */
/* Убираем эффект "лесенки" за счёт выравнивания по ширине */
#seo-promo .section-title p {
  text-align: justify;
  text-justify: inter-word;
  margin: 0 auto var(--space-sm);
  max-width: 100%;
}

#seo-promo .section-title p:last-child {
  margin-bottom: var(--space-md);
}

/* Для мобильных — тоже выравниваем, но с меньшим отступом */
@media (max-width: 768px) {
  #seo-promo .section-title p {
    text-align: justify;
    max-width: 100%;
  }
}

/* === 2. БЛОК "ФИЛОСОФИЯ НАВИ": РАСКЛАДКА ТЕКСТ + ИЗОБРАЖЕНИЕ === */
/* На десктопе: текст слева, изображение справа */
@media (min-width: 993px) {
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
  
  #about .section-title--left {
    text-align: left;
    margin-bottom: 0;
  }
  
  #about .section-title--left h2,
  #about .section-title--left p {
    text-align: left;
  }
  
  #about .section-image {
    margin: 0;
    order: 2; /* Гарантируем, что изображение справа */
  }
}

/* На планшете и мобильном: вертикальная раскладка, центрирование */
@media (max-width: 992px) {
  #about .section-title--left {
    text-align: center;
  }
  
  #about .section-title--left p {
    text-align: center;
  }
  
  #about .section-image {
    margin: var(--space-md) auto 0;
    max-width: 400px;
  }
}

/* === 3. БУРГЕР-МЕНЮ: СДВИГ ВПРАВО НА МОБИЛЬНОМ === */
/* Добавляем небольшой отступ, чтобы иконка не прилипала к краю */
@media (max-width: 992px) {
  .mobile-toggle {
    margin-right: -3.5rem;
  }
}

/* === 4. ДОПОЛНИТЕЛЬНО: УЛУЧШЕНИЕ ЧИТАЕМОСТИ ВЫРАВНИВАНИЯ === */
/* Плавные переносы слов для justified-текста */
p {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Убираем hyphens для заголовков и коротких элементов */
h1, h2, h3, h4, .btn, .price-cell, .service-price, .bubble-name {
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}