:root{
  --brand:#1266A3;
  --brand-dark:#0B4674;
  --brand-soft:#EAF5FC;
  --ink:#102033;
  --muted:#5D6B7A;
  --line:#DCE6EE;
  --bg:#F7FAFD;
  --white:#ffffff;
  --success:#147A4D;
  --warning:#FFF7E6;
  --shadow:0 12px 34px rgba(16,32,51,.11);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1160px,92%);margin:auto}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:12px;top:12px;width:auto;height:auto;background:#fff;padding:10px;z-index:1000}
.topbar{
  background:var(--brand-dark);
  color:#fff;
  font-size:14px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:8px 0;
}
.topbar a{color:#fff;font-weight:bold}
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:16px 0;
}
.logo{
  display:flex;
  flex-direction:column;
  color:var(--ink);
  font-weight:800;
  letter-spacing:-.3px;
  font-size:23px;
}
.logo small{font-size:12px;color:var(--muted);font-weight:600;letter-spacing:.2px}
.nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:16px;
  font-size:15px;
}
.nav a{color:var(--ink);font-weight:700}
.nav a.cta-link{color:var(--brand)}
.hero{
  background:
    linear-gradient(110deg, rgba(11,70,116,.95), rgba(18,102,163,.76)),
    url('assets/hero-ocean-cruise.svg') center/cover no-repeat;
  color:#fff;
  padding:70px 0 54px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  background:rgba(255,255,255,.18);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  padding:7px 12px;
  font-weight:700;
  font-size:14px;
  margin-bottom:16px;
}
h1,h2,h3{line-height:1.15;margin:0 0 14px}
h1{font-size:clamp(36px,5vw,60px);letter-spacing:-1px}
h2{font-size:clamp(28px,3vw,40px);letter-spacing:-.5px}
h3{font-size:22px}
.lead{font-size:20px;max-width:740px;margin:0 0 20px;color:rgba(255,255,255,.92)}
.hero-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:24px 0;
  padding:0;
  list-style:none;
}
.hero-points li{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
}
.actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:800;
  border:2px solid transparent;
  cursor:pointer;
  text-align:center;
}
.btn-primary{background:#fff;color:var(--brand-dark)}
.btn-primary:hover{text-decoration:none;background:#F3FAFF}
.btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.75)}
.btn-secondary:hover{text-decoration:none;background:rgba(255,255,255,.12)}
.btn-blue{background:var(--brand);color:#fff}
.btn-blue:hover{text-decoration:none;background:var(--brand-dark)}
.form-card{
  background:#fff;
  color:var(--ink);
  padding:24px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.form-card h2{font-size:26px}
.form-card p{color:var(--muted);margin-top:0}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.form-field.full{grid-column:1/-1}
label{font-weight:700;font-size:14px}
input,select,textarea{
  width:100%;
  border:1px solid #C9D7E2;
  border-radius:10px;
  padding:12px 12px;
  font:inherit;
  background:#fff;
  color:var(--ink);
}
textarea{min-height:96px;resize:vertical}
input:focus,select:focus,textarea:focus{
  outline:3px solid rgba(18,102,163,.18);
  border-color:var(--brand);
}
.honeypot{position:absolute;left:-9999px;opacity:0}
.disclosure{
  font-size:12px;
  color:var(--muted);
  margin-top:12px;
}
.section{padding:58px 0}
.section.white{background:#fff}
.section-intro{max-width:820px;margin-bottom:26px}
.section-intro p{color:var(--muted);font-size:18px}
.cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:0 8px 22px rgba(16,32,51,.06);
}
.card p{color:var(--muted)}
.card .text-link{font-weight:800}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 8px 22px rgba(16,32,51,.06);
}
.tick-list{list-style:none;padding:0;margin:0;display:grid;gap:11px}
.tick-list li{padding-left:30px;position:relative}
.tick-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--success);
  font-weight:900;
}
.intent-strip{
  background:var(--brand-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.intent-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.intent-box{
  background:#fff;
  border-radius:var(--radius);
  padding:20px;
  border:1px solid var(--line);
}
.page-hero{
  background:linear-gradient(110deg,var(--brand-dark),var(--brand));
  color:#fff;
  padding:58px 0;
}
.page-hero p{max-width:780px;font-size:19px;color:rgba(255,255,255,.92)}
.breadcrumb{font-size:14px;margin-bottom:14px;color:rgba(255,255,255,.82)}
.breadcrumb a{color:#fff;text-decoration:underline}
.cta-band{
  background:var(--brand-dark);
  color:#fff;
  padding:40px 0;
}
.cta-band .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer{
  background:#071D31;
  color:#DCE6EE;
  padding:38px 0 90px;
}
.footer a{color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:28px;
}
.footer small{color:#AAB8C6}
.mobile-call{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:100;
  background:var(--brand);
  color:#fff;
  text-align:center;
  padding:13px 16px;
  font-weight:900;
  box-shadow:0 -6px 18px rgba(0,0,0,.18);
}
.mobile-call:hover{text-decoration:none;background:var(--brand-dark)}
@media (max-width:900px){
  .hero-grid,.two-col,.cta-band .container{grid-template-columns:1fr;display:grid}
  .cards{grid-template-columns:1fr 1fr}
  .intent-grid{grid-template-columns:1fr}
  .header-inner{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
}
@media (max-width:640px){
  .topbar .container{flex-direction:column;align-items:flex-start;gap:4px}
  .hero{padding:44px 0 34px}
  .hero-points,.form-grid,.cards,.footer-grid{grid-template-columns:1fr}
  .form-field.full{grid-column:auto}
  .mobile-call{display:block}
  .section{padding:42px 0}
  .nav{gap:10px;font-size:14px}
}