@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Golos+Text:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   UI/UX PRO MAX — СВЕТЛАЯ ДИЗАЙН-СИСТЕМА (Фитнес-центр «Аура»)
═══════════════════════════════════════════════ */
:root {
  --bg-deep: #fafaf7;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f4ec;
  --bg-card: #ffffff;
  
  --olive: #54663d;
  --olive-dark: #354224;
  --olive-light: #e3ebd8;
  --olive-glow: rgba(84, 102, 61, 0.12);
  
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  /* ЭЛЕГАНТНАЯ СПОРТИВНАЯ ТИПОГРАФИКА: Montserrat + Golos Text */
  --font-display: 'Montserrat', 'Oswald', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Golos Text', 'Montserrat', system-ui, sans-serif;
  
  --border-subtle: 1px solid #e2e8f0;
  --border-olive: 1px solid rgba(84, 102, 61, 0.25);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 10px 30px rgba(84, 102, 61, 0.08);
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════
   СБРОС СТИЛЕЙ И ОСНОВА
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-deep); }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 4rem;
  box-sizing: border-box;
}

.section { padding: 90px 0; position: relative; width: 100%; }
#page-loader { display: none !important; }

/* ═══════════════════════════════════════════════
   АНИМАЦИИ
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(15px); transition: opacity 0.4s var(--transition), transform 0.4s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-45px); transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(45px); transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════
   ТИПОГРАФИКА
═══════════════════════════════════════════════ */
.section-header { 
  margin-bottom: 3.5rem; 
  width: 100%; 
  text-align: center; 
}
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive, #54663d);
  margin-bottom: 0.8rem;
}
.label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--olive, #54663d); border-radius: 50%;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.2;
  padding-top: 0.1em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin-top: 0.8rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero {
  padding-top: 140px;
  padding-bottom: 40px;
  background: var(--bg-subtle);
  border-bottom: var(--border-subtle);
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
.breadcrumbs {
  display: none !important;
}

/* ═══════════════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════════════ */
button,
.btn,
.eq-panel-btn,
.btn-gold,
.btn-olive,
.btn-outline,
.svc-acc-book-btn,
a.btn,
a.eq-panel-btn {
  text-align: center !important;
  justify-content: center !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.1rem 2.6rem;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  box-sizing: border-box;
}
.btn-gold, .btn-olive {
  background: var(--olive);
  color: #ffffff;
}
.btn-gold:hover, .btn-olive:hover {
  background: var(--olive-dark);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--olive);
  color: var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════
   ШАПКА (HEADER)
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.header-top-bar {
  border-bottom: 1px solid #e7ecdf;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-subtle);
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-top-left { display: flex; gap: 2rem; align-items: center; }
.header-top-right { display: flex; gap: 1.5rem; align-items: center; }
.header-phone-link {
  font-weight: 700;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.header-main-bar { padding: 0.35rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 1.5rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
}

[data-theme="dark"] .nav-logo-img {
  filter: brightness(1.15) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  flex: 1;
}
.nav-links-left { justify-content: flex-end; }
.nav-links-right { justify-content: flex-start; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3rem 0;
  letter-spacing: 0.05em;
  position: relative;
  transition: none !important;
}
.nav-links a::after, .nav-links-left a::after, .nav-links-right a::after,
.svc-row::before, .svc-row:hover::before, .svc-row.hi::before,
.svc-row::after, .svc-row:hover::after, .svc-row.hi::after,
.price-row-item::before, .price-row-item:hover::before,
.price-row-item::after, .price-row-item:hover::after { 
  display: none !important; 
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  border: none !important;
}
.nav-links a:hover { color: var(--olive); transition: none !important; }
.nav-links a.active { color: var(--olive); font-weight: 600; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--text-dark); transition: transform 0.3s ease, opacity 0.3s ease; }

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: var(--bg-deep, #fafaf7);
  z-index: 99999;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: 5.5rem 2rem 3rem;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(84, 102, 61, 0.1);
  border: 1px solid rgba(84, 102, 61, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark, #0a0a0a);
  line-height: 1;
  z-index: 100000;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(84, 102, 61, 0.25);
  transform: rotate(90deg);
}

.mobile-menu a {
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark, #0a0a0a);
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px dashed rgba(84, 102, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s ease, padding-left 0.25s ease, background 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--olive, #54663d);
  padding-left: 1rem;
}

/* ═══════════════════════════════════════════════
   ПОЛНОЭКРАННЫЙ БАННЕР (HERO 100vw)
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 100px;
}

.hero-fullbleed-banner {
  position: relative;
  width: 100%;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
  background: radial-gradient(circle at 50% 30%, #54663d 0%, #354224 55%, #1e2814 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.hero-fullbleed-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(168, 197, 131, 0.15) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(15, 23, 14, 0.2) 0%, rgba(15, 23, 14, 0.5) 100%);
  pointer-events: none;
}

.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  color: #ffffff;
}

.hero-giant-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-subtitle-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btn-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   ПРАВАЯ КОЛОНКА «ПОЧЕМУ ВЫБИРАЮТ НАС» (UI/UX Pro Max)
═══════════════════════════════════════════════ */
.pro-reasons-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.pro-reasons-sticky-header {
  position: sticky;
  top: 140px;
}

.pro-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.pro-reason-card {
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: 14px 1fr 50px;
  align-items: center;
  gap: 1.4rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.pro-reason-card:hover {
  border-color: var(--olive);
  background: rgba(84, 102, 61, 0.03);
  box-shadow: var(--shadow-hover);
}

.pro-reason-marker {
  width: 6px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, #c4a96a 0%, #54663d 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(196, 169, 106, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
  align-self: center;
}

.pro-reason-card:hover .pro-reason-marker {
  background: linear-gradient(180deg, #c4a96a 0%, #d4b87a 100%);
  transform: scaleY(1.25);
  box-shadow: 0 4px 14px rgba(196, 169, 106, 0.55);
}

.pro-reason-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.pro-reason-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pro-reason-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--olive);
  text-align: right;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   БЛОК ПАРАЛЛАКСА С КАРТИНКОЙ И ЦИТАТОЙ
═══════════════════════════════════════════════ */
.parallax-quote-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/2block.png') center/cover fixed no-repeat;
  text-align: center;
  padding: 5rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.parallax-quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 12, 0.75) 0%, rgba(14, 18, 12, 0.85) 100%);
}

.parallax-quote-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.parallax-quote-tag {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.parallax-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════
   УСЛУГИ КЛУБА
═══════════════════════════════════════════════ */
.pro-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.pro-service-card {
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.pro-service-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-hover);
}

.pro-service-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.pro-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-service-card:hover .pro-service-img-wrap img {
  transform: scale(1.06);
}

.pro-service-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.pro-service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.pro-service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.pro-service-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.pro-service-action-btn {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  background: var(--olive-light);
  transition: background var(--transition), color var(--transition);
}

.pro-service-card:hover .pro-service-action-btn {
  background: var(--olive);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════
   LUXURY LIGHT СЛАЙДЕР ОТЗЫВОВ
═══════════════════════════════════════════════ */
.lux-reviews-section {
  background: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.lux-reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.lux-score-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lux-score-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--olive);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lux-score-stars {
  font-size: 1.1rem;
  color: var(--olive);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.lux-score-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Сцена слайдера */
.lux-reviews-stage {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 6.5rem;
  border-top: 1px solid #e8ede0;
  border-bottom: 1px solid #e8ede0;
}

/* Декоративные кавычки через CSS */
.lux-giant-quote {
  position: absolute;
  top: 0.5rem;
  left: max(2rem, calc((100% - 960px) / 2));
  font-family: Georgia, serif;
  font-size: 12rem;
  line-height: 1;
  color: rgba(84, 102, 61, 0.07);
  pointer-events: none;
  user-select: none;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.lux-giant-quote::before { content: '\201C'; }

/* Трек */
.lux-reviews-track {
  width: min(860px, 90vw);
  position: relative;
  height: 300px;
}

/* Один слайд — всегда absolute, только opacity меняется */
.lux-review-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.lux-review-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.lux-review-stars {
  font-size: 1rem;
  color: var(--olive);
  letter-spacing: 0.15em;
  margin-bottom: 1.8rem;
}

.lux-review-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.lux-review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lux-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(84,102,61,0.25);
}

.lux-review-author-info { text-align: left; }

.lux-review-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.lux-review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Стрелки */
.lux-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(18, 18, 24, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-arrow:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.lux-arrow:active {
  transform: translateY(-50%) scale(0.93);
}

.lux-arrow-prev { left: 1.5rem; }
.lux-arrow-next { right: 1.5rem; }

@media (max-width: 768px) {
  .lux-reviews-stage {
    min-height: 460px;
    padding: 3.5rem 0 5.5rem;
  }
  .lux-reviews-track {
    width: calc(100% - 90px) !important;
    max-width: 100%;
    height: auto;
    min-height: 300px;
  }
  .lux-review-text {
    font-size: 1.05rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.55 !important;
  }
  .lux-arrow {
    width: 38px !important;
    height: 38px !important;
    z-index: 10;
  }
  .lux-arrow-prev { left: 0.3rem !important; }
  .lux-arrow-next { right: 0.3rem !important; }
}

/* Подвал точек внутри блока */
.lux-dots-stage-wrap {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lux-reviews-footer {
  display: none;
}

.lux-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lux-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd6c0;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.lux-dot.active {
  background: var(--olive);
  transform: scale(1.3);
}


/* Старые стили для страницы всех отзывов */

.review-slide-card {
  background: var(--bg-surface); border: var(--border-subtle);
  border-radius: 20px; padding: 2.2rem; display: flex; flex-direction: column;
  justify-content: space-between; box-sizing: border-box; box-shadow: var(--shadow-card);
}
.review-slide-quote { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.8rem; font-style: italic; }
.review-slide-user { display: flex; align-items: center; gap: 1rem; }
.review-avatar-letter {
  width: 48px; height: 48px; border-radius: 50%; background: var(--olive-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  color: var(--olive-dark); flex-shrink: 0;
}
.review-user-name { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--text-dark); letter-spacing: 0.04em; }
.review-user-meta { font-size: 0.8rem; color: var(--olive); margin-top: 0.2rem; }

/* ═══════════════════════════════════════════════
   EDITORIAL SHOWCASE ДЛЯ СТРАНИЦЫ «О КЛУБЕ»
═══════════════════════════════════════════════ */
.editorial-about-section {
  padding: 40px 0 90px;
}

/* 1. Блок История и Концепция */
.editorial-story-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: var(--border-subtle);
}

.editorial-story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-story-card:hover .editorial-story-bg {
  transform: scale(1.04);
}

.editorial-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0.88) 100%
  );
}

.editorial-story-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 3.5rem;
  color: #ffffff;
  max-width: 920px;
}

.editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.editorial-story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.editorial-story-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 780px;
}

.editorial-team-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.6rem;
  border-radius: 50px;
  width: fit-content;
}

.editorial-avatar-group {
  display: flex;
  align-items: center;
}

.editorial-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -12px;
}

.editorial-avatar-img:first-child { margin-left: 0; }

.editorial-team-text {
  display: flex;
  flex-direction: column;
}

.editorial-team-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.editorial-team-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

/* 2. Заголовок Инфраструктуры */
.editorial-halls-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.editorial-halls-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
  margin-top: 0.4rem;
}

/* 3. ОДИН БОЛЬШОЙ КИНЕМАТОГРАФИЧЕСКИЙ БАННЕР-СЛАЙДЕР */
.halls-showcase-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.halls-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(18, 18, 24, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.halls-control-btn.halls-prev-btn,
#halls-prev-btn {
  left: 1.5rem;
}

.halls-control-btn.halls-next-btn,
#halls-next-btn {
  right: 1.5rem;
}

.halls-control-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.halls-control-btn:active {
  transform: translateY(-50%) scale(0.93);
}

@media (max-width: 768px) {
  .halls-control-btn {
    width: 44px;
    height: 44px;
  }
  .halls-control-btn.halls-prev-btn,
  #halls-prev-btn {
    left: 0.8rem;
  }
  .halls-control-btn.halls-next-btn,
  #halls-next-btn {
    right: 0.8rem;
  }
}

.halls-banner-stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: var(--border-subtle);
  background: var(--bg-surface);
}

.halls-banner-stage.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  border-left: none;
  border-right: none;
  min-height: 560px;
}

.halls-banner-stage.full-bleed .halls-banner-content {
  padding-left: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
  padding-right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
  padding-bottom: 4.5rem;
  max-width: 960px;
}

.halls-banner-stage.full-bleed .halls-banner-badge {
  right: max(4rem, calc((100vw - 1280px) / 2 + 4rem));
  top: 3rem;
}

.halls-banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.98);
  pointer-events: none;
}

.halls-banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.halls-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.halls-banner-slide.active:hover .halls-banner-bg {
  transform: scale(1.04);
}

.halls-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.25) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

.halls-banner-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.6rem;
  border-radius: 24px;
  letter-spacing: -0.02em;
}

.halls-banner-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 4rem 3.5rem;
  color: #ffffff;
  max-width: 850px;
}

.halls-banner-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.halls-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.halls-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.halls-banner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.halls-banner-chips span {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.halls-dots-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.halls-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cdd6c0;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.halls-dot-item.active {
  background: var(--olive);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .halls-banner-stage.full-bleed {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-height: 520px !important;
  }
  .halls-banner-stage {
    min-height: 520px !important;
  }
  .halls-banner-stage.full-bleed .halls-banner-content,
  .halls-banner-content {
    padding: 2.8rem 2.5rem 2.2rem !important;
    text-align: left;
  }
  .halls-banner-stage.full-bleed .halls-banner-badge,
  .halls-banner-badge {
    right: 0.8rem !important;
    top: 0.8rem !important;
    font-size: 0.85rem !important;
    padding: 0.2rem 0.65rem !important;
    border-radius: 12px !important;
    z-index: 5;
  }
  .halls-banner-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem) !important;
    line-height: 1.25 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.5rem !important;
    padding-top: 0.1em;
  }
  .halls-banner-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
  }
  .halls-banner-chips {
    gap: 0.35rem !important;
  }
  .halls-banner-chips span {
    font-size: 0.72rem !important;
    padding: 0.25rem 0.6rem !important;
  }
  .halls-control-btn {
    width: 36px !important;
    height: 36px !important;
    z-index: 10;
  }
  #halls-prev-btn { left: 0.35rem !important; }
  #halls-next-btn { right: 0.35rem !important; }
}

.editorial-hall-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-surface);
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.editorial-hall-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.editorial-hall-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-hall-card:hover .editorial-hall-bg {
  transform: scale(1.06);
}

.editorial-hall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.88) 100%
  );
}

.editorial-hall-glass-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  letter-spacing: -0.02em;
}

.editorial-hall-body {
  position: relative;
  z-index: 2;
  padding: 2.2rem;
  color: #ffffff;
}

.editorial-hall-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.editorial-hall-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.editorial-hall-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.editorial-hall-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.editorial-hall-chips span {
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

@media (max-width: 990px) {
  .editorial-halls-grid { grid-template-columns: 1fr; }
  .editorial-story-content { padding: 2.5rem 2rem; }
  .editorial-team-row { width: 100%; border-radius: 20px; }
}

.trainers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; width: 100%; }

@media (max-width: 1024px) {
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .trainers-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   APPLE / IOS LUXURY STYLE TRAINER CARD
═══════════════════════════════════════════════ */
.trainer-card-ios {
  background: var(--bg-card, #ffffff);
  border: 10px solid #f4f6f2;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .trainer-card-ios {
  background: #131b12;
  border-color: #1c261a;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.trainer-card-ios:hover {
  transform: translateY(-8px);
  border-color: #e5ecd6;
  box-shadow: 0 35px 80px rgba(84, 102, 61, 0.18);
}

[data-theme="dark"] .trainer-card-ios:hover {
  border-color: rgba(196, 169, 106, 0.35);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
}

.trainer-card-ios-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #0f160e;
  border-radius: 26px 26px 0 0;
}

.trainer-card-ios-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trainer-card-ios:hover .trainer-card-ios-img-wrap img {
  transform: scale(1.05);
}

.trainer-ios-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.trainer-ios-exp-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0b110a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .trainer-ios-exp-tag {
  background: rgba(19, 27, 18, 0.88);
  color: var(--gold, #c4a96a);
  border: 1px solid rgba(196, 169, 106, 0.3);
}

.trainer-card-ios-content {
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trainer-ios-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink, #0b110a);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

[data-theme="dark"] .trainer-ios-name {
  color: #ffffff !important;
}

.trainer-ios-verified {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 0.3rem;
  color: #10b981;
}

.trainer-ios-verified svg {
  width: 19px;
  height: 19px;
  display: inline-block;
  vertical-align: -2px;
}

[data-theme="dark"] .trainer-ios-verified {
  color: var(--gold, #c4a96a);
}

.trainer-ios-spec {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft, #555555);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .trainer-ios-spec {
  color: rgba(255, 255, 255, 0.78) !important;
}

.trainer-ios-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(84, 102, 61, 0.12);
}

[data-theme="dark"] .trainer-ios-details {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.trainer-ios-detail-item {
  font-size: 0.84rem;
  line-height: 1.5;
}

.trainer-ios-detail-item .detail-title {
  font-weight: 700;
  color: var(--olive, #54663d);
  margin-right: 0.3rem;
}

[data-theme="dark"] .trainer-ios-detail-item .detail-title {
  color: var(--gold, #c4a96a) !important;
}

.trainer-ios-detail-item .detail-val {
  color: var(--ink-soft, #444);
}

[data-theme="dark"] .trainer-ios-detail-item .detail-val {
  color: rgba(255, 255, 255, 0.8) !important;
}

.trainer-ios-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.6rem;
  width: 100%;
}

.trainer-ios-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  width: 100%;
  max-width: 220px;
  background: var(--ink, #0b110a);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 auto;
}

.trainer-ios-btn:hover {
  background: var(--olive, #54663d);
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(84, 102, 61, 0.3);
}

[data-theme="dark"] .trainer-ios-btn {
  background: var(--gold, #c4a96a);
  color: #0b110a;
}

[data-theme="dark"] .trainer-ios-btn:hover {
  background: #ffffff;
  color: #0b110a;
  transform: scale(1.05);
}

.prices-layout { display: grid; grid-template-columns: 1fr 1.5fr 1.5fr; gap: 2rem; width: 100%; }
.price-section { background: var(--bg-surface); border: var(--border-subtle); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
.price-section-header { padding: 2rem 2rem 1.4rem; border-bottom: var(--border-subtle); background: var(--bg-subtle); }
.price-section h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dark); }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 2rem; border-bottom: 1px solid #edf1e6; }
.price-item-name { font-size: 0.95rem; color: var(--text-dark); }
.price-item-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--olive); }

.gallery-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(84, 102, 61, 0.2);
  background: var(--bg-surface, #ffffff);
  color: var(--text-muted, #475569);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.filter-btn:hover {
  background: #f1f4ec;
  color: var(--olive, #54663d);
  border-color: var(--olive, #54663d);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #54663d 0%, #354224 100%);
  color: #ffffff;
  border-color: #354224;
  box-shadow: 0 8px 24px rgba(53, 66, 36, 0.25);
  transform: translateY(-2px);
}

/* СЕТКА И РОСКОШНЫЕ КАРТОЧКИ ГАЛЕРЕИ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.gallery-card-item {
  position: relative;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-surface, #ffffff);
  border: 1px solid rgba(84, 102, 61, 0.16);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.gallery-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-item:hover .gallery-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(84, 102, 61, 0.18);
  border-color: rgba(84, 102, 61, 0.4);
}

.gallery-card-item:hover .gallery-card-inner img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
  opacity: 0.75;
  transition: opacity 0.4s ease;
}

.gallery-card-item:hover .gallery-card-overlay {
  opacity: 0.92;
}

.gallery-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.95rem;
  border-radius: 20px;
}

.gallery-card-zoom-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-item:hover .gallery-card-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-card-zoom-btn:hover {
  background: #ffffff;
  color: var(--olive-dark, #354224);
}

.gallery-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.6rem;
  color: #ffffff;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.gallery-card-item:hover .gallery-card-body {
  transform: translateY(0);
}

.gallery-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.3rem;
}

.gallery-card-title {
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

/* РОСКОШНЫЙ ЛАЙТБОКС С ЛИСТАНИЕМ И ИНФО-ПАНЕЛЬЮ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-stage {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption-bar {
  margin-top: 1.2rem;
  text-align: center;
  color: #ffffff;
}

.lightbox-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 0.2rem;
}

.lightbox-title {
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: #ffffff;
  color: #0f172a;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 2010;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-nav:hover {
  background: var(--olive, #54663d);
  border-color: var(--olive, #54663d);
  transform: translateY(-50%) scale(1.1);
}

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; width: 100%; }
.news-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid rgba(84, 102, 61, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 169, 106, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.news-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--transition); }
.news-card:hover .news-img-wrap img { transform: scale(1.05); }
.news-content { padding: 1.8rem; }

/* ═══════════════════════════════════════════════
   50/50 FULL SCREEN SPLIT CONTACTS STYLES
═══════════════════════════════════════════════ */
.contacts-split-section {
  display: flex;
  min-height: calc(100vh - 120px);
  padding-top: 120px;
  width: 100%;
  background: #fafaf7;
}

.contacts-split-map {
  width: 50%;
  flex-shrink: 0;
  min-height: 550px;
  position: relative;
}

.contacts-split-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contacts-split-info {
  width: 50%;
  padding: 4.5rem 5rem;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-left: 1px solid rgba(84, 102, 61, 0.15);
}

.contacts-split-inner {
  max-width: 540px;
  width: 100%;
}

.contacts-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #54663d;
  margin-bottom: 0.6rem;
}

.contacts-main-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.05;
  margin-bottom: 2.8rem;
}

.contacts-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contacts-detail-item {
  border-bottom: 1px solid rgba(84, 102, 61, 0.12);
  padding-bottom: 1.6rem;
}

.contacts-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4a96a;
  margin-bottom: 0.4rem;
}

.contacts-detail-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a2414;
  line-height: 1.2;
}

.contacts-detail-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #54663d;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.contacts-detail-phone:hover {
  color: #c4a96a;
}

.contacts-detail-sub {
  display: block;
  font-size: 0.88rem;
  color: #667085;
  margin-top: 0.25rem;
}

.contacts-split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contacts-split-section {
    flex-direction: column-reverse;
    padding-top: 100px;
    min-height: auto;
  }
  .contacts-split-map {
    width: 100%;
    min-height: 420px;
    height: 420px;
  }
  .contacts-split-info {
    width: 100%;
    padding: 3rem 1.8rem;
    border-left: none;
  }
}

/* ═══════════════════════════════════════════════
   EQUINOX-STYLE РАСШИРЯЮЩИЕСЯ ПАНЕЛИ УСЛУГ
═══════════════════════════════════════════════ */
.eq-services-section {
  padding: 80px 0 0;
  background: var(--bg-deep);
}

.eq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding-bottom: 2.5rem;
}

.eq-header .btn {
  margin: 0 auto;
}

/* ── Панель-обёртка ── */
.eq-panels-wrap {
  display: flex;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

/* Одна панель */
.eq-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Развёрнутая панель */
.eq-panel:hover {
  flex: 4;
}

/* Фон изображения */
.eq-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.eq-panel:hover .eq-panel-bg {
  transform: scale(1);
}

/* Тёмный оверлей */
.eq-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 8, 0.3) 0%,
    rgba(10, 12, 8, 0.75) 100%
  );
  transition: background 0.5s ease;
  z-index: 1;
}

.eq-panel:hover .eq-panel-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 12, 8, 0.15) 0%,
    rgba(10, 12, 8, 0.85) 100%
  );
}

/* Состояние покоя: номер + вертикальный текст */
.eq-panel-idle {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
}

.eq-panel:hover .eq-panel-idle {
  opacity: 0;
  pointer-events: none;
}

.eq-panel-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  letter-spacing: 0.05em;
}

.eq-panel-idle-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Содержимое — анимируется при ховере */
.eq-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2.5rem 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease 0.2s,
    transform 0.4s ease 0.2s;
  pointer-events: none;
}

.eq-panel:hover .eq-panel-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eq-panel-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}

.eq-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
  padding-top: 0.1em;
  margin-bottom: 0.9rem;
}

.eq-panel-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 340px;
}

.eq-panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.eq-panel-chips span {
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.eq-panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  background: #ffffff;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  box-sizing: border-box;
}

.eq-panel-btn:hover {
  background: var(--olive);
  color: #ffffff;
}

/* Разделительная линия между панелями */
.eq-panel + .eq-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Мобильный стек */
@media (max-width: 900px) {
  .eq-panels-wrap {
    flex-direction: column;
    height: auto;
  }
  .eq-panel {
    flex: none;
    height: auto;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .eq-panel:hover { flex: none; }
  .eq-panel-idle { display: none !important; }
  .eq-panel-content {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 2.4rem 1.5rem 2rem !important;
  }
  .eq-panel-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    padding-top: 0.15em;
    margin-bottom: 0.6rem !important;
  }
  .eq-panel-desc {
    max-width: 100% !important;
    margin-bottom: 1rem !important;
  }
  .eq-panel-chips {
    margin-bottom: 1.2rem !important;
  }
}

.services-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

/* ── Табы-кнопки ── */
.svc-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: 16px;
  padding: 0.5rem;
  width: fit-content;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.svc-tab svg { opacity: 0.5; transition: opacity var(--transition); }
.svc-tab:hover { color: var(--olive); background: var(--olive-light); }
.svc-tab:hover svg { opacity: 1; }

.svc-tab.active {
  background: var(--olive);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(84, 102, 61, 0.25);
}
.svc-tab.active svg { opacity: 1; }

/* ── Панели-слайды ── */
.svc-panels {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: var(--bg-surface);
  border: var(--border-subtle);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.05);
}

.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  opacity: 0;
  transform: translateX(30px);
}

.svc-panel.active {
  display: grid;
  animation: svcSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes svcSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Стагерные анимации для дочерних элементов */
.svc-panel.active .svc-panel-num { animation: svcFadeUp 0.4s 0.05s both; }
.svc-panel.active .svc-panel-tag { animation: svcFadeUp 0.4s 0.1s both; }
.svc-panel.active .svc-panel-title { animation: svcFadeUp 0.4s 0.15s both; }
.svc-panel.active .svc-panel-desc { animation: svcFadeUp 0.4s 0.2s both; }
.svc-panel.active .svc-panel-features { animation: svcFadeUp 0.4s 0.25s both; }
.svc-panel.active .btn { animation: svcFadeUp 0.4s 0.3s both; }

@keyframes svcFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Фото-секция */
.svc-panel-img {
  position: relative;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
}

.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-panel.active .svc-panel-img img {
  animation: svcImgZoom 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes svcImgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.svc-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.08));
}

/* Текстовая секция */
.svc-panel-body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-panel-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--olive-light);
  padding-bottom: 1rem;
  width: 60px;
}

.svc-panel-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.6rem;
  margin-top: 1rem;
}

.svc-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.svc-panel-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.svc-panel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-panel-features span {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .svc-panel.active { grid-template-columns: 1fr; }
  .svc-panel-img { border-radius: 28px 28px 0 0; min-height: 260px; }
  .svc-panel-body { padding: 2rem; }
  .svc-tabs { width: 100%; }
}

/* ═══════════════════════════════════════════════
   ПРЕМИУМ ФУТЕР
═══════════════════════════════════════════════ */
.site-footer {
  background: #12160e !important;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

/* Единый wrapper с теми же отступами что и .container на странице */
.footer-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 4rem;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 5rem 0 4rem;
  align-items: start;
}

/* Бренд */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2.5rem;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

[data-theme="dark"] .footer-logo-img {
  filter: brightness(1.15) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.15));
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 90px;
    max-width: 260px;
  }
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  width: fit-content;
  margin-top: 0.4rem;
}

.footer-cta:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #ffffff;
}

/* Колонки навигации */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.4rem;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.25s ease;
  line-height: 1.5;
}

.footer-nav-col a:hover { color: #ffffff; }

.footer-address,
.footer-hours {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Разделитель */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Нижняя строка */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.6rem 0 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 1.8rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: var(--olive); }

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}


.whatsapp-float { position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.3); transition: var(--transition); }

@media (max-width: 1200px) {
  .pro-reasons-split { grid-template-columns: 1fr; gap: 2rem; }
  .pro-reasons-sticky-header { position: static; }
  .pro-services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .header-top-bar { display: none; }
}
@media (max-width: 1024px) {
  .about-flex-layout { grid-template-columns: 1fr; }
  .prices-layout { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .reviews-summary-header { flex-direction: column; text-align: center; gap: 1.5rem; }
}
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }
  .container { padding: 0 1rem; }
  .header-top-inner { flex-direction: column; gap: 0.3rem; text-align: center; }
  .header-top-left, .header-top-right { font-size: 0.75rem; justify-content: center; }
  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0;
  }
  .nav-logo { margin: 0; }
  .nav-logo-img { height: 42px; max-width: 160px; }
  .theme-toggle-btn {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: 0.75rem !important;
    z-index: 10;
  }
  .nav-links { display: none; }
  .burger { display: flex !important; flex-shrink: 0; position: relative !important; z-index: 10; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .review-slide-card { flex: 0 0 100%; }
  .parallax-quote-banner { background-attachment: scroll; }
}

/* ============================================================
   ULTRA-PREMIUM EQUIPMENT SHOWCASE (EDITORIAL LUXURY)
   ============================================================ */
.equipment-luxury-section {
  padding: 6rem 0;
  background: var(--bg-deep, #fafaf7);
}

.equipment-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.equipment-header-left {
  max-width: 600px;
}

.equipment-header-right {
  max-width: 440px;
}

.equipment-header-sub {
  font-size: 1.02rem;
  color: var(--text-muted, #475569);
  line-height: 1.65;
  border-left: 2px solid var(--olive, #54663d);
  padding-left: 1.2rem;
}

.equipment-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.equipment-lux-card {
  background: var(--bg-surface, #ffffff);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(84, 102, 61, 0.14);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.equipment-lux-card:hover {
  box-shadow: 0 10px 30px rgba(84, 102, 61, 0.1);
  border-color: rgba(84, 102, 61, 0.35);
}

.equipment-lux-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  background: #f1f4ec;
}

.equipment-lux-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-lux-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olive-dark, #354224);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(84, 102, 61, 0.2);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.equipment-lux-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.4rem 0.6rem 0.6rem;
}

.equipment-lux-tag {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive, #54663d);
  margin-bottom: 0.5rem;
}

.equipment-lux-title {
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-dark, #0f172a);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.equipment-lux-desc {
  font-size: 0.95rem;
  color: var(--text-muted, #475569);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.equipment-lux-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.equipment-lux-chips span {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background: var(--bg-subtle, #f1f4ec);
  border: 1px solid rgba(84, 102, 61, 0.18);
  color: var(--olive-dark, #354224);
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.equipment-lux-card:hover .equipment-lux-chips span {
  background: var(--olive, #54663d);
  border-color: var(--olive, #54663d);
  color: #ffffff;
}

@media (max-width: 900px) {
  .equipment-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .equipment-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ============================================================
   UNIFIED PRICING & SERVICES PAGE STYLING (ULTRA-PREMIUM LUXURY)
   ============================================================ */
.unified-pricing-section {
  padding: 4.5rem 0 7rem;
  background: var(--bg-deep, #fafaf7);
}

.pricing-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(84, 102, 61, 0.18);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 90px;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cat-nav-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark, #0f172a);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
}

.cat-nav-btn:hover {
  background: var(--bg-subtle, #f1f4ec);
  color: var(--olive, #54663d);
}

.cat-nav-btn.active {
  background: var(--olive-dark, #354224);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(53, 66, 36, 0.25);
}

.pricing-block,
.pricing-section-block {
  margin-bottom: 5.5rem;
  scroll-margin-top: 180px;
}

.pricing-menu-head {
  margin-bottom: 2.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(84, 102, 61, 0.16);
}

.pricing-menu-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4a96a;
  margin-bottom: 0.5rem;
}

.pricing-menu-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.pricing-menu-desc {
  font-size: 1rem;
  color: #55604e;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

/* Комплексы эпиляции */
.pricing-complexes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3.5rem;
}

.complex-card {
  position: relative;
  background: var(--bg-surface, #ffffff);
  border-radius: 24px;
  padding: 2.2rem 1.6rem 1.8rem;
  border: 1px solid rgba(84, 102, 61, 0.15);
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.complex-card:hover {
  border-color: var(--olive, #54663d);
  box-shadow: 0 16px 40px rgba(84, 102, 61, 0.12);
  transform: translateY(-4px);
}

.complex-card.featured {
  background: linear-gradient(160deg, #ffffff 0%, #f4f7f0 100%);
  border: 2px solid var(--olive, #54663d);
  box-shadow: 0 10px 32px rgba(84, 102, 61, 0.12);
}

.complex-badge {
  position: absolute;
  top: -13px;
  right: 1.4rem;
  background: linear-gradient(135deg, #54663d 0%, #354224 100%);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(53, 66, 36, 0.25);
}

.complex-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive, #54663d);
  margin-bottom: 0.5rem;
}

.complex-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark, #0f172a);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.complex-desc {
  font-size: 0.92rem;
  color: var(--text-muted, #475569);
  line-height: 1.55;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.complex-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--olive-dark, #354224);
  margin-bottom: 1.2rem;
  line-height: 1;
}

/* Строки таблицы с ценами */
.pricing-rows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.3rem;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.price-row-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 243, 0.92));
  border: 1px solid rgba(196, 169, 106, 0.3);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), inset 0 1px 0 #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.price-row-item::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(196, 169, 106, 0.15), transparent 70%);
  opacity: 0.5;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.price-row-item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(196, 169, 106, 0.75);
  box-shadow: 0 22px 50px rgba(53, 66, 36, 0.14), 0 0 30px rgba(196, 169, 106, 0.2);
}

.price-row-item:hover::before { opacity: 1; }

.price-row-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
  letter-spacing: 0.01em;
  line-height: 1.35;
  position: relative;
  z-index: 2;
}

.price-row-note {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  margin-top: 0.3rem;
  font-weight: 400;
  line-height: 1.45;
}

.price-row-dots {
  display: none !important;
}

.price-row-val {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.35rem !important;
  color: #f5cc7a !important;
  background: linear-gradient(135deg, #354224 0%, #485b32 100%) !important;
  border: 1px solid rgba(196, 169, 106, 0.4) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 14px !important;
  white-space: nowrap !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  box-shadow: 0 4px 14px rgba(53, 66, 36, 0.25) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  z-index: 2;
}

.price-row-item:hover .price-row-val {
  background: linear-gradient(135deg, #485b32 0%, #637b46 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(53, 66, 36, 0.35), 0 0 15px rgba(245, 204, 122, 0.3) !important;
  transform: scale(1.05) !important;
}

.price-row-val {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--olive-dark, #354224);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.table-group-title,
.pricing-banner-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark, #0f172a);
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .pricing-complexes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-rows-grid {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 640px) {
  .pricing-complexes-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cat-nav {
    top: 70px;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 0.6rem;
  }
  .price-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .price-row-dots {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   ✨ БЬЮТИФИКАЦИЯ УСЛУГ — PREMIUM ANIMATIONS
═══════════════════════════════════════════════ */

@keyframes aura-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.08); }
  66%      { transform: translate(-20px,25px) scale(0.95); }
}
@keyframes aura-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes aura-badge-pulse {
  0%,100% { box-shadow: 0 4px 12px rgba(53,66,36,.25), 0 0 0 0 rgba(84,102,61,.45); }
  50%     { box-shadow: 0 6px 20px rgba(53,66,36,.35), 0 0 0 10px rgba(84,102,61,0); }
}
@keyframes aura-price-pop {
  0%   { opacity: 0; transform: translateY(8px) scale(.92); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes aura-underline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes aura-fade-up {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes aura-tilt {
  0%,100% { transform: rotate(0deg); }
  50%     { transform: rotate(1.2deg); }
}

/* ── HERO ─────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 500px at 15% 0%, rgba(84,102,61,.12), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(196,169,106,.10), transparent 60%),
    var(--bg-deep, #fafaf7);
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.page-hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(84,102,61,.35), transparent 70%);
  top: -120px; left: -80px;
  animation: aura-float 14s ease-in-out infinite;
}
.page-hero::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(196,169,106,.28), transparent 70%);
  bottom: -140px; right: -60px;
  animation: aura-float 18s ease-in-out infinite reverse;
}
.page-hero .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.2;
  padding-top: 0.15em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: none;
  -webkit-text-fill-color: initial;
}
.page-hero .breadcrumbs,
.page-hero .section-title,
.page-hero .section-subtitle {
  animation: aura-fade-up .9s cubic-bezier(.16,1,.3,1) both;
}
.page-hero .section-title    { animation-delay: .08s; }
.page-hero .section-subtitle { animation-delay: .18s; }

/* ── CATEGORY NAV ─────────────────────────────── */
.pricing-cat-nav {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  box-shadow:
    0 10px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.cat-nav-btn {
  position: relative;
  overflow: hidden;
}
.cat-nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(84,102,61,.14), rgba(196,169,106,.12));
  opacity: 0;
  transition: opacity .35s ease;
  border-radius: inherit;
  z-index: -1;
}
.cat-nav-btn:hover::before { opacity: 1; }
.cat-nav-btn.active {
  background: linear-gradient(135deg, #354224 0%, #54663d 100%);
  box-shadow: 0 8px 22px rgba(53,66,36,.28), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-1px);
}

/* ── PRICING BLOCK HEADER ─────────────────────── */
.pricing-block-header {
  position: relative;
  border-bottom: none;
  padding-bottom: 1.6rem;
}
.pricing-block-header::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, #54663d, #c4a96a, transparent 80%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}
.pricing-block.reveal.visible .pricing-block-header::after { transform: scaleX(1); }
.pricing-block-header .label {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(84,102,61,.12), rgba(196,169,106,.10));
  color: var(--olive-dark, #354224);
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .7rem;
  text-transform: uppercase;
}

/* ── COMPLEX CARDS ────────────────────────────── */
.complex-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(6px);
}
.complex-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 180deg at 50% 50%,
     rgba(84,102,61,0) 0deg,
     rgba(84,102,61,.55) 90deg,
     rgba(196,169,106,.55) 180deg,
     rgba(84,102,61,0) 360deg);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -2;
  filter: blur(14px);
}
.complex-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--bg-surface, #fff);
  z-index: -1;
}
.complex-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 50px rgba(84,102,61,.16);
}
.complex-card:hover::before { opacity: .9; }
.complex-card.featured {
  transform: translateY(-4px);
}
.complex-card.featured::after {
  background: linear-gradient(160deg, #ffffff 0%, #f4f7f0 100%);
}
.complex-card .complex-price {
  transition: transform .35s cubic-bezier(.16,1,.3,1), color .35s ease;
}
.complex-card:hover .complex-price {
  transform: scale(1.06);
  color: #354224;
}
.complex-badge {
  animation: aura-badge-pulse 2.4s ease-in-out infinite;
}

/* Sheen sweep on featured */
.complex-card.featured .complex-title {
  background: linear-gradient(90deg, #354224 0%, #c4a96a 50%, #354224 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aura-shimmer 6s linear infinite;
}

/* ── PRICING ROWS ─────────────────────────────── */
.pricing-rows-grid {
  position: relative;
  overflow: hidden;
}
.pricing-rows-grid::before {
  content: "";
  position: absolute;
  top: 0; left: -20%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(196,169,106,.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.pricing-block.reveal.visible .pricing-rows-grid::before { transform: translateX(260%); }

.price-row-item {
  position: relative;
  overflow: hidden;
}
.price-row-item::before,
.price-row-item:hover::before {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  width: 0 !important;
}
.price-row-item:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}
.price-row-item:hover .price-row-val { color: inherit !important; transform: none !important; }

.price-row-val {
  transition: transform .3s ease, color .3s ease;
  display: inline-block;
}
.price-row-item.featured-row {
  background: transparent !important;
  border-left: none !important;
  border-image: none !important;
  box-shadow: none !important;
}

/* ── STAGGERED REVEAL ─────────────────────────── */
.reveal { transition: none; opacity: 0; transform: translateY(28px); filter: blur(6px); }
.reveal.visible {
  animation: aura-fade-up .8s cubic-bezier(.16,1,.3,1) forwards;
}
.pricing-block.reveal.visible .complex-card,
.pricing-block.reveal.visible .price-row-item {
  animation: aura-fade-up .7s cubic-bezier(.16,1,.3,1) both;
}
.pricing-block.reveal.visible .complex-card:nth-child(1)   { animation-delay: .05s; }
.pricing-block.reveal.visible .complex-card:nth-child(2)   { animation-delay: .12s; }
.pricing-block.reveal.visible .complex-card:nth-child(3)   { animation-delay: .19s; }
.pricing-block.reveal.visible .complex-card:nth-child(4)   { animation-delay: .26s; }
.pricing-block.reveal.visible .price-row-item:nth-child(n) { animation-delay: calc(.04s * var(--i, 0)); }

/* Small "Записаться" gold button inside cards */
.complex-card .btn-gold {
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.complex-card .btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.complex-card:hover .btn-gold::after { transform: translateX(120%); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════
   💎 РЕДИЗАЙН ЦЕНОВЫХ СТРОК → ИНТЕРАКТИВНЫЕ КАРТОЧКИ
═══════════════════════════════════════════════ */
.pricing-rows-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
@media (min-width: 1100px) { .pricing-rows-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .pricing-rows-grid { grid-template-columns: 1fr; } }

.price-row-item::after { display: none !important; }
.price-row-item.featured-row,
.svc-row.hi {
  border: 1px solid rgba(196, 169, 106, 0.25) !important;
}

/* ─────────────────────────── LUXURY CLEAN BENTO CARDS ─────────────────────────── */
.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
  width: 100%;
}
@media (max-width: 640px) { .svc-card-grid { grid-template-columns: 1fr; } }

.svc-card-luxury {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.4rem 1.5rem !important;
  background: linear-gradient(180deg, #ffffff 0%, #fafbf8 100%) !important;
  border: 1px solid rgba(196, 169, 106, 0.3) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
  transform: none !important;
  cursor: pointer;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  min-height: 175px;
}

.svc-card-luxury:hover {
  transform: none !important;
  border-color: rgba(196, 169, 106, 0.7) !important;
  box-shadow: 0 10px 30px rgba(53, 66, 36, 0.08), 0 0 20px rgba(196, 169, 106, 0.12) !important;
  background: #ffffff !important;
}

.svc-card-header,
.svc-card-icon,
.svc-card-tag {
  display: none !important;
}

.svc-card-body {
  flex: 1;
  margin-top: 0.2rem;
}

.svc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.3 !important;
  margin: 0 0 0.3rem 0 !important;
}

.svc-card-sub {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.83rem !important;
  color: #64748b !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

.svc-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(84, 102, 61, 0.1);
  width: 100%;
  margin-top: 0.3rem;
  box-sizing: border-box;
}

.svc-card-price {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #f5cc7a !important;
  background: linear-gradient(135deg, #354224 0%, #485b32 100%) !important;
  border: 1px solid rgba(196, 169, 106, 0.4) !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  box-shadow: 0 3px 10px rgba(53, 66, 36, 0.15) !important;
  flex-shrink: 0 !important;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #54663d;
  transition: color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.svc-card-luxury:hover .svc-card-cta {
  color: #a8894a;
}

/* ─────────────────────────── LUXURY INTERACTIVE ACCORDIONS ─────────────────────────── */
.svc-acc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.svc-acc-item {
  background: linear-gradient(145deg, #ffffff 0%, #f7f9f4 100%);
  border: 1px solid rgba(196, 169, 106, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-acc-item.active {
  border-color: rgba(196, 169, 106, 0.8);
  box-shadow: 0 16px 40px rgba(53, 66, 36, 0.12), 0 0 25px rgba(196, 169, 106, 0.15);
  background: #ffffff;
}

.svc-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.svc-acc-header:hover {
  background: rgba(84, 102, 61, 0.03);
}

.svc-acc-title-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.svc-acc-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(84, 102, 61, 0.1), rgba(196, 169, 106, 0.15));
  border: 1px solid rgba(196, 169, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #354224;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.svc-acc-item.active .svc-acc-icon,
.svc-acc-header:hover .svc-acc-icon {
  background: linear-gradient(135deg, #354224, #54663d);
  color: #f5cc7a;
  transform: scale(1.06);
}

.svc-acc-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.svc-acc-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.83rem;
  color: #64748b;
  margin-top: 0.2rem;
  display: block;
  font-weight: 400;
}

.svc-acc-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.svc-acc-price {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f5cc7a;
  background: linear-gradient(135deg, #354224 0%, #485b32 100%);
  border: 1px solid rgba(196, 169, 106, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(53, 66, 36, 0.2);
}

.svc-acc-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(84, 102, 61, 0.08);
  border: 1px solid rgba(84, 102, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #354224;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.svc-acc-item.active .svc-acc-toggle {
  transform: rotate(180deg);
  background: #c4a96a;
  color: #ffffff;
  border-color: #c4a96a;
}

.svc-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
  background: rgba(244, 247, 240, 0.5);
}

.svc-acc-item.active .svc-acc-content {
  max-height: 250px;
  opacity: 1;
}

.svc-acc-content-inner {
  padding: 1.2rem 1.6rem 1.5rem;
  border-top: 1px dashed rgba(84, 102, 61, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.svc-acc-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.svc-acc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #354224 0%, #54663d 100%);
  color: #f5cc7a !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(196, 169, 106, 0.4);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(53, 66, 36, 0.2);
  transition: all 0.3s ease;
}

.svc-acc-book-btn:hover {
  background: linear-gradient(135deg, #485b32 0%, #637b46 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(53, 66, 36, 0.3);
}

/* ═══════════════════════════════════════════════
   🪟 МОДАЛЬНОЕ ОКНО
═══════════════════════════════════════════════ */
.aura-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}
.aura-modal.open { display: flex; }
.aura-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: aura-fade-in .35s ease forwards;
}
.aura-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(15,23,42,.35);
  transform: translateY(30px) scale(.94);
  opacity: 0;
  animation: aura-modal-in .55s cubic-bezier(.16,1,.3,1) forwards;
}
.aura-modal__dialog::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.aura-modal.closing .aura-modal__dialog { animation: aura-modal-out .3s ease forwards; }
.aura-modal.closing .aura-modal__backdrop { animation: aura-fade-out .3s ease forwards; }

@keyframes aura-fade-in  { to { opacity: 1; } }
@keyframes aura-fade-out { to { opacity: 0; } }
@keyframes aura-modal-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aura-modal-out {
  to { opacity: 0; transform: translateY(20px) scale(.96); }
}

.aura-modal__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #eef2e6;
}
.aura-modal__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: aura-media-in 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes aura-media-in {
  to { transform: scale(1); }
}
.aura-modal__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.aura-modal__tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  z-index: 2;
  padding: 0.4rem 0.9rem;
}
/* ═══════════════════════════════════════════════
   MAGAZINE LOOKBOOK GALLERY SHOWCASE
═══════════════════════════════════════════════ */
.gallery-luxury-section {
  padding: 80px 0 120px;
  background: #ffffff;
  color: #0a0a0a;
}

.editorial-gallery-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.editorial-gallery-header .label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #54663d;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.editorial-gallery-header .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1.05;
}

/* Bento Magazine Lookbook Gallery */
.gallery-luxury-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 1.8rem;
  width: 100%;
}

.gallery-bento-card {
  position: relative;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-bento-card-1 { grid-column: span 7; grid-row: span 2; }
.gallery-bento-card-2 { grid-column: span 5; grid-row: span 1; }
.gallery-bento-card-3 { grid-column: span 5; grid-row: span 1; }
.gallery-bento-card-4 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-5 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-6 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-7 { grid-column: span 6; grid-row: span 1; }
.gallery-bento-card-8 { grid-column: span 6; grid-row: span 1; }
.gallery-bento-card-9 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-10 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-11 { grid-column: span 4; grid-row: span 1; }
.gallery-bento-card-12 { grid-column: span 6; grid-row: span 1; }
.gallery-bento-card-13 { grid-column: span 6; grid-row: span 1; }

.gallery-bento-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #0f140c;
  border: 1px solid rgba(196, 169, 106, 0.25);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.gallery-bento-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-bento-card:hover .gallery-bento-inner {
  border-color: rgba(196, 169, 106, 0.75);
  box-shadow: 0 22px 50px rgba(84, 102, 61, 0.22), 0 0 25px rgba(196, 169, 106, 0.15);
}

.gallery-bento-card:hover .gallery-bento-inner img {
  transform: scale(1.07);
}

.gallery-bento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 29, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.gallery-bento-card:hover .gallery-bento-overlay {
  opacity: 1;
}

.gallery-bento-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 169, 106, 0.95);
  color: #0a0f1d;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.gallery-bento-card:hover .gallery-bento-zoom {
  transform: scale(1);
}

@media (max-width: 990px) {
  .gallery-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
  .gallery-bento-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .gallery-luxury-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery-bento-card {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .gallery-bento-inner {
    border-radius: 20px;
  }
}

.gallery-lux-card {
  position: relative;
  cursor: pointer;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-lux-card-1 { grid-column: span 7; grid-row: span 2; }
.gallery-lux-card-2 { grid-column: span 5; grid-row: span 1; }
.gallery-lux-card-3 { grid-column: span 5; grid-row: span 1; }
.gallery-lux-card-4 { grid-column: span 4; grid-row: span 1; }
.gallery-lux-card-5 { grid-column: span 8; grid-row: span 1; }

.gallery-lux-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0f1d;
  border: 1px solid rgba(196, 169, 106, 0.22);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.gallery-lux-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sheen sweep effect */
.gallery-lux-sheen {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 3;
}

.gallery-lux-card:hover .gallery-lux-sheen {
  transform: translate(300%, 0) rotate(25deg);
}

.gallery-lux-card:hover .gallery-lux-inner {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(84, 102, 61, 0.25);
  border-color: rgba(196, 169, 106, 0.65);
}

.gallery-lux-card:hover .gallery-lux-inner img {
  transform: scale(1.09);
}

.gallery-lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  opacity: 0.78;
  transition: opacity 0.4s ease;
}

.gallery-lux-card:hover .gallery-lux-overlay {
  opacity: 0.94;
}

.gallery-lux-top {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-lux-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.4rem 1.15rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-lux-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lux-card:hover .gallery-lux-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-lux-zoom:hover {
  background: #c4a96a;
  border-color: #c4a96a;
  color: #0f172a;
}

.gallery-lux-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 2.2rem;
  color: #ffffff;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.gallery-lux-card:hover .gallery-lux-bottom {
  transform: translateY(0);
}

.gallery-lux-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4a96a;
  display: block;
  margin-bottom: 0.4rem;
}

.gallery-lux-title {
  font-family: var(--font-display, 'Tenor Sans', serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.gallery-lux-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-top: 0.4rem;
  max-width: 520px;
}

.gallery-lux-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #c4a96a, transparent);
  margin-top: 1.1rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.gallery-lux-card:hover .gallery-lux-line {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .gallery-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
  .gallery-lux-card-1 { grid-column: span 2; grid-row: span 1; }
  .gallery-lux-card-2 { grid-column: span 1; grid-row: span 1; }
  .gallery-lux-card-3 { grid-column: span 1; grid-row: span 1; }
  .gallery-lux-card-4 { grid-column: span 1; grid-row: span 1; }
  .gallery-lux-card-5 { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 640px) {
  .gallery-luxury-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-lux-card-1, .gallery-lux-card-2, .gallery-lux-card-3, .gallery-lux-card-4, .gallery-lux-card-5 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM REVIEWS PAGE STYLES
═══════════════════════════════════════════════ */
.reviews-page-section {
  padding: 40px 0 100px;
  background: #fafaf7;
}

.reviews-summary-card {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 3.5rem;
  align-items: center;
  background: linear-gradient(135deg, #111a10 0%, #1c2a18 50%, #0c130a 100%);
  border: 1px solid rgba(196, 169, 106, 0.45);
  border-radius: 28px;
  padding: 3.2rem 3.5rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2), 0 0 30px rgba(196, 169, 106, 0.12);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.reviews-summary-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 169, 106, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-summary-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 169, 106, 0.35);
  border-radius: 24px;
  padding: 2.2rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.reviews-summary-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  color: #c4a96a;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 15px rgba(196, 169, 106, 0.35);
}

.reviews-summary-stars {
  color: #f59e0b;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.reviews-summary-yandex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.reviews-summary-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4a96a;
  margin-bottom: 0.8rem;
}

.reviews-summary-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.9rem;
  line-height: 1.05;
}

.reviews-summary-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 680px;
}

@media (max-width: 900px) {
  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.2rem;
    text-align: center;
  }
  .reviews-summary-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.reviews-lux-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2.2rem;
  width: 100%;
  margin-top: 3.5rem;
}

.review-avatar-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 3.8rem 2.2rem 2.2rem;
  text-align: center;
  border: 1px solid rgba(84, 102, 61, 0.16);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.review-avatar-card:hover {
  border-color: rgba(196, 169, 106, 0.65);
  box-shadow: 0 22px 50px rgba(84, 102, 61, 0.15), 0 0 20px rgba(196, 169, 106, 0.1);
}

.review-avatar-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.review-avatar-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #54663d 0%, #2c3620 100%);
  border: 4px solid #ffffff;
  color: #f3f6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.review-card-author {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a2414;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.review-card-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}

.review-card-text {
  font-size: 0.98rem;
  line-height: 1.72;
  color: #4a5568;
  margin-bottom: 1.6rem;
  font-style: normal;
  max-width: 92%;
}

.review-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #54663d;
  background: #f2f6ed;
  border: 1px solid rgba(84, 102, 61, 0.22);
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  display: inline-block;
}

@media (max-width: 900px) {
  .reviews-lux-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  .reviews-page-section {
    padding-top: 120px;
  }
  .reviews-hero-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem;
    text-align: center;
  }
  .reviews-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .reviews-lux-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   🌙 ТЁМНАЯ ТЕМА — DARK LUXURY THEME
═══════════════════════════════════════════════ */
[data-theme="dark"] {
  --bg-deep: #0b110a;
  --bg-surface: #121a11;
  --bg-subtle: #172215;
  --bg-card: #141d13;
  
  --olive: #809c5d;
  --olive-dark: #a1c278;
  --olive-light: #21301d;
  --olive-glow: rgba(128, 156, 93, 0.22);
  
  --text-dark: #f0f4ec;
  --text-muted: #9eb092;
  --text-light: #798a6d;
  
  --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
  --border-olive: 1px solid rgba(128, 156, 93, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.7);
}

/* Dark theme specific overrides */
[data-theme="dark"] body,
[data-theme="dark"] body.svc-page {
  background: #0b110a !important;
  color: #f0f4ec !important;
}

[data-theme="dark"] #navbar,
[data-theme="dark"] .header-top-bar,
[data-theme="dark"] .header-main-bar {
  background: rgba(11, 17, 10, 0.96) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .nav-links a {
  color: #dbe4d5;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .page-hero .section-title,
[data-theme="dark"] .contacts-main-title,
[data-theme="dark"] .pricing-menu-title,
[data-theme="dark"] .complex-title,
[data-theme="dark"] .h1, [data-theme="dark"] .h2, [data-theme="dark"] .h3 {
  color: #f3f7f0 !important;
}

[data-theme="dark"] .page-hero,
[data-theme="dark"] .pricing-cat-nav,
[data-theme="dark"] .contacts-split-section,
[data-theme="dark"] .contacts-split-info,
[data-theme="dark"] .review-avatar-card,
[data-theme="dark"] .complex-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .trainer-card,
[data-theme="dark"] .equipment-lux-card,
[data-theme="dark"] .editorial-story-card,
[data-theme="dark"] .svc-hero {
  background: #141d13 !important;
  color: #f0f4ec !important;
  border-color: rgba(128, 156, 93, 0.25) !important;
}

[data-theme="dark"] .lux-reviews-section,
[data-theme="dark"] .gallery-luxury-section,
[data-theme="dark"] .editorial-gallery-section,
[data-theme="dark"] .reviews-grid-section,
[data-theme="dark"] .reviews-page-section,
[data-theme="dark"] .unified-pricing-section,
[data-theme="dark"] .equipment-luxury-section,
[data-theme="dark"] .editorial-about-section {
  background: #0b110a !important;
  color: #f0f4ec !important;
}

[data-theme="dark"] .lux-reviews-stage {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .lux-giant-quote {
  color: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="dark"] .lux-review-text {
  color: #e2e9dc !important;
}

[data-theme="dark"] .lux-review-author-name {
  color: #f3f7f0 !important;
}

[data-theme="dark"] .lux-review-author-meta {
  color: #9eb092 !important;
}

[data-theme="dark"] .lux-score-num {
  color: #c4a96a !important;
}

[data-theme="dark"] .lux-score-stars {
  color: #f59e0b !important;
}

[data-theme="dark"] .lux-score-sub {
  color: #9eb092 !important;
}

[data-theme="dark"] .contacts-split-info {
  background: #121a11 !important;
}

[data-theme="dark"] .contacts-detail-val {
  color: #f0f4ec !important;
}

[data-theme="dark"] .price-row-item {
  background: linear-gradient(180deg, #182416 0%, #121a11 100%) !important;
  border-color: rgba(128, 156, 93, 0.35) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .price-row-item.featured-row {
  background: linear-gradient(135deg, #20301d 0%, #152213 55%, #24301d 100%) !important;
  border-color: rgba(196, 169, 106, 0.55) !important;
}

[data-theme="dark"] .price-row-name,
[data-theme="dark"] .pricing-menu-title,
[data-theme="dark"] .table-group-title,
[data-theme="dark"] .complex-title,
[data-theme="dark"] .svc-row .rn,
[data-theme="dark"] .svc-head-body h2,
[data-theme="dark"] .svc-list-title,
[data-theme="dark"] .svc-nav-title,
[data-theme="dark"] .svc-hero h1,
[data-theme="dark"] .pricing-section-block h2,
[data-theme="dark"] .pricing-menu-head h2,
[data-theme="dark"] .news-card-title,
[data-theme="dark"] .news-title,
[data-theme="dark"] .news-single-title,
[data-theme="dark"] #news-article-wrap h1,
[data-theme="dark"] .news-card h3,
[data-theme="dark"] .review-user-name,
[data-theme="dark"] .review-card-author,
[data-theme="dark"] .lux-review-author-name,
[data-theme="dark"] .lux-review-name,
[data-theme="dark"] .review-card-author-name,
[data-theme="dark"] .review-slide-quote,
[data-theme="dark"] .review-card-text,
[data-theme="dark"] .lux-review-text {
  color: #ffffff !important;
}

[data-theme="dark"] .svc-nav {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

[data-theme="dark"] .svc-nav-title {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .svc-nav ol li a {
  color: rgba(255, 255, 255, 0.45) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  transition: all 0.25s ease !important;
}

.svc-nav ol li a,
.svc-nav ol li a:hover,
.svc-nav ol li a:focus,
.svc-nav ol li a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.svc-nav ol li a.active {
  color: var(--olive-deep, #354224) !important;
  font-weight: 800 !important;
  padding-left: 0.6rem !important;
  border-left: 3px solid var(--olive, #54663d) !important;
}

.svc-nav ol li a::after,
.svc-nav ol li a.active::after {
  display: none !important;
  content: none !important;
}

[data-theme="dark"] .svc-nav ol li a::before {
  color: rgba(196, 169, 106, 0.5) !important;
}

[data-theme="dark"] .svc-nav ol li a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
  outline: none !important;
}

[data-theme="dark"] .svc-nav ol li a.active {
  color: #ffffff !important;
  font-weight: 800 !important;
  background: transparent !important;
  outline: none !important;
  padding-left: 0.75rem !important;
  border-left: 3px solid #f5cc7a !important;
}

[data-theme="dark"] .svc-nav ol li a.active::before {
  color: #f5cc7a !important;
  font-weight: 700 !important;
}

[data-theme="dark"] .svc-card-luxury {
  background: linear-gradient(180deg, #141d13 0%, #0e160e 100%) !important;
  border: 1px solid rgba(128, 156, 93, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .svc-card-luxury:hover {
  background: #172215 !important;
  border-color: rgba(196, 169, 106, 0.6) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .svc-card-title {
  color: #ffffff !important;
}

[data-theme="dark"] .svc-card-sub {
  color: rgba(255, 255, 255, 0.78) !important;
}

[data-theme="dark"] .svc-card-footer {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .svc-card-cta {
  color: #c4a96a !important;
}

[data-theme="dark"] .news-card-desc,
[data-theme="dark"] .news-single-content,
[data-theme="dark"] #news-article-wrap div,
[data-theme="dark"] .news-card p,
[data-theme="dark"] .news-excerpt,
[data-theme="dark"] .price-row-note,
[data-theme="dark"] .pricing-menu-desc,
[data-theme="dark"] .complex-desc,
[data-theme="dark"] .svc-row .rn .note,
[data-theme="dark"] .review-user-meta,
[data-theme="dark"] .review-card-meta,
[data-theme="dark"] .lux-review-author-meta {
  color: #ffffff !important;
}

[data-theme="dark"] .pricing-menu-tag,
[data-theme="dark"] .complex-tag {
  color: #e5cd8e !important;
}

[data-theme="dark"] .price-row-val,
[data-theme="dark"] .complex-price,
[data-theme="dark"] .svc-row .rv {
  background: rgba(196, 169, 106, 0.18) !important;
  color: #f5cc7a !important;
  border-color: rgba(196, 169, 106, 0.35) !important;
}

[data-theme="dark"] .price-row-item:hover {
  background: linear-gradient(180deg, #22341f 0%, #192817 100%) !important;
  border-color: rgba(196, 169, 106, 0.65) !important;
}

[data-theme="dark"] .price-row-item:hover .price-row-val {
  background: linear-gradient(135deg, #c4a96a, #a8894a) !important;
  color: #0b110a !important;
}

[data-theme="dark"] .cat-nav-btn {
  color: #e0e8db !important;
}

[data-theme="dark"] .cat-nav-btn.active {
  background: #54663d !important;
  color: #ffffff !important;
}

[data-theme="dark"] .lux-arrow {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #f0f4ec !important;
}

[data-theme="dark"] .lux-arrow:hover {
  background: #c4a96a !important;
  color: #0b110a !important;
}

[data-theme="dark"] .lux-dot-item {
  background: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .lux-dot-item.active {
  background: #c4a96a !important;
}

[data-theme="dark"] .site-footer {
  background: #070b06 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .mobile-menu {
  background: #0b110a !important;
  color: #f0f4ec !important;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(84, 102, 61, 0.12);
  border: 1px solid rgba(84, 102, 61, 0.25);
  color: #54663d;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.theme-toggle-btn:hover {
  background: #54663d;
  color: #ffffff;
  transform: scale(1.05);
}

[data-theme="dark"] .theme-toggle-btn {
  background: rgba(128, 156, 93, 0.2);
  border-color: rgba(128, 156, 93, 0.4);
  color: #c4a96a;
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background: #c4a96a;
  color: #0b110a;
  transform: scale(1.05);
}

.theme-toggle-btn .sun-icon { display: block; }
.theme-toggle-btn .moon-icon { display: none; }

[data-theme="dark"] .theme-toggle-btn .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle-btn .moon-icon { display: block; }

/* ═══════════════════════════════════════════════
   🏷️ ШРИФТ ДЛЯ ЦЕННИКОВ — OSWALD
═══════════════════════════════════════════════ */
.price-row-val,
.complex-price,
.svc-row .rv,
.svc-complex .price,
.modal-service-card .ms-price,
.price {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

/* ═══════════════════════════════════════════════
   ✨ ФЛОАТИНГ-ВИДЖЕТ БЫСТРОЙ ЗАПИСИ (ПРАВЫЙ НИЖНИЙ УГОЛ)
═══════════════════════════════════════════════ */
.quick-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.quick-widget-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #54663d, #354224);
  border: 1px solid rgba(196, 169, 106, 0.4);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(53, 66, 36, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.quick-widget-trigger:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #c4a96a, #809c5d);
  color: #0b110a;
}

.quick-widget-trigger .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(196, 169, 106, 0.6);
  animation: quick-pulse 2.2s infinite;
  pointer-events: none;
}

@keyframes quick-pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.quick-widget-trigger .icon-chat { display: block; }
.quick-widget-trigger .icon-close { display: none; }

.quick-widget.active .quick-widget-trigger {
  background: #354224;
  transform: rotate(90deg);
}
.quick-widget.active .quick-widget-trigger .icon-chat { display: none; }
.quick-widget.active .quick-widget-trigger .icon-close { display: block; }

.quick-widget-menu {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 290px;
  background: #ffffff;
  border: 1px solid rgba(84, 102, 61, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

[data-theme="dark"] .quick-widget-menu {
  background: #141d13;
  border-color: rgba(128, 156, 93, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

.quick-widget.active .quick-widget-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quick-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(84, 102, 61, 0.15);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.quick-widget-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.quick-widget-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #354224;
  background: #f6f8f3;
  border: 1px solid rgba(84, 102, 61, 0.1);
  transition: all 0.25s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

[data-theme="dark"] .quick-widget-item {
  background: #1b2619;
  color: #f0f4ec;
  border-color: rgba(128, 156, 93, 0.2);
}

.quick-widget-item:hover {
  transform: translateX(-4px);
  background: #54663d;
  color: #ffffff;
  border-color: #54663d;
}

.quick-widget-item.tg:hover { background: #0088cc; border-color: #0088cc; color: #fff; }
.quick-widget-item.max:hover { background: #7a33ff; border-color: #7a33ff; color: #fff; }
.quick-widget-item.vk:hover { background: #0077ff; border-color: #0077ff; color: #fff; }
.quick-widget-item.phone:hover { background: #c4a96a; border-color: #c4a96a; color: #0b110a; }
.quick-widget-item.book-btn {
  background: linear-gradient(135deg, #54663d, #354224);
  color: #ffffff;
  border: none;
  justify-content: center;
}
.quick-widget-item.book-btn:hover {
  background: linear-gradient(135deg, #c4a96a, #809c5d);
  color: #0b110a;
}

/* ═══════════════════════════════════════════════
   ПРЕМИУМ-ДОПОЛНЕНИЯ СТРАНИЦЫ ТРЕНЕРОВ
═══════════════════════════════════════════════ */

/* 1. СТАТИСТИКА И СТАНДАРТЫ */
.trainers-stats-section {
  padding: 3rem 0;
  background: var(--bg-surface, #f7f9f5);
  border-bottom: 1px solid rgba(84, 102, 61, 0.12);
}

[data-theme="dark"] .trainers-stats-section {
  background: #0e150d;
  border-bottom-color: rgba(196, 169, 106, 0.15);
}

.trainers-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .trainers-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .trainers-stats-grid { grid-template-columns: 1fr; text-align: center; }
}

.trainers-stat-card {
  padding: 1.5rem 1rem;
  border-left: 3px solid var(--gold, #c4a96a);
  padding-left: 1.4rem;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold, #c4a96a);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink, #0b110a);
  margin-bottom: 0.2rem;
}

[data-theme="dark"] .stat-title { color: #ffffff !important; }

.stat-desc {
  font-size: 0.82rem;
  color: var(--ink-soft, #666);
  line-height: 1.4;
}

[data-theme="dark"] .stat-desc { color: rgba(255, 255, 255, 0.7) !important; }

/* 2. ФИЛЬТРАЦИЯ ТРЕНЕРОВ */
.trainers-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.trainer-filter-btn {
  padding: 0.65rem 1.4rem;
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(84, 102, 61, 0.2);
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink, #0b110a);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .trainer-filter-btn {
  background: #141d13;
  border-color: rgba(196, 169, 106, 0.3);
  color: #f0f4ec;
}

.trainer-filter-btn:hover {
  border-color: var(--gold, #c4a96a);
  color: var(--gold, #c4a96a);
}

.trainer-filter-btn.active {
  background: var(--ink, #0b110a);
  color: #ffffff;
  border-color: var(--ink, #0b110a);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .trainer-filter-btn.active {
  background: var(--gold, #c4a96a);
  color: #0b110a;
  border-color: var(--gold, #c4a96a);
}

/* 4. БАННЕР ПОДБОРА ТРЕНЕРА */
.trainers-cta-section {
  padding: 5rem 0;
}

.trainers-cta-card {
  background: linear-gradient(135deg, #141d13 0%, #0b110a 100%);
  border: 1px solid rgba(196, 169, 106, 0.3);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .trainers-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
}

/* ─────────────────────────── СЕКЦИЯ ПРИСОЕДИНЯЙСЯ К НАМ ─────────────────────────── */
.join-us-section {
  position: relative;
  padding: 4.5rem 0 0;
  background: #ffffff;
  overflow: hidden;
  border-top: none !important;
}

[data-theme="dark"] .join-us-section {
  background: linear-gradient(180deg, #131b12 0%, #090f08 100%) !important;
  border-top: none !important;
}

[data-theme="dark"] .join-us-section .section-title {
  color: #ffffff !important;
}

[data-theme="dark"] .join-us-section .section-subtitle {
  color: rgba(255, 255, 255, 0.78) !important;
}

.join-athlete-silhouette {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 1rem;
  height: 520px;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 640px) {
  .join-athlete-silhouette {
    height: 320px;
  }
}

.athlete-img-silhouette {
  max-width: 680px;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(53, 66, 36, 0.18));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

[data-theme="dark"] .athlete-img-silhouette {
  filter: drop-shadow(0 0 25px rgba(168, 197, 131, 0.35)) !important;
  opacity: 1;
}

.join-us-section:hover .athlete-img-silhouette {
  transform: scale(1.05) translateY(-6px);
}

/* ─────────────────────────── ОТКЛЮЧЕНИЕ АНИМАЦИИ ПРИБЛИЖЕНИЯ В ГАЛЕРЕЕ ─────────────────────────── */
.gallery-luxury-grid img,
.gallery-bento-inner img,
.gallery-lux-inner img,
.gallery-card-inner img {
  transform: none !important;
  transition: opacity 0.3s ease !important;
}

.gallery-bento-card:hover .gallery-bento-inner img,
.gallery-lux-card:hover .gallery-lux-inner img,
.gallery-card-item:hover .gallery-card-inner img {
  transform: none !important;
}