:root {
  --vip-blue: #0058bc;
  --vip-blue-bright: #0070eb;
  --vip-blue-pale: #d8e2ff;
  --vip-navy: #001a41;
  --page-bg: #fbf9fc;
  --surface: #ffffff;
  --text: #1b1b1e;
  --text-muted: #5f5e5e;
  --outline: #c1c6d7;
  --shadow: 0 14px 38px rgba(0, 44, 105, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

a:hover {
  text-decoration: underline;
}

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

header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--outline);
}

header a {
  color: var(--vip-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
}

.nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--vip-navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero {
  position: relative;
  min-height: 560px;
  margin: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 18, 56, 0.83) 0%, rgba(0, 18, 56, 0.42) 48%, rgba(0, 18, 56, 0.08) 100%),
    var(--hero-image, linear-gradient(135deg, #0058bc, #76b7ff));
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 220px 0 72px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(0, 26, 65, 0.28);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.subtitle {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.booking {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(0, 26, 65, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}
.booking-card input[type="hidden"] {
  display: none;
}

.booking-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--vip-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-field > span {
  color: var(--vip-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.booking-field select {
  cursor: pointer;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--vip-blue);
  box-shadow: 0 0 0 3px rgba(0, 88, 188, 0.14);
}

button,
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--vip-blue);
  border-radius: 999px;
  background: var(--vip-blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
.button:hover,
a.button:hover {
  background: var(--vip-blue-bright);
  color: #fff;
  text-decoration: none;
}

.booking-card button {
  min-width: 170px;
  min-height: 48px;
  align-self: end;
  white-space: nowrap;
}

main.container {
  padding-top: 64px;
  padding-bottom: 72px;
}

.breadcrumbs {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section {
  margin-bottom: 64px;
}

.section > h2 {
  margin: 0 0 20px;
  color: var(--vip-navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card,
.info-card,
article {
  background: var(--surface);
  border: 1px solid rgba(0, 26, 65, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 44, 105, 0.07);
}

.card,
.info-card {
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
}

.card h3,
.info-card h3 {
  margin: 10px 0;
  color: var(--vip-navy);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.card p,
.info-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.label,
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vip-blue-pale);
  color: var(--vip-navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.address {
  font-size: 0.92rem;
}

.route-link,
.map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--vip-blue);
  font-weight: 800;
}

.map-link {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--vip-blue);
  color: #fff;
}

.map-link:hover {
  background: var(--vip-blue-bright);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .booking-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .booking-card button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
.intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(0, 26, 65, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 112, 235, 0.14), transparent 38%),
    #fff;
  box-shadow: var(--shadow);
}

.intro-card__copy h2 {
  margin: 8px 0 16px;
  color: var(--vip-navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-kicker,
.tag-label {
  display: block;
  color: var(--vip-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-lead {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.intro-card__tags {
  padding: 22px;
  border: 1px solid rgba(0, 88, 188, 0.16);
  border-radius: 18px;
  background: rgba(216, 226, 255, 0.42);
}

.intro-card__tags .tags {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .intro-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
}
.section:has(.grid) {
  scroll-margin-top: 96px;
}

.section .grid {
  align-items: stretch;
}

.section .grid .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.section .grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 44, 105, 0.13);
}

.section .grid .card .route-link {
  margin-top: auto;
  padding-top: 20px;
}

.section .grid .card .address {
  margin-top: 0;
  color: var(--text-muted);
}

.section .grid .card h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

.route-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.route-link:hover::after {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .section .grid .card,
  .route-link::after {
    transition: none;
  }

  .section .grid .card:hover {
    transform: none;
  }
}
.info-section .grid {
  gap: 14px;
}

.info-section .info-card {
  position: relative;
  min-height: 0;
  padding: 22px 22px 22px 74px;
  border-radius: 16px;
  box-shadow: none;
}

.info-section .info-card::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--vip-blue-pale);
  color: var(--vip-navy);
  content: "i";
  font-weight: 900;
  font-family: Georgia, serif;
}

.info-section .info-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.info-section .info-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

@media (max-width: 800px) {
  .info-section .info-card {
    padding-left: 70px;
  }
}
.map-section {
  margin-bottom: 64px;
}

.map-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.map-section__heading h2 {
  margin: 8px 0 0;
}

.map-section__heading .map-link {
  flex: 0 0 auto;
  margin: 0;
}

.map-frame {
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(0, 26, 65, 0.12);
  border-radius: 24px;
  background: #e9e7eb;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 700px) {
  .map-section__heading {
    align-items: start;
    flex-direction: column;
  }

  .map-section__heading .map-link {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
    height: 300px;
    border-radius: 18px;
  }
}
.site-footer {
  margin-top: 72px;
  padding: 38px 0;
  background: var(--vip-navy);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 1.4fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-footer__brand {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer__text {
  margin: 0;
  line-height: 1.5;
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.site-footer__top:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 700px) {
  .site-footer {
    margin-top: 48px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 36px, 1180px);
  }

  .site-footer__top {
    width: fit-content;
  }
}
.nearby-section {
  padding-top: 8px;
}

.nearby-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.nearby-section__heading h2 {
  margin: 8px 0 0;
}

.nearby-section__heading p {
  max-width: 270px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: right;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nearby-card {
  display: flex;
  min-height: 208px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(0, 26, 65, 0.1);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(0, 44, 105, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 44, 105, 0.13);
  text-decoration: none;
}

.nearby-card__distance {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vip-blue-pale);
  color: var(--vip-navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.nearby-card h3 {
  margin: 18px 0 8px;
  color: var(--vip-navy);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.nearby-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.nearby-card__link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--vip-blue);
  font-weight: 800;
}

@media (max-width: 800px) {
  .nearby-section__heading {
    align-items: start;
    flex-direction: column;
  }

  .nearby-section__heading p {
    max-width: none;
    text-align: left;
  }

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


@media (max-width: 800px) {
  .nav,
  .container,
  .hero-content {
    width: min(100% - 36px, 1180px);
  }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    padding: 170px 0 52px;
  }

  .booking {
    margin-top: -28px;
  }

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

  main.container {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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

  .booking-card button {
    grid-column: auto;
  }
}
.story-section {
  margin-top: 8px;
}

.story-section__heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.story-section__heading h2 {
  margin: 8px 0 0;
  color: var(--vip-navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(0, 26, 65, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0, 44, 105, 0.07);
}

.story-card--feel {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 112, 235, 0.17), transparent 45%),
    #fff;
}

.story-card--culture {
  background:
    radial-gradient(circle at 0% 100%, rgba(216, 226, 255, 0.9), transparent 48%),
    #f8fbff;
}

.story-card__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--vip-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0 0 16px;
  color: var(--vip-navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.story-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}
.booking-widget {
  background: #fff;
  border: 1px solid #c1c6d7;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 52, 111, 0.08);
  overflow: hidden;
}

.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 0;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #e6eefb;
  color: #123a68;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-tab.is-active {
  background: #0667c8;
  color: #fff;
}

.booking-tab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-panels {
  padding: 18px;
}

.booking-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.booking-panel[hidden] {
  display: none;
}

.booking-field {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #1b1b1e;
  font-size: 14px;
  font-weight: 700;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #1b1b1e;
  font: inherit;
}

.booking-panel > button[type="submit"] {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #0667c8;
  color: #fff;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.location-button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #0667c8;
  border-radius: 10px;
  background: #fff;
  color: #0667c8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.airport-status {
  min-height: 1.25em;
  color: #5f5e5e;
  font-weight: 400;
}

@media (max-width: 900px) {
  .booking-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel > button[type="submit"] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .booking-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 14px 0;
  }

  .booking-tab {
    flex: 0 0 auto;
    padding: 0 13px;
  }

  .booking-tab span {
    font-size: 13px;
  }

  .booking-panels {
    padding: 14px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-panel > button[type="submit"] {
    grid-column: auto;
  }
}
.booking-children-ages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-column: 1 / -1;
}

.booking-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #1b1b1e;
  font-weight: 500;
}

.booking-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0667c8;
}

@media (max-width: 640px) {
  .booking-children-ages {
    grid-template-columns: 1fr;
  }
}
.nearby-card--image {
  padding: 0;
  overflow: hidden;
}

.nearby-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--vip-blue-pale);
}

.nearby-card__content {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.nearby-card__content h3 {
  margin: 0 0 8px;
}

.nearby-card__content .nearby-card__link {
  margin-top: auto;
}
.intro-section + .nearby-section {
  margin-top: -24px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .site-footer__links {
    gap: 8px 16px;
  }
}
.legal-page {
  padding-bottom: 72px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 0 16px;
}

.legal-content h2 {
  margin: 42px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 12px;
}

.legal-content p,
.legal-content li {
  line-height: 1.75;
}

.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}