@import url("https://fonts.googleapis.com/css2?family=Prata&family=Sora:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --bg: #020202;
  --text: #f5f5f5;
  --muted: #ababab;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --panel: rgba(10, 10, 10, 0.9);
  --accent: #f4c430;
  --accent-soft: rgba(244, 196, 48, 0.14);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

body.review-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: #000000;
  background-image: url("/assets/voodoo-monogram.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: 520px auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

body.home-body::before,
body.home-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.home-body::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0.88) 100%),
    url("/assets/lounge-hero.jpg") center center / cover no-repeat;
}

body.home-body::after {
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 196, 48, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.home-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 32px;
  display: flex;
  align-items: stretch;
}

.home-hero {
  width: 100%;
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  align-items: end;
  gap: 24px;
}

.home-intro {
  max-width: 760px;
  padding: 40px 0;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-brand {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.home-title {
  margin: 10px 0 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(56px, 10vw, 108px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.home-description {
  max-width: 640px;
  margin-top: 22px;
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.7;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-primary {
  min-width: 208px;
  justify-content: center;
}

.home-meta-grid {
  display: grid;
  gap: 14px;
  align-self: end;
}

.home-meta-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(7, 7, 7, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  padding: 22px 22px 24px;
}

.home-meta-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-meta-value,
.home-meta-link {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.home-meta-link:hover {
  color: var(--accent);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.booking-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(10, 10, 10, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  padding: 34px 34px 30px;
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-kicker {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-modal-title {
  margin-top: 16px;
  font-family: "Prata", Georgia, serif;
  max-width: 10ch;
  font-size: 52px;
  line-height: 0.96;
}

.booking-modal-text {
  max-width: 34ch;
  margin-top: 18px;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
}

.booking-modal-phone {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-modal-phone-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-modal-phone-value {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.booking-modal-call {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 88px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

h1,
h2,
p {
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}

.title {
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.text {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
  color: #d4d4d4;
}

.actions,
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.star {
  appearance: none;
  width: 73px;
  height: 73px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5d5d5d;
  padding: 0;
  cursor: pointer;
  transition: transform 0.12s ease, color 0.12s ease;
}

.star svg {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 auto;
}

.star:hover {
  transform: scale(1.06);
}

.star.active {
  color: var(--accent);
}

.rating-wrap {
  margin-top: 28px;
  text-align: center;
}

.rating-helper {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.rating-value {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.screen-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.button,
.link-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.button:hover,
.link-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #171717;
}

.link-button.primary {
  background: var(--accent-soft);
  border-color: rgba(244, 196, 48, 0.32);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.review-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.review-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.review-link.is-primary {
  border-color: rgba(255, 255, 255, 0.22);
}

.review-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.review-link-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.review-link-yandex .review-link-icon {
  background: rgba(252, 63, 29, 0.14);
  color: #fc3f1d;
}

.review-link-google .review-link-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.review-link-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-link-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.review-link-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}

.review-link-arrow {
  font-size: 20px;
  color: #b0b0b0;
}

form {
  margin-top: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  margin-bottom: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #8d8d8d;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(244, 196, 48, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.1);
}

textarea {
  min-height: 160px;
  resize: none;
}

.hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.status.error {
  color: #ff8787;
}

.status.success {
  color: #8ed19a;
}

@media (max-width: 640px) {
  body.home-body::after {
    background:
      radial-gradient(circle at top left, rgba(244, 196, 48, 0.12), transparent 30%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.16) 24%, rgba(0, 0, 0, 0.78) 72%, rgba(0, 0, 0, 0.94) 100%);
  }

  .home-page {
    min-height: 100svh;
    padding: 10px;
  }

  .home-hero {
    min-height: calc(100svh - 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .home-intro {
    max-width: none;
    padding: 18px 16px 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.18) 0%, rgba(7, 7, 7, 0.46) 22%, rgba(7, 7, 7, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
  }

  .home-kicker {
    min-height: 36px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.2;
    white-space: normal;
  }

  .home-brand {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .home-title {
    max-width: none;
    margin-top: 10px;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 0.98;
    letter-spacing: 0.01em;
  }

  .home-description {
    max-width: 30ch;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .home-actions {
    margin-top: 16px;
  }

  .home-primary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 18px;
    font-size: 16px;
  }

  .home-meta-grid {
    gap: 8px;
    margin-top: auto;
  }

  .home-meta-card {
    border-radius: 18px;
    padding: 14px 14px 15px;
    background: rgba(7, 7, 7, 0.78);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  }

  .home-meta-label {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .home-meta-value,
  .home-meta-link {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.38;
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-modal-card {
    border-radius: 24px;
    padding: 24px 18px 18px;
  }

  .booking-modal-title {
    max-width: none;
    font-size: 34px;
  }

  .booking-modal-text {
    max-width: none;
    font-size: 15px;
  }

  .booking-modal-phone {
    padding: 16px;
    border-radius: 18px;
  }

  .booking-modal-phone-value {
    font-size: 28px;
  }

  .page {
    min-height: 100svh;
    padding: 20px 12px 40px;
    display: flex;
    align-items: center;
  }

  .card {
    width: 100%;
    padding: 22px 18px;
    text-align: center;
  }

  .title {
    font-size: 28px;
    line-height: 1.12;
  }

  .text,
  .screen-note,
  .status {
    margin-left: auto;
    margin-right: auto;
  }

  .star {
    width: 52px;
    height: 52px;
  }

  .star svg {
    width: 40px;
    height: 40px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  form,
  .actions,
  .link-grid {
    text-align: left;
  }

  .actions {
    align-items: center;
  }

  .actions .button,
  .actions .link-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-page {
    min-height: 100svh;
    padding: 8px;
  }

  .home-hero {
    min-height: calc(100svh - 16px);
    gap: 8px;
  }

  .home-intro {
    padding: 16px 14px 14px;
    border-radius: 20px;
  }

  .home-title {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .home-description {
    max-width: 29ch;
    font-size: 12px;
    line-height: 1.5;
  }

  .home-meta-grid {
    gap: 7px;
  }

  .home-meta-card {
    border-radius: 16px;
    padding: 12px 12px 13px;
  }

  .home-meta-value,
  .home-meta-link {
    font-size: 14px;
  }

  .home-primary {
    min-height: 50px;
    border-radius: 16px;
    font-size: 15px;
  }

  .booking-modal-title {
    font-size: 30px;
  }

  .booking-modal-phone-value {
    font-size: 24px;
  }

  .stars {
    gap: 4px;
  }

  .star {
    width: 46px;
    height: 46px;
  }

  .star svg {
    width: 35px;
    height: 35px;
  }

  .button,
  .link-button,
  input,
  textarea {
    border-radius: 14px;
  }
}

@media (min-width: 641px) and (max-width: 1080px) {
  .home-page {
    padding: 24px;
  }

  .home-hero {
    min-height: calc(100svh - 48px);
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 18px;
  }

  .home-intro {
    max-width: 720px;
  }

  .home-title {
    font-size: clamp(64px, 11vw, 92px);
  }

  .home-description {
    max-width: 34ch;
  }

  .home-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
