/* =============================================
   САНАТОРИЙ ЧОН-ТУЗ — ГЛАВНЫЕ СТИЛИ
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-50:  #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --gold: #f59e0b;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garant', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --radius: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--slate-900);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-gold:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .85rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), var(--shadow-md);
  padding: .6rem 0;
}
.header.scrolled .nav-logo-text  { color: var(--primary-800); }
.header.scrolled .nav-link       { color: var(--slate-700); }
.header.scrolled .nav-link:hover { color: var(--primary-600); }
.header.scrolled .nav-link.active { color: var(--primary-600); }
.header.scrolled .lang-current {
  color: var(--slate-700);
  background: var(--slate-100);
  border-color: var(--slate-300);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.08); }
.nav-logo-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-logo-text span {
  display: block;
  font-size: .62rem;
  font-weight: 400;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
  gap: .1rem;
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem .65rem;
  white-space: nowrap;
  transition: color var(--transition);
  border-radius: .5rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: .2rem;
  left: .65rem;
  right: .65rem;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.header.scrolled .nav-link::after { background: var(--primary-600); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-book-btn {
  padding: .5rem 1.2rem !important;
  font-size: .82rem !important;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.1);
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .burger span { background: var(--slate-800); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, .75) 0%,
      rgba(30, 58, 138, .65) 50%,
      rgba(29, 78, 216, .45) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: .7; }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}
.hero-title .accent { color: var(--primary-200); }
@media (max-width: 640px) {
  .hero-title { white-space: normal; }
  .hero-title .accent { display: block; }
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}
.hero-scroll svg {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 5rem 0;
}
.section > .container { width: 100%; }
.section-alt  { background: var(--slate-50); }
.section-dark {
  background: var(--slate-900);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.section-dark .section-tag {
  background: rgba(255,255,255,.1);
  color: var(--primary-200);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,.7); }

/* ============================================
   ABOUT
   ============================================ */

/* Body */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-photos {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  margin: .75rem 0 1.25rem;
}

/* Photos */
.about-photo-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 620px;
  min-height: unset;
  box-shadow: var(--shadow-xl);
  margin: 1.5rem 0;
}
.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.about-photo-main:hover img { transform: scale(1.04); }
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-photo-sm {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-photo-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-photo-sm:hover img { transform: scale(1.05); }
.about-photo-badge {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.about-photo-badge strong {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.about-photo-badge span {
  font-size: .65rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Content */
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-800);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-body-text {
  font-size: .95rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

/* Full-width horizontal features row */
.about-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
}
.about-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: .4rem;
  padding: .5rem;
  min-width: 0;
}
.about-feature-card strong {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-800);
}
.about-feature-card span {
  font-size: .8rem;
  color: var(--slate-500);
}
.about-features-btn {
  white-space: nowrap;
  margin-left: .5rem;
  align-self: center;
}

.about-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-checklist li strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: .1rem;
}
.about-checklist li span {
  font-size: .82rem;
  color: var(--slate-500);
}

/* ============================================
   SERVICES / TREATMENT
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary-600);
  filter: grayscale(0);
}
.service-card:hover .service-icon .emoji-filter {
  filter: brightness(0) invert(1);
}
.service-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: .75rem;
}
.service-desc {
  color: var(--slate-500);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--slate-600);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
  flex-shrink: 0;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-200), var(--primary-400), var(--primary-200));
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--primary-100);
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: .5rem;
}
.process-step-desc {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.room-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.room-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.room-card:hover .room-img img { transform: scale(1.05); }

/* Badge — overlay on image */
.room-type-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(255,255,255,.92);
  color: var(--primary-700);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.room-type-badge--warm  { color: #92400e; background: rgba(254,243,199,.92); }
.room-type-badge--green { color: #166534; background: rgba(220,252,231,.92); }

.room-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}
.room-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.room-price {
  flex-shrink: 0;
  text-align: right;
}
.room-price strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-700);
  white-space: nowrap;
}
.room-price span {
  font-size: .72rem;
  color: var(--slate-400);
}
.room-desc {
  font-size: .8rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
  flex: 1;
}
.amenity-tag {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: .7rem;
  padding: .25rem .6rem;
  border-radius: 2rem;
}
.room-btn {
  display: block;
  width: 100%;
  background: var(--primary-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: .7rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
  margin-top: auto;
}
.room-btn:hover { background: var(--primary-700); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,138,.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
}
.testimonial-location {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ============================================
   LOCATION / MAP
   ============================================ */
.location-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.location-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-top: .5rem;
}
.location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.location-card-icon { font-size: 1.5rem; }
.location-card strong {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-800);
}
.location-card span {
  font-size: .82rem;
  color: var(--slate-500);
  line-height: 1.5;
}
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 380px;
  background: var(--slate-200);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--primary-300, #93c5fd);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card-icon.phone  { background: #dcfce7; }
.contact-card-icon.email  { background: var(--primary-100); }
.contact-card-icon.insta  { background: #fce7f3; }
.contact-card-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .15rem;
}
.contact-card-text span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate-800);
}
.contact-hours {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-hours-icon {
  font-size: 1.75rem;
}
.contact-hours strong {
  display: block;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: .15rem;
}
.contact-hours span {
  font-size: .875rem;
  color: var(--slate-500);
}

/* ---- Contact Form ---- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .5rem;
}
.contact-form-wrapper > p {
  color: var(--slate-500);
  font-size: .9rem;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  justify-content: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green-600);
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,.65);
  padding: 2rem 0 1rem;
}
.footer-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1rem;
}
.footer-compact-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-compact-brand .nav-logo-icon {
  width: 32px; height: 32px;
  font-size: .85rem;
  flex-shrink: 0;
}
.footer-compact-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
}
.footer-compact-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
}
.footer-compact-nav a {
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-compact-nav a:hover { color: var(--white); }
.footer-compact-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1rem;
}
.footer-compact-contacts a {
  font-size: .85rem;
  white-space: nowrap;
  transition: color var(--transition);
}
.footer-compact-contacts a:hover { color: var(--white); }
.footer-compact-btn {
  white-space: nowrap;
  padding: .6rem 1.4rem;
  font-size: .875rem;
}
.footer-bottom {
  font-size: .78rem;
  opacity: .45;
  text-align: center;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10001;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev[hidden],
.lightbox-next[hidden] { display: none; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  letter-spacing: .05em;
}

/* ============================================
   SCROLL-TO-TOP
   ============================================ */
/* Phone float */
.phone-float-group {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
  z-index: 999;
}
.phone-float {
  position: static;
  background: var(--green-600);
  color: var(--white);
  border-radius: 3rem;
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(22,163,74,.45);
  font-weight: 600;
  font-size: .82rem;
  z-index: 500;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.phone-float:hover {
  background: #15803d;
  box-shadow: 0 6px 24px rgba(22,163,74,.55);
  transform: translateY(-2px);
}
.phone-float-num { white-space: nowrap; }
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
  transform: translateY(-2px);
}
.telegram-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #29a8eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(41,168,235,.45);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.telegram-float:hover {
  background: #1a96d4;
  box-shadow: 0 6px 24px rgba(41,168,235,.6);
  transform: translateY(-2px);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--primary-700);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15,23,42,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-size: 1.4rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.mobile-nav-phone {
  margin-top: 1.5rem;
  color: var(--primary-400) !important;
  font-size: 1.1rem !important;
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-menu  { display: none; }
  .nav-right { display: none; }
  .burger    { display: flex; }
  .phone-float-group { bottom: 5rem; right: 1rem; }
  .scroll-top  { bottom: 1.5rem; right: 1rem; }

  .about-body    { grid-template-columns: 1fr; }
  .about-features-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .about-features-btn { grid-column: 1 / -1; justify-self: center; margin-left: 0; }

  .location-cards { grid-template-columns: 1fr 1fr; }
  .location-header { flex-direction: column; align-items: flex-start; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .services-grid    { grid-template-columns: 1fr; }
  .rooms-grid       { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================
   LANG SWITCHER DROPDOWN
   ============================================ */
.lang-switcher {
  position: relative;
}
.lang-current {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .35rem .75rem;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-arrow {
  font-size: .6rem;
  transition: transform var(--transition);
}
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-current:hover { background: rgba(255,255,255,.25); }
.header.scrolled .lang-current {
  color: var(--slate-700);
  background: var(--slate-100);
  border-color: var(--slate-300);
}
.header.scrolled .lang-current:hover { background: var(--slate-200); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 72px;
  z-index: 200;
  flex-direction: column;
  border: 1px solid var(--slate-200);
}
.lang-switcher.open .lang-dropdown-menu { display: flex; }
.lang-btn {
  background: none;
  border: none;
  padding: .55rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: left;
  cursor: pointer;
  color: var(--slate-600);
  transition: background var(--transition), color var(--transition);
  width: 100%;
}
.lang-btn:hover { background: var(--primary-50); color: var(--primary-700); }
.lang-btn.active { color: var(--primary-700); background: var(--primary-50); font-weight: 700; }
/* Mobile nav lang dropdown */
.mobile-nav .lang-current {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.mobile-nav .lang-dropdown-menu {
  position: static;
  box-shadow: none;
  border-radius: var(--radius-md);
  margin-top: .4rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.mobile-nav .lang-btn { color: rgba(255,255,255,.85); }
.mobile-nav .lang-btn:hover,
.mobile-nav .lang-btn.active { background: rgba(255,255,255,.15); color: var(--white); }

/* ============================================
   ROOM SLIDER
   ============================================ */
.room-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.room-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}
.room-slide.active { opacity: 1; }
.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: var(--white);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition);
  opacity: 0;
}
.room-card:hover .slider-prev,
.room-card:hover .slider-next { opacity: 1; }
.slider-prev:hover,
.slider-next:hover { background: rgba(0,0,0,.7); }
.slider-prev { left: .5rem; }
.slider-next { right: .5rem; }
.slider-dots {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* =============================================
   PROMO BANNER — Открытие сезона
   ============================================= */
.promo-banner {
  position: relative;
  background: linear-gradient(135deg, #92400e 0%, #b45309 40%, #d97706 75%, #f59e0b 100%);
  overflow: hidden;
  padding: 3rem 0;
}
.promo-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(251,191,36,.25) 0%, transparent 65%);
  pointer-events: none;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  pointer-events: none;
}
.promo-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.promo-banner-left {
  flex: 1 1 340px;
}
.promo-banner-right {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: .75rem;
  backdrop-filter: blur(6px);
}
.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.promo-offer {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.promo-offer strong {
  color: #fff;
  font-size: 1.125rem;
}
.promo-countdown {
  display: inline-flex;
  flex-direction: column;
  gap: .4rem;
}
.promo-countdown-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.promo-countdown-units {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.promo-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,.2);
  border-radius: .5rem;
  padding: .5rem .75rem;
  min-width: 60px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
}
.promo-countdown-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.promo-countdown-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .2rem;
}
.promo-countdown-sep {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  line-height: 1;
  margin-bottom: .9rem;
}
.promo-conditions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.promo-conditions li {
  font-size: .95rem;
  color: rgba(255,255,255,.95);
  font-weight: 500;
}
.promo-btn {
  align-self: flex-start;
  background: #fff !important;
  color: #92400e !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.2) !important;
  font-weight: 700;
}
.promo-btn:hover {
  background: #fffbeb !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.28) !important;
}
.promo-note {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}
@media (max-width: 768px) {
  .promo-banner { padding: 2rem 0; }
  .promo-banner-inner { gap: 2rem; }
  .promo-banner-right { flex-basis: 100%; }
  .promo-btn { align-self: stretch; text-align: center; justify-content: center; }
  .promo-countdown-unit { min-width: 50px; padding: .4rem .6rem; }
  .promo-countdown-num { font-size: 1.4rem; }
}
