:root {
  --bg: #f4f7ff;
  --paper: #ffffff;
  --dark: #1f2a44;
  --muted: #6b7280;
  --line: rgba(30, 41, 59, 0.12);

  --red: #e63946;
  --light-red: #ffd6d9;

  --blue: #3a86ff;
  --light-blue: #e0ecff;

  --mix: linear-gradient(135deg, var(--red), var(--blue));

  --shadow: 0 25px 70px rgba(30, 41, 59, 0.12);
  --shadow2: 0 15px 40px rgba(30, 41, 59, 0.08);

  --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 top left, var(--light-red), transparent 30%),
    radial-gradient(circle at top right, var(--light-blue), transparent 30%),
    linear-gradient(180deg, #ffffff, var(--bg));
  color: var(--dark);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--dark);
}

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

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

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

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

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--mix);
  box-shadow: var(--shadow2);
}

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

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

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

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--mix);
  color: #fff;
  font-weight: 800;
}

/* HERO */
.hero {
  padding: 80px 0 40px;
}

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

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card,
.footer-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.hero-main {
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--light-blue), transparent 70%);
}

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

/* TEXT */
.kicker {
  display: inline-block;
  font-style: italic;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: Georgia, serif;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

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

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

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

.mini-list div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border-left: 4px solid var(--red);
}

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

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.soft-panel {
  background: linear-gradient(180deg, #fff, var(--light-blue));
}

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

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

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

.card {
  padding: 24px;
  border-top: 4px solid var(--blue);
}

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

.hotel-card {
  padding: 24px;
  transition: 0.3s;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(58, 134, 255, 0.25);
}

.hotel-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mix);
  color: #fff;
  font-weight: 900;
  margin-bottom: 15px;
}

/* FOOTER */
.footer {
  padding: 30px 0 50px;
}

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

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

.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-card,
  .hero-main,
  .panel {
    padding: 20px;
  }

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

  h1 {
    max-width: none;
  }
}