/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f5f0;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === LAYOUT === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-inner.wide {
  max-width: 1300px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.section-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin-bottom: 20px;
  color: #555;
}

/* === HERO === */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero-lake.webp") center/cover no-repeat;
  filter: brightness(0.45);
}

.hero-inner {
  position: relative;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.hero-inner p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-btn {
  font-size: 18px;
}

/* === WHY (почему выбирают) === */

.section-inner.triggers {
  max-width: 1100px;
  padding: 60px 20px 40px;
}

.triggers-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* карточка услуги */
.trigger-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trigger-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* блок иконки */
.trigger-card .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trigger-card .icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* текст */
.trigger-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #333;
}

/* адаптив */
@media (max-width: 768px) {
  .section-inner.triggers {
    padding-top: 40px;
  }

  .trigger-card {
    padding: 16px 18px;
  }
}

/* === FEATURES (особенности) === */

.features-inner {
  max-width: 1100px;
  padding: 60px 20px 40px;
}

.features-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* иконка */
.feature-card .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* заголовки и текст */
.feature-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #222;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* адаптив */
@media (max-width: 768px) {
  .feature-card {
    padding: 16px 18px;
  }
}

/* === REVIEWS GRID (старое, почти не используется) === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* === CONTACTS GRID (старый блок) === */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contacts-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* === MOBILE (старое, только для contacts) === */
@media (max-width: 700px) {
  .contacts-grid { 
    grid-template-columns: 1fr; 
  }
}

/* ===================================================================== */
/* === POLAROID GRID (NEW, CLEAN, NO LEGACY) ============================ */
/* ===================================================================== */

.polaroid-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.polaroid-grid a {
  display: block;
  cursor: pointer;
}

.polaroid-grid a img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  border: 8px solid #fff;
  border-bottom: 22px solid #fff;
  border-radius: 4px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.35s ease;
}

.polaroid-grid a:hover img {
  transform: scale(1.03);
}

/* Адаптив */
@media (max-width: 900px) {
  .polaroid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .polaroid-grid {
    grid-template-columns: 1fr;
  }
  .polaroid-grid a img {
    height: auto;
  }
}

/* ===================================================================== */
/* === LIGHTBOX FULLSCREEN ============================================= */
/* ===================================================================== */

.lightbox.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.lightbox-img {
  position: relative;
  max-width: 85vw !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  z-index: 3;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 42px;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.35);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next {
    font-size: 34px;
    padding: 8px 14px;
  }
  .lightbox-close {
    font-size: 36px;
  }
}

/* === REVIEWS (PREMIUM) === */

.reviews-section {
    position: relative;
    padding: 160px 20px;
    color: #fff;
    overflow: hidden;
}

/* затемнённый фон */
.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/hero-lake.webp") center/cover no-repeat;
    filter: brightness(0.35) blur(2px);
    z-index: 1;
}

/* тёплый градиент, чтобы связать с темой сайта */
.reviews-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 2;
}

.reviews-section .section-inner,
.reviews-slider {
    position: relative;
    z-index: 3;
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.review-slide {
    display: none;
    text-align: center;
    padding: 40px 45px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: opacity .5s ease;
}

.review-slide.active {
    display: block;
    animation: fadeReview .6s ease;
}

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

.review-text {
    font-size: 22px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.review-author {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.review-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* Стрелки */
.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    border: none;
    font-size: 40px;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    color: #f4c46e;
    backdrop-filter: blur(8px);
}

.review-prev:hover,
.review-next:hover {
    background: rgba(255,255,255,0.4);
}

.review-prev { left: -70px; }
.review-next { right: -70px; }

@media (max-width: 700px) {
    .review-prev, .review-next {
        left: 10px !important;
        right: 10px !important;
        top: auto;
        bottom: -60px;
    }
}

/* === CONTACTS SECTION (PREMIUM) === */

.contacts-section {
    padding: 100px 20px;
    background: #f7f5f0;
}

.contact-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;

    display: flex;
    align-items: center;
    gap: 20px;

    background: #ffffff;
    padding: 22px 28px;
    border-radius: 18px;

    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transition: .25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 52px;
    height: 52px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 700;
}

.contact-info a,
.contact-info p {
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}

.contact-info a:hover {
    color: #d38b1c;
}

.map-box {
    border-radius: 18px;
    overflow: hidden;
    margin-top: 20px;

    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

@media (max-width: 700px) {
    .contact-cards {
        flex-direction: column;
    }
}

/* === Премиальные заголовки === */
.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 30px;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.65;
}

.section-title {
    position: relative;
    padding-left: 48px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 3px;
    background: #d49a38;
    border-radius: 2px;
}

/* ===============================
   ФОРМА БРОНИРОВАНИЯ — ПОЛНАЯ ИЗОЛЯЦИЯ
   =============================== */

.booking-section {
    padding: 40px 0;
    background: #fff;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.booking-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #222;
}

/* Поля формы */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #fafafa;
    transition: 0.2s;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #c89b4f;
    background: #fff;
    outline: none;
}

/* Кнопка */
.booking-submit {
    background: #c89b4f;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.booking-submit:hover {
    background: #b3853e;
}

/* =====================================
   PREMIUM BOOKING FORM
   ===================================== */

.booking-premium {
    padding: 60px 0;
}

.booking-premium-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.booking-premium-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field.full {
    width: 100%;
}

.form-field label {
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
    font-weight: 600;
}

.booking-premium input,
.booking-premium textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fafafa;
    font-size: 16px;
    transition: 0.25s;
}

.booking-premium input:focus,
.booking-premium textarea:focus {
    background: #fff;
    border-color: #c89b4f;
    box-shadow: 0 0 0 3px rgba(200,155,79,0.25);
    outline: none;
}

.booking-premium-btn {
    background: #c89b4f;
    color: #fff;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s;
}

.booking-premium-btn:hover {
    background: #b3863e;
}

.booking-success {
    display: none;
    margin-top: 10px;
    padding: 12px 15px;
    background: #d9f7d9;
    border: 1px solid #6ecb6e;
    color: #317231;
    border-radius: 10px;
    font-size: 15px;
}

/* ============================================================
   HEADER — ЧИСТАЯ ВЕРСИЯ С БУРГЕРОМ
============================================================ */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5d3b3;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.logo img {
    height: 84px;
    width: auto;
    max-width: none;
    display: block;
}

/* DESKTOP NAV */
.nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: .25s;
}

.nav a:hover {
    color: #d49a38;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-weight: 700;
    color: #d49a38;
    font-size: 16px;
}

.header-btn {
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 12px;
}

/* BURGER BUTTON */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: .3s;
}

/* Burger active → X */
.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;

    background: #fff;
    padding: 25px 20px;
    border-bottom: 1px solid #e8e8e8;
    z-index: 999;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu a {
    font-size: 18px;
    color: #333;
}

.mobile-phone {
    margin-top: 20px;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #d49a38;
}

/* MOBILE BEHAVIOR */
@media (max-width: 850px) {

    /* hide desktop nav stuff */
    .nav ul,
    .header-phone,
    .header-btn {
        display: none !important;
    }

    /* show burger */
    .burger {
        display: flex;
    }

    /* smaller logo on mobile */
    .logo img {
        height: 64px !important;
    }
}
/* Desktop language bar */
.lang-switch {
    display: flex;
    gap: 14px;
    list-style: none;
    margin-left: 18px;
}

.lang-switch a {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: .25s;
}

.lang-switch a:hover {
    color: #d49a38;
}

/* ACTIVE language — подсветка */
.lang-switch a.active {
    color: #d49a38;
    font-weight: 700;
}

/* Mobile hidden */
@media (max-width: 850px) {
    .lang-switch {
        display: none;
    }
}

/* Mobile language links */
.mobile-lang {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
}

.mobile-lang a {
    font-size: 18px;
    font-weight: 700;
    color: #d49a38;
}

/* Active on mobile */
.mobile-lang a.active {
    opacity: 0.5;
}
/* === LANGUAGE SWITCH — FIXED DESKTOP POSITION === */

.lang-switch {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0 24px;
}

.lang-switch a {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: .25s;
}

.lang-switch a:hover {
    color: #d49a38;
}

.lang-switch a.active {
    color: #d49a38;
    font-weight: 700;
}

/* Mobile — hide desktop version */
@media (max-width: 850px) {
    .lang-switch {
        display: none;
    }
}
/* ==========================
   HEADER — BUTTON FIX
   ========================== */

/* Базовый вид кнопки */
.btn-primary {
    display: inline-block;
    padding: 10px 22px;
    background: #f4a938;           /* фирменный мёд */
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: 0.25s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    white-space: nowrap;
}

/* Ховер */
.btn-primary:hover {
    background: #d38b1c;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Специфика кнопки в хедере */
.header-btn {
    margin-left: 10px;
    flex-shrink: 0; /* не даёт ей съёживаться */
}

/* На мобильном кнопку не показываем */
@media (max-width: 850px) {
    .header-btn {
        display: none;
    }
}
/* ============================================================
   LAKE VIDEO BLOCK (FULLSCREEN BEAUTIFUL HERO-STYLE SECTION)
============================================================ */

.lake-video-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lake-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 1;
}

/* затемняющая подложка */
.lake-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

/* контент поверх видео */
.lake-video-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.lake-video-logo {
    width: 120px;
    margin-bottom: 18px;
    opacity: 0.85;
}

.lake-title {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lake-subtitle {
    font-size: 18px;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Адаптив */
@media (max-width: 700px) {
    .lake-title {
        font-size: 26px;
    }
    .lake-video-logo {
        width: 80px;
    }
    .lake-subtitle {
        font-size: 15px;
    }
}

/* ============================================================
   MOBILE: replace video with static image
============================================================ */

@media (max-width: 700px) {

    .lake-video-bg {
        display: none !important;
    }

    .lake-video-section {
        background: url("/assets/img/o1.webp") center/cover no-repeat !important;
        height: 60vh;
        min-height: 380px;
    }

    .lake-video-overlay {
        background: rgba(0,0,0,0.45) !important;
    }
}
@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
        gap: 14px;
    }

    .form-field input,
    .form-field textarea {
        width: 100% !important;
    }
}
.lake-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
