/* ========================================================
   AeroZjet Aviation Solutions — Home Page
   Design tokens sampled from brand mark
======================================================== */

:root {
  /* Color — sampled from brand logo */
  --navy-950: #0d1e2e;
  --navy-900: #14283d;
  --navy-800: #1b3350;
  --navy-700: #21456b;
  --blue-600: #01a0e2;
  --blue-500: #23b0ea;
  --blue-300: #7cd6f5;
  --orange-600: #ff7700;
  --orange-500: #ff9233;
  --orange-100: #ffe8d1;
  --blue-100: #dff3fc;
  --surface: #0d1e2e;
  --surface-alt: #14283d;
  --ice-100: #eef4fb;
  --ice-50: #f6f9fd;
  --white: #ffffff;
  --ink: var(--navy-950);
  --gray-600: #5f5e5a;
  --gray-400: #8b8f96;
  --gray-200: #dfe4ea;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --nav-height: 84px;
  --topbar-height: 0px;
  --header-height: calc(var(--nav-height) + var(--topbar-height));
  --container: 1240px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--navy-950);
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--blue-600) 75%, var(--blue-500) 100%);
  background-attachment: fixed;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

/* ============ TYPE SCALE ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy-950);
}


.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--orange-600);
  display: inline-block;
}

.section-label {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 14px;
  max-width: 620px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-top: 18px;
  line-height: 1.65;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255,119,0,0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--blue-600) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(1,160,226,0.3);
}

.btn-ghost {
  border: 1.5px solid rgba(7, 26, 48, 0.22);
  color: var(--navy-950);
}
.btn-ghost:hover { border-color: var(--navy-950); background: rgba(7,26,48,0.04); transform: translateY(-2px); }

.btn-light {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

/* Header CTAs — orange outline "Enquire Now" + solid gradient "Get a Quote" */
.nav-cta .btn { border-radius: 10px; font-weight: 700; box-shadow: none; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.78rem; padding: 13px 22px; }
.nav-cta .btn-ghost {
  border: 1.5px solid var(--orange-600);
  color: var(--orange-600);
  background: transparent;
}
.nav-cta .btn-ghost:hover {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255,119,0,0.25);
}
.nav-cta .btn-primary { box-shadow: 0 6px 16px rgba(255,119,0,0.25); }
.nav-cta .btn-primary:hover { box-shadow: 0 10px 22px rgba(1,160,226,0.3); }

.btn-arrow {
  width: 16px; height: 16px;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), height 0.4s var(--ease-out);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 64px; width: auto;
  transition: height 0.35s var(--ease-out), filter 0.4s ease;
  animation: logoFloat 5s ease-in-out infinite;
}
.nav.scrolled .nav-logo img { height: 50px; }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 0 rgba(255,119,0,0)); }
  50% { transform: translateY(-3px); filter: drop-shadow(0 2px 10px rgba(255,119,0,0.25)); }
}
.nav-logo {
  position: relative;
  overflow: hidden;
}
.nav-logo::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}
.nav-logo:hover::after {
  opacity: 1;
  animation: logoSweep 0.9s ease-out;
}
@keyframes logoSweep {
  from { left: -60%; }
  to   { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo img { animation: none; }
  .nav-logo:hover::after { animation: none; opacity: 0; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange-500); font-weight: 600; }
.nav-links a.active::after { width: 100%; background: var(--orange-500); }
.nav.scrolled .nav-links a.active { color: var(--orange-600); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

/* Small animated "plane roaming" box — sits where Get a Quote used to be */
.nav-plane-box {
  width: 64px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
  box-shadow: 0 6px 16px rgba(255,119,0,0.3);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.nav-plane {
  position: absolute;
  width: 26px; height: 26px;
  top: 7px; left: -30px;
  animation: navPlaneRoam 4.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}
@keyframes navPlaneRoam {
  0%   { left: -30px; top: 20px; transform: rotate(8deg) scale(0.85); }
  45%  { left: 20px; top: 4px; transform: rotate(-4deg) scale(1.05); }
  55%  { left: 20px; top: 4px; transform: rotate(-4deg) scale(1.05); }
  100% { left: 70px; top: 16px; transform: rotate(10deg) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-plane { animation: none; left: 19px; top: 7px; }
}

.nav-social { display: flex; align-items: center; gap: 10px; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--ice-100);
  transition: all 0.3s var(--ease-out);
}
.nav-social a svg { width: 15px; height: 15px; }
.nav-social a:hover { background: var(--orange-600); color: var(--white); transform: translateY(-2px); }
.nav.scrolled .nav-social a { background: var(--ice-100); }
@media (max-width: 1100px) {
  .nav-social { display: none; }
}
.nav-cta .btn { padding: 11px 22px; font-size: 0.82rem; }

.nav.scrolled {
  background: rgba(246, 249, 253, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(7,26,48,0.08);
  height: 72px;
}
.nav.scrolled .nav-links a { color: var(--navy-950); }
.nav.scrolled .btn-light { color: var(--navy-950); border-color: rgba(7,26,48,0.22); }
.nav.scrolled .btn-light:hover { background: rgba(7,26,48,0.05); border-color: var(--navy-950); }
.nav.scrolled .nav-logo .logo-word { color: var(--navy-950); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 210;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
}
.nav.scrolled .nav-toggle span { background: var(--navy-950); }
.nav-toggle.open span { background: var(--navy-950); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #eaf2fb 0%, #f6f9fd 55%, var(--white) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Static background photo used on About/Services/Our Work/Gallery/Contact —
   Home keeps the live video background; these use real AeroZjet photos
   with a slow, subtle zoom for a premium (not flashy) feel. */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7,20,34,0.72) 0%, rgba(7,20,34,0.55) 45%, rgba(7,20,34,0.82) 100%);
}
.hero.has-video .hero-sky { display: none; } /* clouds are for the light-mode fallback only */
.hero.has-video .eyebrow { color: var(--orange-500); }
.hero.has-video .eyebrow::before { background: var(--orange-500); }
.hero.has-video h1,
.hero.has-video .hero-headline { color: var(--white); }
.hero.has-video .hero-sub { color: rgba(255,255,255,0.82); }
.hero.has-video .hero-meta { border-top-color: rgba(255,255,255,0.2); }
.hero.has-video .hero-meta-item .val { color: var(--white); }
.hero.has-video .hero-meta-item .lbl { color: rgba(255,255,255,0.6); }
.hero.has-video .btn-ghost { border-color: rgba(255,255,255,0.4); color: var(--white); }
.hero.has-video .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.hero.has-video .scroll-cue { color: rgba(255,255,255,0.7); }
.hero.has-video .scroll-cue-line { background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent); }

/* ============ HEADLINE WORD-CYCLE ============ */
.word-cycle {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}
.cycle-item {
  display: inline-block;
  white-space: nowrap;
}
.cycle-item:not(:first-child) {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
}

/* ============ FLOATING BADGES ============ */
.hero-floaters {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(5,14,26,0.25);
  white-space: nowrap;
}
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255,146,51,0.25);
  flex-shrink: 0;
}
.float-badge-1 { top: 20%; right: 7%; }
.float-badge-2 { top: 58%; right: 11%; }

/* ============ HERO TICKER MARQUEE ============ */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(6,16,28,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 15px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 20px;
  animation: tickerScroll 24s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.ticker-track .sep { color: var(--orange-500); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cloud {
  position: absolute;
  opacity: 0.55;
}

.hero-path-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#flight-path-svg { width: 100%; height: 100%; }
.flight-line {
  fill: none;
  stroke: url(#pathGradient);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.flight-dot {
  fill: var(--orange-600);
}
.plane-marker {
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.12;
  max-width: 900px;
  margin-top: 26px;
}
.hero-headline .highlight {
  color: var(--orange-600);
  animation: highlightGlow 3.2s ease-in-out infinite;
}
@keyframes highlightGlow {
  0%, 100% { text-shadow: 0 0 0px rgba(255,119,0,0); }
  50%      { text-shadow: 0 0 22px rgba(255,119,0,0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-headline .highlight { animation: none; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gray-600);
  max-width: 540px;
  margin-top: 26px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid rgba(7,26,48,0.1);
  flex-wrap: wrap;
}
.hero-meta-item {
  font-family: var(--font-mono);
}
.hero-meta-item .val {
  font-size: 1.5rem;
  color: var(--navy-950);
  font-weight: 600;
  display: block;
}
.hero-meta-item .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 84px;
  left: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gray-400), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--orange-600);
  animation: cueFall 2.2s ease-in-out infinite;
}
@keyframes cueFall {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--navy-950);
  color: var(--white);
  padding: 54px 0 84px;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 22px; }
.stat-item .stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--blue-300);
}
.stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about-preview::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--blue-600) 130%);
}
.about-preview .eyebrow { color: var(--orange-500); }
.about-preview .eyebrow::before { background: var(--orange-500); }
.about-preview .section-label { color: var(--white); }
.about-preview .about-copy p { color: rgba(255,255,255,0.78); }
.about-preview .about-list li { color: rgba(255,255,255,0.9); }
.about-preview .about-list li .dot { background: var(--orange-500); }
.about-preview .btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.about-preview .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.about-preview .ambient-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.about-preview .ambient-blob-1 {
  top: -20px; left: -40px;
  background: radial-gradient(circle, var(--orange-500), transparent 70%);
  animation: driftA 24s ease-in-out infinite;
}
.about-preview .ambient-blob-2 {
  bottom: -30px; right: -20px;
  background: radial-gradient(circle, var(--blue-500), transparent 70%);
  opacity: 0.35;
  animation: driftB 28s ease-in-out infinite;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--orange-600), var(--navy-950));
  border-radius: 2px;
  overflow: hidden;
}
.about-visual svg { width: 100%; height: 100%; }
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(13,30,46,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(5,14,26,0.3);
}
.about-badge-num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--orange-500);
  line-height: 1;
}
.about-badge-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}
.about-copy p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-top: 22px;
}
.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list li {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--navy-950);
  align-items: flex-start;
}
.about-list li .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: 8px;
  flex-shrink: 0;
}
.about-copy .btn { margin-top: 40px; }

/* ============ FOUNDER ============ */
.founder {
  padding: 40px 0 130px;
  position: relative;
}
.founder-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.founder-glow-1 { width: 380px; height: 380px; background: var(--orange-500); top: -30px; left: -60px; }
.founder-glow-2 { width: 420px; height: 420px; background: var(--blue-500); bottom: -80px; right: -80px; }

.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(13,30,46,0.32);
  position: relative;
}
.founder-visual {
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo-frame {
  width: 100%;
  aspect-ratio: 4/4.6;
  border-radius: 22px;
  padding: 4px;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-500));
}
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; display: block; }
.founder-tag {
  position: absolute;
  left: 54px; bottom: 54px;
  background: var(--white);
  color: var(--navy-950);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}
.founder-stat-chip {
  position: absolute;
  top: 54px; right: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  color: var(--white);
  animation: founderFloat 4s ease-in-out infinite;
}
.founder-stat-chip strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--orange-500); }
.founder-stat-chip span { font-size: 0.64rem; color: rgba(255,255,255,0.7); white-space: nowrap; }
@keyframes founderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.founder-copy {
  padding: 54px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-quote { width: 42px; height: 34px; color: rgba(255,119,0,0.45); margin-bottom: 12px; }
.founder-copy .eyebrow { color: var(--orange-500); }
.founder-copy .eyebrow::before { background: var(--orange-500); }
.founder-copy h2 {
  font-size: 2.3rem;
  margin-top: 10px;
  color: var(--white);
}
.founder-copy p.founder-bio {
  margin-top: 18px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
}
.founder-signature {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--blue-300);
}
@media (max-width: 768px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-visual { min-height: 280px; padding: 28px; }
  .founder-tag { left: 42px; bottom: 42px; }
  .founder-stat-chip { top: 42px; right: 16px; }
  .founder-copy { padding: 36px 30px 44px; }
}

/* ============ SERVICES TEASER ============ */
.services-teaser {
  padding: 90px 0 140px;
  position: relative;
}
.services-teaser-inner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--blue-600) 130%);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(2,10,25,0.35);
  position: relative;
  overflow: hidden;
}
.services-teaser-inner::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  top: -160px; right: -140px;
  background: radial-gradient(circle, rgba(255,146,51,0.22), transparent 70%);
  pointer-events: none;
}
.services-teaser-copy .eyebrow { color: var(--orange-500); }
.services-teaser-copy .eyebrow::before { background: var(--orange-500); }
.services-teaser-copy .section-label { color: var(--white); margin-top: 12px; }
.services-teaser-copy .section-sub { color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 460px; }
.services-teaser-copy .btn-primary { margin-top: 30px; }
.services-teaser-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.teaser-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.35s var(--ease-out);
}
.teaser-chip .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease-out);
}
.teaser-chip .icon { width: 20px; height: 20px; color: var(--white); }
.teaser-chip span { font-size: 0.84rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.teaser-chip:hover {
  background: rgba(255,119,0,0.16);
  border-color: rgba(255,119,0,0.5);
  transform: translateY(-4px);
}
.teaser-chip:hover .icon-wrap { background: var(--orange-600); transform: scale(1.08); }
@media (max-width: 1024px) {
  .services-teaser-inner { grid-template-columns: 1fr; padding: 48px 36px; }
  .services-teaser-chips { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .services-teaser-inner { padding: 36px 24px; border-radius: 22px; }
  .services-teaser-chips { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 0 140px;
  background: var(--ice-50);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.advisory-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .advisory-grid { grid-template-columns: 1fr; }
}
/* ============ ADVISORY BOARD ============ */
.advisory-board {
  padding: 90px 32px 120px;
}
.advisory-board .eyebrow { color: var(--orange-500); }
.advisory-board .eyebrow::before { background: var(--orange-500); }
.advisory-board .section-label { color: var(--white); }
.advisory-board .section-sub { color: rgba(255,255,255,0.78); }
.advisory-grid .advisor-card:nth-child(1) { animation-delay: 0.05s; }
.advisory-grid .advisor-card:nth-child(2) { animation-delay: 0.15s; }
.advisory-grid .advisor-card:nth-child(3) { animation-delay: 0.25s; }
.advisory-grid .advisor-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes advisorCardIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .advisor-card { animation: none; }
}
.advisor-card {
  animation: advisorCardIn 0.7s var(--ease-out) backwards;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 40px 30px 34px;
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 2px 14px rgba(13,30,46,0.05);
}
.advisor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(13,30,46,0.14);
}
.advisor-photo {
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--ice-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  padding: 3px;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-500));
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.advisor-card:hover .advisor-photo {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(1,160,226,0.3);
}
.advisor-photo svg { width: 38px; height: 38px; }
.advisor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: block;
}
.advisor-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy-950); }
.advisor-role {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-top: 6px;
}
.advisor-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-top: 14px;
}
.advisor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: not-allowed;
  user-select: none;
}
.advisor-linkedin svg { width: 15px; height: 15px; }
/* Once a real LinkedIn URL is added, swap the <span class="advisor-linkedin">
   for an <a href="..." target="_blank" rel="noopener noreferrer"> and this
   hover rule (scoped to <a>) will pick up automatically. */
a.advisor-linkedin:hover { border-color: var(--blue-500); color: var(--blue-600); cursor: pointer; }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 40px 30px 34px;
  position: relative;
  overflow: visible;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(13,30,46,0.05);
}
.service-card .num {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 6px 14px rgba(1,160,226,0.35);
}
.service-card:nth-child(even) .num { background: var(--orange-600); box-shadow: 0 6px 14px rgba(255,119,0,0.32); }
.service-card .icon-wrap {
  width: 58px; height: 58px;
  margin: 10px 0 22px;
  border-radius: 14px;
  background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.45s var(--ease-out);
}
.service-card:nth-child(even) .icon-wrap { background: var(--orange-600); }
.service-card:hover .icon-wrap { transform: scale(1.08) rotate(-4deg); }
.service-card .icon {
  width: 26px; height: 26px;
  color: var(--white);
}
.service-card h3 {
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--navy-950);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-card .service-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card:nth-child(even) .service-link { color: var(--orange-600); }
.service-card .link-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.service-card:nth-child(even) .link-arrow { background: var(--orange-100); color: var(--orange-600); }
.service-card:hover .link-arrow { transform: translateX(4px); background: var(--blue-600); color: var(--white); }
.service-card:nth-child(even):hover .link-arrow { background: var(--orange-600); color: var(--white); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(13,30,46,0.14);
  border-color: transparent;
}

/* ============ FLEET TEASER ============ */
.fleet {
  padding: 140px 0;
  position: relative;
}
.fleet::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    radial-gradient(ellipse 900px 600px at 100% 0%, var(--blue-100) 0%, transparent 65%),
    radial-gradient(ellipse 900px 600px at 0% 100%, var(--orange-100) 0%, transparent 65%),
    var(--white);
}
.fleet-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.fleet-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--navy-900);
  display: block;
}
.fleet-card.tall { aspect-ratio: unset; }
.fleet-card svg { width: 100%; height: 100%; }
.fleet-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.fleet-card:hover img { transform: scale(1.06); }
.fleet-card-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(7,26,48,0.85), transparent 80%);
  color: var(--white);
}
.fleet-card-info .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.fleet-card-info h4 { font-size: 1.3rem; margin-top: 8px; color: var(--white); }
.fleet-sub { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--blue-600) 130%);
  color: var(--white);
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
.cta-band-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,119,0,0.28), transparent 70%);
  top: -180px; right: -120px;
  filter: blur(10px);
  animation: driftA 20s ease-in-out infinite;
  pointer-events: none;
}
.cta-band-path {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 700px; margin: 18px auto 0; }
.cta-band .eyebrow { color: var(--orange-500); justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band-sub { color: rgba(255,255,255,0.7); max-width: 520px; margin: 20px auto 0; }
.cta-band-actions { display: flex; justify-content: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; }

/* ============ CONTACT PAGE ============ */
.contact-cards-section {
  position: relative;
  padding-top: 56px;
  overflow: hidden;
}
.contact-cards-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--blue-600) 100%);
}
/* Floating aircraft silhouette — decorative, very low opacity, slow drift */
.contact-aircraft-silhouette {
  position: absolute;
  top: 8%; right: -4%;
  width: 340px; height: 340px;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
  animation: aircraftDrift 18s ease-in-out infinite alternate;
}
@keyframes aircraftDrift {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  100% { transform: translate(-24px, 16px) rotate(3deg); }
}
.contact-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.contact-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 5px 1px rgba(255,255,255,0.35);
  animation: particleFloat 15s linear infinite;
  opacity: 0;
}
.contact-particles span:nth-child(1) { left: 10%; animation-delay: 0.5s; animation-duration: 17s; }
.contact-particles span:nth-child(2) { left: 28%; animation-delay: 3s;   animation-duration: 14s; }
.contact-particles span:nth-child(3) { left: 46%; animation-delay: 1.5s; animation-duration: 19s; }
.contact-particles span:nth-child(4) { left: 63%; animation-delay: 4.5s; animation-duration: 13s; }
.contact-particles span:nth-child(5) { left: 79%; animation-delay: 2s;   animation-duration: 16s; }
.contact-particles span:nth-child(6) { left: 92%; animation-delay: 5.5s; animation-duration: 18s; }
@media (prefers-reduced-motion: reduce) {
  .contact-aircraft-silhouette { animation: none; }
  .contact-particles { display: none; }
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0 100px;
  position: relative;
  z-index: 1;
}
.contact-info-card {
  animation: contactCardIn 0.55s var(--ease-out) backwards;
}
.contact-info-grid .contact-info-card:nth-child(1) { animation-delay: 0.05s; }
.contact-info-grid .contact-info-card:nth-child(2) { animation-delay: 0.15s; }
.contact-info-grid .contact-info-card:nth-child(3) { animation-delay: 0.25s; }
.contact-info-grid .contact-info-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes contactCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Glassmorphism cards — translucent, blurred, glowing border on hover */
.contact-info-card {
  padding: 32px 26px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  transition: all 0.35s var(--ease-out);
  display: block;
  position: relative;
}
.contact-info-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-500));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 45px rgba(2,10,25,0.4);
}
.contact-info-card:hover::before { opacity: 1; }
.contact-info-card .icon-wrap {
  margin: 0 0 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(1,160,226,0.16);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.contact-info-card:nth-child(even) .icon-wrap { background: rgba(255,119,0,0.16); }
.contact-info-card .icon-wrap::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-300);
  opacity: 0;
  animation: pulseRing 2.4s var(--ease-out) infinite;
}
.contact-info-card:nth-child(even) .icon-wrap::after { border-color: var(--orange-500); }
.contact-info-card:nth-child(2) .icon-wrap::after { animation-delay: 0.6s; }
.contact-info-card:nth-child(3) .icon-wrap::after { animation-delay: 1.2s; }
.contact-info-card:nth-child(4) .icon-wrap::after { animation-delay: 1.8s; }
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 0.55; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}
.contact-info-card .icon { width: 22px; height: 22px; color: var(--blue-300); transition: transform 0.4s var(--ease-out); }
.contact-info-card:nth-child(even) .icon { color: var(--orange-500); }
.contact-info-card:hover .icon-wrap {
  background: var(--blue-600);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 22px rgba(1,160,226,0.32);
}
.contact-info-card:nth-child(even):hover .icon-wrap {
  background: var(--orange-600);
  box-shadow: 0 10px 22px rgba(255,119,0,0.32);
}
.contact-info-card:hover .icon { color: var(--white); transform: scale(1.1); }
.contact-info-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-info-card p { font-size: 0.88rem; color: rgba(255,255,255,0.68); margin-top: 6px; }

.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-bottom: 140px;
  align-items: start;
  position: relative;
}
.contact-main::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(200deg, var(--blue-600) 0%, var(--navy-950) 55%);
}
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 24px 60px rgba(2,10,25,0.35);
}
.contact-form-wrap .eyebrow { color: var(--orange-500); }
.contact-form-wrap .eyebrow::before { background: var(--orange-500); }
.contact-form-wrap .section-label { margin-top: 8px; color: var(--white); }
#contactForm { scroll-margin-top: calc(var(--header-height) + 24px); }
.contact-form { margin-top: 36px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 22px; display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.form-field .req { color: var(--orange-500); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--navy-950);
  background: rgba(255,255,255,0.92);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(1,160,226,0.25);
}
.form-field .field-error {
  display: none;
  font-size: 0.76rem;
  color: #ff9d9d;
  margin-top: 6px;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff6b6b;
}
.form-field.has-error .field-error { display: block; }
.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  line-height: 1.5;
}
.form-note strong { color: rgba(255,255,255,0.85); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--ice-100);
  border-radius: 4px;
  font-size: 0.86rem;
  color: var(--navy-950);
}
.form-success.show { display: flex; }
.form-success.is-error {
  background: #fdeceb;
  color: #b3261e;
}
.btn:disabled { opacity: 0.65; cursor: not-allowed; pointer-events: none; }
.form-success.is-error svg circle { stroke: #b3261e; }
.form-success.is-error svg path { stroke: #b3261e; }
#formSubmit:disabled { opacity: 0.7; cursor: not-allowed; }

.contact-map {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 60px rgba(2,10,25,0.35), 0 0 0 1px rgba(1,160,226,0.1);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.9) brightness(0.95) hue-rotate(180deg); }

/* ============ SERVICE ROWS (Services page) ============ */
.service-rows {
  padding: 100px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 90px;
  position: relative;
}
.service-rows::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--blue-600) 100%);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  padding: 50px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.4s var(--ease-out);
}
.service-row:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(2,10,25,0.3);
}
.service-row.reverse .service-row-visual { order: 2; }
.service-row.reverse .service-row-copy { order: 1; }
.service-row-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-900);
}
.service-row-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.service-row:hover .service-row-visual img { transform: scale(1.05); }
.service-row-copy .num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange-500);
  letter-spacing: 0.1em;
}
.service-row-copy .section-label { margin-top: 10px; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--white); }
.service-row-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 18px;
}
.service-row-copy .about-list { margin-top: 24px; }
.service-row-copy .about-list li { color: rgba(255,255,255,0.9); }
.service-row-copy .about-list li .dot { background: var(--orange-500); }
.service-row-copy .btn { margin-top: 30px; }
.service-row-copy .btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.service-row-copy .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ============ TIMELINE (About page) ============ */
.timeline-section {
  padding: 60px 0 140px;
  position: relative;
}
.timeline-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    radial-gradient(ellipse 700px 500px at 8% 20%, var(--ice-100) 0%, transparent 55%),
    var(--white);
}
.timeline {
  margin-top: 50px;
  position: relative;
  padding-left: 100px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 62px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-500), var(--blue-500));
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 46px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-600);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-600));
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-200), 0 4px 12px rgba(255,119,0,0.25);
}
.timeline-body h4 { font-size: 1.1rem; font-weight: 600; color: var(--navy-950); }
.timeline-body p { font-size: 0.92rem; color: var(--gray-600); margin-top: 8px; line-height: 1.6; max-width: 560px; }

/* ============ MISSION / VISION (About page) ============ */
.mv-section {
  padding: 0 0 140px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.mv-card {
  background: var(--navy-950);
  color: var(--white);
  padding: 56px 44px;
}
.mv-card:first-child { background: var(--navy-900); }
.mv-card .eyebrow { color: var(--orange-500); margin-bottom: 18px; }
.mv-card .eyebrow::before { display: none; }
.mv-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
  font-family: var(--font-display);
}

/* ============ FOOTER ============ */
.footer {
  background:
    linear-gradient(180deg, rgba(13,30,46,0.94) 0%, rgba(13,30,46,0.98) 100%),
    url('../assets/video/hero-poster.jpg') center 30% / cover no-repeat;
  color: rgba(255,255,255,0.7);
  padding: 90px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.6; }
.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  transition: all 0.3s var(--ease-out);
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255,119,0,0.3);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ REVEAL ANIMATION HOOK ============ */
.reveal { opacity: 0; transform: translateY(36px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-preview { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-sub { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .float-badge { font-size: 0.7rem; padding: 9px 16px; }
  .float-badge-1 { top: 14%; right: 4%; }
  .float-badge-2 { top: 66%; right: 5%; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  :root { --nav-height: 68px; --topbar-height: 0px; }

  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-plane-box { display: none; }
  .nav-toggle { display: flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ice-50);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0.5s;
  }
  .mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0s;
  }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--navy-950);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .mobile-menu a.active { color: var(--orange-600); }
  .mobile-menu .btn { margin-top: 30px; width: fit-content; }
  .mobile-menu-social { display: flex; gap: 14px; margin-top: 34px; }
  .mobile-menu-social a {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    color: var(--navy-950);
  }
  .mobile-menu-social a svg { width: 19px; height: 19px; }

  .hero-headline { margin-top: 20px; }
  .hero-meta { gap: 26px; margin-top: 60px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .scroll-cue { display: none; }
  .hero-floaters { display: none; }
  #flight-path-svg { display: none; }
  .hero-content { padding-bottom: 60px; }
  .ticker-track { font-size: 0.64rem; gap: 14px; }
  .hero-ticker { padding: 12px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding-left: 16px; }

  .about-preview { padding: 90px 0; }
  .services { padding: 80px 0 90px; }
  .services-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }

  .fleet { padding: 90px 0; }
  .fleet-sub { grid-template-columns: 1fr; }

  .cta-band { padding: 80px 0; }

  .contact-info-grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 0 60px; }
  .contact-main { grid-template-columns: 1fr; gap: 40px; padding-bottom: 90px; }
  .contact-map { position: static; aspect-ratio: 16/10; }
  .form-row { grid-template-columns: 1fr; }

  .service-rows { gap: 70px; padding: 60px 0 40px; }
  .service-row { grid-template-columns: 1fr; gap: 30px; padding: 26px; }
  .service-row.reverse .service-row-visual { order: 1; }
  .service-row.reverse .service-row-copy { order: 2; }

  .timeline { padding-left: 70px; margin-top: 36px; }
  .timeline::before { left: 42px; }
  .timeline-year { left: -70px; width: 56px; font-size: 0.72rem; }
  .timeline-item::before { left: -26px; }
  .timeline-section { padding: 40px 0 90px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 40px 26px; }
  .mv-card h3 { font-size: 1.25rem; }

  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; }
}

/* ============ KINETIC TYPE: word-rise reveal ============ */
.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.word {
  display: inline-block;
  will-change: transform;
}
.section-label .word { will-change: transform; }

/* ============ AMBIENT MOVING BACKGROUND ============ */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 {
  width: 480px; height: 480px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, var(--blue-300), transparent 70%);
  animation: driftA 22s ease-in-out infinite;
}
.blob-2 {
  width: 560px; height: 560px;
  bottom: -200px; right: -120px;
  background: radial-gradient(circle, var(--orange-600), transparent 70%);
  opacity: 0.22;
  animation: driftB 26s ease-in-out infinite;
}
.blob-3 {
  width: 340px; height: 340px;
  top: 40%; right: 12%;
  background: radial-gradient(circle, var(--blue-500), transparent 70%);
  opacity: 0.18;
  animation: driftA 30s ease-in-out infinite reverse;
}
@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-24px, 50px) scale(0.96); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -35px) scale(1.1); }
}

/* ============ CLIP-PATH CARD REVEAL (Our Work section + About photo) ============ */
.fleet-card, .clip-reveal-el {
  clip-path: inset(0 0 0 0);
}
.fleet-card.clip-reveal img {
  will-change: transform, clip-path;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .blob { animation: none !important; }
}
/* Full pre-designed banner image used for About/Services/Our Work/Gallery/
   Contact hero — the image already contains its own headline, description
   and branding, so it's shown in full (never cropped) rather than as a
   cover-background. The header sits fixed on top with a dark backdrop so
   nav stays readable regardless of what's at the top of the image.

   Three nested layers so effects compose instead of fighting each other:
   .page-banner-hero   → static container, clips overflow
     .banner-parallax  → JS sets translateY here on scroll (see main.js)
       .banner-zoom    → CSS Ken Burns pan+zoom animation lives here
         <img> + .banner-hotspots  → both children, so both automatically
                                     inherit the parallax + zoom transforms
                                     and stay perfectly aligned with each
                                     other at all times. */
/* Cinematic background layer system for About/Services/Our Work/Gallery/
   Contact page-heroes — a real photo (not a baked banner) sits behind real
   HTML heading/paragraph text. Two nested wrappers so effects compose:
     .hero-bg-wrap   → JS sets translateY here on scroll (see main.js)
       .hero-bg-zoom → CSS Ken Burns pan+zoom + fade-in lives here
         .hero-bg-image (the actual <img>, absolutely positioned, cover) */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
  z-index: 0;
}
.hero-bg-zoom {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* Placeholder gradient — shows until a real <img class="hero-bg-image">
     is added inside this element (see the HTML comment marking where). */
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--blue-600) 100%);
  animation: bannerFadeIn 1.2s ease-out forwards, bannerKenBurns 26s ease-in-out 1.2s infinite alternate;
}
@keyframes bannerFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bannerKenBurns {
  0%   { transform: scale(1) translateX(0); }
  50%  { transform: scale(1.09) translateX(-1.2%); }
  100% { transform: scale(1.16) translateX(1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-zoom { animation: bannerFadeIn 0.6s ease-out forwards; opacity: 0; }
}
/* Soft floating particles — pure CSS, GPU-friendly (transform+opacity only) */
.banner-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.banner-particles span {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 6px 1px rgba(255,255,255,0.4);
  animation: particleFloat 14s linear infinite;
  opacity: 0;
}
.banner-particles span:nth-child(1) { left: 6%;  animation-delay: 0s;   animation-duration: 16s; }
.banner-particles span:nth-child(2) { left: 18%; animation-delay: 2.2s; animation-duration: 13s; }
.banner-particles span:nth-child(3) { left: 31%; animation-delay: 4.5s; animation-duration: 18s; }
.banner-particles span:nth-child(4) { left: 47%; animation-delay: 1.1s; animation-duration: 15s; }
.banner-particles span:nth-child(5) { left: 61%; animation-delay: 6s;   animation-duration: 12s; }
.banner-particles span:nth-child(6) { left: 74%; animation-delay: 3.3s; animation-duration: 17s; }
.banner-particles span:nth-child(7) { left: 86%; animation-delay: 5.5s; animation-duration: 14s; }
.banner-particles span:nth-child(8) { left: 94%; animation-delay: 0.8s; animation-duration: 19s; }
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-620px) translateX(18px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .banner-particles { display: none; }
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 60px;
  background:
    radial-gradient(ellipse 800px 400px at 90% 0%, var(--orange-100) 0%, transparent 55%),
    linear-gradient(180deg, #eaf2fb 0%, var(--white) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1, .page-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 16px;
  max-width: 700px;
}
.page-hero p.section-sub { margin-top: 20px; max-width: 560px; }
.gallery-stats {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.gallery-stat { font-family: var(--font-mono); }
.gallery-stat .val {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-950);
  display: block;
}
.gallery-stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

/* ============ PAGE-HERO VIDEO VARIANT (About / Services / Contact) ============ */
.page-hero.has-video {
  padding: calc(var(--header-height) + 120px) 0 90px;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
}
.page-hero.has-video .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero.has-video .hero-video-overlay {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7,20,34,0.78) 0%, rgba(7,20,34,0.6) 45%, rgba(7,20,34,0.88) 100%);
}
.page-hero.has-video .eyebrow { color: var(--orange-500); }
.page-hero.has-video .eyebrow::before { background: var(--orange-500); }
.page-hero.has-video h1, .page-hero.has-video .page-title { color: var(--white); }
.page-hero.has-video p.section-sub { color: rgba(255,255,255,0.82); }
.page-hero.has-video .gallery-stats { border-top-color: rgba(255,255,255,0.18); }
.page-hero.has-video .gallery-stat .val { color: var(--white); }
.page-hero.has-video .gallery-stat .lbl { color: rgba(255,255,255,0.6); }
.page-hero.has-video .hero-blobs { opacity: 0.7; }

/* Filter tabs */
.gallery-body {
  position: relative;
  padding-top: 56px;
}
.gallery-body::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(180deg, var(--ice-50) 0%, #ffffff 320px);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 0 50px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--gray-600);
  transition: all 0.3s var(--ease-out);
  background: var(--ice-100);
  animation: filterChipIn 0.5s var(--ease-out) backwards;
}
.gallery-filters .filter-btn:nth-child(1) { animation-delay: 0.02s; }
.gallery-filters .filter-btn:nth-child(2) { animation-delay: 0.08s; }
.gallery-filters .filter-btn:nth-child(3) { animation-delay: 0.14s; }
.gallery-filters .filter-btn:nth-child(4) { animation-delay: 0.2s; }
.gallery-filters .filter-btn:nth-child(5) { animation-delay: 0.26s; }
.gallery-filters .filter-btn:nth-child(6) { animation-delay: 0.32s; }
@keyframes filterChipIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.filter-btn:hover { border-color: var(--orange-600); color: var(--navy-950); }
.filter-btn.active {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255,119,0,0.3);
}

/* Masonry grid via CSS columns */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 18px;
  padding-bottom: 120px;
}
.masonry-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ice-100);
  display: block;
  height: 100%;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-500));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
.masonry-item:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 26px 50px rgba(13,30,46,0.22);
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item {
  animation: masonryIn 0.6s var(--ease-out) backwards;
}
.masonry .masonry-item:nth-child(1) { animation-delay: 0.03s; }
.masonry .masonry-item:nth-child(2) { animation-delay: 0.08s; }
.masonry .masonry-item:nth-child(3) { animation-delay: 0.13s; }
.masonry .masonry-item:nth-child(4) { animation-delay: 0.18s; }
.masonry .masonry-item:nth-child(5) { animation-delay: 0.23s; }
.masonry .masonry-item:nth-child(6) { animation-delay: 0.28s; }
@keyframes masonryIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .masonry-item { animation: none; }
}

/* Featured / press card — spans a larger, clearly highlighted tile */
.masonry-item.tall { grid-row: span 2; }
.masonry-item.featured {
  grid-column: span 2;
  grid-row: span 3;
  border: 2px solid var(--orange-500);
  box-shadow: 0 0 0 5px rgba(255,119,0,0.12), 0 24px 50px rgba(13,30,46,0.22);
}
.masonry-item.featured img { object-fit: cover; object-position: center; }
.press-ribbon {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255,119,0,0.35);
}
.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,26,48,0.82) 0%, rgba(7,26,48,0.1) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item .overlay .tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.masonry-item .overlay h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-top: 6px;
}
.masonry-item .expand-icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(7,26,48,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s var(--ease-out);
}
.masonry-item:hover .expand-icon { opacity: 1; transform: scale(1); }
.masonry-item.filtered-out { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 26, 0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  max-width: 88vw;
  max-height: 82vh;
  position: relative;
}
.lightbox-inner img {
  max-width: 88vw;
  max-height: 74vh;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}
.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 18px;
}
.lightbox-caption .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.lightbox-caption h4 { color: var(--white); margin-top: 6px; font-size: 1.15rem; }
.lightbox-close, .lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-out);
  z-index: 510;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 28px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .masonry-item.featured { grid-column: span 1; grid-row: span 1; }
  .page-hero { padding: calc(var(--header-height) + 40px) 0 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 16px; right: 16px; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry-item.featured { grid-column: span 2; grid-row: span 2; }
}