/* ═══════════════════════════════════════════════════ RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3a2f;
  --green:        #2d6a4f;
  --green-light:  #40916c;
  --gold:         #d4a017;
  --gold-light:   #f4e4bc;
  --cream:        #faf8f3;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #666;
  --border:       #e8e0d4;
  --river:        #4a90d9;
  --shadow:       0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

/* ═══════════════════════════════════════════════════ TYPOGRAPHY */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.btn--hero {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  font-size: 16px;
  padding: 16px 36px;
}
.btn--hero:hover { background: #e8b020; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,160,23,.4); }

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
  font-size: 16px;
  padding: 16px 36px;
}
.btn--hero-outline:hover { background: rgba(255,255,255,.15); }

.btn--telegram {
  background: #2AABEE;
  color: white;
  border-color: #2AABEE;
}
.btn--telegram:hover { background: #1a8ecb; border-color: #1a8ecb; transform: translateY(-2px); }

.btn--full { width: 100%; }
.btn--large { padding: 18px 32px; font-size: 17px; }

/* ═══════════════════════════════════════════════════ HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__icon { font-size: 28px; }
.logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.logo__sub { font-size: 11px; color: var(--text-muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--green); background: rgba(45,106,79,.06); }

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
}
.header__phone:hover { color: var(--green); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════ HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,30,20,.3) 0%,
    rgba(10,30,20,.55) 60%,
    rgba(10,30,20,.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.badge {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  z-index: 1;
}

.hero__scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ═══════════════════════════════════════════════════ ABOUT */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature__icon { font-size: 24px; flex-shrink: 0; }

.feature strong { display: block; font-size: 14px; color: var(--text); }
.feature span { font-size: 13px; color: var(--text-muted); }

.about__checkin {
  display: flex;
  gap: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 20px;
}

.checkin-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.checkin-icon { font-size: 20px; }

.about__img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.about__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__img-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
  cursor: pointer;
}
.about__img-grid img:hover { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════ ROOMS */
.rooms { background: var(--cream); }

.floor-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.floor-tab {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.floor-tab.active, .floor-tab:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card__carousel {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}

.carousel__track img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__btn:hover { background: rgba(0,0,0,.75); }
.carousel__btn--prev { left: 10px; }
.carousel__btn--next { right: 10px; }

.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.carousel__dot.active { background: white; }

.room-card__floor-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.room-card__video-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: white;
  border: 1px solid rgba(255,255,255,.4);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.room-card__video-btn:hover { background: rgba(0,0,0,.8); }

.room-card__body { padding: 24px; }
.room-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.room-card__style {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-card__amenities span {
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.room-card__price {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.price-row strong { color: var(--text); font-size: 16px; }
.price-row--peak strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════ TERRITORY */
.territory { background: var(--green-dark); color: white; }
.territory .section-label { color: var(--gold-light); }
.territory .section-title { color: white; }

.territory__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.territory-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}
.territory-card:hover { transform: translateY(-4px); }

.territory-card__img {
  height: 220px;
  overflow: hidden;
}
.territory-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.territory-card:hover .territory-card__img img { transform: scale(1.05); }

.territory-card__body { padding: 24px; }
.territory-card__icon { font-size: 28px; margin-bottom: 10px; }
.territory-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}
.territory-card__body p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.territory-card__price {
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.territory-card__price strong { font-size: 18px; color: var(--gold); }

.territory-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.territory-card__tags span {
  background: rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
}

.territory .btn--outline {
  color: var(--gold);
  border-color: var(--gold);
}
.territory .btn--outline:hover { background: var(--gold); color: var(--green-dark); }

/* ═══════════════════════════════════════════════════ GALLERY */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  font-size: 48px;
  color: white;
  transition: background var(--transition);
}
.gallery__item--video:hover .gallery__play { background: rgba(0,0,0,.5); }

/* ═══════════════════════════════════════════════════ BOOKING */
.booking { background: var(--cream); }

.booking__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.booking__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.booking__form .form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

input[type=text], input[type=tel], input[type=email], select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; }

/* Room selector */
.room-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.room-radio input { display: none; }

.room-radio__card {
  display: block;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.room-radio input:checked + .room-radio__card {
  border-color: var(--green);
  background: rgba(45,106,79,.06);
}

.room-radio__card:hover { border-color: var(--green-light); }

.room-radio__name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--green-dark);
}
.room-radio__floor { font-size: 12px; color: var(--text-muted); }

/* Price block */
.booking__price-block {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}

.price-summary__prepaid {
  font-size: 13px;
  color: var(--text-muted);
}
.price-summary__prepaid strong { color: var(--green); }

.booking__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Booking info cards */
.booking-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.booking-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.booking-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.booking-steps {
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.booking-steps li { margin-bottom: 8px; }

.phone-link {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════ ATTRACTIONS */
.attractions { background: var(--white); }

.attractions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.attractions-col__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.attraction-list { display: flex; flex-direction: column; gap: 16px; }

.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.attraction-item:hover { background: var(--cream); }

.attraction-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.attraction-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.attraction-item span { font-size: 13px; color: var(--text-muted); }

.attractions__transport {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 28px;
}
.transport-item strong { display: block; font-size: 15px; }
.transport-item span { font-size: 14px; color: var(--green); font-weight: 600; }

/* ═══════════════════════════════════════════════════ RULES */
.rules { background: var(--cream); }

.rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.rules-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.rules-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.rules-list {
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.rules-list li { margin-bottom: 6px; }

.rules-block--alcohol {
  background: #fff8e8;
  border: 1px solid #f4e4bc;
}

.alcohol-notice {
  font-size: 13px;
  color: var(--text-muted);
}
.alcohol-notice p { margin-bottom: 12px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════ CONTACTS */
.contacts { background: var(--green-dark); color: white; }
.contacts .section-label { color: var(--gold-light); }
.contacts .section-title { color: white; }

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item__icon { font-size: 28px; flex-shrink: 0; }
.contact-item span { font-size: 13px; color: rgba(255,255,255,.6); display: block; margin-bottom: 4px; }
.contact-item a { font-size: 22px; font-weight: 700; color: var(--gold); }
.contact-item strong { font-size: 15px; color: white; line-height: 1.5; }

.contacts__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contacts__map iframe { display: block; border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════════════ FOOTER */
.footer {
  background: #0d2218;
  color: rgba(255,255,255,.7);
  padding: 32px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
}
.footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  font-weight: 700;
}
.footer__sub { font-size: 12px; }

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__links a { font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: white; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  text-align: right;
}
.footer__contact a { color: var(--gold); font-weight: 600; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════ LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: none;
  color: white;
  font-size: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}
.lightbox__prev, .lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: white;
  font-size: 36px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover, .lightbox__close:hover {
  background: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════ MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.modal p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

.modal .btn { margin: 6px; }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal--success { text-align: center; }

.success-icon { font-size: 48px; margin-bottom: 16px; }

.success-note {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--cream);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: left;
}

#successDetails {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════ ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════ FLATPICKR */
.flatpickr-calendar {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ═══════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__gallery { order: -1; }
  .about__img-main img { height: 250px; }
  .rules__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav { display: none; flex-direction: column; position: fixed; inset: 0; background: white; z-index: 99; justify-content: center; align-items: center; gap: 8px; padding: 80px 24px 24px; }
  .nav.open { display: flex; }
  .nav__link { font-size: 20px; padding: 14px 24px; }

  .burger { display: flex; }
  .header__phone { display: none; }
  .header__right .btn { display: none; }

  .hero__title { font-size: 42px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--hero, .btn--hero-outline { width: 100%; max-width: 280px; }

  .rooms__grid { grid-template-columns: 1fr; }
  .territory__grid { grid-template-columns: 1fr; }
  .booking__layout { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: 1fr; }
  .attractions__grid { grid-template-columns: 1fr; }
  .rules__grid { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .room-selector { grid-template-columns: 1fr 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__contact { text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__links { justify-content: center; }

  .attractions__transport { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .room-selector { grid-template-columns: 1fr; }
  .floor-tabs { flex-direction: column; }
}
