:root {
  --bg: #080f1f;
  --bg-soft: #101a33;
  --surface: #12203f;
  --text: #eaf0ff;
  --muted: #b2bfdc;
  --accent: #ff6a3d;
  --accent-soft: #ffc8b8;
  --ok: #1fc88f;
  --container: 1120px;
  --radius: 20px;
  --shadow: 0 20px 45px rgba(2, 8, 24, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 5%, #1b2e57 0, transparent 32%),
    radial-gradient(circle at 85% 15%, #2f1b39 0, transparent 26%),
    linear-gradient(180deg, #070d1a 0%, #0e1731 100%);
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  filter: blur(48px);
  opacity: 0.28;
  pointer-events: none;
}

.bg-shape-left {
  left: -120px;
  top: 20%;
  background: #ff6a3d;
}

.bg-shape-right {
  right: -120px;
  top: 55%;
  background: #4da1ff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(7, 12, 24, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.logo {
  font-family: "Russo One", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav .nav-cta {
  color: #121;
  background: var(--accent);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

.hero {
  padding: 4.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-text,
.hero-card {
  background: linear-gradient(
    140deg,
    rgba(18, 32, 63, 0.9) 0%,
    rgba(9, 19, 40, 0.96) 100%
  );
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-text {
  padding: 2rem 2rem 1.8rem;
  animation: rise 0.65s ease;
}

.kicker {
  margin: 0;
  color: var(--accent-soft);
  font-weight: 800;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin-top: 0.7rem;
}

.lead {
  margin-top: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #1a0b06;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.badges {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.badges li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-size: 0.86rem;
}

.hero-card {
  padding: 1.55rem;
  animation: rise 0.75s ease;
}

.hero-card p {
  color: var(--muted);
}

.stat-row {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.stat-row div {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 0.9rem;
}

.stat-row strong {
  display: block;
  font-size: 1.3rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.87rem;
}

.section {
  padding: 2.2rem 0;
}

.section h2 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(17, 31, 57, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.section-contrast .price-table {
  margin-top: 0.9rem;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.price-table div:nth-child(even) {
  background: rgba(255, 255, 255, 0.085);
}

.price-table span {
  color: var(--muted);
}

.note {
  color: var(--muted);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.94rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.74rem 0.8rem;
  background: rgba(9, 18, 37, 0.76);
  color: var(--text);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.error {
  color: #ff8f6d;
}

.contacts p {
  margin: 0.5rem 0;
}

.footer {
  padding: 1.2rem 0 2rem;
}

.footer-inner {
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 0.6rem;
  }

  .nav a {
    font-size: 0.88rem;
  }

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

  .price-table div {
    flex-direction: column;
    gap: 0.25rem;
  }
}
