:root {
  --bg: #071316;
  --paper: #f8fbf7;
  --paper-soft: #edf7f1;
  --dark: #102024;
  --muted: #617176;
  --line: rgba(255, 255, 255, 0.14);

  --pine: #0f4d3f;
  --deep-pine: #07352d;
  --ice: #bfe9f2;
  --snow: #ffffff;
  --gold: #d8aa55;
  --mist: #dfeee9;

  --mix: linear-gradient(135deg, var(--pine), var(--ice), var(--gold));

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow2: 0 14px 35px rgba(7, 19, 22, 0.16);

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(191, 233, 242, 0.22), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(216, 170, 85, 0.18), transparent 30%),
    linear-gradient(180deg, #071316 0%, #0d2726 46%, #eef6f1 46%, #f8fbf7 100%);
  color: var(--dark);
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 22, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--snow);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.logo small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 600;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--ice), var(--pine));
  box-shadow: 0 0 34px rgba(191, 233, 242, 0.35);
  transform: rotate(8deg);
}

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

nav a {
  padding: 10px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ice);
}

.nav-btn {
  background: var(--gold);
  color: #102024;
  padding: 11px 20px;
  border-radius: 999px;
}

.nav-btn:hover {
  background: var(--ice);
  color: var(--deep-pine);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 92px 0 58px;
  color: var(--snow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card,
.footer-box {
  box-shadow: var(--shadow);
}

.hero-card,
.panel,
.card,
.hotel-card {
  border-radius: var(--radius);
  border: 1px solid rgba(16, 32, 36, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  color: var(--dark);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(237,247,241,0.96));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(15, 77, 63, 0.22);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(191, 233, 242, 0.45);
}

.hero-main {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(15, 77, 63, 0.9), rgba(7, 53, 45, 0.96)),
    var(--deep-pine);
  color: #fff;
}

.hero-main::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 233, 242, 0.42), transparent 65%);
}

.hero-main::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 120px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-main > *,
.hero-card > * {
  position: relative;
  z-index: 2;
}

/* TEXT */
.kicker {
  display: inline-block;
  padding: 7px 13px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(15, 77, 63, 0.1);
  color: var(--pine);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-main .kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ice);
}

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

.hero-main h1,
.hero-main h2,
.hero-main h3 {
  color: #fff;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

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

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

.hero-main p {
  color: rgba(255, 255, 255, 0.82);
}

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

.mini-list div {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border-left: 5px solid var(--pine);
  box-shadow: 0 10px 28px rgba(7, 19, 22, 0.08);
}

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

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

/* SECTIONS */
section {
  padding: 52px 0;
}

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

.panel {
  background: var(--paper);
}

.soft-panel {
  background:
    radial-gradient(circle at top right, rgba(191, 233, 242, 0.45), transparent 34%),
    linear-gradient(180deg, #ffffff, #edf7f1);
}

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

.section-title.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* INFO BOX */
.info-box {
  padding: 20px;
  margin-top: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 36, 0.1);
  box-shadow: var(--shadow2);
}

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

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

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

.card::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mix);
  display: block;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(15, 77, 63, 0.18);
}

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

.hotel-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  background:
    linear-gradient(180deg, #ffffff, #eef8f4);
}

.hotel-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(191, 233, 242, 0.48);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(7, 53, 45, 0.22);
}

.hotel-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--deep-pine);
  color: var(--ice);
  font-weight: 900;
}

/* FOOTER */
.footer {
  padding: 44px 0 62px;
  background: #eef6f1;
}

.footer-box {
  padding: 32px;
  text-align: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 53, 45, 0.96), rgba(15, 77, 63, 0.92));
}

.footer-box p {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-links a,
.footer-links span {
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
}

.footer-links a:hover {
  background: var(--ice);
  color: var(--deep-pine);
}

.small {
  font-size: 0.85rem;
}

/* 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) {
  .header-inner {
    min-height: 76px;
  }

  nav {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

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

  .hero-main {
    border-radius: 28px;
  }

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

  h1 {
    max-width: none;
  }
}