/* ==========================================================================
   Akitu Aviation — site stylesheet
   One stylesheet for the whole site (replaces home.css, new.css, branches.css,
   services.css, charter.css, hej.css, w3.css and Bootstrap).
   ========================================================================== */

/* Self-hosted fonts (SIL Open Font License, see assets/fonts/OFL-LICENSE.txt) */
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/barlow-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-700-normal.woff2") format("woff2"); }

:root {
  --navy-900: #0e1a2b;   /* night apron */
  --navy-800: #15243a;
  --navy-700: #1f3150;
  --steel-600: #4a5566;
  --steel-500: #5b6675;
  --line: #d9dee5;
  --line-dark: rgba(255, 255, 255, .14);
  --concrete: #eef1f4;
  --white: #ffffff;
  --ink: #17212f;
  --gold: #c89b45;       /* from the Akitu logo */
  --gold-300: #e2bf78;
  --gold-700: #8a6424;   /* gold for text on white (AA) */
  --danger: #b3261e;
  --ok: #1d6b45;

  --font-body: "Barlow", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Barlow Semi Condensed", "Barlow", "Arial Narrow", "Segoe UI", Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.1rem, 3.5vw, 2rem);
  --radius-s: 4px;
  --radius-m: 8px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
picture img { width: 100%; }
a { color: var(--navy-700); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--gold-700); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4, .h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.45rem); }
h3 { font-size: 1.3rem; }
h4, .h4 { font-size: 1.15rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
[hidden] { display: none !important; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--gold); color: var(--navy-900); padding: .6rem 1rem; border-radius: var(--radius-s);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px; padding: .7rem 1.35rem;
  border: 1.5px solid transparent; border-radius: var(--radius-s);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; line-height: 1.1;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-300); color: var(--navy-900); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-lg { min-height: 54px; padding: .85rem 1.8rem; font-size: 1.12rem; }
.btn-block { width: 100%; }
.text-link {
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--navy-900); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}
.text-link:hover { color: var(--gold-700); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand img { width: auto; height: 46px; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border: 0; background: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--navy-900); text-decoration: none; border-radius: var(--radius-s);
}
.nav-link:hover, .nav-item.is-open > .nav-link { color: var(--gold-700); }
.nav-item.is-current > .nav-link { box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.chev { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav-item.is-open .chev { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: -.5rem; min-width: 260px;
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  box-shadow: 0 18px 40px -18px rgba(14,26,43,.35);
  padding: .9rem; display: none;
}
.nav-item.is-open > .menu { display: block; }
.is-wide > .menu { display: none; grid-template-columns: 1fr 1fr; gap: .25rem 1.5rem; min-width: 540px; left: 50%; transform: translateX(-50%); }
.nav-item.is-wide.is-open > .menu { display: grid; }
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu a {
  display: block; padding: .45rem .6rem; border-radius: var(--radius-s);
  color: var(--ink); text-decoration: none; font-size: 1rem; line-height: 1.35;
}
.menu a:hover, .menu a[aria-current="page"] { background: var(--concrete); color: var(--navy-900); }
.menu a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold); }
.menu-title {
  margin: .2rem .6rem .35rem; font-family: var(--font-head); font-weight: 600;
  color: var(--steel-500); font-size: .92rem;
}
.menu-footer {
  grid-column: 1 / -1; margin-top: .4rem; padding-top: .7rem !important;
  border-top: 1px solid var(--line); border-radius: 0 !important; font-weight: 600;
}
.nav-toggle { display: none; }

@media (max-width: 1023px) {
  :root { --header-h: 64px; }
  .brand img { height: 38px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--radius-s);
    background: var(--white); cursor: pointer;
  }
  .nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
    display: block; width: 20px; height: 2px; background: var(--navy-900); position: relative;
    transition: transform .2s var(--ease), background-color .2s;
  }
  .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav-open .nav-toggle-bars { background: transparent; }
  .nav-open .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); padding: 1rem var(--gutter) 2rem; overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-open .site-nav { display: flex; }
  .nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 1rem .25rem; font-size: 1.2rem; }
  .nav-item.is-current > .nav-link { box-shadow: none; color: var(--gold-700); }
  .menu, .is-wide > .menu {
    position: static; transform: none; min-width: 0; box-shadow: none; border: 0;
    border-radius: 0; padding: 0 0 .8rem .25rem;
  }
  .nav-item.is-wide.is-open > .menu { display: block; }
  .menu a { padding: .6rem .5rem; font-size: 1.05rem; }
  .menu-group + .menu-group { margin-top: .5rem; }
  .nav-cta { margin-top: 1.25rem; min-height: 52px; }
}

/* ---------------------------------------------------------------- home hero */
.hero {
  position: relative; isolation: isolate; color: var(--white);
  background: var(--navy-900);
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: stretch;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide picture, .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,26,43,.94) 0%, rgba(14,26,43,.78) 42%, rgba(14,26,43,.35) 75%, rgba(14,26,43,.55) 100%),
    linear-gradient(0deg, rgba(14,26,43,.85) 0%, rgba(14,26,43,0) 40%);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3.5rem, 8vh, 6rem);
}
.hero h1 { color: var(--white); max-width: 19ch; margin-bottom: .45em; }
.hero-caption {
  min-height: 3.4em; margin: 0 0 1.9rem; max-width: 34rem;
  font-family: var(--font-head); font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500;
  color: var(--gold-300); line-height: 1.35;
}
.hero-caption span { display: block; transition: opacity .6s ease; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-dots { display: flex; gap: .5rem; margin-top: 2.2rem; }
.hero-dots button {
  width: 36px; height: 20px; padding: 0; border: 0; background: none; cursor: pointer; position: relative;
}
.hero-dots button::before {
  content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: rgba(255,255,255,.35);
}
.hero-dots button[aria-current="true"]::before { background: var(--gold); height: 3px; top: 8px; }

/* The station board — the site's signature element (airport FIDS styling). */
.board {
  background: rgba(10, 19, 32, .82);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 1.3rem 1.4rem 1rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.board-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: .8rem; border-bottom: 1px solid var(--line-dark); margin-bottom: .3rem;
}
.board-title { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--white); }
.board-sub { margin: 0; font-size: .9rem; color: rgba(255,255,255,.62); }
.board ol { list-style: none; margin: 0; padding: 0; }
.board li {
  display: grid; grid-template-columns: 4.1rem 1fr; align-items: center; gap: .9rem;
  padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.board li:last-child { border-bottom: 0; }
.board-code {
  font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; letter-spacing: .08em;
  color: var(--gold); display: inline-flex; gap: 2px;
}
.board-code b {
  display: inline-block; min-width: .95em; text-align: center; font-weight: 700;
  background: rgba(255,255,255,.05); border-radius: 2px; line-height: 1.25;
}
.board-name { font-size: 1rem; color: rgba(255,255,255,.9); line-height: 1.3; }
.board-foot { margin: .7rem 0 0; font-size: .92rem; }
.board-foot a { color: var(--gold-300); }
.board-foot a:hover { color: var(--white); }

@media (max-width: 899px) {
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 3.2rem 2.5rem; }
  .hero::after { background: linear-gradient(0deg, rgba(14,26,43,.96) 0%, rgba(14,26,43,.75) 55%, rgba(14,26,43,.55) 100%); }
  .hero h1 { max-width: 18ch; }
}
@media (max-width: 520px) {
  .board { padding: 1rem 1rem .8rem; }
  .board li { grid-template-columns: 3.7rem 1fr; gap: .7rem; }
  .board-code { font-size: 1.35rem; }
  .board-name { font-size: .95rem; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------------------------------------------------------------- sections */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-concrete { background: var(--concrete); }
.section-navy { background: var(--navy-900); color: rgba(255,255,255,.86); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--steel-600); font-size: 1.1rem; }
.section-navy .section-head p { color: rgba(255,255,255,.75); }
.section-head-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; max-width: none; }
.section-head-row > div { max-width: 46rem; }
.kicker {
  display: inline-block; margin-bottom: .7rem; padding-left: .7rem; border-left: 3px solid var(--gold);
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--gold-700); line-height: 1.2;
}
.section-navy .kicker { color: var(--gold-300); }

/* who we are */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.intro-grid .lead-strong { font-family: var(--font-head); font-size: clamp(1.6rem, 2.8vw, 2.25rem); font-weight: 600; line-height: 1.18; color: var(--navy-900); margin-bottom: .7em; }
.optimize { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 4vw, 3rem); }
.optimize p { margin: 0 0 .8rem; color: var(--steel-600); font-size: 1.05rem; }
.optimize ul { list-style: none; margin: 0; padding: 0; }
.optimize li {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05; color: var(--navy-900); letter-spacing: .01em;
}
.optimize li + li { color: var(--steel-600); }
.optimize li:last-child { color: var(--gold-700); }
@media (max-width: 899px) {
  .intro-grid { grid-template-columns: 1fr; }
  .optimize { border-left: 0; border-top: 1px solid var(--line); padding: 1.8rem 0 0; }
}

/* FBO feature */
.feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mosaic { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: .75rem; aspect-ratio: 5 / 4; }
.mosaic > picture { overflow: hidden; border-radius: var(--radius-s); }
.mosaic > picture:first-child { grid-row: 1 / 3; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.feature blockquote {
  margin: 0 0 1.2rem; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.2; color: var(--navy-900);
}
@media (max-width: 899px) {
  .feature { grid-template-columns: 1fr; }
  .feature .mosaic { order: 2; }
}

/* service cards */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.svc-card {
  display: flex; flex-direction: column; background: var(--white); color: var(--ink);
  text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.svc-card:hover { border-color: var(--navy-900); color: var(--ink); }
.svc-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--concrete); }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-body { display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1.1rem 1.2rem; flex: 1; }
.svc-card-title { margin: 0; font-size: 1.22rem; line-height: 1.2; }
.svc-card-text { font-size: .97rem; color: var(--steel-600); line-height: 1.5; }
@media (max-width: 1099px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 799px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; } }
@media (max-width: 479px) { .svc-grid { grid-template-columns: 1fr; } }

/* charter strip */
.charter-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); }
.charter-list a {
  display: flex; flex-direction: column; gap: .5rem; padding: 1.6rem 1.4rem 1.8rem 0;
  color: rgba(255,255,255,.78); text-decoration: none; border-right: 1px solid var(--line-dark);
  transition: color .2s;
}
.charter-list a + a { padding-left: 1.4rem; }
.charter-list a:last-child { border-right: 0; }
.charter-list strong { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; color: var(--white); }
.charter-list span { font-size: .98rem; line-height: 1.5; }
.charter-list a:hover strong { color: var(--gold-300); }
@media (max-width: 899px) {
  .charter-list { grid-template-columns: 1fr 1fr; }
  .charter-list a { padding: 1.3rem 1rem 1.4rem 0; border-bottom: 1px solid var(--line-dark); }
  .charter-list a:nth-child(2n) { border-right: 0; padding-left: 1rem; }
  .charter-list a:nth-child(2n+1) { padding-left: 0; }
}
@media (max-width: 519px) {
  .charter-list { grid-template-columns: 1fr; }
  .charter-list a, .charter-list a:nth-child(2n) { border-right: 0; padding-left: 0; }
}

/* logos */
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-track { display: flex; gap: 1rem; width: max-content; animation: marquee 70s linear infinite; }
.logo-marquee:hover .logo-track, .logo-marquee:focus-within .logo-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-tile {
  flex: 0 0 auto; width: 132px; height: 132px; border: 1px solid var(--line); border-radius: var(--radius-m);
  background: var(--white); display: grid; place-items: center; overflow: hidden;
}
.logo-tile img { width: 100%; height: 100%; object-fit: contain; }
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: .9rem; list-style: none; padding: 0; margin: 0; }
.logo-grid .logo-tile { width: auto; height: auto; aspect-ratio: 1; }
.client-group + .client-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.client-group h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

/* contact band */
.contact-band { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: start; }
.contact-band h2 { margin-bottom: .3em; }
.team { border-top: 2px solid var(--gold); padding-top: 1rem; }
.team strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: .3rem; }
.team a { display: block; color: rgba(255,255,255,.86); text-decoration: none; font-size: 1.05rem; padding: .15rem 0; }
.team a:hover { color: var(--gold-300); }
@media (max-width: 899px) { .contact-band { grid-template-columns: 1fr 1fr; } .contact-band > :first-child { grid-column: 1 / -1; } }
@media (max-width: 519px) { .contact-band { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- inner pages */
.page-hero { background: var(--navy-900); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }
.page-hero::before {
  /* runway centreline dashes along the bottom edge */
  content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 3px;
  background: repeating-linear-gradient(90deg, rgba(200,155,69,.55) 0 38px, transparent 38px 76px);
}
.page-hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3.2rem, 7vw, 5.2rem);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.2vw, 3.3rem); margin-bottom: .35em; }
.page-hero .lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); max-width: 38rem; margin: 0; color: rgba(255,255,255,.8); }
.page-hero-media { border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-grid:has(> :only-child) { grid-template-columns: 1fr; }
@media (max-width: 899px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { aspect-ratio: 16 / 9; }
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .1rem .5rem; margin: 0 0 1.2rem; padding: 0; font-size: .95rem; }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: rgba(255,255,255,.4); }
.crumbs a { color: rgba(255,255,255,.72); text-decoration: none; }
.crumbs a:hover { color: var(--gold-300); }
.crumbs [aria-current] { color: var(--gold-300); }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.layout-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.5rem; }
@media (max-width: 999px) {
  .layout { grid-template-columns: 1fr; }
  .layout-aside { position: static; }
}
.prose { max-width: 46rem; }
.prose > h2 { margin-top: 0; }
.prose p { color: #273241; }
.prose .sub {
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.3; color: var(--steel-600); margin-bottom: 1rem;
}
.block + .block { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.checklist { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display: grid; gap: .1rem; }
.checklist li { position: relative; padding: .55rem 0 .55rem 2rem; border-bottom: 1px solid var(--line); }
.checklist li::before {
  content: ""; position: absolute; left: .15rem; top: 1.02rem; width: 1rem; height: .5rem;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.checklist.two-col { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
@media (max-width: 599px) { .checklist.two-col { grid-template-columns: 1fr; } }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.contact-card { background: var(--concrete); border-radius: var(--radius-m); padding: 1.5rem; border-top: 3px solid var(--gold); }
.contact-card .h4 { margin-bottom: 1rem; }
.contact-card-team { margin-bottom: 1rem; }
.contact-card-label { margin: 0; font-weight: 600; font-family: var(--font-head); font-size: 1.05rem; }
.contact-card-team a { display: block; text-decoration: none; color: var(--ink); overflow-wrap: anywhere; }
.contact-card-team a:hover { color: var(--gold-700); }
.side-nav { border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.1rem 1.1rem .7rem; }
.side-nav-title { margin: 0 0 .5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--steel-500); }
.side-nav ul { list-style: none; margin: 0; padding: 0; }
.side-nav a { display: block; padding: .45rem .6rem; margin: 0 -.6rem; text-decoration: none; color: var(--ink); border-radius: var(--radius-s); line-height: 1.35; }
.side-nav a:hover { background: var(--concrete); }
.side-nav a[aria-current="page"] { font-weight: 600; box-shadow: inset 3px 0 0 var(--gold); background: var(--concrete); }

/* two photos inside content */
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.6rem 0; }
.photo-pair picture { border-radius: var(--radius-s); overflow: hidden; aspect-ratio: 3 / 2; }
.photo-pair img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 519px) { .photo-pair { grid-template-columns: 1fr; } }

/* FBO amenities */
.amenities { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.amenities li { break-inside: avoid; padding: .5rem 0 .5rem 1.4rem; position: relative; border-bottom: 1px solid var(--line); }
.amenities li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: .55rem; height: .55rem; background: var(--gold); border-radius: 1px; }
@media (max-width: 599px) { .amenities { columns: 1; } }

/* mission / vision */
.statement { padding: 1.6rem 0 1.6rem 1.6rem; border-left: 3px solid var(--gold); margin: 0 0 1.5rem; }
.statement h2 { font-size: 1.15rem; color: var(--steel-500); margin-bottom: .4rem; }
.statement p { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.22; color: var(--navy-900); margin: 0; }

/* services hub */
.hub-group + .hub-group { margin-top: clamp(3rem, 6vw, 4.5rem); }

/* ---------------------------------------------------------------- forms */
.req-form { scroll-margin-top: calc(var(--header-h) + 20px); }
.form-section { scroll-margin-top: calc(var(--header-h) + 12px); }
.form-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: clamp(1.25rem, 4vw, 2.5rem); }
.form-panel > h2 { margin-bottom: .3rem; }
.form-intro { color: var(--steel-600); }
.form-required-note { font-size: .95rem; color: var(--steel-500); margin-bottom: 1.2rem; }
.req { color: var(--danger); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-set { border: 0; margin: 0; padding: 1.4rem 0 .4rem; border-top: 1px solid var(--line); min-width: 0; }
.form-set legend {
  float: left; width: 100%; padding: 0; margin: 0 0 1rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--navy-900);
}
.form-set legend + * { clear: both; }
.form-set-hint { color: var(--steel-500); margin-top: -.6rem; }
.form-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem 1.1rem; clear: both; }
.field { display: flex; flex-direction: column; gap: .3rem; grid-column: span 3; min-width: 0; }
.field.w-full { grid-column: 1 / -1; }
.field.w-third { grid-column: span 2; }
@media (max-width: 759px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field, .field.w-third { grid-column: span 1; }
  .field.w-full { grid-column: 1 / -1; }
}
@media (max-width: 479px) {
  .form-grid { grid-template-columns: 1fr; }
  .field, .field.w-third { grid-column: 1 / -1; }
}
.field label { font-weight: 600; font-size: .98rem; line-height: 1.3; }
.field .hint { font-size: .88rem; color: var(--steel-500); margin-top: -.25rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .6rem .8rem;
  border: 1.5px solid #c3cad4; border-radius: var(--radius-s); background: var(--white);
  font-size: 1rem; line-height: 1.4; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%230e1a2b' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 12px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel-500); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-900); box-shadow: 0 0 0 3px rgba(200,155,69,.45); }
.field input.upper { text-transform: uppercase; }
.field input.upper::placeholder { text-transform: none; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--danger); }
.error { color: var(--danger); font-size: .92rem; font-weight: 500; }
.checks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .6rem; }
@media (max-width: 759px) { .checks { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex; align-items: center; gap: .6rem; min-height: 48px; padding: .5rem .8rem;
  border: 1.5px solid #c3cad4; border-radius: var(--radius-s); cursor: pointer; font-weight: 500 !important;
  transition: border-color .15s, background-color .15s;
}
.check input { width: 18px; height: 18px; min-height: 0; margin: 0; accent-color: var(--navy-900); flex: none; }
.check:has(input:checked) { border-color: var(--navy-900); background: var(--concrete); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); margin-top: 1rem; }
.form-privacy { margin: 0; font-size: .92rem; color: var(--steel-500); }
.form-alert { border: 1.5px solid var(--danger); background: #fcf1f0; border-radius: var(--radius-s); padding: 1rem 1.2rem; margin-bottom: 1.5rem; }
.form-alert:focus { outline: 3px solid var(--danger); outline-offset: 2px; }
.form-alert p { margin: 0; font-weight: 600; color: var(--danger); }
.form-alert ul { margin: .5rem 0 0; }
.form-alert a { color: var(--ink); }
.btn[disabled] { opacity: .65; cursor: progress; }

/* thank-you / 404 */
.notice-page { text-align: left; max-width: 44rem; }
.notice-icon { width: 64px; height: 64px; margin-bottom: 1.2rem; color: var(--ok); }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); font-size: .98rem; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.2fr 1.1fr .9fr 1fr; gap: 2rem; padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.footer-brand img { width: 220px; height: auto; margin-bottom: 1rem; }
.footer-title { font-size: 1.08rem; color: var(--white); margin-bottom: 1rem; }
.site-footer address, .footer-team { display: flex; flex-direction: column; margin-bottom: 1rem; line-height: 1.5; }
.site-footer strong { color: rgba(255,255,255,.95); font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--gold-300); text-decoration: underline; }
.footer-base { border-top: 1px solid var(--line-dark); padding-block: 1.3rem; font-size: .9rem; }
.footer-base p { margin: 0; }
@media (max-width: 1099px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 699px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 459px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .logo-track { flex-wrap: wrap; width: auto; justify-content: center; }
  .logo-track [aria-hidden="true"] { display: none; }
}

@media print {
  .site-header, .site-footer, .layout-aside, .hero-slides, .form-actions { display: none !important; }
  .page-hero, .hero { background: none; color: #000; }
  .page-hero h1, .hero h1 { color: #000; }
}
