:root {
  --navy: #1B2A4A;
  --navy-dark: #14213a;
  --teal: #0891B2;
  --teal-light: #38BDF8;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --white: #FFFFFF;
  --radius: 8px;
  --max-width: 1140px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-link img { height: 65px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 40px; }

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

.main-nav a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s ease;
}

.main-nav a:not(.btn):hover, .main-nav a.active { color: var(--teal); }

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.15s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #077390; }

.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-outline-light { border-color: rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

/* ---- Hero ---- */
.hero {
  background-color: var(--navy);
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 72px 0 64px;
  position: relative;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero .eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal-light);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--teal-light); display: block; }

.hero p {
  font-size: 18px;
  color: #CBD5E1;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn { padding: 14px 28px; font-size: 15px; }

/* ---- Hero graphic + News box ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.49fr;
  gap: 48px;
  align-items: center;
}
.hero-graphic { position: relative; }
.hero-graphic-stack {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--navy-dark);
  box-shadow: 0 20px 48px rgba(15,23,42,0.35);
}
.hero-graphic-img {
  position: absolute;
  inset: 0;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-graphic-img.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-graphic-img { transition: none; }
}
.news-box {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 270px;
  background: var(--navy-dark);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  padding: 20px 22px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.4);
}
.news-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid var(--teal-light);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 11px;
}
.news-rotator { position: relative; min-height: 56px; }
.news-item {
  position: absolute;
  inset: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.news-item.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .news-item { transition: none; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic-stack { height: 240px; }
  .news-box { left: 0; bottom: -20px; width: calc(100% - 40px); }
}

/* ---- Sections ---- */
section { padding: 64px 0; }
.section-alt { background: var(--gray-50); }

.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header .eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-header p { margin-top: 16px; font-size: 17px; color: var(--gray-500); }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.card .icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(8,145,178,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
}

.card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--gray-500); }

/* ---- Stats ---- */
.stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat .num { font-size: 36px; font-weight: 800; color: var(--navy); }
.stat .label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.cta-band p { color: #CBD5E1; font-size: 16px; margin-bottom: 32px; }
.cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-dark); color: #94A3B8; padding: 48px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-badge {
  display: inline-block;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer-logo-badge img { height: 39px; display: block; }
.footer-top p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--white); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background-color: var(--navy);
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 44px 0;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-hero .eyebrow {
  color: var(--teal-light); font-size: 14px; font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero .eyebrow::before { content: ""; display: block; width: 28px; height: 1.5px; background: var(--teal-light); }
.page-hero h1 { color: var(--white); font-size: 40px; font-weight: 800; max-width: 640px; }
.page-hero p { color: #CBD5E1; font-size: 17px; margin-top: 16px; max-width: 560px; }

/* ---- Booking page ---- */
.booking-section { padding: 40px 0 64px; }
.booking-frame {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.booking-frame iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
}
@media (max-width: 720px) {
  .booking-frame iframe { height: 1100px; }
}

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--navy); }
.form-field input, .form-field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-700);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-note { font-size: 13px; color: var(--gray-500); margin-top: 8px; }

/* ---- Multiselect ---- */
.multiselect { position: relative; }
.multiselect-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-500);
  background: var(--white);
  cursor: pointer;
  text-align: left;
}
.multiselect-trigger:focus { outline: none; border-color: var(--teal); }
.multiselect.open .multiselect-trigger { border-color: var(--teal); }
.multiselect-trigger.has-selection { color: var(--gray-700); }
.multiselect-placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multiselect-caret {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 8px;
  color: var(--gray-500);
  transition: transform 0.15s ease;
}
.multiselect.open .multiselect-caret { transform: rotate(180deg); }
.multiselect-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
}
.multiselect.open .multiselect-panel { display: block; }
.multiselect-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}
.multiselect-option:hover { background: var(--gray-50); }
.multiselect-option input {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px;
}
.contact-info-card .item-row { display: flex; gap: 20px; margin-bottom: 14px; }
.contact-info-card .item-row .item { margin-bottom: 0; flex: 1; min-width: 0; }
.contact-info-card .item { display: flex; gap: 14px; margin-bottom: 14px; }
.contact-info-card .item:last-child { margin-bottom: 0; }
.contact-info-card .item .label { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.contact-info-card .item .value { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-info-card .item .value a:hover, .footer-col a:hover { text-decoration: underline; text-underline-offset: 2px; }
.map-embed {
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-embed iframe {
  width: 100%;
  height: 130px;
  border: 0;
  display: block;
}

.booking-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 12px;
  padding: 22px;
}
.booking-cta-card .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.booking-cta-card h3 { color: var(--white); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.booking-cta-card p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }

/* ---- Timeline (about) ---- */
.timeline { border-left: 2px solid var(--gray-200); padding-left: 32px; display: flex; flex-direction: column; gap: 36px; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-item .year { font-size: 13px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.timeline-item h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: 15px; color: var(--gray-500); }

@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .site-header .container { height: 59px; }
  .logo-link img { height: 37px; width: auto; }
  .nav-toggle { display: block; }
  /* On small screens the whole nav becomes a dropdown panel under the header. */
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 59px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 24px rgba(15,23,42,0.08);
  }
  .main-nav.open ul { display: flex; flex-direction: column; gap: 0; }
  .main-nav.open li a:not(.btn) { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 16px; }
  .main-nav.open .btn { display: block; text-align: center; margin-top: 20px; }
}

@media (max-width: 480px) {
  .contact-info-card .item-row { flex-direction: column; gap: 24px; }
}

@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 30px; }
}

.form-field label .optional { font-weight: 400; color: var(--gray-500); }
