* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #002859; font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif; color: #10233f; }
img, video { display: block; max-width: 100%; }

.site { background: #f7f5f2; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
  padding: 12px 28px; background: rgba(0,40,89,.96); backdrop-filter: blur(6px); }
.nav img { height: 40px; width: 40px; border-radius: 8px; }
.nav .brand { color: #fff; font-weight: 700; letter-spacing: .04em; font-size: 17px; }
.nav .brand small { display: block; color: #ffcc00; font-size: 11px; font-weight: 600; letter-spacing: .18em; }
.nav .links { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav .links a { color: #cdd8ea; text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav .links a:hover { color: #ffcc00; }
.nav .call { background: #ffcc00; color: #002859 !important; padding: 10px 18px; border-radius: 999px; font-weight: 700; }
@media (max-width: 760px) { .nav .links a:not(.call) { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 70%; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,40,89,.25) 0%, rgba(0,40,89,.05) 40%, rgba(0,40,89,.88) 100%); }
.hero .inner { position: relative; padding: 64px 40px 72px; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero .kicker { color: #ffcc00; font-weight: 700; letter-spacing: .22em; font-size: 13px; text-transform: uppercase; }
.hero h1 { color: #fff; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.06; font-weight: 800; margin: 14px 0 16px; max-width: 15ch; }
.hero p { color: #dbe4f2; font-size: clamp(15px, 1.6vw, 19px); max-width: 56ch; }
.hero .cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero .cta a { padding: 14px 26px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px; transition: transform .18s, box-shadow .18s; }
.hero .cta a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.35); }
.hero .cta .primary { background: #ffcc00; color: #002859; }
.hero .cta .ghost { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s ease forwards; }
.fade-up.d2 { animation-delay: .25s; } .fade-up.d3 { animation-delay: .5s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- stats ---------- */
.stats { background: #002859; color: #fff; padding: 42px 28px; }
.stats .grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; text-align: center; }
.stats .num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: #ffcc00; font-variant-numeric: tabular-nums; }
.stats .lbl { margin-top: 6px; color: #b9c8de; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; }

/* ---------- sections ---------- */
section { padding: 72px 28px; }
.wrap { max-width: 1100px; margin: 0 auto; }
.kick { color: #b78900; font-weight: 700; letter-spacing: .2em; font-size: 12.5px; text-transform: uppercase; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: #002859; margin: 10px 0 18px; }
.lead { color: #3c4c66; font-size: 16.5px; line-height: 1.65; max-width: 68ch; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* about */
.about .cols { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.about .mark { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,40,89,.22); transition: transform .3s; }
.about .mark:hover { transform: rotate(-2deg) scale(1.02); }
.about ul { margin-top: 18px; list-style: none; }
.about li { padding: 10px 0; border-bottom: 1px solid #e6e1da; color: #23395c; font-size: 15px; }
.about li b { color: #002859; }
@media (max-width: 700px) { .about .cols { grid-template-columns: 1fr; } .about .mark { max-width: 200px; } }

/* services */
.services { background: #fff; }
.services .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; margin-top: 8px; }
.services .card { background: #f7f5f2; border-radius: 20px; padding: 30px 28px; border-top: 6px solid #ffcc00;
  transition: transform .25s, box-shadow .25s; }
.services .card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,40,89,.16); }
.services .card h3 { color: #002859; font-size: 21px; margin-bottom: 6px; }
.services .card .where { color: #b78900; font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; }
.services .card p { margin-top: 12px; color: #3c4c66; font-size: 15px; line-height: 1.6; }

/* fleet */
.fleet .cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.fleet .fcard { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,40,89,.10);
  transition: transform .25s, box-shadow .25s; }
.fleet .fcard:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(0,40,89,.20); }
.fleet .fcard .ph { height: 170px; overflow: hidden; }
.fleet .fcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fleet .fcard:hover .ph img { transform: scale(1.07); }
.fleet .fcard .txt { padding: 16px 18px 18px; }
.fleet .fcard h4 { color: #002859; font-size: 16.5px; }
.fleet .fcard span { color: #66788f; font-size: 13.5px; }
.fleet .fcard.noimg { display: flex; align-items: center; background: #002859; }
.fleet .fcard.noimg h4 { color: #ffcc00; }
.fleet .fcard.noimg span { color: #b9c8de; }

/* video */
.video { background: #002859; }
.video h2, .video .lead { color: #fff; }
.video .kick { color: #ffcc00; }
.video .frame { margin-top: 26px; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.video video { width: 100%; }
.video .cap { color: #9db1cf; font-size: 13px; margin-top: 12px; }

/* gallery */
.gallery .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.gallery .g { border-radius: 14px; overflow: hidden; height: 200px; }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; }
.gallery .g:hover img { transform: scale(1.06); }
.gallery .note { margin-top: 14px; color: #66788f; font-size: 13px; }

/* clients */
.clients { background: #fff; }
.clients .row { display: flex; flex-wrap: wrap; gap: 16px; }
.clients .cl { flex: 1 1 180px; background: #f7f5f2; border-radius: 16px; padding: 22px 20px; text-align: center;
  transition: transform .22s, box-shadow .22s; }
.clients .cl:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,40,89,.12); }
.clients .cl b { color: #002859; font-size: 16.5px; display: block; }
.clients .cl span { color: #b78900; font-size: 13px; font-weight: 700; }

/* contact */
.contact { background: linear-gradient(135deg, #ffcc00, #ffd94d); }
.contact h2 { color: #002859; }
.contact .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 10px; }
.contact .cc { background: rgba(255,255,255,.75); border-radius: 16px; padding: 22px; }
.contact .cc b { color: #002859; display: block; margin-bottom: 6px; font-size: 15px; }
.contact .cc span { color: #33445e; font-size: 14.5px; line-height: 1.55; }
.contact .cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact .cta a { background: #002859; color: #fff; padding: 14px 26px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .18s; }
.contact .cta a:hover { transform: translateY(-2px); }

footer { background: #001b3e; color: #8ea3c4; padding: 30px 28px; text-align: center; font-size: 13px; line-height: 1.7; }
footer b { color: #fff; }
@media (max-width: 700px) { .hero { height: 520px; } .hero .inner { padding: 40px 22px 48px; } }
.clip { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 14px; }
.clip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s linear; }
.video .frame video { width: 100%; display: block; border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; background: #001a3d; }
