:root {
  --bg: #001c27;
  --bg-2: #002631;
  --bg-3: #041c28;
  --sand: #ffffff;
  --muted: #e2e3e4;
  --accent: #e2e3e4;
  --accent-gold: #c9b896;
  --line: rgba(226, 227, 228, 0.18);
  --font-display: "Montserrat", "Manrope", system-ui, sans-serif;
  --font-body: "Montserrat", "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--sand);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, #021018 100%);
  min-height: 100vh;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; background: #000; color: #fff; padding: .5rem 1rem;
}
.skip:focus { left: 1rem; z-index: 99; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(0, 28, 39, 0.92);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .08em; font-weight: 600;
  text-transform: uppercase;
}
.brand img { height: 42px; width: auto; }
.brand span { color: var(--accent-gold); font-weight: 500; }
.site-nav { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.site-nav a { font-size: .86rem; color: var(--muted); transition: color .2s; font-weight: 500; letter-spacing: .02em; }
.site-nav a:hover { color: var(--sand); }
.btn-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.2rem; border-radius: 2px;
  background: transparent;
  color: #fff !important; font-weight: 600; border: 2px solid var(--muted); cursor: pointer;
  text-transform: uppercase; letter-spacing: .06em; font-size: .85rem;
  transition: .25s ease;
}
.btn:hover, .btn-cta:hover { background: var(--muted); color: var(--bg-2) !important; }
.btn-outline {
  background: transparent; color: var(--sand) !important;
  border: 2px solid var(--line); border-radius: 2px; padding: .65rem 1rem;
  text-transform: uppercase; letter-spacing: .06em; font-size: .82rem;
}
.nav-toggle { display: none; background: transparent; color: var(--sand); border: 1px solid var(--line); padding: .4rem .7rem; border-radius: 4px; }

.hero {
  position: relative; min-height: min(88vh, 780px);
  display: grid; align-items: end;
  overflow: hidden;
  animation: fadeRise .9s ease both;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,28,39,.35), rgba(0,38,49,.88)),
    url("/static/images/hero-fleet.jpg") center/cover no-repeat;
}
.hero-media iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; border: 0;
  transform: scale(1.25);
  opacity: .55;
}
.hero-inner { position: relative; z-index: 1; padding: 4.5rem 0 3.5rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08; margin: 0 0 .8rem; max-width: 14ch;
  font-weight: 200; letter-spacing: -1px;
}
.hero p { max-width: 38rem; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; gap: .8rem; margin-top: 1.5rem; flex-wrap: wrap; }

.fleet-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: .75rem;
  margin-top: 2.5rem;
}
.fleet-item {
  text-align: center; color: var(--muted); font-size: .72rem;
  letter-spacing: .04em; font-weight: 600;
}
.fleet-item img {
  width: 100%; height: 54px; object-fit: contain; margin: 0 auto .35rem;
  filter: brightness(1.05);
  transition: transform .25s ease;
}
.fleet-item:hover img { transform: translateY(-3px); }
.fleet-item:hover { color: #fff; }

.section { padding: 4rem 0; }
.section h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 .4rem; font-weight: 200; letter-spacing: -0.5px;
}
.section .lead { color: var(--muted); margin: 0 0 2rem; max-width: 40rem; }

.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow: hidden; transition: transform .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(226,227,228,.45); }
.card-media {
  aspect-ratio: 16/10; background: #123;
  background-size: cover; background-position: center;
}
.card-body { padding: 1rem 1.1rem 1.25rem; }
.card-body h3 { margin: 0 0 .35rem; font-size: 1.05rem; font-family: var(--font-display); font-weight: 500; }
.card-body p { margin: 0; color: var(--muted); font-size: .9rem; }

.prose { max-width: 820px; }
.prose :is(h1,h2,h3) { font-family: var(--font-display); font-weight: 300; color: #fff; }
.prose p, .prose li { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }
.prose img { border-radius: 2px; margin: 1rem 0; }
.prose a { border-bottom: 1px solid var(--muted); }
.article-hero {
  background: linear-gradient(135deg, #002631 0%, #001c27 100%);
  padding: 2.5rem 1.5rem; margin: 0 0 2rem; border: 1px solid var(--line);
}
.article-hero h1 { margin: 0 0 .6rem; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 200; }
.article-hero .lead { margin: 0; color: var(--muted); }

.page-hero { padding: 3rem 0 1rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); margin: 0; font-weight: 200; }

.form { display: grid; gap: .9rem; max-width: 520px; }
.form label { display: grid; gap: .35rem; font-size: .9rem; color: var(--muted); }
.form input, .form textarea {
  width: 100%; padding: .75rem .9rem; border-radius: 2px;
  border: 1px solid var(--line); background: rgba(0,0,0,.25); color: var(--sand);
}
.flashes { padding-top: 1rem; }
.flash { padding: .75rem 1rem; border-radius: 2px; margin-bottom: .5rem; }
.flash-success { background: rgba(46, 160, 90, .2); }
.flash-error { background: rgba(180, 50, 50, .25); }

.site-footer {
  margin-top: 3rem; border-top: 1px solid var(--line);
  background: rgba(0,0,0,.28); padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer-grid h3 { margin: 0 0 .6rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-gold); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li, .footer-grid p { color: var(--muted); line-height: 1.6; font-size: .92rem; }
.footer-copy { margin-top: 2rem; color: var(--muted); font-size: .85rem; border-top: 1px solid var(--line); padding-top: 1rem; }

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.reveal { animation: fadeRise .7s ease both; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 78px;
    flex-direction: column; align-items: flex-start;
    background: rgba(0,28,39,.98); padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  body.nav-open .site-nav { display: flex; }
  .fleet-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
