

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --bg-primary:    #080d1a;
  --bg-secondary:  #0e1425;
  --bg-card:       #141c2e;
  --bg-card-alt:   #1a2338;
  --color-primary: #ff5f1f;
  --color-primary-dark: #cc4d18;
  --color-accent:  #00d4ff;
  --text-primary:  #edf2f7;
  --text-secondary:#8a9bb8;
  --text-muted:    #50637d;
  --border:        #1d2840;
  --border-light:  #253250;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --max-width:     1200px;
  --section-v:     84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}
.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 14px;
  max-width: 600px;
}
.section-header p {
  max-width: 520px;
  font-size: 1rem;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p  { color: var(--text-secondary); line-height: 1.75; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--color-primary-dark); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.photo-ph {
  background-color: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.photo-ph svg {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg-primary);
}
.hero-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.brand-name span { color: var(--color-primary); }

.hero-cta-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-phone-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.hero-phone-link:hover { color: var(--color-primary); }

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: rgba(255, 95, 31, 0.1);
  border: 1px solid rgba(255, 95, 31, 0.28);
  border-radius: 40px;
  padding: 6px 15px;
  margin-bottom: 26px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title { margin-bottom: 18px; }
.hero-title span { color: var(--color-primary); }

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {}
.hero-main-photo {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-stat {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
}
.hero-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.features {
  padding: var(--section-v) 0;
  background-color: var(--bg-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 95, 31, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--color-primary); }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: 0.875rem; }

.rooms {
  padding: var(--section-v) 0;
  background-color: var(--bg-primary);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.room-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room-card.featured { border-color: var(--color-primary); }

.room-thumb {
  width: 100%;
  height: 190px;
  position: relative;
}
.room-badge {
  position: absolute;
  top: 11px;
  right: 11px;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.room-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-body h3 { font-size: 1.02rem; margin-bottom: 7px; }
.room-body > p { font-size: 0.86rem; margin-bottom: 14px; }

.room-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.room-meta-item svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }

.room-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.room-price sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  vertical-align: baseline;
}
.room-actions {
  display: flex;
  gap: 9px;
  margin-top: auto;
  flex-wrap: wrap;
}

.how {
  padding: var(--section-v) 0;
  background-color: var(--bg-secondary);
}
.steps-wrap {
  position: relative;
}
.steps-line {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background-color: var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.step { text-align: center; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 auto 20px;
}
.step.active .step-num {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.step h3 { font-size: 0.97rem; margin-bottom: 8px; }
.step p  { font-size: 0.84rem; }

.vr-spot {
  padding: var(--section-v) 0;
  background-color: var(--bg-primary);
}
.vr-spot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vr-photo {
  width: 100%;
  height: 430px;
  border-radius: var(--radius-xl);
}
.vr-content .section-tag { margin-bottom: 10px; }
.vr-content h2 { margin-bottom: 14px; }
.vr-content > p { margin-bottom: 28px; }
.vr-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.vr-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.vr-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.vr-list-item h4 { font-size: 0.92rem; margin-bottom: 2px; }
.vr-list-item p  { font-size: 0.83rem; }

.gallery {
  padding: var(--section-v) 0;
  background-color: var(--bg-secondary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-ph {
  width: 100%;
  height: 100%;
}

.about-prev {
  padding: var(--section-v) 0;
  background-color: var(--bg-primary);
}
.about-prev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-ph {
  width: 100%;
  height: 370px;
  border-radius: var(--radius-xl);
}
.about-content .section-tag { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 14px; }
.about-content > p { margin-bottom: 28px; }
.about-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.about-num {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}
.about-num-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.about-num-lbl { font-size: 0.78rem; color: var(--text-muted); }

.benefits {
  padding: var(--section-v) 0;
  background-color: var(--bg-secondary);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--color-accent); }
.benefit-card h3 { font-size: 0.97rem; margin-bottom: 8px; }
.benefit-card p  { font-size: 0.84rem; }

.reviews {
  padding: var(--section-v) 0;
  background-color: var(--bg-primary);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 11px; }
.review-ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}
.review-sub { font-size: 0.78rem; color: var(--text-muted); }

.contacts {
  padding: var(--section-v) 0;
  background-color: var(--bg-secondary);
}
.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contacts-info { display: flex; flex-direction: column; gap: 22px; }
.contacts-info > .section-tag,
.contacts-info > h2 { margin-bottom: 8px; }
.contacts-info > p { margin-bottom: 26px; }

.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-icon {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 95, 31, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--color-primary); }
.contact-lbl {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 1.02rem;
  color: var(--text-primary);
  font-weight: 500;
}
.contact-val a { color: var(--text-primary); }
.contact-val a:hover { color: var(--color-primary); }

.contacts-map-wrap {
  background-color: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
}
.contacts-map-wrap svg { width: 52px; height: 52px; opacity: 0.3; }
.contacts-map-wrap p {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 42px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo { width: 40px; height: auto; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-brand-name span { color: var(--color-primary); }
.footer-about { font-size: 0.875rem; max-width: 290px; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--color-primary); }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.footer-contact-line svg { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; }
.footer-contact-line a { color: var(--text-secondary); }
.footer-contact-line a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--color-primary); }

@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top      { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }

  .hero-body {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
  .hero-visual { display: none; }
  .hero-cta-header { display: none; }

  .features-grid   { grid-template-columns: 1fr; }
  .rooms-grid      { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .contacts-inner  { grid-template-columns: 1fr; }

  .vr-spot-inner     { grid-template-columns: 1fr; }
  .vr-photo          { height: 280px; order: -1; }

  .about-prev-inner  { grid-template-columns: 1fr; }
  .about-ph          { height: 260px; order: -1; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  .gallery-ph { height: 200px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; }
  .hero-stats    { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-nums    { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .room-actions  { flex-direction: column; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.active {
  display: flex;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 250px;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--color-primary-dark);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 240px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: #fff;
}

.cookie-btn-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.cookie-btn-settings:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.room-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
