:root {
  --bg: #0b1020;
  --paper: #121a2f;
  --paper-soft: #18243d;
  --dark: #f9fbff;
  --muted: #b7c0d4;
  --line: rgba(255, 255, 255, 0.13);

  --gold: #e8b95c;
  --sand: #ffe6af;

  --aqua: #42d9d2;
  --light-aqua: rgba(66, 217, 210, 0.18);

  --coral: #ff7a63;
  --violet: #8b7cf6;

  --mix: linear-gradient(135deg, var(--violet), var(--aqua), var(--gold));

  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow2: 0 18px 50px rgba(0, 0, 0, 0.28);

  --radius: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(139, 124, 246, 0.24), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(66, 217, 210, 0.18), transparent 32%),
    radial-gradient(circle at 50% 95%, rgba(232, 185, 92, 0.16), transparent 38%),
    linear-gradient(180deg, #0b1020 0%, #101a31 48%, #08101e 100%);
  color: var(--dark);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: 0.25s ease;
}

a:hover {
  color: var(--aqua);
}

.container {
  width: min(var(--max), calc(100% - 38px));
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 16, 32, 0.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.logo small {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
}

.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 50% 22px 50% 22px;
  background: var(--mix);
  box-shadow:
    0 0 35px rgba(66, 217, 210, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  font-weight: 700;
  color: var(--muted);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--mix);
  transition: 0.25s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--mix);
  color: #08101e;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(66, 217, 210, 0.24);
}

.nav-btn:hover {
  color: #08101e;
  transform: translateY(-2px);
}

.nav-btn::after {
  display: none;
}

/* HERO */
.hero {
  padding: 95px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card,
.footer-box {
  background:
    linear-gradient(145deg, rgba(24, 36, 61, 0.96), rgba(12, 22, 40, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.hero-main,
.panel {
  padding: 36px;
}

.hero-card {
  background:
    radial-gradient(circle at top left, rgba(232, 185, 92, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(18, 26, 47, 0.98), rgba(10, 18, 34, 0.98));
}

.hero-main {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background:
    radial-gradient(circle at 85% 10%, rgba(66, 217, 210, 0.20), transparent 34%),
    linear-gradient(145deg, rgba(20, 32, 56, 0.98), rgba(9, 17, 32, 0.98));
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(232, 185, 92, 0.22);
  pointer-events: none;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 124, 246, 0.32), transparent 68%);
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

/* TEXT */
.kicker {
  display: inline-block;
  color: var(--aqua);
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

h1,
h2,
h3 {
  font-family: Georgia, serif;
  margin: 0 0 14px;
  color: var(--dark);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: -0.055em;
  text-transform: lowercase;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

p {
  color: var(--muted);
}

/* LIST BOXES */
.mini-list {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.mini-list div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 4px solid var(--aqua);
}

.mini-list strong {
  display: block;
  color: var(--dark);
}

.mini-list span {
  color: var(--muted);
}

/* SECTION */
section {
  padding: 48px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.soft-panel {
  background:
    radial-gradient(circle at top right, rgba(232, 185, 92, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(24, 36, 61, 0.98), rgba(10, 18, 34, 0.98));
}

.section-title {
  margin-bottom: 28px;
}

.section-title.center {
  text-align: center;
}

/* INFO BOX */
.info-box {
  padding: 19px;
  margin-top: 17px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

.info-box h3 {
  color: var(--sand);
}

/* INFO CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 28px;
  border-top: 0;
  border-left: 4px solid var(--violet);
  transition: 0.3s ease;
  background:
    linear-gradient(145deg, rgba(18, 26, 47, 0.98), rgba(12, 22, 40, 0.98));
}

.card:hover {
  transform: translateY(-7px);
  border-left-color: var(--gold);
  box-shadow: 0 26px 65px rgba(139, 124, 246, 0.22);
}

/* HOTEL GRID */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hotel-card {
  padding: 28px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(20, 32, 56, 0.98), rgba(10, 18, 34, 0.98));
}

.hotel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 217, 210, 0.10), transparent 45%);
  opacity: 0;
  transition: 0.3s ease;
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(232, 185, 92, 0.13);
}

.hotel-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 25px 65px rgba(66, 217, 210, 0.22);
}

.hotel-card:hover::before {
  opacity: 1;
}

.hotel-card span,
.hotel-card h3,
.hotel-card p {
  position: relative;
  z-index: 1;
}

.hotel-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mix);
  color: #08101e;
  font-weight: 900;
  margin-bottom: 17px;
  box-shadow: 0 10px 25px rgba(66, 217, 210, 0.24);
}

/* FOOTER */
.footer {
  padding: 38px 0 58px;
}

.footer-box {
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(circle at center top, rgba(66, 217, 210, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(18, 26, 47, 0.98), rgba(9, 17, 32, 0.98));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 13px 0;
}

.footer-links a,
.footer-links span {
  color: var(--sand);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--aqua);
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-grid,
  .two-column,
  .cards {
    grid-template-columns: 1fr;
  }

  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  nav {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-card,
  .hero-main,
  .panel {
    padding: 24px;
  }

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

  h1 {
    max-width: none;
  }

  .container {
    width: min(var(--max), calc(100% - 26px));
  }
}