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

:root {
  --primary: #7CB88A;
  --primary-dark: #5A9E6A;
  --secondary: #2C2C2C;
  --bg-start: #F5F8F5;
  --bg-end: #EDF3ED;
  --card-bg: #FFFFFF;
  --text-muted: #6B6B6B;
  --text-light: #999;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(160deg, var(--bg-start) 0%, var(--bg-end) 100%);
  min-height: 100vh;
  color: var(--secondary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ── */
header {
  position: relative;
  z-index: 1000;
  background: rgba(245,248,245,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,184,138,0.3), transparent);
}
header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: headerSlideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
header.header-sticky::after {
  display: none;
}
@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.header-spacer {
  height: 68px;
  display: none;
}
header.header-sticky + .header-spacer {
  display: block;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}
.header-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.3s ease;
  white-space: nowrap;
}
nav a:hover { color: var(--primary-dark); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-phone:hover { color: var(--primary-dark); }

.header-vk {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--text-muted);
}
.header-vk:hover { color: var(--secondary); }
.header-vk svg { width: 20px; height: 20px; fill: currentColor; transition: fill 0.3s ease; }

.header-map {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-map:hover { color: var(--secondary); }
.header-map svg { width: 14px; height: 14px; }

/* ── HERO ── */
.hero {
  padding: 60px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-top {
  margin-bottom: 40px;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-content {}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 16px;
}
.hero-extended {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(124,184,138,0.45);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,184,138,0.55);
}
.btn-primary:active { transform: translateY(0); }

.hero-extras {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.extra-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,184,138,0.15);
  border: 1px solid rgba(124,184,138,0.4);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
}
.extra-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hero Gallery */
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 220px;
  gap: 12px;
}
.hero-gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.hero-gallery-img:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.hero-gallery-img:first-child {
  grid-column: 1 / -1;
}
.hero-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-gallery-img:hover img { transform: scale(1.04); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.4s ease;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.85);
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  opacity: 1;
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox img.switching {
  opacity: 0;
  transform: scale(0.96);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.8);
  transition: background 0.25s ease;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background 0.25s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-prev { left: 24px; }
.lightbox-prev svg { margin-left: -2px; }
.lightbox-next { right: 24px; }
.lightbox-next svg { margin-right: -2px; }

/* ── SECTION COMMON ── */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.15;
}

/* ── DIRECTIONS ── */
.directions-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}
.directions-list-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.direction-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 28px;
  transition: background 0.25s ease;
}
.direction-item:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.direction-item:hover {
  background: rgba(124,184,138,0.08);
}
.direction-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(124,184,138,0.12);
  border: 1px solid rgba(124,184,138,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}
.direction-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.55;
  flex: 1;
}
.direction-text .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 100px;
  padding: 3px 12px;
  margin-top: 8px;
}
.directions-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-schedule {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(124,184,138,0.35);
}
.sidebar-schedule-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sidebar-schedule-icon svg { width: 20px; height: 20px; color: #FFFFFF; stroke: #FFFFFF; fill: none; }
.sidebar-schedule-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.sidebar-schedule-sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.sidebar-cta {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.sidebar-cta-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.sidebar-cta-text a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(90,158,106,0.3);
  transition: border-color 0.3s, color 0.3s;
}
.sidebar-cta-text a:hover { color: var(--secondary); border-color: var(--secondary); }
.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(124,184,138,0.35);
}
.btn-catalog:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-catalog svg { width: 14px; height: 14px; }

/* ── CATALOG ── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-end, #EDF3ED);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img svg {
  width: 100%;
  height: 100%;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(124,184,138,0.12);
  border: 1px solid rgba(124,184,138,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
.product-card-duration svg { flex-shrink: 0; color: var(--primary-dark); }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}
.product-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-more svg {
  width: 14px;
  height: 14px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44,44,44,0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(44,44,44,0.55);
  backdrop-filter: blur(4px);
}

.modal-box {
  background: var(--card-bg);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #E8EDE9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-wrap svg {
  width: 100%;
  height: 100%;
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-body { padding: 28px 32px 32px; }
.modal-title {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.modal-price {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--primary);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.modal-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(124,184,138,0.12);
  border: 1px solid rgba(124,184,138,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.modal-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--primary); color: #FFFFFF; }
.modal-container { position: relative; }

/* ── REVIEWS ── */
#reviews {
  overflow: visible;
}
.reviews-wrapper {
  position: relative;
}
.reviews-track-outer {
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  opacity: 0.35;
  transition: opacity 0.5s ease;
}
.review-card.active {
  opacity: 1;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.3;
}
.review-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review-stars svg { width: 16px; height: 16px; fill: var(--primary); }
.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  color: var(--primary);
}
.reviews-btn:hover { background: var(--primary); color: #FFFFFF; }
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: background 0.25s, width 0.25s;
  cursor: pointer;
  border: none;
}
.reviews-dot.active {
  background: var(--primary-dark);
  width: 20px;
  border-radius: 4px;
}

/* ── CONTACTS ── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item > div:last-child {
  flex: 1;
  min-width: 0;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(124,184,138,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--primary-dark); }
.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
}
.contact-value a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-value a:hover { color: var(--primary-dark); }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.schedule-table td {
  padding: 6px 0;
  font-size: 15px;
}
.schedule-table td:first-child {
  font-weight: 500;
  color: var(--secondary);
  white-space: nowrap;
}
.schedule-table td:last-child {
  color: var(--text-muted);
  text-align: right;
  width: 100%;
  padding-left: 40px;
}
.schedule-day-off { color: var(--text-light) !important; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 320px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s;
  box-shadow: 0 4px 16px rgba(124,184,138,0.35);
}
.map-btn:hover { background: var(--primary-dark); color: #FFFFFF; transform: translateY(-2px); }
.map-btn svg { width: 16px; height: 16px; }

/* ── FOOTER ── */
footer {
  background: #3A3A38;
  color: #fff;
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,184,138,0.3), transparent);
  margin: 0 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 20px; gap: 12px; }
  nav { gap: 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-gallery { grid-template-rows: 200px 180px; }
  .section { padding: 56px 20px; }
  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .directions-layout { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; gap: 24px; }
  .review-card { min-width: 300px; max-width: 320px; }
  .reviews-track-outer { padding-left: 20px; }
  footer { padding: 40px 20px 28px; }
  .section-divider { margin: 0 20px; }
}

/* ── MOBILE MENU ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.mobile-phone-btn {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.mobile-phone-btn:hover { background: var(--primary-dark); }
.mobile-phone-btn svg { width: 13px; height: 13px; fill: #fff; }

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 32px;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--primary-dark); }
.mobile-nav .mobile-nav-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 12px;
}
.mobile-nav .mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: var(--border, #E0E0DC);
  margin: 8px 0;
}
.mobile-nav .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.mobile-nav .mobile-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav .mobile-nav-links a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-end);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.mobile-nav-close:hover { background: var(--primary); }
.mobile-nav-close svg { width: 16px; height: 16px; color: var(--secondary); }
.mobile-nav-close:hover svg { color: #fff; }

@media (max-width: 960px) {
  .burger { display: flex; }
  .mobile-phone-btn { display: flex; }
  nav { display: none; }
  .header-right { display: none; }
}

@media (max-width: 600px) {
  header { height: 56px; padding: 0 16px; }
  .header-logo-sub { display: none; }
  .header-logo img { width: 28px; height: 28px; }
  .header-logo-text { font-size: 15px; }
  .hero { padding: 32px 16px 32px; }
  .hero-title { font-size: 26px; }
  .hero-bottom { gap: 24px; }
  .hero-gallery { grid-template-columns: 1fr; grid-template-rows: 200px 160px 160px; }
  .hero-gallery-img:first-child { grid-column: 1; }
  .section { padding: 40px 16px; }
  .direction-item { padding: 18px 20px; gap: 14px; }
  .direction-text { font-size: 14px; }
  .direction-text .badge { display: block; margin-left: 0; margin-top: 6px; width: fit-content; }
  .sidebar-schedule, .sidebar-cta { padding: 22px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .review-card { min-width: calc(100vw - 56px); max-width: calc(100vw - 56px); }
  .reviews-track-outer { padding-left: 16px; }
  .reviews-track { gap: 12px; }
  .footer-top { flex-direction: column; }
  .footer-links { text-align: left; }
  .footer-bottom { flex-direction: column; }
  footer { padding: 32px 16px 24px; }
  .section-divider { margin: 0 16px; }
  .header-spacer { height: 56px; }
  .contact-card { padding: 24px 16px; }
  .map-container { height: 260px; }
  .map-btn { width: 100%; text-align: center; justify-content: center; }
  .contact-item { gap: 10px; }
  .schedule-table td:last-child { padding-left: 16px; }
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 48px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}
.legal-back svg {
  position: relative;
  top: 0.5px;
}
.legal-back:hover { color: var(--primary); }
.legal-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.25;
}
.legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 36px;
  margin-bottom: 16px;
}
.legal-page p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-page ul {
  margin: 0 0 16px 24px;
  padding: 0;
}
.legal-page ul li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.legal-page strong {
  color: var(--secondary);
}
.legal-requisites {
  margin-top: 48px;
  padding: 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.legal-requisites h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.legal-requisites p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.legal-requisites a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-requisites a:hover { color: var(--primary); }
@media (max-width: 600px) {
  .legal-page { padding: 32px 16px 60px; }
  .legal-title { font-size: 24px; }
}
