/* ===== Local fonts ===== */
@font-face {
  font-family: 'MontserratLocal';
  src: url('/fonts/Montserrat-Regular.woff2') format('woff2'),
       url('/fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MontserratLocal';
  src: url('/fonts/Montserrat-Medium.woff2') format('woff2'),
       url('/fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MontserratLocal';
  src: url('/fonts/Montserrat-Bold.woff2') format('woff2'),
       url('/fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --bg: #000;
  --bg-card: #1d1d1d;
  --bg-card-2: #121212;
  --text: #ffffff;
  --text-dim: #898989;
  --accent: #00eeff;
  --accent-strong: #00d5ff;
  --accent-gradient: linear-gradient(180deg, #36d4ff 0%, #0088ff 100%);
  --accent-gradient-btn: linear-gradient(180deg, #4cd4ff 0%, #0070ff 100%);
  --container: 1110px;
  --radius: 0;
  --shadow-glow: 0 10px 40px rgba(0, 136, 255, 0.4);

  --font-main: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
  --font-alt: 'Roboto', 'Montserrat', sans-serif;
  --font-inter: 'Inter', 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  height: 83px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.logo-name {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 2px;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav.nav-left { margin-right: auto; margin-left: 60px; }
.nav.nav-right { margin-left: auto; margin-right: 60px; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  color: var(--text-dim);
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: #fff; }
.nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  z-index: 3;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent-gradient-btn);
  border-radius: 6px;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 50px rgba(0,136,255,0.55); }
.btn svg { width: 14px; height: 14px; fill: currentColor; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 238, 255, 0.45);
  box-shadow: none;
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(0, 238, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 238, 255, 0.25);
}
.btn-ghost svg { width: 16px; height: 16px; fill: var(--accent); }

/* ===== Hero (Homepage) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center right;
  background-color: #000;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.1) 100%);
}
.hero .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 1232px;
}
.hero-title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 620px;
}
.hero-title .accent { color: var(--accent); }
.hero-desc {
  margin-top: 32px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-cta .btn {
  min-width: 210px;
  justify-content: center;
}

/* ===== Section headers ===== */
.section {
  padding: 100px 0;
}
.section-title {
  font-family: var(--font-inter);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.section-title .accent { color: var(--accent); }

/* Outline ghost heading (big centered) */
.ghost-title {
  font-family: 'MontserratLocal', 'Montserrat', sans-serif;
  font-size: clamp(56px, 10vw, 95px);
  font-weight: 700;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 24px;
  line-height: 1;
}
.lead {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
  font-size: 17px;
  color: #fff;
  opacity: 0.95;
  line-height: 1.5;
}

/* ===== Process cards (homepage "Как работает") ===== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  background: var(--bg-card);
  padding: 38px 32px 28px;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-card.accent {
  background: var(--accent-gradient);
  color: #0a0a0a;
}
.process-card.accent .pc-title,
.process-card.accent .pc-text { color: #fff; }
.process-card.accent .pc-icon { color: #0a1b33; }
.pc-icon {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 22px;
  min-height: 60px;
}
.pc-icon.reserved {
  font-size: 40px;
  letter-spacing: 0.01em;
  color: #132a4f;
}
.pc-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.pc-text {
  margin-top: 4px;
  font-size: 14px;
  color: #fff;
  line-height: 1.45;
  white-space: pre-line;
}

/* ===== Rooms grid (homepage) ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 28px;
}
.rooms-row2 {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: calc((100% - 28px * 2) * 2 / 3 + 28px);
  margin-left: auto;
  margin-right: auto;
}
.room-card {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 136, 255, 0.18);
  border-color: rgba(0, 238, 255, 0.3);
}
.room-img {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #111;
  border-radius: 12px;
  margin: 14px 14px 0;
}
.room-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }

.room-body {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 26px;
  flex: 1;
}
.room-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.room-name {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}
.room-name.gold { color: #E8B86A; }
.room-card.is-gold:hover { border-color: rgba(232, 184, 106, 0.4); box-shadow: 0 20px 50px rgba(232, 184, 106, 0.15); }
.room-price {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.1;
}
.room-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 18px;
}
.room-extras {
  margin: 0 0 22px;
  padding: 16px 14px 14px;
  border: 1px dashed rgba(0, 238, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 238, 255, 0.04);
}
.room-card.is-gold .room-extras {
  border-color: rgba(232, 184, 106, 0.28);
  background: rgba(232, 184, 106, 0.05);
}
.room-extras-label {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.room-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}
.room-features li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}
.room-features li::before {
  content: "+";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  line-height: inherit;
}
.room-card.is-gold .room-features li::before { color: #E8B86A; }

.room-book {
  align-self: center;
  margin-top: auto;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}
.room-book:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(0, 238, 255, 0.06);
}
.room-card.is-gold .room-book:hover {
  color: #E8B86A;
  border-color: #E8B86A;
  background: rgba(232, 184, 106, 0.06);
}

/* ===== Footer ===== */
.site-footer {
  padding: 80px 0 28px;
  text-align: center;
  background: #000;
}
.footer-logo { margin-bottom: 8px; }
.footer-logo .logo { position: static; transform: none; display: inline-block; }
.footer-logo .logo-name { display: inline-block; }
.footer-line {
  max-width: 420px;
  height: 14px;
  background: transparent;
  border-top: 2px solid var(--accent);
  border-radius: 50% / 100% 100% 0 0;
  margin: 10px auto 56px;
  opacity: 0.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.footer-grid h3 {
  font-family: var(--font-alt);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.footer-grid p {
  color: var(--text-dim);
  font-size: 15px;
}
.footer-links {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-copy {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
}

/* ===== Services page ===== */
.page-hero {
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  padding: 36px 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.accent {
  background: var(--accent-gradient);
  color: #0a0a0a;
}
.service-card.accent .sc-title,
.service-card.accent .sc-text { color: #fff; }
.sc-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  color: #fff;
}
.sc-icon svg { width: 100%; height: 100%; }
.service-card.accent .sc-icon { color: #111; }
.sc-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.sc-text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  white-space: pre-line;
}

/* ===== Service banners (3 big photo cards with overlay text) ===== */
.service-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.banner-card {
  position: relative;
  height: 463px;
  overflow: hidden;
}
.banner-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.banner-card:hover img { transform: scale(1.04); }
.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
}
.banner-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.banner-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.banner-desc {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: pre-line;
  line-height: 1.4;
}

/* ===== Cocktails grid (services) ===== */
.cocktails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 48px;
}
.cocktail-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.cocktail-img {
  position: relative;
  height: 266px;
  overflow: hidden;
  background: #050505;
}
.cocktail-img img { width: 100%; height: 100%; object-fit: cover; }
.cocktail-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
}
.cocktail-body { padding: 14px 4px; }
.cocktail-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.cocktail-price {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ===== About page ===== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.about-row.reverse { direction: rtl; }
.about-row.reverse > * { direction: ltr; }
.about-photo {
  width: 100%;
  aspect-ratio: 371 / 339;
  overflow: hidden;
  background: #111;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-title-accent {
  font-size: 25px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}
.about-block h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 10px;
}
.about-block p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  opacity: 0.95;
  white-space: pre-line;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.testimonial {
  background: var(--bg-card);
  padding: 32px 28px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.testimonial p {
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  margin: 0;
}
.stars {
  display: flex;
  gap: 6px;
  color: var(--accent);
  font-size: 18px;
}
.stars span { font-size: 16px; }
.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: auto;
}

/* ===== Contact page ===== */
.contact {
  padding: 70px 0 110px;
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../assets/images/contact-stone-bg.jpg');
  background-size: cover;
  background-position: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
}
.contact-left .contact-desc {
  font-size: 16px;
  color: #fff;
  margin-bottom: 56px;
  line-height: 1.5;
  max-width: 440px;
}
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}
.info-block { text-align: center; }
.info-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: #fff;
}
.info-icon svg { width: 100%; height: 100%; fill: currentColor; }
.info-caption {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.info-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.45;
  font-weight: 400;
}
.contact-photos {
  position: relative;
  min-height: 620px;
}
.contact-photos img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.cp-top { top: 0; right: 0; width: 94%; height: 180px; z-index: 1; }
.cp-mid { top: 220px; right: 0; width: 100%; height: 340px; z-index: 2; }
.cp-small { top: 320px; left: 0; width: 45%; height: 240px; z-index: 3; }
.contact-badge {
  position: absolute;
  right: 4%;
  top: 480px;
  z-index: 4;
  width: 160px; height: 160px;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,136,255,0.45);
}
.contact-badge .big { font-size: 80px; line-height: 1; }
.contact-badge .label { font-size: 20px; letter-spacing: 0.06em; }

/* Mobile-only rooms block (shown instead of .contact-photos on small screens) */
.contact-rooms-mobile { display: none; }
.crm-divider {
  height: 0;
  border-top: 2px dashed rgba(0, 238, 255, 0.45);
  margin: 0 0 26px;
}
.crm-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-main);
  font-weight: 700;
}
.crm-big {
  font-size: 96px;
  line-height: 0.9;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(0, 136, 255, 0.35);
}
.crm-label {
  font-size: 26px;
  letter-spacing: 0.14em;
  color: #fff;
}
.crm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.crm-card {
  position: relative;
  border-radius: 12px;
  padding: 2px;
  background: var(--accent-gradient);
  box-shadow: 0 10px 28px rgba(0, 136, 255, 0.28);
  overflow: hidden;
}
.crm-card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.crm-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.crm-card:last-child:nth-child(odd) img { height: 180px; }

/* ===== Booking modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-overlay.open { display: flex; }
body.modal-lock { overflow: hidden; }

.modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px 40px 32px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: modalIn 0.25s ease;
  overflow-x: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  font-size: 26px;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--accent); border-color: var(--accent); background: rgba(0, 238, 255, 0.06); }

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-right: 40px;
  margin-bottom: 18px;
}
.modal-title {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.modal-price-tag {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.modal-price-tag .ru { color: rgba(0, 238, 255, 0.7); font-weight: 500; }

.modal-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.modal-section { margin-bottom: 20px; }
.booking-form .modal-section { margin-top: 32px; }
.modal-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.modal-extras {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-extras li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #fff;
}
.modal-extras li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.modal-time { font-size: 14px; color: #fff; }

.modal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.form-grid > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.field input {
  font-family: var(--font-main);
  font-size: 14px;
  color: #fff;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.field input::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus { border-color: var(--accent); background: #181818; }
.field input:invalid:not(:placeholder-shown) { border-color: rgba(255, 80, 80, 0.5); }
.field input[type="date"], .field input[type="time"] {
  color-scheme: dark;
  min-height: 44px;
}
.field select, .field-select {
  font-family: var(--font-main);
  font-size: 14px;
  color: #fff;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  outline: none;
  width: 100%;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  transition: border-color 0.2s, background-color 0.2s;
}
.field select:focus, .field-select:focus { border-color: var(--accent); background-color: #181818; }

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.extra-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 0;
}
.extra-row:last-child { border-bottom: none; }
.extra-row input { position: absolute; opacity: 0; pointer-events: none; }
.extra-check {
  width: 18px; height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.extra-check::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
}
.extra-row input:checked ~ .extra-check {
  background: var(--accent);
  border-color: var(--accent);
}
.extra-row input:checked ~ .extra-check::after { opacity: 1; }
.extra-name { font-size: 14px; color: #fff; min-width: 0; word-break: break-word; }
.extra-price { font-size: 13px; color: var(--text-dim); font-weight: 500; }
.extra-row:hover .extra-check { border-color: var(--accent); }
.extra-row input:checked ~ .extra-name { color: #fff; }

.modal-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 8px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.modal-total .total-val {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}

.modal-submit {
  width: 100%;
  padding: 16px;
  margin-top: 14px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-gradient-btn);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
}
.modal-submit:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 14px 50px rgba(0,136,255,0.55); }
.modal-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  background: #2a2a2a;
}

.modal-notes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-notes p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== Mobile responsive (≤ 900px) ===== */
@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav { display: none; }
  .site-header {
    justify-content: space-between;
    position: sticky;
    height: auto;
    min-height: 83px;
  }
  .site-header .container {
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0;
  }
  .logo {
    left: 24px;
    transform: translateY(-50%);
    top: 41.5px;
    text-align: left;
  }
  .logo-name { font-size: 20px; }
  .logo-sub { font-size: 10px; }
  .burger { margin-left: auto; height: 83px; align-self: flex-start; }

  .nav.open {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    background: #000;
    margin: 0 -24px;
    padding: 0 24px;
    gap: 18px;
    align-items: flex-start;
    z-index: 40;
  }
  .nav.nav-left.open { order: 10; padding-top: 22px; padding-bottom: 9px; }
  .nav.nav-right.open { order: 11; padding-top: 9px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.open a { font-size: 14px; padding-bottom: 6px; }

  .hero { min-height: 580px; background-position: 65% center; }
  .hero .container { padding-top: 70px; padding-bottom: 60px; }
  .hero-title { font-size: 52px; }
  .hero-desc { max-width: 100%; }

  .section { padding: 60px 0; }
  .process { grid-template-columns: 1fr; gap: 16px; }
  .process-card { min-height: auto; }

  .rooms-grid,
  .rooms-row2 {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: none;
  }
  .room-img { height: 220px; }

  .service-cards { grid-template-columns: 1fr; gap: 16px; }
  .service-banners { grid-template-columns: 1fr; gap: 20px; }
  .banner-card { height: 360px; }
  .cocktails { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .cocktail-img { height: 210px; }

  .about-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .about-row.reverse { direction: ltr; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { min-height: auto; padding: 28px 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-photos { display: none; }
  .contact-rooms-mobile { display: block; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid h3 { font-size: 24px; }
  .footer-links { flex-direction: column; gap: 14px; font-size: 13px; }
  .site-footer { padding: 50px 0 24px; }
  .ghost-title { font-size: 60px; }

  .modal-overlay { padding: 0; }
  .modal {
    max-width: 100%;
    min-height: 100vh;
    padding: 56px 22px 28px;
    border: none;
  }
  .modal-head { flex-direction: column; gap: 8px; padding-right: 50px; }
  .modal-title { font-size: 22px; }
  .modal-price-tag { font-size: 20px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .field-full { grid-column: auto; }
  .field input, .field select, .field-select { font-size: 16px; }
  .field input[type="date"], .field input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 0;
  }
  .modal-submit { padding: 15px; font-size: 12px; }
}

@media (max-width: 520px) {
  .hero-title { font-size: 44px; }
  .ghost-title { font-size: 46px; }
  .cocktails { grid-template-columns: 1fr; }
  .cocktail-img { height: 260px; }
  .info-row { grid-template-columns: 1fr; }
  .contact-left > .info-block { margin-left: auto !important; margin-right: auto !important; }
}
