:root {
  --navy: #10203f;
  --ink: #172033;
  --gold: #b8893d;
  --paper: #f4f6f8;
  --line: #e4e8ee;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.top {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4vw; background: #fff;
  border-bottom: 1px solid var(--line);
}
.top img { height: 108px; width: auto; }
.top nav { display: flex; gap: 22px; align-items: center; }
.top a { color: var(--navy); text-decoration: none; font-weight: 550; }
.top a.btn { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; text-decoration: none;
  border: 0; border-radius: 999px; padding: 13px 20px;
  font: inherit; font-weight: 650; cursor: pointer;
}
.btn.call { background: var(--navy); }
.btn.light { background: #fff; color: var(--navy); }
.wa-sticky {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  background: #1faa59; color: #fff; text-decoration: none;
  font-weight: 700; border-radius: 999px; padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(16, 32, 63, .28);
}
.hero {
  position: relative; min-height: 100vh; color: #fff;
  display: grid; align-items: end;
  background: #0c1628 center / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,16,32,.78) 0%, rgba(8,16,32,.28) 48%, rgba(8,16,32,.12) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 0 6vw 9vh; max-width: 760px; }
.kicker { letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-weight: 650; color: #e6c27a; }
h1, h2 { font-weight: 560; letter-spacing: -0.03em; }
h1 { font-size: clamp(48px, 6.4vw, 92px); line-height: .95; margin: 10px 0 16px; }
.hero p { font-size: 18px; line-height: 1.55; max-width: 34rem; color: #eef2f7; }
.row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.intro {
  display: grid; grid-template-columns: 280px 1fr 1fr; gap: 36px;
  align-items: center; padding: 88px 6vw;
}
.intro img.mark { width: 240px; height: auto; margin: 0 auto; }
.intro h2 { font-size: clamp(34px, 4vw, 52px); margin: 0 0 14px; }
.intro p { line-height: 1.7; color: #3d4858; }
.photo-frame { border-radius: 22px; overflow: hidden; }
.photo-frame img { width: 100%; height: 460px; object-fit: cover; }
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); color: #fff;
}
.strip article { padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.strip article:last-child { border: 0; }
.strip strong { display: block; font-size: 18px; margin-bottom: 6px; }
.strip span { color: #c9d3e2; font-size: 14px; line-height: 1.5; }
.fleet {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px;
  padding: 28px 6vw 10px;
}
.fleet img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.fleet .tall { min-height: 560px; }
.book { padding: 72px 6vw 88px; background: var(--paper); }
.book-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: start; }
form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: #fff; padding: 22px; border-radius: 22px; border: 1px solid var(--line);
}
label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; }
label.wide, .form-status, form .btn { grid-column: 1 / -1; }
input, textarea {
  border: 1px solid var(--line); background: #fbfcfd; color: var(--ink);
  border-radius: 12px; padding: 12px 14px; font: inherit; font-weight: 450;
}
textarea { min-height: 96px; resize: vertical; }
footer {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 22px 6vw 88px; color: #5c6b80; font-size: 14px;
}
footer a { color: var(--navy); }
@media (max-width: 900px) {
  .top img { height: 58px; }
  .top nav a:not(.btn) { display: none; }
  .intro, .fleet, .book-grid, form, .strip { grid-template-columns: 1fr; }
  .strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .photo-frame img, .fleet .tall { height: 280px; min-height: 0; }
  .hero { min-height: 88vh; }
}
