:root {
  --bg: #061923;
  --paper: #102b38;
  --paper-soft: #173a49;
  --dark: #f8fbf6;
  --muted: #b9c9c7;
  --line: rgba(255, 255, 255, 0.14);

  --gold: #f4b942;
  --sand: #ffe1a6;

  --aqua: #2ec4b6;
  --light-aqua: rgba(46, 196, 182, 0.18);

  --coral: #ff7a59;
  --blue: #2f80ed;
  --green: #6fbf73;

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

  --shadow: 0 30px 85px rgba(0, 0, 0, 0.38);
  --shadow2: 0 18px 48px rgba(0, 0, 0, 0.28);

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 185, 66, 0.26), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(46, 196, 182, 0.22), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(255, 122, 89, 0.18), transparent 36%),
    radial-gradient(circle at 14% 82%, rgba(111, 191, 115, 0.15), transparent 34%),
    linear-gradient(180deg, #061923 0%, #0b2c3c 48%, #06131d 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% - 36px));
  margin: auto;
}

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

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

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

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

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background: var(--mix);
  box-shadow:
    0 0 36px rgba(244, 185, 66, 0.34),
    inset 0 0 18px rgba(255, 255, 255, 0.26);
}

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

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

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

.nav-btn {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--mix);
  color: #061923;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(46, 196, 182, 0.24);
}

.nav-btn:hover {
  color: #061923;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(244, 185, 66, 0.28);
}

/* HERO */
.hero {
  padding: 92px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card,
.footer-box {
  background:
    linear-gradient(180deg, rgba(16, 43, 56, 0.97), rgba(6, 24, 34, 0.97));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hero-main {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(46, 196, 182, 0.25);
  pointer-events: none;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -95px;
  top: -95px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.3), transparent 70%);
}

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

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

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

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

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

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

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

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

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

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

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

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

.soft-panel {
  background:
    radial-gradient(circle at top right, rgba(244, 185, 66, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(46, 196, 182, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(23, 58, 73, 0.98), rgba(6, 24, 34, 0.98));
}

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

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

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

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

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

.card {
  padding: 27px;
  border-top: 4px solid var(--gold);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-top-color: var(--aqua);
  box-shadow: 0 24px 62px rgba(46, 196, 182, 0.18);
}

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

.hotel-card {
  padding: 27px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hotel-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(111, 191, 115, 0.14);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(244, 185, 66, 0.2);
}

.hotel-card span {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--mix);
  color: #061923;
  font-weight: 900;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  padding: 36px 0 56px;
}

.footer-box {
  text-align: center;
  padding: 27px;
}

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

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

.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;
  }

  .hero {
    padding-top: 52px;
  }

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

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

  h1 {
    max-width: none;
  }
}