:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #d8dee8;
  --brand: #0f67c6;
  --brand-soft: #eaf3ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Blue themed scrollbar */
* {
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.is-loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  text-align: center;
  color: #0f172a;
}

.loading-logo-wrap {
  width: min(240px, 56vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  animation: logoHalo 2.4s ease-in-out infinite;
}

.loading-logo {
  width: 90%;
  display: block;
  margin: 0;
  filter: drop-shadow(0 8px 18px rgba(14, 116, 216, 0.16));
  animation: logoFloat 2.4s ease-in-out infinite;
}

.loading-brand {
  margin: 4px 0 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 4.6vw, 2.25rem);
  letter-spacing: 1.1px;
  color: #0f172a;
  line-height: 1;
}

.loading-slogan {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.55rem, 1.75vw, 0.78rem);
  letter-spacing: 2.6px;
  color: rgba(30, 58, 138, 0.72);
  text-transform: uppercase;
}

.loading-text {
  margin: 0 0 9px;
  color: #0f67c6;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.loading-bar {
  width: min(250px, 62vw);
  height: 2px;
  margin: 0 auto;
  background: #e5edf8;
  border-radius: 999px;
  overflow: hidden;
}

.loading-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #0f67c6, #3b82f6, #0f67c6);
  border-radius: inherit;
  animation: loadingMove 1.25s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-7px) scale(1.015); }
}

@keyframes logoHalo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.015); opacity: 0.96; }
}

@keyframes loadingMove {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

.section-pad {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 56px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0));
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4vw;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.brand {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  margin-left: clamp(0px, 3vw, 42px);
}

.brand-mark {
  width: clamp(50px, 5vw, 64px);
  height: clamp(50px, 5vw, 64px);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(1px);
  min-width: 0;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  letter-spacing: 0.35px;
  display: block;
  line-height: 0.98;
  margin-bottom: 1px;
  font-weight: 700;
}

.brand small {
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(0.5rem, 0.8vw, 0.56rem);
  letter-spacing: 1.1px;
  line-height: 0.88;
  margin-top: 0;
  display: block;
  width: auto;
  text-align: center;
}

.brand small::after {
  content: none;
}

.main-nav {
  display: flex;
  gap: 22px;
  margin-right: clamp(0px, 4vw, 64px);
}

.main-nav a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
}

.main-nav a:hover {
  color: #fff;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #dbe4f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 4vw;
}

.site-header.scrolled .brand {
  color: #0f172a;
}

.site-header.scrolled .brand small {
  color: #64748b;
}

.site-header.scrolled .main-nav a {
  color: #334155;
}

.site-header.scrolled .main-nav a:hover {
  color: #0f67c6;
}

.menu-btn {
  display: none;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  padding-top: 0;
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #020817;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: "Rajdhani", sans-serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0.3px;
}

h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
}

p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 12px;
}

.hero-copy {
  max-width: 860px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 0 0 auto;
  transform: none;
  padding: 120px 0 42px;
  padding-right: clamp(20px, 7vw, 130px);
  display: grid;
  justify-items: end;
  align-content: center;
  text-align: right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
  z-index: 1;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #f8fafc;
}

#heroType {
  min-height: 1.2em;
  max-width: min(20ch, 100%);
  margin-left: auto;
  margin-right: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 6.2vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: 600;
}

#heroType .hero-line {
  display: block;
}

#heroType .hero-welcome {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
}

#heroType .hero-seer {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

#heroType .hero-aviation {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
}

.hero-fade.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 13px 24px;
  min-width: 190px;
  text-align: center;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.1;
}

.btn-primary {
  background: #0f67c6;
  color: #fff;
}

.btn-primary:hover {
  background: #0a4e97;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.about,
.profile,
.notes,
.inquiry {
  border-top: 1px solid var(--line);
}

.about > div {
  max-width: 1040px;
  margin: 0 auto;
}

.about .eyebrow,
.about h2 {
  text-align: center;
}

.about p {
  text-align: justify;
  text-justify: inter-word;
}

.affiliations-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 6px;
  -webkit-overflow-scrolling: touch;
}

.aff-badge {
  margin: 0;
  min-width: 180px;
  flex: 0 0 180px;
  max-width: 180px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.aff-badge img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.aff-badge figcaption {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
  color: rgba(47, 65, 90, 0.86);
  font-weight: 500;
}

.aff-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.profile > .eyebrow,
.profile > h2 {
  text-align: center;
}

.profile > .eyebrow {
  margin-bottom: 8px;
}

.profile > h2 {
  margin-bottom: 18px;
}

.profile-cards article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  text-align: center;
}

.profile-cards article h3 {
  text-align: center;
}

.profile-cards article:hover {
  border-color: #7bb7f3;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 0 0 1px rgba(64, 156, 255, 0.16), 0 14px 30px rgba(64, 156, 255, 0.2);
  transform: translateY(-6px) scale(1.018);
}

.cap-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #0f67c6;
  margin-bottom: 10px;
}

.cap-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.notes-intro {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.notes > .eyebrow,
.notes > h2 {
  text-align: center;
}

.fleet-grid {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d8e5f6;
  background: #0b1220;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.fleet-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.22) 55%, rgba(2, 6, 23, 0.05));
  transition: background 0.45s ease;
}

.fleet-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
  color: #fff;
}

.fleet-tag {
  display: inline-block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(15, 103, 198, 0.95);
  margin-bottom: 10px;
}

.fleet-card-overlay h3 {
  font-size: 2rem;
  margin: 0 0 8px;
  color: #fff;
}

.fleet-desc {
  color: rgba(226, 232, 240, 0.96);
  margin: 0;
  opacity: 0;
  max-height: 0;
  transform: translateY(12px);
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.45s ease;
}

.fleet-card:hover .fleet-card-media {
  transform: scale(1.2);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(2, 6, 23, 0.28);
}

.fleet-card:hover::after {
  background: linear-gradient(to top, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.35) 58%, rgba(2, 6, 23, 0.08));
}

.fleet-card:hover .fleet-desc {
  opacity: 1;
  max-height: 140px;
  transform: translateY(0);
}

.inquiry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.inquiry-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-intro .eyebrow,
.inquiry-intro h2 {
  text-align: center;
}

.inquiry-intro p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.inquiry-form {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d4dfef;
  border-radius: 12px;
  padding: 22px;
  display: grid;
  gap: 14px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form textarea {
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  padding: 12px 13px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(71, 85, 105, 0.54);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #7eb3ea;
  box-shadow: 0 0 0 3px rgba(15, 103, 198, 0.14);
  transform: translateY(-1px);
}

#formStatus {
  margin: 0;
  min-height: 20px;
}

.form-status {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.success {
  color: #0f766e;
}

.form-status.error {
  color: #b42318;
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid #d9e4f3;
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f6fc 100%);
  padding: 44px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  color: rgba(51, 65, 85, 0.82);
}

.footer-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-brand h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: rgba(15, 23, 42, 0.9);
}

.site-footer h4 {
  margin: 6px 0 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(15, 103, 198, 0.78);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
  letter-spacing: 0.1px;
  color: rgba(51, 65, 85, 0.78);
}

.site-footer a {
  color: rgba(51, 65, 85, 0.8);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #0f67c6;
}

.footer-bottom {
  width: min(1100px, 92vw);
  margin: 28px auto 0;
  padding-top: 14px;
  border-top: 1px solid #d9e4f3;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(100, 116, 139, 0.76);
  font-size: 0.76rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #0f67c6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #bcd0eb;
  color: #0f67c6;
  background: radial-gradient(circle at 30% 25%, #ffffff, #edf4ff 70%);
  box-shadow: 0 6px 14px rgba(15, 103, 198, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
  border-color: #0f67c6;
  background: linear-gradient(135deg, #0f67c6 0%, #0891ff 100%);
  box-shadow: 0 10px 22px rgba(15, 103, 198, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.35s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  .profile-cards {
    grid-template-columns: 1fr;
  }

  .inquiry {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aff-badge {
    min-width: 160px;
    flex: 0 0 160px;
    max-width: 160px;
  }

  .fleet-card {
    min-height: 320px;
  }

  .fleet-desc {
    opacity: 1;
    max-height: 140px;
    transform: none;
  }

  .hero-overlay {
    width: min(90vw, 760px);
    margin: 0 0 24px auto;
    transform: none;
    padding: 90px 0 8px;
    padding-right: clamp(14px, 4vw, 42px);
    justify-items: end;
    text-align: right;
  }

}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 10px 4vw;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .brand {
    margin-left: 0;
  }

  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 34px;
    height: 30px;
    padding: 0;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
  }

  .site-header.scrolled .menu-btn {
    color: #0f172a;
  }

  .menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    left: 4vw;
    right: 4vw;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border: 1px solid #d9e5f5;
    border-radius: 14px;
    padding: 12px 10px;
    margin-right: 0;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    z-index: 60;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: #1e293b;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    color: #0f67c6;
    background: #eef5ff;
  }

  .brand small {
    display: block;
    font-size: 0.46rem;
    letter-spacing: 0.9px;
    line-height: 1;
    opacity: 0.92;
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero-overlay {
    width: 92vw;
    margin: 0 auto 18px;
    transform: none;
    padding: 94px 0 18px;
    justify-items: center;
    text-align: center;
    padding-right: 0;
  }

  #heroType {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    font-size: 0.96rem;
    line-height: 1.62;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .btn {
    min-width: 0;
    width: calc(50% - 6px);
    font-size: 0.98rem;
    padding: 12px 14px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fleet-card {
    min-height: 280px;
    cursor: pointer;
  }

  .fleet-card .fleet-tag {
    display: none;
  }

  .fleet-card .fleet-desc {
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    overflow: hidden;
    margin-top: 0;
    transition: opacity 0.28s ease, max-height 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
  }

  .fleet-card.is-open .fleet-desc {
    opacity: 1;
    max-height: 140px;
    transform: translateY(0);
    margin-top: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding: 30px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer h4 {
    margin: 4px 0 8px;
  }

  .site-footer ul {
    gap: 6px;
    font-size: 0.86rem;
  }

  .footer-social {
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    font-size: 0.74rem;
  }

  .affiliations-strip {
    gap: 16px;
  }

  .aff-badge {
    min-width: 142px;
    flex: 0 0 142px;
    max-width: 142px;
    padding: 0;
  }

  .aff-badge img {
    width: 108px;
    height: 108px;
  }

  .aff-badge figcaption {
    font-size: 0.74rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 4vw;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 0.98rem;
    line-height: 0.95;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    width: 94vw;
    padding-top: 84px;
  }

  #heroType {
    max-width: 13ch;
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .hero p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
    font-size: 0.98rem;
  }

  .fleet-card {
    min-height: 270px;
  }

  .inquiry-form {
    padding: 14px;
  }

  .footer-bottom {
    font-size: 0.74rem;
  }

  .affiliations-strip {
    justify-content: flex-start;
    gap: 12px;
  }

  .aff-badge {
    min-width: 128px;
    flex: 0 0 128px;
    max-width: 128px;
  }

  .aff-badge img {
    width: 96px;
    height: 96px;
  }
}

/* Tablet landscape / smaller laptops */
@media (min-width: 761px) and (max-width: 1180px) {
  .section-pad {
    width: min(1120px, 93vw);
  }

  .hero-overlay {
    transform: none;
    width: min(980px, 92vw);
  }

  #heroType {
    font-size: clamp(2.2rem, 5.4vw, 4.2rem);
    max-width: 15ch;
  }

  .btn {
    min-width: 176px;
    font-size: 1rem;
  }
}

/* MacBook / desktop large */
@media (min-width: 1440px) {
  .section-pad {
    width: min(1380px, 90vw);
  }

  .hero-overlay {
    width: min(1320px, 88vw);
    transform: none;
    padding-top: 130px;
    padding-right: clamp(28px, 8vw, 170px);
  }

  #heroType {
    font-size: clamp(3rem, 5vw, 5.4rem);
    max-width: 17ch;
  }

  .hero p {
    font-size: 1.22rem;
  }

  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

/* 2K screens */
@media (min-width: 1920px) {
  .section-pad {
    width: min(1560px, 88vw);
  }

  .site-header {
    padding-inline: 3.2vw;
  }

  .hero-overlay {
    width: min(1500px, 86vw);
    transform: none;
    padding-top: 148px;
    padding-right: clamp(32px, 9vw, 210px);
  }

  #heroType {
    font-size: clamp(3.4rem, 4.8vw, 6rem);
  }

  .hero p {
    font-size: 1.28rem;
    max-width: 62ch;
  }

  .profile-cards {
    gap: 18px;
  }

  .fleet-card {
    min-height: 420px;
  }
}

/* 4K / ultra-wide */
@media (min-width: 2560px) {
  .section-pad {
    width: min(1880px, 84vw);
    padding-block: 68px;
  }

  .hero-overlay {
    width: min(1800px, 82vw);
    transform: none;
    padding-top: 168px;
    padding-bottom: 56px;
    padding-right: clamp(40px, 10vw, 260px);
  }

  #heroType {
    font-size: clamp(4.1rem, 4.4vw, 7rem);
    line-height: 1.03;
  }

  .hero p {
    font-size: 1.36rem;
  }

  .btn {
    min-width: 220px;
    font-size: 1.12rem;
    padding: 14px 28px;
  }

  .fleet-card {
    min-height: 470px;
  }

  .footer-grid,
  .footer-bottom {
    width: min(1880px, 84vw);
  }
}
