:root {
  --bg: #080808;
  --bg-2: #101010;
  --card: #151515;
  --card-2: #1d1d1d;
  --text: #f7f2e9;
  --muted: #b9b0a1;
  --line: rgba(255, 255, 255, .1);
  --gold: #d6b56d;
  --gold-soft: rgba(214, 181, 109, .14);
  --white-soft: rgba(255, 255, 255, .06);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 10%, rgba(214, 181, 109, .11), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(255, 255, 255, .07), transparent 26%),
    linear-gradient(180deg, #0c0c0c 0%, #080808 45%, #050505 100%);
}

.header {
  position: static;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, .72);
  border-bottom: 1px solid var(--line);
}
.header--solid { background: rgba(8, 8, 8, .92); }
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(214, 181, 109, .92), rgba(214, 181, 109, .45));
  color: #090909;
  font-weight: 900;
  letter-spacing: -.05em;
}
.logo__text {
  font-size: 13px;
  letter-spacing: .16em;
  line-height: 1.1;
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover { color: var(--text); }
.header__cta, .manager-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  font-size: 14px;
  white-space: nowrap;
}
.header__cta { border-color: rgba(214,181,109,.35); }
.manager-chip { color: var(--gold); }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  padding: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero { padding: 74px 0 64px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.hero h1, .section-head h2, .special-card h2, .form-panel h1 {
  margin: 18px 0 18px;
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 { font-size: clamp(48px, 7vw, 90px); }
.hero p, .section-head p, .special-card p, .form-panel p {
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
}
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #0b0b0b;
  background: linear-gradient(135deg, #e1c783, var(--gold));
  box-shadow: 0 12px 36px rgba(214,181,109,.16);
}
.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.045);
  border-color: var(--line);
}
.btn--wide { width: 100%; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}
.hero__stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.hero__stats strong { display: block; font-size: 28px; color: var(--text); }
.hero__stats span { display: block; color: var(--muted); font-size: 13px; }
.hero__visual {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section { padding: 70px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.section-head h2, .special-card h2 { font-size: clamp(36px, 4.8vw, 62px); }
.rooms-grid, .reviews-grid, .tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.room-card, .review-card, .tariff-card, .form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.room-card { overflow: hidden; }
.room-card img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; }
.room-card__body { padding: 22px; }
.room-card h3, .tariff-card h3 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.03em; }
.room-card p, .review-card p, .tariff-card li, .fineprint { color: var(--muted); }

.special-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(214,181,109,.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 28%, rgba(214,181,109,.14), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; color: var(--muted); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.special-card__visual {
  min-height: 360px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f0f0f;
}
.special-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-card, .tariff-card { padding: 26px; }
.stars { color: var(--gold); letter-spacing: .15em; margin-bottom: 14px; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-card__author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(214,181,109,.24);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.review-card__author strong, .review-card__author small { display: block; }
.review-card__author small { color: var(--muted); }

.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold); font-size: 14px; letter-spacing: .14em; }
details p { margin: 0; padding: 0 24px 24px 64px; color: var(--muted); }

.tariff-card { position: relative; display: flex; flex-direction: column; }
.tariff-card--featured {
  border-color: rgba(214,181,109,.38);
  background: linear-gradient(180deg, rgba(214,181,109,.09), rgba(255,255,255,.03));
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
}
.price { font-size: 38px; font-weight: 900; letter-spacing: -.04em; margin: 8px 0 18px; }
.price span { font-size: 14px; color: var(--muted); font-weight: 700; }
.tariff-card ul { padding-left: 20px; margin: 0 0 24px; flex: 1; }
.tariff-card li { margin-bottom: 10px; }

.footer {
  padding: 46px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.28);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}
.footer p { color: var(--muted); max-width: 420px; }
.footer nav { display: grid; gap: 10px; color: var(--muted); }
.footer nav a:hover { color: var(--text); }
.footer__bottom { margin-top: 30px; color: rgba(255,255,255,.38); font-size: 13px; }

.page-simple .header { position: static; }
.form-page { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 54px 0; }
.form-panel { padding: clamp(24px, 4vw, 44px); max-width: 860px; width: 100%; margin: 0 auto; }
.form-panel__intro { margin-bottom: 24px; }
.manager-note, .alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(214,181,109,.22);
  color: var(--text);
}
.alert--error { background: rgba(255, 70, 70, .1); border-color: rgba(255, 70, 70, .24); }
.booking-form { display: grid; gap: 16px; }
.booking-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.24);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: rgba(214,181,109,.42); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pay-panel { max-width: 760px; }
.summary-card {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
}
.summary-card div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.summary-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.summary-card span { color: var(--muted); }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.payment-methods article { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.payment-methods h3 { margin: 0 0 8px; }
.payment-methods p { font-size: 22px; margin: 0 0 8px; color: var(--text); font-weight: 900; }
.payment-methods small { color: var(--muted); }
.center-panel { text-align: center; }
.center-panel .eyebrow { justify-content: center; }
.center-panel p { margin-left: auto; margin-right: auto; }

@media (max-width: 980px) {
  .header__cta, .manager-chip { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(15,15,15,.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .hero__grid, .special-card { grid-template-columns: 1fr; }
  .hero__visual { min-height: 440px; }
  .rooms-grid, .reviews-grid, .tariffs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header__inner { min-height: 70px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 46px; }
  .hero__stats, .rooms-grid, .reviews-grid, .tariffs-grid, .form-row, .payment-methods, .footer__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 350px; border-radius: 28px; }
  .section { padding: 50px 0; }
  details p { padding-left: 24px; }
  summary { font-size: 17px; }
}


.booking-form select {
    background-color: #101010;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
}
.booking-form select:focus {
    border-color: var(--gold);
}
.booking-form select option {
    background-color: #101010;
    color: var(--text);
}
