.fire-slider-arrow {
    display:none;
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  color: #1a1a1a;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  transition: background .4s ease, box-shadow .4s ease;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;
  transition: color .3s ease;
}

#site-header.scrolled .logo {
  color: #111;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color .3s ease;
}

#site-header.scrolled nav a {
  color: #111;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin-bottom: 25px;
  color: white;
}

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

.btn {
  background: #8b0000;
  color: #fff;
  padding: 16px 42px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.feature {
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #fff;
  padding: 60px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ===== ANIMATION ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.hero .animate {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE ===== */
@media(max-width:900px){
  .features {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
}
/* ===== HERO PARALLAX ===== */
.hero {
  position: relative;
  overflow: hidden;
}

/* ===== HERO VIDEO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0) scale(1);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Затемнение */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ===== MOBILE FALLBACK ===== */
@media (max-width: 900px) {
  .hero-video {
    display: block;
    height: 100%;
  }

  .hero-media {
    background: none;
  }
}
/* ===== FEATURE ICONS ===== */
.feature-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  padding: 50px 35px;
  text-align: center;
  border-radius: 4px;
  background: rgba(255,255,255,0.85);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.feature-link h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-link p {
  font-size: 15px;
  color: #666;
}

/* ===== HOVER EFFECT ===== */
.feature-link:hover {
  transform: scale(1.06);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.feature-link:hover .feature-icon {
  transform: scale(1.2);
}
/* ===== BANKET SECTION ===== */
.banket-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.banket-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.banket-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 25px;
}

.banket-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #444;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .banket-inner {
    grid-template-columns: 1fr;
  }

  .banket-content h1 {
    font-size: 30px;
  }
}
/* ===== HEADER PHONE BUTTON ===== */
.main-nav {
  display: flex;
  align-items: center;
}

.header-phone {
  margin-left: 30px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.header-phone:hover {
  background: rgba(255,255,255,0.85);
  color: #000;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .header-phone {
    padding: 8px 18px;
    font-size: 13px;
  }
}
/* ===== GO SECTION ===== */
.go-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.go-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.go-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 25px;
}

.go-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #444;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .go-inner {
    grid-template-columns: 1fr;
  }

  .go-content h1 {
    font-size: 30px;
  }
  .go-image {
    order: 1;
  }

  .go-content {
    order: 2;
  }

}
.go-image {
  order: 2;
}

.go-content {
  order: 1;
}
/* ===== OFFERS ===== */
.offers-header {
  text-align: center;
  margin-bottom: 60px;
}

.offers-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.offers-header p {
  color: #666;
  font-size: 16px;
}

/* GRID */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.offer-card {
  position: relative;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

/* BACKGROUND */
.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* OVERLAY */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

/* CONTENT */
.offer-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.offer-content h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: white;
}

.offer-content span {
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER */
.offer-card:hover .offer-bg {
  transform: scale(1.12);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-header h2 {
    font-size: 30px;
  }
}
/* ===== LOGO WITH BIRD ===== */
.logo-wrap {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.logo-text {
  position: relative;
  z-index: 1;
}

/* Жар-птица */
.logo-bird {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo-bird img {
  width: 42px;
  height: auto;
}
@media (max-width: 900px) {
  .logo-wrap {
    font-size: 22px;
  }

  .logo-bird img {
    width: 32px;
  }

  .logo-bird {
    top: -18px;
  }
}
.logo-bird img {
  animation: birdFloat 4s ease-in-out infinite;
}

@keyframes birdFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
/* ===== LOGO WITH ICON ===== */
.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-left: 12px;
  color: #fff;
  transition: color 0.3s ease;
}

/* Иконка жар-птицы */
.logo-bird svg {
  width: 42px;
  height: 42px;
  fill: #f7b733; /* золотой тон — можно менять */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover на логотип */
.logo-wrap:hover .logo-bird svg {
  transform: scale(1.2) rotate(-6deg);
  filter: drop-shadow(0 0 8px rgba(247, 183, 51, 0.65));
}

.logo-wrap:hover .logo-text {
  color: #f7b733;
}

/* Лёгкое постоянное свечение */
.logo-bird svg {
  filter: drop-shadow(0 0 6px rgba(247, 183, 51, 0.45));
}
/* ===== LOGO TEXT BORDER ===== */
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;

  padding: 6px 16px;
  border: 1px solid rgba(247, 183, 51, 0.6);
  border-radius: 30px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover эффект */
.logo-wrap:hover .logo-text {
  color: #f7b733;
  border-color: #f7b733;
  box-shadow: 0 0 12px rgba(247, 183, 51, 0.5);
}
/* ===== LOGO ANIMATED BORDER ===== */
.logo-text {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;

  padding: 8px 18px;
  text-decoration: none;
}

/* Псевдоэлементы — линии рамки */
.logo-text::before,
.logo-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 1px solid transparent;
  border-radius: 30px;
  pointer-events: none;
}

/* Верх + левый бордер */
.logo-text::before {
  top: 0;
  left: 0;
  border-top-color: #f7b733;
  border-left-color: #f7b733;
  transition:
    width 0.3s ease,
    height 0.3s ease 0.3s;
}

/* Низ + правый бордер */
.logo-text::after {
  bottom: 0;
  right: 0;
  border-bottom-color: #f7b733;
  border-right-color: #f7b733;
  transition:
    width 0.3s ease 0.3s,
    height 0.3s ease;
}

/* Hover — рисуем рамку */
.logo-wrap:hover .logo-text::before,
.logo-wrap:hover .logo-text::after {
  width: 100%;
  height: 100%;
}

/* Доп. эффект */
.logo-wrap:hover .logo-text {
  color: #f7b733;
}
@media (max-width: 900px) {
  .logo-text {
    font-size: 22px;
    padding: 6px 14px;
  }
}
/* ===== FIRE EFFECT ===== */
.logo-text::before,
.logo-text::after {
  box-shadow: none;
}

/* Огонь при hover */
.logo-wrap:hover .logo-text::before,
.logo-wrap:hover .logo-text::after {
  animation: fireGlow 1.8s infinite alternate;
}

/* Пульсация огня */
@keyframes fireGlow {
  0% {
    box-shadow:
      0 0 6px rgba(247,183,51,0.4),
      0 0 12px rgba(255,140,0,0.25);
  }
  50% {
    box-shadow:
      0 0 10px rgba(255,140,0,0.55),
      0 0 20px rgba(255,100,0,0.35);
  }
  100% {
    box-shadow:
      0 0 8px rgba(247,183,51,0.45),
      0 0 16px rgba(255,80,0,0.3);
  }
}
.logo-text::after {
  filter: drop-shadow(0 0 6px rgba(255,120,0,0.4));
}
@media (max-width: 900px) {
  .logo-wrap:hover .logo-text::before,
  .logo-wrap:hover .logo-text::after {
    animation: none;
  }
}
/* ===== TEXT STROKE LOGO ===== */
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;

  color: transparent; /* заливка */
  -webkit-text-stroke: 1px #f7b733; /* обводка букв */

  letter-spacing: 0.5px;

  transition:
    -webkit-text-stroke 0.3s ease,
    text-shadow 0.3s ease;
}

/* Hover — огонь усиливается */
.logo-wrap:hover .logo-text {
  -webkit-text-stroke: 1.2px #ff8c00;
  text-shadow:
    0 0 6px rgba(255,140,0,0.5),
    0 0 12px rgba(255,100,0,0.35);
}
/* ===== FIRE TEXT SVG ===== */
.logo-text-svg {
  width: 260px;
  height: auto;
}

.logo-text-svg text {
  stroke-dasharray: 200;
  animation: fireStroke 4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,140,0,0.5));
}

/* Усиление при hover */
.logo-wrap:hover .logo-text-svg text {
  animation-duration: 2s;
  stroke-width: 1.8;
  filter:
    drop-shadow(0 0 10px rgba(255,140,0,0.7))
    drop-shadow(0 0 20px rgba(255,80,0,0.5));
}

/* Анимация движения огня */
@keyframes fireStroke {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.logo-text-svg text {
  animation:
    fireStroke 4s linear infinite,
    firePulse 2.5s ease-in-out infinite;
}

@keyframes firePulse {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}
@media (max-width: 900px) {
  .logo-text-svg {
    width: 200px;
  }

  .logo-wrap:hover .logo-text-svg text {
    animation-duration: 3s;
  }
}
/* ===== CLICKABLE LOGO ===== */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  cursor: pointer;
}

/* Убираем стандартный стиль ссылки */
.logo-wrap:link,
.logo-wrap:visited {
  color: inherit;
}

/* Чтобы SVG тоже реагировал */
.logo-wrap svg {
  pointer-events: none;
}
/* ===== CLICKABLE LOGO ===== */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  cursor: pointer;
}

/* Убираем стандартный стиль ссылки */
.logo-wrap:link,
.logo-wrap:visited {
  color: inherit;
}

/* Чтобы SVG тоже реагировал */
.logo-wrap svg {
  pointer-events: none;
}
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}

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

/* НАВИГАЦИЯ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav a.is-active {
  color: #f5c76a;
  text-shadow: 0 0 12px rgba(255,140,43,.35);
  border-color: rgba(255,140,43,.45);
}

#site-header.scrolled .main-nav a.is-active {
  color: #b8771d;
  text-shadow: 0 0 10px rgba(255,140,43,.25);
  border-color: rgba(184,119,29,.55);
}

#site-header.scrolled .logo-text {
  color: #111;
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

#site-header.scrolled .logo-bird img {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)) saturate(1.2) contrast(1.1);
}

/* КНОПКА ТЕЛЕФОНА */
.header-phone {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.header-phone:hover {
  background: #8b0000;
  border-color: #8b0000;
}
/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: #8b0000;
  box-shadow: 0 0 25px rgba(139,0,0,0.6);
}

/* стрелка */
#scrollTopBtn .arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin: auto;
  position: relative;
  top: 20px;
}

/* легкая анимация "дыхания" */
#scrollTopBtn.show {
  animation: floatUp 2.5s ease-in-out infinite;
}

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* ===== FIRE SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at top,
    rgba(255,140,0,0.9),
    rgba(139,0,0,0.85),
    rgba(0,0,0,0.9)
  );
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow:
    0 0 20px rgba(255,120,0,0.5),
    inset 0 0 12px rgba(255,200,100,0.6);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* 🔥 ОГНЕННОЕ ПУЛЬСИРОВАНИЕ */
#scrollTopBtn.show {
  animation: firePulse 2.8s infinite ease-in-out;
}

@keyframes firePulse {
  0%,100% {
    box-shadow:
      0 0 20px rgba(255,120,0,0.5),
      inset 0 0 12px rgba(255,200,100,0.6);
  }
  50% {
    box-shadow:
      0 0 35px rgba(255,80,0,0.9),
      inset 0 0 18px rgba(255,220,150,0.8);
  }
}

/* ===== FIRE ARROW ===== */
.fire-arrow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  filter:
    drop-shadow(0 0 6px rgba(255,200,100,0.9))
    drop-shadow(0 0 12px rgba(255,80,0,0.8));
}

/* 🔥 ЯЗЫКИ ПЛАМЕНИ */
.fire-arrow::before,
.fire-arrow::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle,
    #fff,
    #ffb300,
    #ff4500
  );
  border-radius: 50%;
  animation: flame 1.4s infinite ease-in-out;
}

.fire-arrow::before {
  top: 12px;
  left: -4px;
}

.fire-arrow::after {
  top: 18px;
  left: 2px;
  animation-delay: .3s;
}

@keyframes flame {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(0) translateY(-12px);
    opacity: 0;
  }
}

/* ===== HOVER — ЖАР-ПТИЦА ===== */
#scrollTopBtn:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 50px rgba(255,90,0,1),
    0 0 90px rgba(255,150,0,0.8);
}
/* ===== FIREBIRD BUTTON ===== */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,160,60,0.9),
    rgba(160,30,0,0.9),
    rgba(0,0,0,0.95)
  );
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 0 30px rgba(255,120,0,0.7);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: firePulse 3s infinite ease-in-out;
}

@keyframes firePulse {
  0%,100% { box-shadow: 0 0 30px rgba(255,120,0,0.6); }
  50% { box-shadow: 0 0 55px rgba(255,80,0,1); }
}

/* ===== SVG FIREBIRD ===== */
.firebird-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: birdFloat 3s infinite ease-in-out;
}

/* тело */
.firebird-icon .body {
  stroke: #ffd27d;
  stroke-width: 3;
  filter: drop-shadow(0 0 6px #ff9b00);
}

/* крылья */
.firebird-icon .wing {
  stroke: #ff7a00;
  stroke-width: 2.5;
  animation: wings 1.8s infinite ease-in-out;
}

/* хвост */
.firebird-icon .tail {
  stroke: #ff4500;
  stroke-width: 2;
  animation: tailFire 1.4s infinite ease-in-out;
}

@keyframes wings {
  0%,100% { transform: scaleX(1); }
  50% { transform: scaleX(1.15); }
}

@keyframes tailFire {
  0% { stroke-opacity: 1; }
  100% { stroke-opacity: 0.4; }
}

@keyframes birdFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* HOVER — ЖАР */
#scrollTopBtn:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 70px rgba(255,120,0,1),
    0 0 120px rgba(255,180,60,0.8);
}
/* ===== SCROLL TO TOP FIREBIRD ===== */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,160,60,0.9),
    rgba(140,20,0,0.9),
    rgba(0,0,0,0.95)
  );
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow:
    0 0 30px rgba(255,120,0,0.6),
    inset 0 0 12px rgba(255,200,120,0.6);
}

/* появление */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: firePulse 3s infinite ease-in-out;
}

/* PNG внутри */
#scrollTopBtn img {
  width: 42px;
  height: auto;
  filter:
    drop-shadow(0 0 6px rgba(255,200,100,0.9))
    drop-shadow(0 0 14px rgba(255,90,0,0.8));
  animation: birdFloat 2.8s infinite ease-in-out;
}

/* дыхание */
@keyframes firePulse {
  0%,100% {
    box-shadow:
      0 0 30px rgba(255,120,0,0.6),
      inset 0 0 12px rgba(255,200,120,0.6);
  }
  50% {
    box-shadow:
      0 0 55px rgba(255,80,0,1),
      inset 0 0 18px rgba(255,230,150,0.8);
  }
}

/* парение птицы */
@keyframes birdFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* hover */
#scrollTopBtn:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 80px rgba(255,120,0,1),
    0 0 140px rgba(255,180,60,0.9);
}
/* ===== FIRE TRAIL ===== */
.fire-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  background: radial-gradient(circle,
    #fff,
    #ffb300,
    #ff4500
  );
  border-radius: 50%;
  animation: fireTrail 0.8s ease-out forwards;
  filter: blur(1px);
  z-index: 998;
}

@keyframes fireTrail {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(3) translateY(-30px);
    opacity: 0;
  }
}
/* ===== FIRE SPARK (DYNAMIC) ===== */
.fire-trail {
  position: fixed;
  width: 2px;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255,255,255,1),
    rgba(255,210,120,1),
    rgba(255,120,0,0.9),
    rgba(255,0,0,0)
  );
  border-radius: 2px;
  transform-origin: bottom center;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(255,150,60,0.9));
  animation-name: sparkFly;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  z-index: 998;
}

@keyframes sparkFly {
  0% {
    transform: translateY(0) scaleY(1) rotate(var(--rot));
    opacity: 1;
  }
  100% {
    transform: translateY(var(--fly)) scaleY(0.25) rotate(var(--rot));
    opacity: 0;
  }
}
/* ===== FIREBIRD JUMP ===== */
#scrollTopBtn.jump img {
  animation: birdJump 0.45s cubic-bezier(.25,1.5,.5,1);
}

@keyframes birdJump {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-14px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* ===== FIREBIRD SIZE ===== */
#scrollTopBtn img {
  width: 54px;          /* было ~42px */
  height: auto;
  display: block;
  margin: auto;
  transform-origin: center;
}
#scrollTopBtn {
  width: 78px;
  height: 78px;
}
#scrollTopBtn img {
  width: 60px;
}
.btn {
  border-radius: 12px;
  background: linear-gradient(135deg, #8b0000, #b30000);
}

.btn:hover {
  background: linear-gradient(135deg, #b30000, #ff4500);
}
@media (max-width: 768px) {
  .btn {
    border-radius: 14px;
  }
}
/* ===== PREMIUM BUTTON ===== */
.btn {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b0000, #b30000);
  color: #fff;
  padding: 16px 42px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* тонкая обводка (через псевдоэлемент) */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,180,100,0.0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

/* 🔥 огненный акцент (мягкое свечение) */
.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255,200,120,0.8),
    rgba(255,90,0,0.6),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ===== HOVER ===== */
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.3),
    0 0 22px rgba(255,120,0,0.6);
}

/* обводка появляется */
.btn:hover::before {
  border-color: rgba(255,200,120,0.9);
}

/* огонь проявляется */
.btn:hover::after {
  opacity: 1;
}
/* ===== PREMIUM CARDS ===== */
.feature {
  position: relative;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 40px 30px;
  border: 1px solid rgba(0,0,0,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}

/* мягкий свет при hover */
.feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255,200,120,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* ===== HOVER ===== */
.feature:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    0 0 25px rgba(255,150,60,0.25);
  border-color: rgba(255,140,80,0.4);
}

.feature:hover::before {
  opacity: 1;
}
/* ===== LUXURY HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.7)
    );
  z-index: 1;
}

/* фон */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1528605248644-14dd04022da1")
    center / cover no-repeat;
  transform: scale(1);
  transition: transform 0.2s linear;
  will-change: transform;
}

/* контент */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}

/* типографика */
.hero h1 {
  font-size: 64px;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}
/* ===== OFFERS ===== */
.offers {
  background: #faf8f6;
}

/* Заголовок */
.offers-header {
  text-align: center;
  margin-bottom: 60px;
}

.offers-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin-bottom: 15px;
}

.offers-header p {
  color: #666;
  font-size: 16px;
}

/* Сетка */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Карточка */
.offer-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Изображение */
.offer-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

/* Затемнение */
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.65)
  );
}

/* Контент */
.offer-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 2;
}

.offer-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.offer-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* Лейбл */
.offer-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 20px;
  background: rgba(255,120,60,0.85);
}

/* Hover */
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    0 0 25px rgba(255,150,80,0.45);
}

.offer-card:hover .offer-image {
  transform: scale(1.12);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-header h2 {
    font-size: 32px;
  }
}
/* ===== OFFER LABELS ===== */
.offer-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 20px;
  font-weight: 600;
}

/* ХИТ */
.label-hit {
  background: linear-gradient(135deg, #ff6a00, #ff0000);
  box-shadow: 0 0 15px rgba(255,80,0,0.6);
}

/* НОВОЕ */
.label-novoe {
  background: linear-gradient(135deg, #1f9cff, #00c6ff);
  box-shadow: 0 0 15px rgba(0,180,255,0.5);
}

/* АКЦИЯ */
.label-akciya {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #000;
}
/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.modal.show {
  display: block;
}

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

.modal-window {
  position: relative;
  max-width: 480px;
  margin: 10vh auto;
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: modalIn .5s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(40px) scale(.95);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.modal h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.modal p {
  opacity: .85;
  margin-bottom: 25px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: #1a1a1a;
  color: #fff;
}

.modal-form textarea {
  min-height: 90px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #ff7a00;
}

/* CLOSE */
.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  z-index: 9999;
}

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

.popup {
  background: rgba(255,255,255,0.85);
  padding: 35px 40px;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  transform: translateY(20px) scale(.96);
  transition: .35s ease;
  position: relative;
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}

.popup h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.popup p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.popup-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.popup-form input:focus {
  outline: none;
  border-color: #8b0000;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
}

.popup-close:hover {
  color: #000;
}
/* ===== BURGER ===== */
.burger {
  display: none;
  width: 34px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1101;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
  transition: .35s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { bottom: 0; }

/* ACTIVE */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {

  .burger {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at top, rgba(255,140,43,0.12), transparent 45%),
      rgba(4,4,4,0.92);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 90px 24px 28px;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .35s ease;
    z-index: 1100;
  }

  .main-nav a {
    font-size: 15px;
    letter-spacing: 1.2px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.65);
    text-align: left;
    margin-left: 0;
    color: #111;
  }

  .main-nav a:hover {
    background: rgba(255,140,43,0.18);
    border-color: rgba(255,140,43,0.35);
    color: #111;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(255,255,255,0.75);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
  }

  .mobile-nav-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-nav-footer .lang-switcher {
    margin-left: 0;
  }
}
.fire-search {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(255,120,0,0.35));
}

.fire-search-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    font-size: 18px;
    color: #fff;
    background: radial-gradient(circle at top,
        #2a1a0f,
        #120b06
    );
    border: 1px solid rgba(255,140,0,0.4);
    border-radius: 40px;
    outline: none;
    box-shadow:
        inset 0 0 20px rgba(255,120,0,0.25),
        0 10px 40px rgba(0,0,0,0.7);
}

.fire-search-input::placeholder {
    color: rgba(255,200,150,0.6);
}

.fire-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle,
        #ffae00,
        #ff5a00,
        #b30000
    );
    font-size: 20px;
    cursor: pointer;
    box-shadow:
        0 0 20px rgba(255,90,0,0.9),
        inset 0 0 10px rgba(255,255,255,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fire-search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow:
        0 0 35px rgba(255,140,0,1),
        inset 0 0 14px rgba(255,255,255,0.6);
}
.fire-search {
    margin-top: clamp(40px, 8vh, 120px);
}
.fire-gallery {
    margin: clamp(60px, 10vh, 120px) auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    padding: 0 20px;
}

.fire-gallery-item {
    position: relative;
    background: radial-gradient(circle at top,
        #2a1a0f,
        #120b06
    );
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        inset 0 0 30px rgba(255,120,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fire-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(255,100,0,0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fire-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.9),
        0 0 40px rgba(255,120,0,0.5);
}

.fire-gallery-item:hover::after {
    opacity: 1;
}

.fire-gallery-item img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

.fire-gallery-caption {
    padding: 18px 16px 22px;
    text-align: center;
    font-size: 16px;
    color: #ffd6a0;
    background: linear-gradient(
        to top,
        rgba(10,5,2,0.95),
        rgba(10,5,2,0.75)
    );
    text-shadow: 0 0 10px rgba(255,120,0,0.35);
}
.fire-title {
    margin-top: clamp(40px, 8vh, 120px);
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffd6a0;

    text-shadow:
        0 0 10px rgba(255,120,0,0.4),
        0 0 25px rgba(255,80,0,0.35),
        0 0 45px rgba(180,40,0,0.25);

    position: relative;
}
.fire-slider-wrapper {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 60px;
}

.fire-slider {
    overflow: hidden;
}

.fire-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.fire-gallery-item {
    min-width: calc((100% - 60px) / 3);
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at top, #2a1a0f, #120b06);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        inset 0 0 30px rgba(255,120,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fire-gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.9),
        0 0 35px rgba(255,120,0,0.6);
}

.fire-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.fire-gallery-caption {
    padding: 16px;
    text-align: center;
    color: #ffd6a0;
    text-shadow: 0 0 10px rgba(255,120,0,0.35);
}

/* Стрелки */
.fire-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    background: radial-gradient(circle, #ffae00, #ff5a00, #b30000);
    box-shadow: 0 0 25px rgba(255,120,0,0.8);
    z-index: 10;
}

.fire-slider-arrow.prev { left: 0; }
.fire-slider-arrow.next { right: 0; }
.fire-slider-wrapper {
    margin-top: 60px;
}
.fire-reviews-wrapper {
    position: relative;
    max-width: 1200px;
    margin: clamp(60px, 10vh, 120px) auto 0;
    padding: 0 60px;
}

.fire-reviews {
    overflow: hidden;
}

.fire-reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.fire-review-item {
    min-width: calc((100% - 60px) / 3);
    padding: 30px 28px;
    background: radial-gradient(circle at top, #2a1a0f, #120b06);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        inset 0 0 25px rgba(255,120,0,0.18);
    color: #ffd6a0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fire-review-text {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255,120,0,0.3);
}

.fire-review-author {
    margin-top: 20px;
    font-size: 14px;
    color: #ffb86b;
    text-align: right;
    font-style: italic;
}

/* Стрелки */
.fire-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    background: radial-gradient(circle, #ffae00, #ff5a00, #b30000);
    box-shadow: 0 0 25px rgba(255,120,0,0.8);
    z-index: 10;
}

.fire-reviews-arrow.prev { left: 0; }
.fire-reviews-arrow.next { right: 0; }
.fire-info {
    max-width: 900px;
    margin: clamp(80px, 12vh, 160px) auto;
    padding: 0 20px;
    text-align: center;
}

.fire-info-text {
    margin-top: 40px;
    padding: 40px 36px;
    background: radial-gradient(circle at top,
        #2a1a0f,
        #120b06
    );
    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.8),
        inset 0 0 30px rgba(255,120,0,0.18);
}

.fire-info-text p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #ffd6a0;
    text-shadow: 0 0 10px rgba(255,120,0,0.3);
}

.fire-info-text p:last-child {
    margin-bottom: 0;
}
.fire-info {
    animation: fireFadeUp 0.8s ease both;
}

@keyframes fireFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fire-location {
    max-width: 1000px;
    margin: clamp(80px, 12vh, 160px) auto;
    padding: 0 20px;
    text-align: center;
}

.fire-location-info {
    margin-top: 30px;
    padding: 30px;
    background: radial-gradient(circle at top, #2a1a0f, #120b06);
    border-radius: 24px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.8),
        inset 0 0 30px rgba(255,120,0,0.18);
}

.fire-location-info p {
    font-size: 18px;
    color: #ffd6a0;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255,120,0,0.35);
}

.fire-location-btn {
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    background: radial-gradient(circle, #ffae00, #ff5a00, #b30000);
    box-shadow: 0 0 20px rgba(255,120,0,0.8);
}

#fire-map {
    margin-top: 40px;
    height: 380px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.9),
        0 0 40px rgba(255,120,0,0.4);
}
.last-profiles {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255,120,0,.6);
}

/* ===== СЕТКА ===== */
.profiles-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* ===== ЛЕВАЯ КОЛОНКА ===== */
.profiles-slider {
    width: 100%;
    overflow: hidden;
}

/* ===== SWIPER ===== */
.profiles-swiper {
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* ===== КАРТОЧКА ===== */
.profile-card {
    width: 100%;
    max-width: 280px;
    background: rgba(0,0,0,.55);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

/* ===== СТРЕЛКИ ===== */
.swiper-button-next,
.swiper-button-prev {
    top: 45%;
    color: #ff7a18;
}

/* ===== ПРАВАЯ КОЛОНКА ===== */
.cities-column {
    background: rgba(0,0,0,.45);
    border-radius: 16px;
    padding: 25px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 900px) {
    .profiles-wrapper {
        grid-template-columns: 1fr;
    }
}
.whatsapp-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(37,211,102,.6);
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37,211,102,.9);
}

/* ПРАВАЯ ЧАСТЬ */
.cities-column {
    background: rgba(0,0,0,.45);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(255,90,0,.2);
}

.city-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,120,0,.3);
    font-size: 15px;
    color: white;
}

.city-row:last-child {
    border-bottom: none;
}

.city-count {
    color: #ff7a18;
    font-weight: 600;
}
.profile-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.profile-card {
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(255,100,0,.45);
}

/* чтобы кнопка была визуально кнопкой, но не перехватывала клик */
.fake-btn {
    pointer-events: none;
}
.fire-title1 {
    font-size: 18px;
}
.profile-card img {
    width: 100%;
    border-radius: 12px;
}
.profile-name{
    margin-top: 10px;
    font-size: 14px bold;
    color: #aaa;
}
.profile-date {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

.profile-city {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    color: #aaa;
}

.profile-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    margin: 15px 0;
}
.profile-image {
    width: 100%;
    height: 260px;          /* ← ОДИНАКОВАЯ ВЫСОТА */
    overflow: hidden;
    border-radius: 12px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* ← МАГИЯ */
    display: block;
}
.profile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.whatsapp-btn {
    margin-top: auto;  /* ← ПРИЖИМАЕТ КНОПКУ ВНИЗ */
}
.profiles-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* левая колонка с карточками */
.profiles-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.profile-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.profile-card {
    cursor: pointer;
}
.profiles-left {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap; /* все в одну строку */
}

.profile-card-link {
    display: block;      /* КЛЮЧ */
    text-decoration: none;
    color: inherit;
}
.auth-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.auth-popup.active {
    display: block;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.auth-box {
    position: relative;
    width: 420px;
    max-width: 90%;
    margin: 10vh auto;
    background: #111;
    color: #fff;
    padding: 25px;
    border-radius: 16px;
}

.auth-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.auth-tabs,
.auth-subtabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.auth-tab,
.auth-subtab {
    flex: 1;
    padding: 10px;
    background: #222;
    border: none;
    color: #aaa;
    cursor: pointer;
    border-radius: 10px;
}

.auth-tab.active,
.auth-subtab.active {
    background: #ff7a18;
    color: #000;
}

.auth-panel,
.auth-subpanel {
    display: none;
}

.auth-panel.active,
.auth-subpanel.active {
    display: block;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-box input,
.auth-box button {
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.auth-box button {
    background: #ff7a18;
    cursor: pointer;
}
.auth-box {
    background: linear-gradient(180deg, #0b0b0b, #1a1a1a);
    box-shadow: 0 0 40px rgba(255,120,0,.35);
}

.auth-tab.active {
    box-shadow: inset 0 0 15px rgba(255,120,0,.6);
}

.auth-box input {
    background: #111;
    color: #fff;
}

.auth-box input:focus {
    outline: 1px solid #ff7a18;
}
/* панели */
.auth-panel,
.auth-subpanel {
    display: none;
}

.auth-panel.active,
.auth-subpanel.active {
    display: block;
}

/* кнопки */
.auth-tab.active,
.auth-subtab.active {
    background: #000;
    color: #fff;
}

/* аккуратная форма */
.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* === REGISTER SUB TABS FIX === */

.auth-subcontent {
    position: relative;
}

.auth-subpanel {
    display: none;
}

.auth-subpanel.active {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-box form input,
.auth-box form button {
    width: 100%;
    box-sizing: border-box;
}
.auth-box {
    max-height: 90vh;
    overflow-y: auto;
}
/* === FORCE FIX REGISTER SUBTABS === */

.auth-panel#register .auth-subpanel {
    display: none !important;
}

.auth-panel#register .auth-subpanel.active {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
}
/* ======================
   AUTH LOGGED POPUP
====================== */

.auth-logged {
    text-align: center;
    padding: 28px 24px;
}

.auth-user {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}


.auth-user-info {
    text-align: left;
}

.auth-hello {
    font-size: 13px;
    color: #888;
}

.auth-name {
    font-size: 18px;
    font-weight: 600;
}

.auth-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.auth-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: .2s ease;
}

.auth-btn.primary {
    background: #111;
    color: #fff;
}

.auth-btn.primary:hover {
    background: #000;
}

.auth-btn.outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
}

.auth-btn.outline:hover {
    background: #f5f5f5;
}
.no-slider .fire-slider-track {
    justify-content: center;
}

.no-slider .fire-gallery-item {
    flex: 0 0 520px;
}
/* === SEARCH FORM === */

.search-form{
    max-width: 880px;
    margin: 40px auto;
    position: relative;
}

/* input wrapper */
.search-input-wrap{
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.65);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 0 30px rgba(255,90,0,.25);
    transition: box-shadow .3s ease, transform .3s ease;
}

.search-input-wrap:focus-within{
    box-shadow: 0 0 45px rgba(255,120,0,.45);
    transform: translateY(-1px);
}

/* input */
.search-input-wrap input{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 16px;
    color: #fff;
}

.search-input-wrap input::placeholder{
    color: #aaa;
}

/* button */
.search-btn{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,90,0,.45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.search-btn:hover{
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255,120,0,.7);
}

/* === AUTOCOMPLETE === */

.search-suggestions{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(0,0,0,.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,.6);
    display: none;
    z-index: 999;
}

/* item */
.search-suggestions{
    padding: 14px 20px;
    font-size: 15px;
    color: #ddd;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.search-suggestions :hover{
    background: rgba(255,120,0,.15);
    color: #fff;
}

/* type label */
.search-suggestions .type{
    font-size: 12px;
    color: #ff7a18;
    opacity: .8;
}

/* active */
.search-suggestions.active{
    display: block;
}

/* mobile */
@media (max-width: 640px){
    .search-input-wrap input{
        font-size: 15px;
    }
}
/* live cards */
.search-suggestions.live-card{
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-suggestions.live-card img{
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
}

.search-suggestions.live-card strong{
    font-size: 15px;
    color: #fff;
}

.search-suggestions.live-card .meta{
    font-size: 12px;
    color: #ff7a18;
}
.search-form {
    position: relative;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
    overflow: hidden;
    z-index: 100;
}

.search-suggestions a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    transition: background .2s;
}

.search-suggestions a:hover {
    background: #e63946;
}
/* ===== TITRE ===== */
.cities-title {
    text-align: center;
    font-size: 42px;
    color: #ffcc88;
    margin-bottom: 48px;
}

/* ===== WRAPPER ===== */
.cities-carousel {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ===== VIEWPORT ===== */
.cities-viewport {
    overflow: hidden;
    width: 100%;
}

/* ===== TRACK ===== */
.cities-track {
    display: flex;
    gap: 28px;
    transition: transform .6s ease;
}

/* ===== CARD ===== */
.city-card {
    flex: 0 0 340px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    transform: scale(.82);
    opacity: .5;
    transition: all .45s ease;
}

/* IMAGE */
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACTIVE */
.city-card.is-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 70px rgba(255,170,90,.4);
    z-index: 3;
}

/* NAME */
.city-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    text-align: center;
    font-size: 20px;
    color: #ffcc88;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

/* NAV */
.cities-nav {
    background: none;
    border: none;
    font-size: 54px;
    color: #ffb366;
    cursor: pointer;
    user-select: none;
    transition: opacity .3s;
}

.cities-nav:hover {
    opacity: .6;
}


/* === Last profiles layout === */
.last-profiles .profiles-left {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.last-profiles .profile-card-link,
.last-profiles .profile-card {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1100px) {
  .last-profiles .profiles-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .last-profiles .profiles-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .last-profiles .cities-column {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .last-profiles .profiles-left {
    grid-template-columns: 1fr;
  }

  .last-profiles .profile-image {
    height: 220px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

/* === Header overrides (front page) === */
#site-header {
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(8px);
  transition: background .3s ease, box-shadow .3s ease;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  justify-content: flex-start;
  gap: 18px;
}

.main-nav {
  margin-left: auto;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.header-phone {
  margin-left: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.header-phone:hover {
  background: rgba(255,140,43,.2);
  border-color: rgba(255,140,43,.6);
  transform: translateY(-1px);
}

#site-header.scrolled .header-phone {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.12);
  color: #111;
}

#site-header.scrolled .burger span {
  background: rgba(0,0,0,0.7);
}

@media (max-width: 900px) {
  .main-nav {
    margin-left: 0;
  }
}
