:root {
  --bg: #020817;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #b8c4d9;
  --gold: #d9b354;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --cyan: #22e6ff;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hero,
.booking-section {
  scroll-margin-top: 130px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.18), transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(139, 92, 246, 0.14), transparent 35%),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  width: 700px;
  height: 700px;
  right: -150px;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.12), transparent 70%);
  filter: blur(60px);
  animation: floatGlow 14s ease-in-out infinite;
  z-index: -1;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 112px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(2, 8, 23, 0.94);
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 64px;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  flex-shrink: 0;
}

.desktop-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #fff;
}

.top-cta {
  background: linear-gradient(135deg, #f2d27a, #c79632);
  color: #050505;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 22px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  background: #050915;
  padding: 22px;
  border-bottom: 1px solid var(--panel-border);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  color: #d7e2f2;
  text-decoration: none;
  border-bottom: 1px solid var(--panel-border);
}

.mobile-menu.open {
  display: block;
}

/* Hero */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 40px 48px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.22), transparent 45%),
    linear-gradient(135deg, transparent, rgba(6, 21, 44, 0.5), transparent);
  pointer-events: none;
  border-radius: 0 0 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  color: #a5c8ff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(90deg, #8ec5ff, #9c7dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.75;
}

/* Booking cards */
.booking-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px 120px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.booking-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.88));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(59, 130, 246, 0.12);
}

.pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pill.gold {
  background: rgba(217, 179, 84, 0.15);
  color: var(--gold);
  border: 1px solid rgba(217, 179, 84, 0.35);
}

.pill.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #9ddaff;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.pill.cyan {
  background: rgba(34, 230, 255, 0.1);
  color: #7ee8ff;
  border: 1px solid rgba(34, 230, 255, 0.3);
}

.pill.purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.booking-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.booking-card p {
  color: var(--muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.gold {
  background: linear-gradient(135deg, #f2d27a, #c79632);
  color: #050505;
}

.btn.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(217, 179, 84, 0.28);
}

.booking-note {
  text-align: center;
  color: var(--muted);
  margin-top: 48px;
  font-size: 1rem;
  line-height: 1.7;
}

.booking-note a {
  color: #9ddaff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-note a:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--panel-border);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 80px 60px;
}

.footer-brand img {
  height: 55px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.site-footer a {
  display: block;
  color: #d7e2f2;
  text-decoration: none;
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero,
  .booking-section {
    scroll-margin-top: 100px;
  }

  .desktop-nav,
  .top-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .site-header {
    height: 96px;
    padding: 0 28px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 96px 20px 32px;
  }

  .booking-section {
    padding: 16px 20px 80px;
  }

  .booking-card {
    padding: 28px;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }
}
