:root {
  --bg: #0b1220;
  --bg-2: #121b2f;
  --card: #17243d;
  --text: #e9edf7;
  --muted: #b7c3de;
  --accent: #35d0ff;
  --accent-2: #1aa8d4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: 70vh;
  background: linear-gradient(rgba(11, 18, 32, 0.65), rgba(11, 18, 32, 0.82)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80') center/cover;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero-content {
  padding: 5rem 0 6rem;
  max-width: 700px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.4rem 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 0;
}

.section {
  padding: 4rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.2rem;
}

.card ul {
  margin: 0.6rem 0 0.9rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.alt {
  background: var(--bg-2);
}

.booking {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-card {
  background: #1a2846;
  border-radius: 12px;
  padding: 1.25rem;
}

.cta {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #041724;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.cta:hover {
  background: var(--accent-2);
}

.cta-small {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

.footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@media (max-width: 760px) {
  .booking {
    grid-template-columns: 1fr;
  }
}
