/* ====== GLOBAL ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}
body,
html {
  overflow-x: hidden;
}
.iv-body {
  background: radial-gradient(
    circle at top left,
    #141b3f 0,
    #050816 42%,
    #050816 100%
  );
  color: #e5e7eb;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.iv-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.iv-wrap {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.iv-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.96),
    rgba(5, 8, 22, 0.85)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(14px);
}

.iv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

/* Logo */
.iv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.iv-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.9);
}

.iv-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.iv-logo-main {
  text-transform: lowercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #e5e7eb;
}

.iv-logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

/* Nav */
.iv-nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.iv-nav a {
  color: #cbd5f5;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.iv-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #22c1c3, #ec4899);
  transition: width 0.2s ease;
}

.iv-nav a:hover::after,
.iv-nav a.active::after {
  width: 100%;
}

.iv-header-meta {
  font-size: 13px;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.iv-header-meta a {
  color: inherit;
  text-decoration: none;
}

/* Burger */
.iv-menu-btn {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.iv-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-bottom: 4px;
}

/* Mobile menu */
.iv-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 240px;
  height: 100vh;
  background: #050816;
  border-left: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 80px;
  padding-left: 24px;
  transition: right 0.3s ease;
  z-index: 100;
}

.iv-mobile a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
}

.iv-mobile.open {
  right: 0;
}

/* ====== MAIN ====== */
.iv-main {
  flex: 1;
  padding: 24px 0 26px;
}

/* ====== HERO ====== */
.iv-hero {
  padding: 14px 0 22px;
}

.iv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.iv-hero-main {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 18px 20px 20px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.8);
  position: relative;
  overflow: hidden;
}

.iv-hero-main::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 0 0,
      rgba(96, 165, 250, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(244, 114, 182, 0.25),
      transparent 55%
    );
  opacity: 0.22;
  pointer-events: none;
}

.iv-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a5b4fc;
  position: relative;
}

.iv-hero-main h1 {
  position: relative;
  font-size: 30px;
  line-height: 1.2;
  margin-top: 6px;
  color: #f9fafb;
}

.iv-hero-text {
  position: relative;
  margin-top: 12px;
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.88;
}

.iv-hero-meta {
  position: relative;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #cbd5f5;
}

.iv-hero-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.iv-hero-meta strong {
  display: block;
  margin-top: 2px;
}

.iv-hero-actions {
  position: relative;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* HERO SIDE */
.iv-hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iv-hero-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
  max-height: 210px;
  background: #020617;
}

.iv-hero-panel {
  background: #020617;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 14px 16px 16px;
  font-size: 13px;
  color: #e5e7eb;
}

.iv-hero-panel h2 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #f9fafb;
}

.iv-hero-panel ul {
  list-style: none;
}

.iv-hero-panel li {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.iv-hero-panel li span {
  color: #a5b4fc;
}

/* ====== BUTTONS ====== */
.iv-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.iv-btn-main {
  background: linear-gradient(135deg, #22c1c3, #6366f1);
  color: #0b1020;
  border: none;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.7);
}

.iv-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.85);
}

.iv-btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
}

.iv-btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
}

/* ====== STRIP PILLS ====== */
.iv-strip {
  padding: 6px 0 12px;
}

.iv-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  justify-content: space-between;
}

.iv-pill {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 12px;
}

.iv-pill i {
  margin-top: 2px;
  color: #a5b4fc;
}

.iv-pill strong {
  display: block;
  color: #f9fafb;
  margin-bottom: 2px;
}

.iv-pill span {
  color: #e5e7eb;
  opacity: 0.82;
}

/* ====== SECTIONS ====== */
.iv-section {
  padding: 10px 0 18px;
}

.iv-section-head {
  margin-bottom: 10px;
}

.iv-section-head h2 {
  font-size: 18px;
  color: #f9fafb;
}

.iv-section-head p {
  font-size: 13px;
  color: #cbd5f5;
  opacity: 0.9;
}

/* ====== ROOM STACK (ГОЛОВНА) ====== */
.iv-room-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.iv-room-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), #020617);
}

.iv-room-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
  padding-top: 2px;
}

.iv-room-main h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-room-main p {
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.9;
}

/* Link */
.iv-link {
  display: inline-flex;
  font-size: 13px;
  color: #a5b4fc;
  text-decoration: none;
}

.iv-link:hover {
  text-decoration: underline;
}

/* ====== SCHEDULE BLOCK ====== */
.iv-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
}

.iv-list {
  margin-left: 18px;
  margin-top: 6px;
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.88;
}

.iv-schedule-panel {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 14px 14px;
  font-size: 13px;
}

.iv-schedule-panel h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-schedule-panel ol {
  margin-left: 18px;
  margin-bottom: 6px;
}

.iv-schedule-note {
  font-size: 12px;
  color: #cbd5f5;
}

/* ====== SUITS BLOCK ====== */
.iv-suits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
}

.iv-note-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: radial-gradient(circle at top, #111827, #020617);
  padding: 12px 14px 14px;
  font-size: 13px;
  color: #e5e7eb;
}

.iv-note-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #f9fafb;
}

/* ====== CONTACT STRIP (ГОЛОВНА) ====== */
.iv-contact-strip-inner {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: radial-gradient(circle at top, #111827, #020617);
  padding: 12px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.iv-contact-strip-inner h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-contact-strip-inner p {
  font-size: 13px;
  color: #e5e7eb;
}

.iv-contact-strip-meta {
  text-align: right;
  font-size: 13px;
}

.iv-contact-strip-meta p {
  margin-bottom: 4px;
}

.iv-contact-strip-meta i {
  margin-right: 4px;
}

/* ====== PAGE HEAD ====== */
.iv-page-head {
  margin-bottom: 12px;
}

.iv-page-head h1 {
  font-size: 20px;
  color: #f9fafb;
  margin-bottom: 4px;
}

.iv-page-head p {
  font-size: 13px;
  color: #cbd5f5;
}

/* ====== ROOMS PAGE LAYOUT ====== */
.iv-rooms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 18px;
}

.iv-rooms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iv-room-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 14px 14px;
  font-size: 13px;
}

.iv-room-card h2 {
  font-size: 16px;
  margin-top: 6px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-room-card p {
  color: #e5e7eb;
}

.iv-room-img {
  border-radius: 14px;
  overflow: hidden;
  max-height: 180px;
  background: #020617;
  margin-bottom: 4px;
}

.iv-rooms-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ====== PRICING ====== */
.iv-prices .iv-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.iv-price-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 14px 14px;
  font-size: 13px;
}

.iv-price-card h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #f9fafb;
}

/* ====== ABOUT GRID ====== */
.iv-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iv-about-col h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-about-col p,
.iv-about-col li {
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.9;
  line-height: 1.8;
}

/* ====== CONTACT PAGE ====== */
.iv-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.iv-contact-panel {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 14px 14px;
  font-size: 13px;
}

.iv-contact-panel p {
  margin-bottom: 4px;
}

.iv-contact-note {
  margin-top: 4px;
  margin-bottom: 8px;
}

.iv-contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.iv-contact-panel label {
  font-size: 12px;
  color: #e5e7eb;
}

.iv-contact-panel input,
.iv-contact-panel textarea {
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #020617;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.iv-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.iv-contact-panel input:focus,
.iv-contact-panel textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
}

.iv-map-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(148, 163, 184, 0.75);
}

/* ====== POLICY PAGES ====== */
.iv-page-simple {
  flex-direction: column;
}

.iv-main-simple {
  padding: 20px 0 24px;
}

.iv-policy-card {
  max-width: 820px;
  margin: 18px auto 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: rgba(15, 23, 42, 0.96);
  padding: 16px 18px 18px;
  font-size: 13px;
  color: #e5e7eb;
  line-height: 1.8;
}

.iv-policy-card h1 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-policy-card h2 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.iv-policy-card ul {
  margin-left: 18px;
}

/* ====== FOOTER ====== */
.iv-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 10px 0 14px;
  font-size: 11px;
  color: #9ca3af;
  background: rgba(5, 8, 22, 0.98);
}

.iv-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iv-footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  margin-left: 10px;
  font-size: 11px;
}

/* ====== COOKIE BANNER ====== */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 120;
}

.cookie-box {
  background: #020617;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  padding: 10px 12px;
  font-size: 12px;
  color: #e5e7eb;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.9);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 7px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #22c1c3, #6366f1);
  color: #0b1020;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* ====== REVEAL ANIMATION ====== */
.iv-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.iv-reveal.iv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .iv-nav {
    display: none;
  }

  .iv-menu-btn {
    display: block;
  }

  .iv-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .iv-schedule-grid,
  .iv-suits-grid,
  .iv-rooms-layout,
  .iv-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .iv-contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .iv-contact-strip-meta {
    text-align: left;
  }

  .iv-prices .iv-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iv-about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .iv-footer-inner {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .iv-wrap {
    width: 94%;
  }

  .iv-hero-main h1 {
    font-size: 24px;
  }

  .iv-hero-text,
  .iv-section-head p {
    font-size: 12px;
  }

  .iv-strip-inner {
    flex-direction: column;
  }

  .iv-room-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .iv-prices .iv-price-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  .iv-pill {
    flex: 1 1 50px;
  }
}
