:root {
  --navy: #081b33;
  --blue: #123f70;
  --red: #d52532;
  --aqua: #43cad0;
  --gold: #f6c95c;
  --sky: #edf8fb;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d687a;
  --line: #d9e2ea;
  --shadow: 0 18px 48px rgba(8,27,51,.14);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--navy); font-family: "Arial Black", Inter, sans-serif; line-height: 1.02; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.9rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.7rem); }
p { margin: 0 0 1.1rem; }
ul { padding-left: 1.25rem; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-160%); padding: .8rem 1rem; color: white; background: var(--navy); border-radius: 6px; }
.skip-link:focus { transform: none; }
.topbar { color: white; background: var(--navy); font-size: .86rem; }
.topbar__inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.topbar__links { display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
.topbar a { color: white; text-decoration: none; }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header__inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 128px; max-height: 82px; object-fit: contain; }
.menu { display: flex; align-items: center; gap: 1.2rem; }
.menu > a { color: var(--ink); text-decoration: none; font-size: .91rem; font-weight: 800; }
.menu > a[aria-current="page"] { color: var(--red); }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 8px; color: white; background: var(--navy); }
.menu-button::before, .menu-button::after, .menu-button span { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .73rem 1.2rem; border: 2px solid var(--red); border-radius: 7px; color: white !important; background: var(--red); text-decoration: none !important; font-size: .9rem; font-weight: 900; cursor: pointer; }
.button:hover { border-color: var(--navy); color: white !important; background: var(--navy); }
.button--navy { border-color: var(--navy); background: var(--navy); }
.button--light { border-color: white; color: var(--navy) !important; background: white; }
.button--outline { color: var(--navy) !important; background: transparent; border-color: var(--navy); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.kicker { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .9rem; color: var(--red); font-size: .76rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.kicker::before { width: 31px; height: 4px; content: ""; background: var(--aqua); }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.hero { position: relative; overflow: hidden; padding: clamp(3rem,7vw,7rem) 0 4.5rem; color: white; background: var(--navy); }
.hero::before { position: absolute; inset: auto 0 0; height: 12px; content: ""; background: linear-gradient(90deg,var(--red) 0 34%,var(--gold) 34% 68%,var(--aqua) 68%); }
.hero__grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(2rem,6vw,6rem); }
.hero h1 { color: white; }
.hero h1 span { color: var(--aqua); }
.hero .lede { color: #dbe8f5; }
.arrival-card { position: relative; transform: rotate(1.3deg); padding: 12px; border-radius: 18px; color: var(--ink); background: white; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.arrival-card img { width: 100%; height: 485px; object-fit: cover; border-radius: 10px; }
.arrival-card__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem .35rem .2rem; font-size: .88rem; font-weight: 900; }
.arrival-card__code { padding: .25rem .55rem; border: 2px dashed var(--red); color: var(--red); }
.quick-routes { position: relative; z-index: 2; margin-top: -1px; color: white; background: var(--blue); }
.quick-routes__inner { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.quick-route { padding: 1.15rem; border-right: 1px solid rgba(255,255,255,.16); color: white; text-decoration: none; font-weight: 850; }
.quick-route:last-child { border: 0; }
.quick-route span { display: block; color: var(--aqua); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.section { padding: clamp(4rem,8vw,7.5rem) 0; }
.section--sky { background: var(--sky); }
.section--navy { color: white; background: var(--navy); }
.section--navy h2, .section--navy h3 { color: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.section-head > div { max-width: 760px; }
.service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.service-card { position: relative; overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; border-radius: 18px; background: var(--navy); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.service-card::after { position: absolute; inset: 30% 0 0; content: ""; background: linear-gradient(transparent,rgba(8,27,51,.95)); }
.service-card__body { position: relative; z-index: 1; padding: 1.5rem; color: white; }
.service-card h3 { color: white; }
.service-card__body p { margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem,7vw,6rem); }
.split__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 10px solid white; border-radius: 18px; box-shadow: var(--shadow); }
.check-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem 1.4rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.5rem; }
.check-list li::before { position: absolute; left: 0; top: .4rem; width: 10px; height: 10px; content: ""; background: var(--red); transform: rotate(45deg); }
.metric-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.metric { padding: 1.4rem; border: 1px solid var(--line); border-top: 6px solid var(--aqua); background: white; }
.metric strong { display: block; color: var(--navy); font: 900 2.1rem/1 "Arial Black",sans-serif; }
.tour-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.tour-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 8px 24px rgba(8,27,51,.06); }
.tour-card__image { width: 100%; height: 245px; object-fit: cover; }
.tour-card__body { padding: 1.25rem; }
.tour-card__price { color: var(--red); font-weight: 950; }
.tour-card .button-row { margin-top: 1rem; }
.notice { padding: 1rem 1.2rem; border-left: 5px solid var(--gold); color: var(--ink); background: #fff8dd; }
.quote-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.quote { margin: 0; padding: 1.5rem; border: 1px solid var(--line); border-radius: 15px; background: white; }
.quote blockquote { margin: 0 0 1rem; color: var(--navy); font-size: 1.08rem; font-weight: 750; }
.quote figcaption { color: var(--muted); font-size: .85rem; }
.cta { position: relative; overflow: hidden; padding: clamp(2.2rem,5vw,4rem); border-radius: 18px; color: white; background: var(--red); }
.cta h2 { max-width: 780px; color: white; }
.cta::after { position: absolute; width: 190px; height: 190px; right: -70px; bottom: -80px; content: ""; border: 35px solid var(--gold); border-radius: 50%; opacity: .8; }
.page-hero { padding: 4.5rem 0 4rem; border-bottom: 10px solid var(--aqua); background: var(--sky); }
.page-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 3rem; }
.page-hero h1 { font-size: clamp(2.7rem,6vw,5.2rem); }
.page-hero__image { width: 100%; max-height: 430px; object-fit: cover; border: 9px solid white; border-radius: 17px; box-shadow: var(--shadow); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { color: inherit; }
.detail-card { padding: 1.5rem; border: 1px solid var(--line); border-top: 7px solid var(--red); background: white; box-shadow: var(--shadow); }
.detail-list { display: grid; gap: .65rem; padding: 0; list-style: none; }
.detail-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--navy); }
.form { padding: clamp(1.4rem,4vw,2.5rem); border-radius: 16px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field--full { grid-column: 1/-1; }
.field label { font-size: .87rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .72rem .8rem; border: 1px solid #aebaca; border-radius: 7px; color: var(--ink); background: white; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(67,202,208,.4); border-color: var(--blue); }
.form-status { min-height: 1.5em; margin-top: .8rem; color: var(--blue); font-weight: 750; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 2rem; }
.contact-list { display: grid; gap: .8rem; }
.contact-item { padding: 1rem 1.1rem; border-left: 5px solid var(--aqua); background: var(--sky); }
.contact-item span { display: block; color: var(--muted); font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.gallery { columns: 4 230px; column-gap: .9rem; }
.gallery figure { break-inside: avoid; margin: 0 0 .9rem; overflow: hidden; border-radius: 12px; background: var(--sky); }
.gallery img { width: 100%; }
.gallery figcaption { padding: .55rem .7rem; color: var(--muted); font-size: .8rem; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 10px; background: white; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 850; }
.faq-list p { margin: .8rem 0 0; }
.legal { max-width: 840px; }
.legal h2 { margin-top: 2.4rem; font-size: clamp(1.75rem,4vw,2.7rem); }
.site-footer { padding: 4rem 0 1.4rem; color: #dce7f2; background: #04111f; }
.site-footer a { color: white; }
.footer__grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 3rem; }
.footer__logo { width: 150px; margin-bottom: 1rem; padding: .45rem; border-radius: 7px; background: white; }
.footer__heading { color: white; font: 900 .85rem/1.2 Inter,sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.footer__links { display: grid; gap: .55rem; padding: 0; list-style: none; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .82rem; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 5rem 0; text-align: center; }
.not-found__code { color: var(--red); font: 900 clamp(6rem,20vw,14rem)/.75 "Arial Black",sans-serif; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .menu { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: .7rem; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: var(--shadow); }
  .menu.is-open { display: flex; }
  .menu > a { padding: .75rem; }
  .hero__grid, .page-hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .arrival-card { max-width: 680px; }
  .service-grid, .tour-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px,1180px); }
  .topbar__inner { padding: .5rem 0; align-items: flex-start; flex-direction: column; gap: .25rem; }
  .header__inner { min-height: 72px; }
  .brand img { width: 100px; max-height: 66px; }
  .hero { padding-top: 2.7rem; }
  .arrival-card img { height: 370px; }
  .quick-routes__inner, .service-grid, .tour-grid, .metric-row, .quote-grid, .form-grid, .footer__grid { grid-template-columns: 1fr; }
  .quick-route { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .section-head { align-items: flex-start; flex-direction: column; }
  .check-list { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
