:root {
  --navy: #0E3473;
  --navy-dark: #0A2757;
  --orange: #FF6B00;
  --orange-dark: #E05F00;
  --cream: #FAF7F5;
  --white: #FFFFFF;
  --text: #313B4D;
  --text-light: #6B7280;
  --border: #E7E5E4;
  --card-bg: #FCFCFC;
  --radius: 18px;
  --font-heading: 'Sora', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 { font-size: 42px; font-weight: 800; }
h2 { font-size: 32px; }
h3 { font-size: 20px; margin-bottom: 8px; }

p { margin: 0 0 12px; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.eyebrow-light { color: #FFB27A; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--navy); }

.btn-block { width: 100%; }

.btn-ghost-inverse {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-inverse:hover { border-color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

.logo span { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.main-nav a:hover { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero { padding: 72px 0 96px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 540px;
}

.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.hero-media img {
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 48px -16px rgba(14, 52, 115, 0.25);
}

/* Sections */
.section { padding: 88px 0; }

.section-alt { background: var(--white); }

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-sub { color: var(--text-light); font-size: 17px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.grid-2.reverse { grid-template-columns: 1fr 1fr; }

.lead-text {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.fact-list { display: flex; flex-direction: column; gap: 28px; }

.fact p { color: var(--text-light); }

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.card-icon {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.card p { color: var(--text-light); margin: 0; }

.card-booking {
  display: flex;
  flex-direction: column;
}

.card-booking p { margin-bottom: 24px; }

.card-booking .btn { margin-top: auto; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  margin: 0 24px;
  width: auto;
}

.cta-band .container { max-width: 1092px; }

.cta-band h2 { color: var(--white); }

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.cta-band-lead { color: #C9D4E8; font-size: 17px; }

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFB27A;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #B9C3D8;
  padding: 48px 0 28px;
  margin-top: 32px;
}

.logo-footer { color: var(--white); margin-bottom: 6px; }
.logo-footer span { color: var(--orange); }

.footer-note { color: #93A0BD; font-size: 15px; }

.footer-inner { display: flex; flex-direction: column; gap: 20px; }

.footer-legal {
  font-size: 13px;
  color: #7F8CAA;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-copy { font-size: 13px; color: #7F8CAA; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .main-nav { display: none; }
  .burger { display: flex; }

  .header-actions .btn-primary { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; max-width: 320px; margin: 0 auto; }

  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr; }

  .cta-band { margin: 0 16px; border-radius: 24px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 28px; }
  .container { padding: 0 18px; }
}
