
:root{
  --bg: #ffffff;
  --txt: #1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --blk:#111827;
  --accent:#111827;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--txt);font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 16px}
.muted{color:var(--muted)}
.small{font-size:12px}
.badge{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;padding:.25rem .5rem;font-size:12px}
.chip{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:12px;padding:.25rem .5rem;font-size:14px;cursor:pointer}
.btn{display:inline-block;border:1px solid var(--line);border-radius:14px;padding:.6rem 1rem;font-weight:600}
.btn-outline:hover{background:#f9fafb}
.btn-dark{background:var(--blk);color:#fff;border-color:var(--blk)}
.btn-dark:hover{opacity:.9}
.btn-light{background:#fff;color:#111;border-color:#fff}
.btn-light:hover{opacity:.9}
.btn.full{display:block;text-align:center;width:100%}
.pill{display:inline-flex;gap:.5rem;align-items:center;border:1px solid var(--line);border-radius:999px;padding:.25rem .75rem;background:rgba(255,255,255,.6);backdrop-filter:blur(6px);font-size:14px}
.topbar{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(6px);border-bottom:1px solid var(--line)}
.topbar-inner{height:56px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:8px;font-weight:700}
.logo{width:28px;height:28px;border-radius:8px;background:var(--blk)}
.nav{display:none;gap:16px}
@media(min-width:900px){.nav{display:flex}}
.socials{display:flex;gap:8px;align-items:center}
.hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#fff, #fff5f5, #fff9ec)}
.hero-grid{display:grid;grid-template-columns:1fr;gap:24px;padding:48px 0}
@media(min-width:900px){.hero-grid{grid-template-columns:1fr 1fr;padding:72px 0}}
.hero-text h1{font-size:32px;line-height:1.15;margin:12px 0}
@media(min-width:900px){.hero-text h1{font-size:48px}}
.hero-text p{opacity:.9}
.hero-text .actions{display:flex;gap:12px;margin:16px 0}
.hero-text .seo{font-size:13px;color:var(--muted)}
.hero-image{border-radius:24px;background:#fff url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;box-shadow:0 20px 50px rgba(0,0,0,.08);aspect-ratio:4/3}
.section{padding:56px 0}
.section-header h2{font-size:28px;margin:0}
.section-header p{margin:6px 0 0}
.grid-2{display:grid;grid-template-columns:1fr;gap:24px}
@media(min-width:900px){.grid-2{grid-template-columns:1fr 1fr}}
.gallery4{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.gallery4 div{aspect-ratio:1;border-radius:16px;background:#f3f4f6}
.cards-3{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:900px){.cards-3{grid-template-columns:repeat(3,1fr)}}
.card{border:1px solid var(--line);border-radius:20px;padding:20px;background:#fff}
.card.highlight{background:#111;color:#fff;border-color:#111}
.card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.price{font-size:28px;font-weight:700;margin:10px 0}
.list{padding-left:18px}
.list li{margin:6px 0}
.cols-2{columns:2}
.row-between{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.thumbs{gap:12px}
.thumbs div{aspect-ratio:4/3;border-radius:16px;background:#f3f4f6}
.mt-32{margin-top:32px}
.videos{gap:12px}
.videos div{aspect-ratio:16/9;border-radius:16px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;color:#6b7280}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Соотношение сторон 16:9 */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.footer{border-top:1px solid var(--line);padding:24px 0;margin-top:24px}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.links{display:flex;gap:16px}
.badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.seo-card{margin-top:16px}
/* Календарь */
.calendar{max-width:420px}
.cal-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.cal-header{font-weight:700;text-transform:capitalize}
.cal-weekdays{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;font-size:12px;color:var(--muted)}
.cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-top:6px}
.cal-grid button{aspect-ratio:1;border:1px solid var(--line);border-radius:12px;background:#fff;cursor:pointer}
.cal-grid button:hover{background:#f9fafb}
.cal-grid button.empty{visibility:hidden}
.cal-grid button.booked{background:#fff1f2;border-color:#fecaca;color:#b91c1c}
.cal-grid button.selected{background:#111;color:#fff;border-color:#111}
.cal-picked{margin-top:8px;font-size:14px}
/* Floating quote */
.floating{position:fixed;right:16px;bottom:16px;z-index:60}
.fab{border:1px solid var(--line);background:#fff;border-radius:999px;padding:10px 14px;box-shadow:0 12px 30px rgba(0,0,0,.12);cursor:pointer}
.drawer{position:fixed;right:16px;bottom:70px;width:320px;display:none}
.drawer.open{display:block;box-shadow:0 24px 60px rgba(0,0,0,.16)}
.drawer-head{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--line);padding:10px 14px}
.drawer-body{display:grid;gap:8px;padding:12px 14px}
.drawer-body input,.drawer-body select{border:1px solid var(--line);border-radius:10px;padding:8px}
.estimate{background:#f3f4f6;border-radius:10px;padding:10px;font-weight:600}
/* Forms */
form.card input, form.card select, form.card textarea{width:100%;border:1px solid var(--line);border-radius:10px;padding:10px;margin:6px 0}
.map{margin-top:12px;aspect-ratio:16/9;border-radius:12px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;color:#6b7280}
/* ===== LIGHTBOX СТИЛИ (фотогалерея на главной) ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(180, 151, 90, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #e6d89c;
  font-size: 2.2rem;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

.lightbox-prev {
  left: 50px;
}

.lightbox-next {
  right: 50px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #e6d89c;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #fff;
}
/* ==== УНИВЕРСАЛЬНАЯ ГАЛЕРЕЯ ==== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(180, 151, 90, 0.4);
}

.gallery-media {
  position: relative;
  width: 100%;
  padding-bottom: 65%; /* соотношение сторон для фото и видео */
}

.gallery-media img,
.gallery-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-media img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ==== ПРЕДПРОСМОТР (оптимизация) ==== */
.gallery-media img {
  max-width: 100%;
  height: auto;
  filter: brightness(0.95);
}

/* ==== ТИТУЛ ===== */
.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #e6d89c;
  letter-spacing: 1px;
}

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-media {
    padding-bottom: 70%;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-media {
    padding-bottom: 75%;
  }
}
/* ==== ВИДЕО ГАЛЕРЕЯ ==== */
.gallery-item.video-item {
  cursor: pointer;
}

.gallery-item.video-item iframe {
  pointer-events: none; /* отключаем клики внутри встроенного iframe */
}

/* ==== LIGHTBOX ДЛЯ ВИДЕО ==== */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox iframe {
  width: 80%;
  height: 70%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(180, 151, 90, 0.5);
}

.video-lightbox .lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #e6d89c;
  font-size: 2.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.video-lightbox .lightbox-close:hover {
  color: #fff;
}

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  .video-lightbox iframe {
    width: 95%;
    height: 60%;
  }
}
/* ==== АНИМАЦИЯ ДЛЯ LIGHTBOX ВИДЕО ==== */
@keyframes videoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.video-lightbox.active iframe {
  animation: videoFadeIn 0.45s ease forwards;
}
.video-lightbox.closing {
  opacity: 0;
  transition: opacity 0.4s ease;
  visibility: hidden;
}
/* ==== АНИМАЦИЯ LIGHTBOX ДЛЯ ФОТО ==== */
@keyframes photoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-overlay.active img {
  animation: photoFadeIn 0.45s ease forwards;
}

/* Плавное исчезновение при закрытии */
.lightbox-overlay.closing {
  opacity: 0;
  transition: opacity 0.4s ease;
  visibility: hidden;
}
.more-videos-wrapper {
  text-align: center;
  margin-top: 40px;
}

.more-videos-btn {
  padding: 14px 36px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #b4975a, #e6d89c);
  color: #0d0d0d;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(180, 151, 90, 0.3);
  transition: all 0.3s ease;
}

.more-videos-btn:hover {
  box-shadow: 0 0 30px rgba(230, 216, 156, 0.6);
  transform: translateY(-2px);
  color: #000;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #bfa76f;
  font-weight: 700;
}

.logo span {
  color: #fff;
}

/* ==== НАВИГАЦИЯ В ШАПКЕ ==== */
.nav a {
  margin: 0 18px;
  color: rgba(220, 220, 220, 0.6); /* делает текст немного приглушённым */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a.active,
.nav a:hover {
  color: #e6d89c; /* золотой при наведении */
  text-shadow: 0 0 8px rgba(230, 216, 156, 0.5); /* мягкое свечение */
}
.nav a:hover {
  background: linear-gradient(90deg, #b4975a, #e6d89c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(230, 216, 156, 0.5);
}
/* ==== НАВИГАЦИЯ В ШАПКЕ (обновлённый стиль) ==== */
.nav a {
  margin: 0 18px;
  color: #333333; /* тёмно-серый, хорошо читается на светлом фоне */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap; /* не позволяет переносить пункты меню */
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a.active,
.nav a:hover {
  color: #e6d89c; /* золотой при наведении */
  text-shadow: 0 0 10px rgba(230, 216, 156, 0.6); /* лёгкое свечение */
}
.header {
  background: rgba(255, 255, 255, 0.8); /* светлый прозрачный фон */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
}
/* ==== ГЛОБАЛЬНЫЙ СТИЛЬ ШАПКИ ==== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8); /* светлое стекло */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #bfa76f;
  font-weight: 700;
}

.logo span {
  color: #000;
}

/* ==== НАВИГАЦИЯ ==== */
.nav a {
  margin: 0 16px;
  color: #333333;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a.active,
.nav a:hover {
  color: #e6d89c;
  text-shadow: 0 0 10px rgba(230, 216, 156, 0.6);
}

/* ==== КНОПКА "СВЯЗАТЬСЯ" ==== */
.btn-gold {
  background: linear-gradient(90deg, #a6854f, #e6d89c);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  box-shadow: 0 0 25px rgba(230, 216, 156, 0.6);
  transform: translateY(-2px);
}

/* ==== АДАПТИВНОСТЬ ==== */
@media (max-width: 900px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .btn-gold {
    margin-top: 10px;
  }
}
/* ==== ЛОГОТИП ==== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 90px; /* увеличенный размер логотипа */
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent; /* убираем тень или фон */
}

.logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(191, 167, 111, 0.6));
}

/* адаптив для мобильных */
@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 60px;
  }
}
/* ===== ШАПКА САЙТА ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: brightness(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 8px rgba(191,167,111,0.5));
}

/* ===== МЕНЮ ===== */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li a {
  text-decoration: none;
  color: #333333; /* тёмно-серый цвет текста */
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  white-space: nowrap; /* чтобы “О нас” не переносилось */
}

.main-nav .nav-list li a:hover {
  color: #c7a556; /* золотой при наведении */
  text-shadow: 0 0 10px rgba(199,165,86,0.6);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
  .header-container {
    padding: 12px 5%;
  }

  .main-nav .nav-list {
    gap: 25px;
  }
}

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

  .main-nav .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .main-nav .nav-list li a {
    font-size: 15px;
  }
}
/* ===== О КОМПАНИИ ===== */
.about-section {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  justify-items: center;
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(199, 165, 86, 0.3);
}

/* адаптив */
@media (max-width: 768px) {
  .about-img {
    height: 280px;
  }
}
/* ===== О КОМПАНИИ ===== */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.about-text-block {
  flex: 1 1 45%;
  max-width: 600px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.about-gallery-grid {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.about-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(199, 165, 86, 0.3);
}

/* адаптив */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
  }
  .about-text-block {
    text-align: center;
  }
  .about-gallery-grid {
    width: 100%;
  }
  .about-img {
    height: 200px;
  }
}
/* ===== SEO БЛОК НА ГЛАВНОЙ ===== */
.seo-block {
  background: #fff;
  padding: 100px 0;
  color: #333;
  position: relative;
  overflow: hidden;
}

.seo-title {
  font-size: 36px;
  color: #111;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.seo-text {
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.seo-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-bottom: 60px;
}

.seo-column {
  flex: 1 1 400px;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.seo-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(191,167,111,0.25);
}

.seo-column h2 {
  color: #bfa76f;
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.seo-column p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.seo-benefits {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 1.5s ease;
}

.seo-benefits h2 {
  color: #bfa76f;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.seo-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.seo-benefits li {
  margin-bottom: 12px;
  font-size: 18px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.seo-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #bfa76f;
  font-size: 18px;
}

.seo-final {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  animation: fadeInUp 2s ease;
}

/* ==== АНИМАЦИИ ==== */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

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

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  .seo-title {
    font-size: 28px;
  }
  .seo-text {
    font-size: 16px;
  }
  .seo-column {
    padding: 25px 25px;
  }
  .seo-final {
    font-size: 16px;
  }
}
/* ===== УСЛУГИ В СТИЛЕ X.O EVENT ===== */
.services-premium {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.services-header h2 {
  font-size: 38px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.services-header .subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 60px;
  animation: fadeIn 1.2s ease;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.service-item {
  background: #fdfdfd;
  border-radius: 18px;
  padding: 45px 35px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.4s ease;
  animation: fadeInUp 1.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(191, 167, 111, 0.25);
}

.service-icon {
  font-size: 42px;
  color: #bfa76f;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.15);
}

.service-item h3 {
  color: #bfa76f;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-item p {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* адаптив */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }

  .service-item {
    padding: 30px 20px;
  }

  .service-item h3 {
    font-size: 20px;
  }

  .service-item p {
    font-size: 16px;
  }
}
/* ===== ПРАЙС ПАКЕТЫ ===== */
.pricing-block {
  background: #fdfdfd;
  padding: 100px 0;
  text-align: center;
}

.pricing-header h2 {
  font-size: 38px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease;
}

.pricing-header .subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 60px;
  animation: fadeIn 1.2s ease;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: left;
  animation: fadeInUp 1.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(191, 167, 111, 0.25);
}

.pricing-card.featured {
  border-top: 5px solid #bfa76f;
  box-shadow: 0 12px 30px rgba(191, 167, 111, 0.25);
}

.pricing-card.premium {
  background: linear-gradient(180deg, #fff, #f9f7f3);
  border-top: 5px solid #bfa76f;
}

.pricing-title {
  font-size: 24px;
  color: #bfa76f;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pricing-card ul li {
  font-size: 17px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-card ul li::before {
  content: "✦";
  color: #bfa76f;
  position: absolute;
  left: 0;
  font-size: 14px;
  top: 2px;
}

.price {
  font-size: 20px;
  color: #111;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
}

.pricing-seo {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 15px;
  text-align: justify;
}

.btn-gold {
  display: inline-block;
  background: #bfa76f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.btn-gold:hover {
  background: #a8925c;
}

/* адаптив */
@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 28px;
  }
  .pricing-card {
    padding: 30px 20px 40px;
  }
  .pricing-title {
    font-size: 22px;
  }
}
/* ===== БЛОГ ===== */
.blog-block {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.blog-block .section-header h2 {
  font-size: 38px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.blog-block .subtitle {
  color: #777;
  font-size: 18px;
  margin-bottom: 60px;
  animation: fadeIn 1.3s ease;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 35px 30px;
  text-align: left;
  transition: all 0.4s ease;
  animation: fadeInUp 1.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(191,167,111,0.25);
}

.blog-card .tag {
  display: inline-block;
  background: #bfa76f;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  color: #bfa76f;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.chip {
  border: none;
  background: #bfa76f;
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.chip:hover {
  background: #a8925c;
  transform: scale(1.05);
}

/* адаптив */
@media (max-width: 768px) {
  .blog-block .section-header h2 {
    font-size: 28px;
  }

  .blog-card {
    padding: 25px 20px;
  }

  .blog-card h3 {
    font-size: 18px
/* ===== КАЛЕНДАРЬ X.O EVENT ===== */
.calendar-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.calendar-card {
  background: #fdfdfd;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.calendar-title {
  font-size: 22px;
  color: #bfa76f;
  text-transform: capitalize;
  font-weight: 600;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day,
.empty {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day:hover {
  background: rgba(191, 167, 111, 0.1);
}

.calendar-day.selected {
  background: #bfa76f;
  color: #fff;
  font-weight: 600;
}

.calendar-day.booked {
  background: #eee;
  color: #aaa;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-picked {
  margin-top: 20px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  min-height: 22px;
}

.chip.gold {
  background: #bfa76f;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip.gold:hover {
  background: #a8925c;
  transform: scale(1.1);
}

.btn-gold.full {
  display: block;
  width: 100%;
  margin-top: 25px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: #bfa76f;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold.full:hover {
  background: #a8925c;
}

/* адаптив */
@media (max-width: 600px) {
  .calendar-card {
    padding: 25px 20px;
  }
  .calendar-day, .empty {
    height: 42px;
    font-size: 14px;
  }
}
/* === КАЛЕНДАРЬ X.O EVENT === */
.calendar-section {
  background:#fff;
  padding:100px 0;
  text-align:center;
}
.calendar-card {
  background:#fdfdfd;
  border-radius:20px;
  box-shadow:0 6px 25px rgba(0,0,0,0.05);
  padding:40px 30px;
  max-width:650px;
  margin:0 auto;
}
.calendar-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.calendar-title {
  font-size:22px;
  font-weight:600;
  color:#bfa76f;
  text-transform:capitalize;
}
.calendar-weekdays {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
  margin-bottom:6px;
  font-weight:600;
  color:#222;
}
.calendar-grid {
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.calendar-cell {
  width:100%;
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:16px;
  transition:all 0.25s ease;
}
.calendar-cell.day:hover {
  background:rgba(191,167,111,0.15);
  cursor:pointer;
}
.calendar-cell.day.selected {
  background:#bfa76f;
  color:#fff;
  font-weight:600;
}
.calendar-cell.booked {
  background:#eee;
  color:#aaa;
  text-decoration:line-through;
  cursor:not-allowed;
}
.calendar-picked {
  margin-top:18px;
  font-size:16px;
  color:#444;
  min-height:20px;
}
.chip.gold {
  background:#bfa76f;
  color:#fff;
  border:none;
  border-radius:20px;
  padding:6px 14px;
  cursor:pointer;
  transition:all .3s ease;
}
.chip.gold:hover {background:#a8925c;transform:scale(1.1);}
.btn-gold.full {
  display:block;
  width:100%;
  margin-top:25px;
  text-align:center;
  background:#bfa76f;
  color:#fff;
  padding:12px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}
.btn-gold.full:hover {background:#a8925c;}
@media(max-width:600px){
  .calendar-card{padding:25px 15px;}
  .calendar-cell{font-size:14px;}
}
.contacts-section {
  background:#fff;
  padding:100px 0;
}

.contacts-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.contact-form {
  background:#fdfdfd;
  border-radius:20px;
  box-shadow:0 6px 25px rgba(0,0,0,0.05);
  padding:40px;
  text-align:left;
  animation:fadeInUp 1s ease;
}

.form-group {
  margin-bottom:20px;
}

.form-group label {
  display:block;
  font-weight:500;
  margin-bottom:6px;
  color:#333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%;
  border:1px solid #ddd;
  border-radius:10px;
  padding:12px 14px;
  font-size:15px;
  transition:all .3s;
  font-family:inherit;
  background:#fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color:#bfa76f;
  outline:none;
  box-shadow:0 0 0 2px rgba(191,167,111,0.2);
}

.contact-form textarea {
  resize:none;
  height:100px;
}

.map-wrapper {
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 6px 25px rgba(0,0,0,0.05);
  animation:fadeInUp 1.2s ease;
}

@media(max-width:900px){
  .contacts-grid { grid-template-columns:1fr; }
  .map-wrapper iframe { height:300px; }
}
/* === КНОПКИ X.O EVENT (обновлённый стиль) === */

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(191, 167, 111, 0);
  transition: all 0.35s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191, 167, 111, 0.5);
  transform: translateY(-2px);
}

.btn-gold.full {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

button.btn-gold:active,
a.btn-gold:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(191, 167, 111, 0.4);
}

/* Дополнительно — стиль для “chip” кнопок */
.chip.gold {
  background: #bfa76f;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 18px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip.gold:hover {
  background: #a8925c;
  box-shadow: 0 2px 8px rgba(191, 167, 111, 0.4);
  transform: scale(1.08);
}
/* === КОНТАКТЫ X.O EVENT (компактный стиль: форма слева, карта справа) === */
.contacts-section {
  background: #fff;
  padding: 100px 0;
}

.contacts-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
}

.contact-form {
  flex: 0 0 45%;
  background: #fdfdfd;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #bfa76f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(191, 167, 111, 0.2);
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.map-wrapper {
  flex: 0 0 50%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  min-height: 480px;
  animation: fadeInUp 1.2s ease;
}

/* === КНОПКИ === */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191, 167, 111, 0.5);
  transform: translateY(-2px);
}

.btn-gold.full {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
  .contacts-flex {
    flex-direction: column;
  }
  .contact-form, .map-wrapper {
    flex: 1 1 100%;
  }
  .map-wrapper {
    min-height: 350px;
  }
}
/* === КОНТАКТЫ: ФОРМА СЛЕВА, КАРТА СПРАВА === */
.contacts-section {
  background: #fff;
  padding: 100px 0;
}

.contacts-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.contact-form {
  flex: 0 0 45%;
  background: #fdfdfd;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #bfa76f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(191, 167, 111, 0.2);
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191, 167, 111, 0.5);
  transform: translateY(-2px);
}

.btn-gold.full {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* === КАРТА === */
.map-container {
  flex: 0 0 50%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
  .contacts-row {
    flex-direction: column;
  }
  .contact-form,
  .map-container {
    flex: 1 1 100%;
  }
  .map-container {
    height: 350px;
  }
}
/* === ОБРАТНАЯ СВЯЗЬ X.O EVENT === */
.feedback-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feedback-section h2 {
  color: #bfa76f;
  font-weight: 600;
  margin-bottom: 10px;
}

.feedback-section .muted {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #333;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(191,167,111,0.3);
  color: #fff;
}

.social-btn i {
  font-size: 20px;
}

/* === ИНДИВИДУАЛЬНЫЕ СТИЛИ === */
.social-btn.instagram {
  background: linear-gradient(135deg, #bfa76f, #d8c58c);
}
.social-btn.telegram {
  background: linear-gradient(135deg, #37aee2, #1e96c8);
}
.social-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* === АДАПТИВ === */
@media (max-width: 768px) {
  .social-btn {
    width: 80%;
    max-width: 300px;
  }
}
/* === FOOTER === */
.footer {
  background: #111;
  color: #eee;
  padding: 80px 0 40px;
  font-size: 15px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

.footer-menu h4,
.footer-contacts h4 {
  color: #bfa76f;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #bfa76f;
}

.footer-contacts p {
  margin: 4px 0;
}

.footer-contacts a {
  color: #bfa76f;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contacts a:hover {
  color: #d8c58c;
}

.footer-social a {
  color: #bfa76f;
  margin-right: 14px;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #d8c58c;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  color: #777;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* === HERO (главная) === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/img/Glavnaya.jpg') center center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.75) 30%,
    rgba(17, 17, 17, 0.55) 70%
  );
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.3s ease;
}

.hero-text {
  max-width: 700px;
}

.pill {
  display: inline-block;
  background: rgba(191, 167, 111, 0.15);
  border: 1px solid rgba(191, 167, 111, 0.4);
  color: #e8d8a2;
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 32px;
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-gold {
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(191, 167, 111, 0);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191, 167, 111, 0.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 30px;
  padding: 12px 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.hero .seo {
  font-size: 0;
  color: transparent;
  line-height: 0;
  height: 0;
}

/* === АНИМАЦИЯ === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 100px 0 80px;
  }
  .actions {
    flex-direction: column;
  }
  .btn-gold, .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}
/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/img/Glavnaya.jpg') center center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.75) 25%,
    rgba(17, 17, 17, 0.55) 75%
  );
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.3s ease;
}

.hero-text {
  max-width: 700px;
}

.pill {
  display: inline-block;
  background: rgba(191, 167, 111, 0.15);
  border: 1px solid rgba(191, 167, 111, 0.4);
  color: #e8d8a2;
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* === КНОПКИ === */
.actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-gold {
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(191, 167, 111, 0);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191, 167, 111, 0.4);
  transform: translateY(-2px);
}

/* прозрачная кнопка */
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 30px;
  padding: 12px 26px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* SEO блок скрыт */
.hero .seo {
  font-size: 0;
  color: transparent;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

/* === АНИМАЦИЯ === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 100px 0 80px;
  }
  .actions {
    flex-direction: column;
  }
  .btn-gold, .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.grid-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.grid-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(191,167,111,0.35);
}

.gallery-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 20px;
  color: #bfa76f;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191,167,111,0.4);
  transform: translateY(-2px);
}

.center {
  text-align: center;
}
/* ==== ВИДЕО ГАЛЕРЕЯ ==== */
.gallery-item.video-item {
  cursor: pointer;
}

.gallery-item.video-item iframe {
  pointer-events: none; /* отключаем клики внутри встроенного iframe */
}

/* ==== LIGHTBOX ДЛЯ ВИДЕО ==== */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox iframe {
  width: 80%;
  height: 70%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(180, 151, 90, 0.5);
}

.video-lightbox .lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #e6d89c;
  font-size: 2.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.video-lightbox .lightbox-close:hover {
  color: #fff;
}

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  .video-lightbox iframe {
    width: 95%;
    height: 60%;
  }
}
