/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --text: #e8e8e8;
  --text-muted: #888888;
  --accent: #9b2335;
  --accent-light: #c41e3a;
  --purple: #6b2fa0;
  --purple-light: #8b3fc0;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--accent-light);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn--small {
  font-size: 13px;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
}

.btn--small:hover {
  background: var(--accent-light);
}

.btn--full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.header__logo-img {
  width: 36px;
  height: 36px;
  filter: invert(1);
  object-fit: contain;
}

.header__logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.header__link:hover {
  color: #fff;
}

.header__link--cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
}

.header__link--cta:hover {
  background: var(--accent-light);
  color: #fff;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.15) 40%,
    rgba(10, 10, 10, 0.5) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.hero__logo {
  max-width: 700px;
  width: 80%;
  margin: 0 auto 24px;
  filter: invert(1);
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.2s;
}

.hero__subtitle {
  font-size: clamp(20px, 3.5vw, 32px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.5s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.8s;
}

.hero__tag {
  margin-top: 48px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 1.1s;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 1.4s;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.feature__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg), #060606, var(--bg));
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.room-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.room-card--featured {
  border-color: var(--accent);
}

.room-card--featured:hover {
  border-color: var(--accent-light);
}

.room-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
}

.room-card--wide .room-card__body {
  margin: 0;
}

.room-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-card__label {
  font-size: 12px;
  color: var(--purple-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.room-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.room-card__body {
  margin: 20px 0;
  flex: 1;
}

.room-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.room-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.room-card__price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.room-card__price-new {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 120px 0;
}

.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__line {
  width: 60px;
  height: 1px;
  background: var(--border-light);
  flex-shrink: 0;
  margin-top: 28px;
}

/* ============================================
   PROMO
   ============================================ */
.promo {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg), #060606);
}

.promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promo__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.promo__highlight {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 32px;
}

.promo__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promo__price-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.promo__price-item:hover {
  border-color: var(--border-light);
}

.promo__price-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.promo__price-value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 120px 0;
}

.reviews__wrapper {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.reviews__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}

.reviews__grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}

.review-card:hover {
  border-color: var(--border-light);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reviews__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.reviews__btn:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.review-card__stars {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.review-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-card__author {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--bg), #060606);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__item-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 16px;
  font-weight: 500;
}

a.contact__item-value:hover {
  color: var(--accent-light);
}

.contact__socials {
  display: flex;
  gap: 12px;
}

.contact__social {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__social:hover {
  border-color: var(--border-light);
  background: var(--bg-card);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.form-select {
  cursor: pointer;
  color: var(--text-muted);
}

.form-select:has(option:checked:not([disabled])) {
  color: #fff;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  opacity: 0.6;
}

.footer__brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__right {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__link:hover {
  color: #fff;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay .header__nav {
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-overlay .header__link {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.mobile-overlay .header__link--cta {
  font-size: 18px;
  margin-top: 16px;
}

.burger-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-active span:nth-child(2) {
  opacity: 0;
}

.burger-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .rooms__grid {
    grid-template-columns: 1fr 1fr;
  }

  .room-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .room-card--wide .room-card__footer {
    justify-content: center;
  }

  .how__steps {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .step__line {
    display: none;
  }

  .step {
    flex: 0 0 calc(50% - 16px);
  }

  .promo__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__logo {
    width: 90%;
  }

  .hero__actions .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .rooms__grid {
    grid-template-columns: 1fr;
  }

  .room-card--wide {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews__wrapper {
    overflow: visible;
  }

  .reviews__grid {
    scroll-padding-left: 24px;
    padding: 0 24px;
    margin: 0 -24px;
  }

  .step {
    flex: 0 0 100%;
  }

  .promo__prices {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__right {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .section-title {
    margin-bottom: 16px;
  }

  .about,
  .rooms,
  .how,
  .promo,
  .reviews,
  .contact {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .promo__prices {
    grid-template-columns: 1fr;
  }

  .room-card {
    padding: 24px;
  }

  .room-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-card__footer .btn--small {
    width: 100%;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: auto;
  max-width: 420px;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cookie-banner__icon {
  width: 32px;
  height: 32px;
  filter: invert(1);
  opacity: 0.5;
}

.cookie-banner__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.cookie-banner__actions .btn--small {
  flex: 1;
  font-size: 12px;
  padding: 10px 16px;
}

.cookie-banner__decline {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 10px 16px;
  transition: all var(--transition);
}

.cookie-banner__decline:hover {
  color: #fff;
  border-color: var(--border-light);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: translateX(0) translateY(120px);
    max-width: none;
  }
  .cookie-banner.visible {
    transform: translateX(0) translateY(0);
  }
  .cookie-banner.hidden {
    transform: translateX(0) translateY(120px);
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.legal__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.legal__content {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
}

.legal__content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal__content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

.legal__content p {
  margin-bottom: 12px;
}

.legal__content ul, .legal__content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.legal__content li {
  margin-bottom: 6px;
}
