@font-face {
  font-family: "Quaria";
  src: url("https://www.aerodynamics.nl/_next/static/media/QuariaDisplay_Regular-s.p.86d900b1.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Quaria";
  src: url("https://www.aerodynamics.nl/_next/static/media/QuariaDisplay_RegularItalic-s.p.a0aed712.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Unica";
  src: url("https://www.aerodynamics.nl/_next/static/media/Unica77LLWeb_Regular-s.p.d6091cf5.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Unica";
  src: url("https://www.aerodynamics.nl/_next/static/media/Unica77LLWeb_Medium-s.p.bede0e2f.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #05275b;
  --midnight: #031c43;
  --blue: #006fff;
  --sky: #b8d8ee;
  --cloud: #f7fafc;
  --white: #ffffff;
  --ink-soft: #5b7399;
  --line: rgba(5, 39, 91, 0.14);
  --radius: 0.75rem;
  --page: clamp(1.25rem, 4.4vw, 4.5rem);
  --content: 1230px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--midnight);
  color: var(--navy);
  overflow-x: clip;
}

html.aero-preloading,
html.aero-preloading body {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--cloud);
  font-family: "Unica", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Quaria", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

em {
  font-weight: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 99px;
  background: var(--white);
  color: var(--navy);
  transition: transform 0.25s;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.eyebrow--blue {
  color: #73a9ff;
}

.eyebrow--light {
  color: #9bc0f7;
}

.section-pad {
  padding: clamp(6rem, 10vw, 10.5rem) var(--page);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  width: min(100%, var(--content));
  margin: 0 auto clamp(2.75rem, 5vw, 5rem);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.section-head h2 {
  font-size: clamp(3.4rem, 7.4vw, 7rem);
}

.text-link {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.4rem 0;
  font-weight: 600;
}

.text-link span {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.text-link:hover span {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.85rem 1.15rem 0.85rem 1.35rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.35s, background 0.35s, transform 0.35s var(--ease);
}

.button i,
.button > span:last-child {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-style: normal;
  transition: transform 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--midnight);
}

.button:hover i,
.button:hover > span:last-child {
  transform: rotate(45deg);
}

.button--light {
  background: var(--white);
  color: var(--navy);
}

.button--light:hover {
  background: #e8f0fa;
}

.button--light > span:last-child {
  background: var(--navy);
  color: var(--white);
}

.button--large {
  min-height: 3.7rem;
  padding-inline: 1.65rem 1rem;
  font-size: 1rem;
}

/* Loader */
#aero-site-preloader {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  color: var(--white);
  pointer-events: none;
  contain: strict;
}

#aero-preloader-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateZ(0);
  background: #06172f;
  will-change: mask-size, -webkit-mask-size, opacity;
  -webkit-mask-image:
    linear-gradient(#fff, #fff),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath fill='white' d='M240 13C135 13 68 71 55 170c-6 45-6 95 0 140 13 99 80 157 185 157s172-58 185-157c6-45 6-95 0-140C412 71 345 13 240 13Z'/%3E%3C/svg%3E");
  mask-image:
    linear-gradient(#fff, #fff),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath fill='white' d='M240 13C135 13 68 71 55 170c-6 45-6 95 0 140 13 99 80 157 185 157s172-58 185-157c6-45 6-95 0-140C412 71 345 13 240 13Z'/%3E%3C/svg%3E");
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-position: center, center;
  mask-position: center, center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%, 0 0;
  mask-size: 100% 100%, 0 0;
}

#aero-preloader-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  will-change: opacity, transform;
}

#aero-preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  transform: translateY(-2px);
  text-align: center;
  will-change: transform, opacity;
}

.aero-preloader-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.24em;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.18);
}

.aero-preloader-wordmark b {
  color: #83b7e8;
  font-weight: 800;
}

.aero-preloader-kicker {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  opacity: 0.62;
}

.aero-preloader-flightline {
  position: absolute;
  left: 50%;
  top: calc(50% + 74px);
  width: min(220px, 52vw);
  height: 1px;
  translate: -50% 0;
  overflow: visible;
  background: rgba(255, 255, 255, 0.18);
}

.aero-preloader-flightline::before {
  content: "";
  position: absolute;
  inset: -1px auto auto 0;
  width: var(--aero-loader-progress, 0%);
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 18px rgba(125, 183, 235, 0.55);
}

.aero-preloader-plane {
  position: absolute;
  top: 50%;
  left: var(--aero-loader-progress, 0%);
  display: grid;
  width: 21px;
  height: 21px;
  translate: -50% -50%;
  place-items: center;
  transform: rotate(90deg);
  color: var(--white);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.aero-preloader-plane svg {
  display: block;
  width: 17px;
  height: 17px;
}

.aero-preloader-count,
.aero-preloader-corner {
  position: absolute;
  bottom: clamp(18px, 3vw, 40px);
}

.aero-preloader-count {
  right: clamp(18px, 3vw, 46px);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.18em;
  opacity: 0.56;
}

.aero-preloader-corner {
  left: clamp(18px, 3vw, 46px);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.38;
}

#aero-site-preloader.aero-preloader-complete {
  display: none;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 0.9rem var(--page);
  color: var(--white);
  transition: min-height 0.45s var(--ease), background 0.45s, color 0.45s, box-shadow 0.45s;
}

.site-header.is-scrolled {
  min-height: 4.6rem;
  background: rgba(248, 251, 253, 0.9);
  box-shadow: 0 1px 0 rgba(5, 39, 91, 0.08);
  color: var(--navy);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 7rem;
  line-height: 1;
}

.brand__name {
  font-family: "Quaria", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand__sub {
  margin-top: 0.24rem;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 2.5vw, 3rem);
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.language {
  padding: 0.55rem;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.site-header:not(.is-scrolled) .button--header {
  background: var(--white);
  color: var(--navy);
}

.site-header:not(.is-scrolled) .button--header i {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: 106svh;
  min-height: 54rem;
  overflow: clip;
  background: #fff;
}

.hero__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    radial-gradient(ellipse at 50% 45%, rgba(238, 247, 252, 0.48) 0%, rgba(238, 247, 252, 0.20) 26%, rgba(238, 247, 252, 0) 52%),
    linear-gradient(180deg, rgba(5, 39, 91, 0.18) 0%, rgba(5, 39, 91, 0.05) 24%, rgba(255, 255, 255, 0.02) 62%, rgba(236, 246, 250, 0.20) 100%),
    url("https://mockup.wiwy.com/wp-content/uploads/2026/08/amsterdam-2-1.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 39, 91, 0.06), transparent 55%, rgba(255, 255, 255, 0.08));
}

.hero__stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.035) 15%,
    rgba(255, 255, 255, 0.16) 33%,
    rgba(255, 255, 255, 0.46) 54%,
    rgba(255, 255, 255, 0.80) 73%,
    rgba(255, 255, 255, 0.96) 87%,
    #fff 95%,
    #fff 100%
  );
}

.hero__cloud {
  position: absolute;
  left: 50%;
  z-index: -3;
  width: max(100%, 90rem);
  max-width: none;
  pointer-events: none;
  will-change: transform, translate, scale;
}

.hero__cloud--back {
  top: calc(7% + 452px);
  width: max(114%, 94rem);
  transform: translate3d(-50%, var(--hero-back-y, 0px), 0) scale(1.03);
  opacity: 0.72;
  animation: hero-cloud-drift-a 18s ease-in-out -6s infinite alternate;
}

.hero__cloud--middle {
  right: auto;
  bottom: -64%;
  width: max(122%, 98rem);
  transform: translate3d(calc(-50% + var(--hero-middle-x, 0px)), var(--hero-middle-y, 0px), 0) scale(1.08);
  animation: hero-cloud-drift-b 23s ease-in-out -11s infinite alternate;
}

.hero__cloud--front {
  bottom: -83%;
  width: max(132%, 102rem);
  transform: translate3d(calc(-50% + var(--hero-front-x, 0px)), var(--hero-front-y, 0px), 0) scale(1.12);
  opacity: 0.9;
  animation: hero-cloud-drift-c 29s ease-in-out -17s infinite alternate;
}

@keyframes hero-cloud-drift-a {
  from { translate: -2.2% -5px; scale: 1.012; }
  to { translate: 2.4% 8px; scale: 1.028; }
}

@keyframes hero-cloud-drift-b {
  from { translate: 2.8% 8px; scale: 1.02; }
  to { translate: -2.5% -10px; scale: 1.005; }
}

@keyframes hero-cloud-drift-c {
  from { translate: -2% -7px; scale: 1.005; }
  to { translate: 2.2% 12px; scale: 1.02; }
}

.hero__heading {
  position: absolute;
  top: calc(clamp(7.8rem, 14.5vh, 10.7rem) + 114px);
  left: 50%;
  width: min(92vw, 78rem);
  transform: translate3d(-50%, var(--hero-heading-y, 0px), 0);
  text-align: center;
  will-change: transform, opacity;
  opacity: var(--hero-heading-opacity, 1);
}

/*
 * Stronger localised atmospheric scrim. Unlike the first pass, this also
 * uses backdrop-filter so the tiny roof/window detail behind the copy is
 * genuinely softened, while a feathered mask keeps the effect cloud-like
 * rather than reading as a panel.
 */
.hero__heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 45%;
  left: 50%;
  width: min(1210px, 97vw);
  height: 37rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(3, 30, 68, 0.34) 0%, rgba(3, 30, 68, 0.18) 31%, rgba(3, 30, 68, 0.035) 53%, rgba(3, 30, 68, 0) 70%),
    radial-gradient(ellipse at 50% 61%, rgba(247, 250, 252, 0.86) 0%, rgba(247, 250, 252, 0.66) 35%, rgba(247, 250, 252, 0.34) 58%, rgba(247, 250, 252, 0.08) 76%, rgba(247, 250, 252, 0) 91%);
  -webkit-backdrop-filter: blur(3.2px) saturate(0.78) contrast(0.94);
  backdrop-filter: blur(3.2px) saturate(0.78) contrast(0.94);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.82) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 52%, rgba(0, 0, 0, 0.82) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  box-shadow: 0 0 5rem 1.8rem rgba(241, 248, 251, 0.13);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 6.3rem);
  color: var(--white);
}

.hero h1 > span {
  -webkit-text-stroke: 0.3px rgba(2, 24, 58, 0.16);
  text-shadow:
    0 2px 2px rgba(2, 24, 58, 0.34),
    0 8px 24px rgba(2, 24, 58, 0.25),
    0 18px 44px rgba(2, 24, 58, 0.14);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: -0.08em;
  color: #032a63;
  -webkit-text-stroke: 0.25px rgba(255, 255, 255, 0.28);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 3px 12px rgba(255, 255, 255, 0.78),
    0 9px 28px rgba(255, 255, 255, 0.44);
}

.hero__subtitle {
  max-width: 43.5rem;
  margin: 1.1rem auto 0;
  color: #021f4c;
  font-size: 1.51rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.012em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 2px 8px rgba(255, 255, 255, 0.88),
    0 7px 22px rgba(255, 255, 255, 0.62);
}

.hero__subtitle p {
  margin: 0;
}

.hero__subtitle p + p {
  margin-top: 0.48em;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.35rem;
  margin: 1.4rem auto 0;
  padding: 0;
  color: rgba(3, 28, 67, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 1px 7px rgba(255, 255, 255, 0.72);
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__proof li::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0.22rem rgba(0, 111, 255, 0.12);
}

.hero__cta {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.2rem;
  padding: 0.44rem 0.44rem 0.44rem 1.76rem;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.155rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 0.55rem 1.4rem rgba(1, 28, 65, 0.24),
    0 1.35rem 3.2rem rgba(1, 28, 65, 0.34);
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}

.hero__cta span {
  display: grid;
  place-items: center;
  width: 2.97rem;
  height: 2.97rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.21rem;
  transition: transform 0.35s var(--ease);
}

.hero__cta:hover {
  background: var(--midnight);
  transform: translateY(-2px);
  box-shadow: 0 1.5rem 3.5rem rgba(1, 28, 65, 0.42);
}

.hero__cta:hover span {
  transform: rotate(45deg);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
  color: rgba(5, 39, 91, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 2.4rem;
  height: 1px;
  overflow: hidden;
  background: rgba(5, 39, 91, 0.28);
}

.hero__scroll i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--navy);
  animation: scroll-line 2.1s ease-in-out infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

/* Intro: rebuilt to match the reference post-hero composition */
.intro {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 100svh;
  place-items: center;
  margin-top: -100px;
  padding: clamp(7.5rem, 17vh, 10rem) var(--page) clamp(5rem, 10vh, 8rem);
  background: linear-gradient(180deg, #fff 0%, #fff 5rem, #f8fafc 12rem, var(--cloud) 24rem);
}

.intro__inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem) 2rem;
  width: min(100%, 1076px);
  margin-inline: auto;
}

.intro__title {
  grid-column: 1 / span 5;
}

.intro__title .eyebrow {
  margin-bottom: clamp(1.7rem, 3vw, 2.2rem);
}

.intro__title h2 {
  font-size: clamp(3.6rem, 6.1vw, 6rem);
  line-height: 0.98;
}

.intro__title h2 em {
  display: inline-block;
  font-style: italic;
}

.intro__copy {
  grid-column: 5 / span 4;
  align-self: end;
  padding-bottom: 0.25rem;
}

.intro__copy > p {
  max-width: 34rem;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.62;
}

.intro__copy > p:last-of-type {
  margin-bottom: 0;
}

.comparison {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1.5rem 5rem rgba(5, 39, 91, 0.06);
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 1.15rem clamp(1.2rem, 3vw, 2.3rem);
}

.comparison__header {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison__header span:last-child,
.comparison__row strong {
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
  border-left: 1px solid currentColor;
}

.comparison__header span:last-child {
  border-left-color: rgba(255, 255, 255, 0.22);
}

.comparison__row {
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
}

.comparison__row + .comparison__row {
  border-top: 1px solid var(--line);
}

.comparison__row strong {
  border-left-color: var(--line);
  color: var(--navy);
  font-weight: 600;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.35rem;
  font-size: 0.92rem;
}

.text-button__icon {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s;
}

.text-button:hover .text-button__icon {
  transform: rotate(45deg);
  background: var(--blue);
}

/* Journey */
.journey {
  position: relative;
  height: 300vh;
  background: var(--midnight);
  color: var(--white);
}

.journey__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  height: 100svh;
  min-height: 46rem;
  padding: 6.5rem var(--page) 3.2rem;
  overflow: hidden;
}

.journey__copy {
  width: min(100%, 35rem);
  margin-left: auto;
}

.journey__copy > .eyebrow {
  margin-bottom: 2rem;
}

.journey__steps {
  position: relative;
  height: clamp(25rem, 56vh, 34rem);
}

.journey__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
  transform: translateY(2.5rem);
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
}

.journey__step.is-active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.journey__step > span {
  margin-bottom: 1.25rem;
  color: #8ca6c9;
  font-size: 0.75rem;
}

.journey__step h2 {
  font-size: clamp(3.3rem, 5.7vw, 6.1rem);
}

.journey__step h2 em {
  color: #a7c6ef;
}

.journey__step p {
  max-width: 30rem;
  margin-top: 2rem;
  color: #b8c5d8;
  line-height: 1.65;
}

.journey__counter {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.journey__counter i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--white);
  will-change: width;
}

.journey__visual {
  position: relative;
  width: min(42vw, 38rem);
  aspect-ratio: 1;
  justify-self: start;
}

.journey-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.22);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: inherit;
}

.journey-card--2 { transform: translate(7%, 7%) rotate(2deg) scale(0.94); }
.journey-card--3 { transform: translate(14%, 14%) rotate(4deg) scale(0.88); }

/* Services */
.services {
  overflow: hidden;
  background: var(--cloud);
}

.services__lead {
  width: min(100%, var(--content));
  max-width: 43rem;
  margin: calc(clamp(2.75rem, 5vw, 5rem) * -0.5) auto clamp(2.5rem, 4vw, 4rem);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.service-slider-buttons {
  justify-self: end;
}

.service-slider-buttons button:disabled {
  opacity: 0.34;
  cursor: default;
}

.service-slider-buttons button:disabled:hover {
  background: transparent;
  color: inherit;
}

.card-rail {
  display: flex;
  gap: clamp(1.2rem, 2vw, 2rem);
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 0 0 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  cursor: grab;
}

.card-rail:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 0.5rem;
}

.card-rail::-webkit-scrollbar,
.fleet-rail::-webkit-scrollbar {
  display: none;
}

.card-rail.is-dragging,
.fleet-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.service-card {
  position: relative;
  flex: 0 0 clamp(18rem, 30vw, 23.5rem);
  aspect-ratio: 0.75;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: start;
  color: var(--white);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 28, 67, 0.08) 30%, rgba(3, 28, 67, 0.9) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s;
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-card__number {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  font-size: 0.68rem;
}

.service-card__copy {
  position: absolute;
  right: 1.5rem;
  bottom: 1.55rem;
  left: 1.5rem;
  z-index: 2;
  padding-right: 0;
}

.service-card__copy h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.service-card__copy p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.service-card__copy i {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-style: normal;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-card__copy i {
  transform: rotate(45deg);
}

.rail-progress {
  width: min(calc(100% - var(--page) - var(--page)), var(--content));
  height: 2px;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  overflow: hidden;
  background: var(--line);
}

.rail-progress i {
  display: block;
  width: 12.5%;
  height: 100%;
  transform: translateX(0);
  transform-origin: left;
  background: var(--navy);
  will-change: transform;
}

/* Aircraft window: donor mask choreography, kept aspect-ratio safe. */
.window-sequence {
  position: relative;
  height: 210svh;
  min-height: 80rem;
  overflow: clip;
  background: var(--navy);
}

.window-sequence__sticky {
  --window-hole-size: 480px;
  --window-frame-size: 420px;
  --window-title-x: 100%;
  --window-title-y: 30vw;
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.aircraft-window__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #8ebbd7, #eef3f5 82%);
}

.aircraft-window__scene::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 6;
  height: 28vh;
  background: linear-gradient(180deg, transparent, rgba(252, 253, 254, 0.95));
  pointer-events: none;
}

.aircraft-window__sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.aircraft-window__cloud-row {
  position: absolute;
  left: -50vw;
  display: flex;
  width: 200vw;
  max-width: none;
  pointer-events: none;
  will-change: transform, translate, scale;
}

.aircraft-window__cloud-row img {
  flex: 0 0 100vw;
  width: 100vw;
  max-width: none;
  height: auto;
}

.aircraft-window__cloud-row--high {
  top: 8%;
  opacity: 0.86;
  transform: translate3d(var(--window-cloud-high-x, 0), var(--window-cloud-high-y, 0), 0);
  animation: window-cloud-drift-a 8.5s ease-in-out infinite alternate;
}

.aircraft-window__cloud-row--middle {
  top: 35%;
  opacity: 0.94;
  transform: translate3d(var(--window-cloud-mid-x, 0), var(--window-cloud-mid-y, 0), 0);
  animation: window-cloud-drift-b 10.5s ease-in-out infinite alternate;
}

.aircraft-window__cloud-row--low {
  top: 49%;
  transform: translate3d(var(--window-cloud-low-x, 0), var(--window-cloud-low-y, 0), 0);
  animation: window-cloud-drift-c 12.5s ease-in-out infinite alternate;
}

@keyframes window-cloud-drift-a {
  from { translate: -1.8% 0; scale: 1.02; }
  to { translate: 1.8% 0; scale: 1.045; }
}

@keyframes window-cloud-drift-b {
  from { translate: 2.2% 0; scale: 1.035; }
  to { translate: -2.1% 0; scale: 1.01; }
}

@keyframes window-cloud-drift-c {
  from { translate: -1.2% 0; scale: 1.01; }
  to { translate: 1.3% 0; scale: 1.035; }
}

.aircraft-window__haze {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.aircraft-window__headline-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  transform: translate3d(var(--window-title-x), var(--window-title-y), 0);
  pointer-events: none;
  will-change: transform;
}

.aircraft-window__headline {
  width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Quaria", Georgia, serif;
  max-width: 92vw;
  margin-inline: auto;
  font-size: clamp(3.7rem, 5.6vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.052em;
  text-align: center;
  white-space: normal;
}

.aircraft-window__mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--midnight);
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(#fff, #fff), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath fill='white' d='M240 13C135 13 68 71 55 170c-6 45-6 95 0 140 13 99 80 157 185 157s172-58 185-157c6-45 6-95 0-140C412 71 345 13 240 13Z'/%3E%3C/svg%3E");
  mask-image: linear-gradient(#fff, #fff), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'%3E%3Cpath fill='white' d='M240 13C135 13 68 71 55 170c-6 45-6 95 0 140 13 99 80 157 185 157s172-58 185-157c6-45 6-95 0-140C412 71 345 13 240 13Z'/%3E%3C/svg%3E");
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-position: center, center;
  mask-position: center, center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%, var(--window-hole-size) var(--window-hole-size);
  mask-size: 100% 100%, var(--window-hole-size) var(--window-hole-size);
  will-change: mask-size;
}

.aircraft-window__frame-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.aircraft-window__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--window-frame-size);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 32px rgba(1, 17, 43, 0.22));
  will-change: width;
}

/* Globe: donor composition with the lightweight progressive renderer. */
.globe-section {
  position: relative;
  min-height: 145svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.globe-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 71%, rgba(48, 125, 202, 0.36), transparent 35%),
    linear-gradient(180deg, #0a315f 0%, var(--navy) 26%, var(--midnight) 100%);
}

.globe-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 34vh;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 24, 49, 0.14) 44%, var(--midnight) 100%);
  pointer-events: none;
}

.globe-section__clouds {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  overflow: hidden;
  pointer-events: none;
}

.globe-cloud {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 1.2rem 2.7rem rgba(2, 18, 42, 0.08));
  will-change: transform;
}

.globe-cloud--left {
  bottom: 3%;
  left: -11%;
  width: min(47vw, 41rem);
  opacity: 0.78;
  animation: globe-cloud-drift-right 52s ease-in-out infinite alternate;
}

.globe-cloud--band {
  right: -8%;
  bottom: 19%;
  width: min(52vw, 46rem);
  opacity: 0.54;
  animation: globe-cloud-drift-left 74s ease-in-out infinite alternate;
}

.globe-cloud--puff {
  right: 9%;
  bottom: 7%;
  width: min(27vw, 23rem);
  opacity: 0.5;
  animation: globe-cloud-drift-right-soft 86s ease-in-out infinite alternate;
}

.globe-cloud--right {
  right: -14%;
  bottom: -1%;
  width: min(38vw, 34rem);
  opacity: 0.58;
  transform: scaleX(-1);
  animation: globe-cloud-drift-left-soft 63s ease-in-out infinite alternate;
}

@keyframes globe-cloud-drift-right {
  from { transform: translate3d(-1vw, 0, 0) rotate(-1.5deg); }
  to { transform: translate3d(4vw, 0, 0) rotate(0.8deg); }
}

@keyframes globe-cloud-drift-left {
  from { transform: translate3d(2vw, 0, 0) rotate(1.4deg); }
  to { transform: translate3d(-3.5vw, 0, 0) rotate(-0.6deg); }
}

@keyframes globe-cloud-drift-right-soft {
  from { transform: translate3d(-0.8vw, 0, 0) scale(0.985); }
  to { transform: translate3d(2.2vw, 0, 0) scale(1.02); }
}

@keyframes globe-cloud-drift-left-soft {
  from { transform: translate3d(1.2vw, 0, 0) scaleX(-1) scale(0.99); }
  to { transform: translate3d(-2.8vw, 0, 0) scaleX(-1) scale(1.015); }
}

.globe-section__copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - var(--page) - var(--page)), 52rem);
  margin: 0 auto;
  padding-top: clamp(6.5rem, 12vh, 9.5rem);
  text-align: center;
}

.globe-section__mark {
  display: block;
  width: clamp(3.8rem, 5vw, 4.8rem);
  height: auto;
  margin: 0 auto 2rem;
  color: var(--white);
}

.globe-section__copy h2 {
  font-size: clamp(4.4rem, 8.5vw, 8.7rem);
}

.globe-section__copy h2 em {
  color: #a9c8f0;
}

.globe-section__copy > p:last-child {
  width: min(100%, 34rem);
  margin: 1.75rem auto 0;
  color: #d0d9e5;
  font-size: 1.03rem;
}

.globe-wrap {
  position: relative;
  z-index: 2;
  width: min(82vw, 43.9rem);
  aspect-ratio: 1;
  margin: clamp(-2.1rem, -2.2vh, 0rem) auto -8%;
  transform: translate3d(0, var(--globe-shift, 10%), 0);
  will-change: transform;
}

.route-visual {
  display: grid;
  place-items: center;
}

.route-visual__image {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 1.4rem 2.8rem rgba(0, 14, 37, 0.34));
}

#aero-globe-root {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: visible;
  background: radial-gradient(circle at 50% 48%, rgba(69, 142, 210, 0.12), rgba(6, 30, 67, 0.04) 48%, transparent 72%);
}

.aero-globe-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 82%;
  height: 82%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 0 1.6rem rgba(36, 126, 224, 0.3));
  opacity: 1;
  transition: opacity 0.45s ease;
}

#aero-globe-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
  opacity: 0;
  transition: opacity 0.45s ease;
}

#aero-globe-root.is-interactive .aero-globe-poster {
  opacity: 0;
}

#aero-globe-root.is-interactive #aero-globe-canvas,
#aero-globe-root.is-interactive #aero-globe-pins {
  opacity: 1;
}

#aero-globe-canvas.is-dragging,
#aero-globe-canvas:active {
  cursor: grabbing;
}

#aero-globe-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.aero-globe-pin {
  position: absolute;
  display: grid;
  width: 40px;
  height: 49px;
  place-items: center;
  filter: drop-shadow(0 8px 10px rgba(0, 20, 50, 0.2));
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: transform, opacity;
}

.aero-globe-pin svg {
  display: block;
  width: 40px;
  height: 49px;
}

.aero-globe-pin span {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 5px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(4, 24, 52, 0.82);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s;
}

.aero-globe-pin:hover span {
  opacity: 1;
}

.globe-hint {
  position: absolute;
  right: 8%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #aebed3;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.globe-hint span {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(255,255,255,0.06);
}

/* Fleet */
.fleet {
  overflow: hidden;
  background: var(--cloud);
}

.slider-buttons {
  display: flex;
  gap: 0.65rem;
}

.slider-buttons button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.slider-buttons button:hover {
  background: var(--navy);
  color: var(--white);
}

.fleet-rail {
  display: flex;
  gap: clamp(1.2rem, 2vw, 2rem);
  width: min(100%, calc(var(--content) + (100vw - var(--content)) / 2));
  margin-left: max(var(--page), calc((100vw - var(--content)) / 2));
  padding-right: var(--page);
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.aircraft-card {
  flex: 0 0 clamp(20rem, 37vw, 31.5rem);
  scroll-snap-align: start;
}

.aircraft-card__image {
  position: relative;
  display: grid;
  aspect-ratio: 1.23;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7edf3;
}

.aircraft-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(255,255,255,0.95), transparent 58%);
}

.aircraft-card__image span {
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  font-size: 0.67rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.aircraft-card__image img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.8s var(--ease);
}

.aircraft-card:hover .aircraft-card__image img {
  transform: translateX(2%) scale(1.045);
}

.aircraft-card__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.45rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.aircraft-card__head h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.aircraft-card__head i {
  display: grid;
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-style: normal;
  transition: transform 0.4s var(--ease);
}

.aircraft-card:hover .aircraft-card__head i {
  transform: rotate(45deg);
}

.aircraft-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.15rem;
}

.aircraft-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.aircraft-card dt {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.aircraft-card dd {
  font-size: 0.8rem;
  font-weight: 600;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--midnight);
  color: var(--white);
}

.about__image {
  min-height: 46rem;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--about-image-y, 0%));
  will-change: transform;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 7vw, 7.5rem);
}

.about__copy h2 {
  max-width: 39rem;
  margin-top: 2rem;
  font-size: clamp(4rem, 6.7vw, 7rem);
}

.about__copy h2 em {
  color: #a9c8f0;
}

.about__copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin-top: 2rem;
  color: #b7c3d4;
}

.about__copy .button {
  margin-top: 2.5rem;
}

/* Insights */
.insights {
  background: var(--cloud);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.3rem, 2.5vw, 2.5rem);
  width: min(100%, var(--content));
  margin-inline: auto;
}

.insight-card > div {
  aspect-ratio: 1.28;
  overflow: hidden;
  border-radius: var(--radius);
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.insight-card:hover img {
  transform: scale(1.055);
}

.insight-card > span {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
}

.insight-card h3 {
  margin-top: 0.7rem;
  font-family: "Unica", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.insight-card > p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

/* Contact and footer */
.contact-cta {
  position: relative;
  display: grid;
  min-height: 90svh;
  place-items: center;
  overflow: hidden;
  padding: 8rem var(--page);
  background: linear-gradient(180deg, #82b9da 0%, #a9cee3 55%, #cfe2ec 100%);
  color: var(--navy);
  text-align: center;
  isolation: isolate;
}

.contact-cta__sky {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 55% 12%, rgba(255,255,255,0.4), transparent 30%),
    linear-gradient(180deg, #7fb3d4 0%, #a9cfe3 55%, #d9e9ef 100%);
}

.contact-cta__sky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 22vh;
  background: linear-gradient(180deg, var(--cloud) 0%, rgba(247, 250, 253, 0) 100%);
}

.contact-cta__cloud {
  position: absolute;
  left: 50%;
  z-index: -3;
  width: max(100%, 90rem);
  max-width: none;
  pointer-events: none;
}

.contact-cta__cloud--back {
  top: -18%;
  width: max(112%, 92rem);
  transform: translate3d(-50%, 0, 0) scale(1.04);
  opacity: 0.7;
  animation: hero-cloud-drift-a 18s ease-in-out infinite alternate;
}

.contact-cta__cloud--middle {
  bottom: -46%;
  width: max(120%, 96rem);
  transform: translate3d(-50%, 0, 0) scale(1.09);
  animation: hero-cloud-drift-b 23s ease-in-out infinite alternate;
}

.contact-cta__cloud--front {
  bottom: -62%;
  width: max(130%, 100rem);
  opacity: 0.9;
  transform: translate3d(-50%, 0, 0) scale(1.14);
  animation: hero-cloud-drift-c 28s ease-in-out infinite alternate;
}

.contact-cta__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 62rem);
}

.contact-cta h2 {
  margin-top: 1.7rem;
  font-size: clamp(3.4rem, 6.4vw, 6.5rem);
  line-height: 1.1;
}

.contact-cta .button {
  margin-top: 2.7rem;
}

.site-footer {
  padding: clamp(4.5rem, 9vw, 6.5rem) var(--page) 2.2rem;
  background: var(--midnight);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5rem);
  max-width: var(--content);
  margin: 0 auto;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--white);
  font-family: "Quaria", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-top > p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  justify-self: end;
  font-size: 0.83rem;
}

.footer-contact {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: inherit;
}

.footer-contact:hover {
  color: var(--white);
}

.footer-contact--static {
  border-bottom-color: transparent;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: var(--white);
}

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3000;
  max-width: min(26rem, calc(100vw - 2.5rem));
  padding: 1rem 1.2rem;
  transform: translateY(1rem);
  border-radius: 0.65rem;
  background: var(--midnight);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.24);
  color: var(--white);
  font-size: 0.86rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s;
}

.toast.is-visible {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

/* Quote request modal */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.quote-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 28, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: clamp(2.2rem, 4vw, 3rem);
  border-radius: 1.25rem;
  background: var(--cloud);
  color: var(--navy);
  box-shadow: 0 2rem 6rem rgba(1, 28, 65, 0.4);
  transform: translateY(1rem) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.quote-modal.is-open .quote-modal__panel {
  transform: translateY(0) scale(1);
}

.quote-modal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(5, 39, 91, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.quote-modal__close span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.quote-modal__close span:last-child {
  transform: rotate(-45deg);
}

.quote-modal h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
}

.quote-modal__intro {
  max-width: 32rem;
  margin: 0.75rem 0 0;
  color: rgba(5, 39, 91, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quote-modal__trip-switch {
  display: flex;
  width: max-content;
  margin: 1.6rem 0 1.4rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: var(--white);
}

.quote-modal__trip-switch button {
  min-width: 7rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(5, 39, 91, 0.45);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}

.quote-modal__trip-switch button.is-active {
  background: var(--navy);
  color: var(--white);
}

.quote-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quote-modal__field--full {
  grid-column: 1 / -1;
}

.quote-modal__field.is-hidden {
  display: none;
}

.quote-modal__field span {
  color: rgba(5, 39, 91, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quote-modal__field input,
.quote-modal__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(5, 39, 91, 0.16);
  border-radius: 0.6rem;
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  resize: vertical;
}

.quote-modal__field input::placeholder,
.quote-modal__field textarea::placeholder {
  color: rgba(5, 39, 91, 0.32);
  font-weight: 500;
}

.quote-modal__field input:focus,
.quote-modal__field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.quote-modal__submit {
  width: 100%;
  margin-top: 1.6rem;
  justify-content: center;
}

/* Reveal */
.js .reveal {
  transform: translateY(2.2rem);
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1023px) {
  .site-header {
    min-height: 4.9rem;
  }

  .desktop-nav,
  .language,
  .button--header {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    position: absolute;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
  }

  .menu-toggle span:first-child { transform: translateY(-0.22rem); }
  .menu-toggle span:last-child { transform: translateY(0.22rem); }
  .menu-toggle.is-open span:first-child { transform: rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 7rem var(--page) 3rem;
    visibility: hidden;
    transform: translateY(-2rem);
    background: var(--midnight);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
  }

  .mobile-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav > a:not(.button) {
    font-family: "Quaria", Georgia, serif;
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    line-height: 1;
  }

  .mobile-nav .button {
    margin-top: 2rem;
  }

  .site-header:has(.mobile-nav.is-open) {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .hero {
    height: 104svh;
  }

  .hero__heading {
    top: calc(clamp(7.6rem, 17vh, 9.8rem) + 20px);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.85vw, 5.67rem);
  }

  .hero__subtitle {
    max-width: 34rem;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__cloud--back {
    top: calc(14% + 150px);
    width: 130%;
    min-width: 65rem;
  }

  #about-intro {
    margin-top: -150px;
  }

  .hero__cloud--middle,
  .hero__cloud--front {
    width: 155%;
    min-width: 68rem;
  }

  .hero__cloud--middle {
    bottom: -68%;
  }

  .hero__cloud--front {
    bottom: -88%;
  }

  .hero__scroll {
    display: none;
  }

  /* Feather the photographic hero into the light section below on tablet/mobile.
     The overlay sits above the city/cloud imagery but below the hero copy. */
  .hero__stage::after {
    height: 52%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 16%,
      rgba(255, 255, 255, 0.20) 34%,
      rgba(255, 255, 255, 0.52) 55%,
      rgba(255, 255, 255, 0.84) 73%,
      rgba(255, 255, 255, 0.97) 88%,
      #fff 96%,
      #fff 100%
    );
  }

  #about-intro {
    background: linear-gradient(180deg, #fff 0%, #fff 6rem, #f8fafc 13rem, var(--cloud) 24rem);
  }

  .journey__sticky {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .journey__visual {
    width: min(42vw, 31rem);
  }

  .journey__step h2 {
    font-size: clamp(3rem, 6.8vw, 4.8rem);
  }

  .about {
    grid-template-columns: 0.86fr 1.14fr;
  }
}

@media (min-width: 1200px) {
  .hero {
    height: 110svh;
    min-height: 57rem;
  }

  .hero__heading {
    top: calc(clamp(7.4rem, 13.5vh, 10rem) + 106px);
  }

  .hero__subtitle {
    max-width: 44.5rem;
  }

  .hero__cloud--back {
    top: calc(10% + 470px);
    width: max(116%, 96rem);
  }

  .hero__cloud--middle {
    bottom: -70%;
    width: max(124%, 100rem);
  }

  .hero__cloud--front {
    bottom: -90%;
    width: max(134%, 104rem);
  }
}

@media (max-width: 767px) {
  :root {
    --page: 1.25rem;
  }

  .quote-modal__grid {
    grid-template-columns: 1fr;
  }

  .quote-modal__panel {
    padding: 2rem 1.4rem;
  }

  .section-pad {
    padding-block: 6rem;
  }

  .section-head {
    grid-template-columns: 1fr auto;
    margin-bottom: 2.4rem;
  }

  .section-head h2 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }

  .text-link {
    font-size: 0;
  }

  .text-link span {
    font-size: 0.9rem;
  }

  .aero-preloader-wordmark {
    font-size: 31px;
  }

  .aero-preloader-flightline {
    top: calc(50% + 65px);
    width: min(190px, 58vw);
  }

  .aero-preloader-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 53rem;
  }

  .hero__stage {
    min-height: 49rem;
  }

  .hero__stage::after {
    height: 60%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.06) 16%,
      rgba(255, 255, 255, 0.24) 34%,
      rgba(255, 255, 255, 0.58) 55%,
      rgba(255, 255, 255, 0.88) 74%,
      rgba(255, 255, 255, 0.985) 90%,
      #fff 96%,
      #fff 100%
    );
  }

  .hero__sky {
    background-image:
      radial-gradient(ellipse at 50% 35%, rgba(238, 247, 252, 0.42) 0%, rgba(238, 247, 252, 0.15) 28%, rgba(238, 247, 252, 0) 54%),
      linear-gradient(180deg, rgba(5, 39, 91, 0.16) 0%, rgba(5, 39, 91, 0.035) 26%, rgba(255, 255, 255, 0.02) 64%, rgba(236, 246, 250, 0.18) 100%),
      url("https://mockup.wiwy.com/wp-content/uploads/2026/08/amsterdam-3-4.webp");
    background-position: center center;
  }

  .hero__heading {
    top: calc(7.5rem + 60px);
    width: calc(100% - 2.5rem);
  }

  .hero__heading::before {
    top: 43%;
    width: 124vw;
    height: 33rem;
    background:
      radial-gradient(ellipse at 50% 15%, rgba(3, 30, 68, 0.36) 0%, rgba(3, 30, 68, 0.19) 33%, rgba(3, 30, 68, 0.03) 56%, rgba(3, 30, 68, 0) 72%),
      radial-gradient(ellipse at 50% 61%, rgba(247, 250, 252, 0.90) 0%, rgba(247, 250, 252, 0.70) 38%, rgba(247, 250, 252, 0.34) 62%, rgba(247, 250, 252, 0.06) 81%, rgba(247, 250, 252, 0) 94%);
    -webkit-backdrop-filter: blur(3px) saturate(0.76) contrast(0.94);
    backdrop-filter: blur(3px) saturate(0.76) contrast(0.94);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12.7vw, 4rem);
  }

  .hero__subtitle {
    max-width: 31rem;
    font-size: 1rem;
  }

  .hero__cta {
    margin-top: 1.6rem;
  }

  .hero__proof {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.2rem;
    font-size: 0.76rem;
  }

  .hero__cloud--back {
    top: calc(21% + 125px);
    content: url("https://aerodynamics-bucket.ams3.digitaloceanspaces.com/5c8561d9da72d269210b47111e52beec.webp");
  }

  .hero__cloud--middle {
    bottom: -4%;
    content: url("https://aerodynamics-bucket.ams3.digitaloceanspaces.com/5d5e705e3e828450ca5aa2810285d98b.webp");
  }

  .hero__cloud--front {
    bottom: -6%;
    content: url("https://aerodynamics-bucket.ams3.digitaloceanspaces.com/51612f527fbd1c2172e2420e9f205993.webp");
  }

  .intro {
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: 7rem;
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .intro__title,
  .intro__copy {
    grid-column: 1;
  }

  .intro__title h2 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }

  .intro__copy {
    width: min(100%, 30rem);
    margin-left: auto;
  }

  .comparison__header,
  .comparison__row {
    gap: 0.65rem;
    padding: 1rem;
  }

  .comparison__header {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .comparison__row {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .comparison__header span:last-child,
  .comparison__row strong {
    padding-left: 0.65rem;
  }

  .journey {
    height: auto;
    padding: 7rem var(--page);
  }

  .journey__sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .journey__copy {
    width: 100%;
    margin: 0;
  }

  .journey__steps {
    height: auto;
  }

  .journey__step {
    position: relative;
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.3rem 0.8rem;
    visibility: visible;
    padding: 2.5rem 0;
    transform: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 1;
  }

  .journey__step h2,
  .journey__step p {
    grid-column: 2;
  }

  .journey__step > span {
    grid-row: 1 / span 2;
  }

  .journey__step h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .journey__step p {
    margin-top: 1rem;
  }

  .journey__counter {
    display: none;
  }

  .journey__visual {
    display: grid;
    grid-template-columns: repeat(3, 80%);
    gap: 0.8rem;
    width: calc(100vw - var(--page));
    aspect-ratio: auto;
    margin-top: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .journey-card {
    position: relative;
    inset: auto;
    aspect-ratio: 1;
    transform: none !important;
    scroll-snap-align: start;
    opacity: 1 !important;
  }

  .service-card {
    flex-basis: 81vw;
  }

  .services__lead {
    margin-top: -1rem;
  }

  .window-sequence {
    height: 190svh;
    min-height: 60rem;
  }

  .window-sequence__sticky {
    --window-hole-size: 320px;
    --window-frame-size: 300px;
  }

  .aircraft-window__sky {
    height: calc(100% + 6rem);
    object-position: center bottom;
  }

  .aircraft-window__cloud-row {
    left: -75vw;
    width: 250vw;
  }

  .aircraft-window__cloud-row img {
    flex-basis: 125vw;
    width: 125vw;
  }

  .aircraft-window__cloud-row--high {
    top: 10%;
  }

  .aircraft-window__cloud-row--middle {
    top: 42%;
  }

  .aircraft-window__cloud-row--low {
    top: 55%;
  }

  .aircraft-window__headline {
    max-width: 88vw;
    font-size: clamp(2.35rem, 9.4vw, 3.7rem);
    line-height: 0.92;
  }

  .globe-section {
    min-height: 118svh;
  }

  .globe-section__copy {
    padding-top: 7rem;
  }

  .globe-section__copy h2 {
    font-size: clamp(4rem, 17vw, 6rem);
  }

  .globe-wrap {
    width: 90vw;
    aspect-ratio: 1;
    margin-top: 0.25rem;
    margin-bottom: -2%;
    transform: translate3d(0, var(--globe-shift, 6%), 0);
  }

  .route-visual__image {
    width: 84%;
    height: 84%;
  }

  .globe-section__clouds {
    height: 42%;
  }

  .globe-cloud--left {
    bottom: 8%;
    left: -20%;
    width: 78vw;
  }

  .globe-cloud--band {
    right: -20%;
    bottom: 20%;
    width: 82vw;
  }

  .globe-cloud--puff {
    right: 2%;
    bottom: 4%;
    width: 42vw;
  }

  .globe-cloud--right {
    right: -24%;
    bottom: 10%;
    width: 62vw;
  }

  .aero-globe-pin {
    width: 25px;
    height: 31px;
  }

  .aero-globe-pin svg {
    width: 25px;
    height: 31px;
  }

  .globe-hint {
    right: 20%;
    bottom: 8%;
  }

  .slider-buttons button {
    width: 2.65rem;
    height: 2.65rem;
  }

  .aircraft-card {
    flex-basis: 84vw;
  }

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

  .about__image {
    min-height: 72svh;
  }

  .about__copy {
    padding: 6rem var(--page) 7rem;
  }

  .about__copy h2 {
    font-size: clamp(3.6rem, 15vw, 5.5rem);
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 3.4rem;
  }

  .contact-cta {
    min-height: 78svh;
  }

  .contact-cta h2 {
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 1.1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-contact-block {
    align-items: flex-start;
    justify-self: start;
  }

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

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .about__image img {
    transform: none !important;
  }

  .hero__cloud,
  .aircraft-window__cloud-row {
    animation: none !important;
  }

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

  .aero-preloader-flightline,
  .aero-preloader-plane {
    display: none;
  }
}


/* Price guide: replaces the former aircraft carousel with a route-specific fare guide. */
.price-guide {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) var(--page);
  background: #fff;
}

.price-guide__shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 95rem);
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(85, 132, 190, 0.28);
  border-radius: clamp(1.5rem, 2.4vw, 2.25rem);
  background:
    linear-gradient(108deg, rgba(255,255,255,0.985) 0%, rgba(255,255,255,0.97) 44%, rgba(248,252,255,0.91) 71%, rgba(239,247,255,0.84) 100%);
  box-shadow: 0 1.2rem 3.8rem rgba(5, 39, 91, 0.10);
}

.price-guide__shell::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: -3%;
  width: min(62%, 54rem);
  height: 65%;
  background: url("assets/price-guide-cloud.webp") right top / cover no-repeat;
  opacity: 0.82;
  filter: saturate(0.8) brightness(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 18%, #000 48%, #000 100%), linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 18%, #000 48%, #000 100%);
  pointer-events: none;
}

.price-guide__shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 89% 12%, rgba(202, 230, 255, 0.40), transparent 33%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(245,250,255,0.30));
  pointer-events: none;
}

.price-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.price-guide__intro {
  max-width: 48rem;
}

.price-guide__intro .eyebrow {
  margin-bottom: 1.6rem;
  letter-spacing: 0.28em;
}

.price-guide__intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.8rem, 5.8vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: -0.048em;
}

.price-guide__intro > p:last-child {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.price-guide__route {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.1rem;
  margin-top: 3.2rem;
  padding: 0.7rem 1.6rem 0.7rem 0.8rem;
  border: 1px solid rgba(71, 122, 186, 0.27);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.78);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
  color: var(--navy);
  font-size: clamp(0.92rem, 1.2vw, 1.15rem);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.price-guide__route-icon {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #0867f2;
  color: #fff;
  box-shadow: 0 0.55rem 1.3rem rgba(8, 103, 242, 0.24);
}

.price-guide__route-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.price-guide__route-arrow {
  color: #0f4387;
  font-size: 1.8rem;
  line-height: 1;
}

.price-guide__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.price-card {
  --accent: #075fdc;
  --accent-soft: rgba(7, 95, 220, 0.10);
  display: flex;
  min-width: 0;
  min-height: 27rem;
  flex-direction: column;
  padding: clamp(1.45rem, 2.3vw, 2rem);
  border: 1px solid rgba(82, 126, 181, 0.26);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
  backdrop-filter: blur(7px);
}

.price-card--great {
  --accent: #087b69;
  --accent-soft: rgba(22, 167, 139, 0.11);
}

.price-card--typical {
  --accent: #075fdc;
  --accent-soft: rgba(7, 95, 220, 0.10);
}

.price-card--high {
  --accent: #d21d28;
  --accent-soft: rgba(226, 40, 51, 0.10);
}

.price-card__tag {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.price-card h3 {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.price-card__amount {
  margin: 0.75rem 0 0;
  color: var(--accent);
  font-family: "Quaria", Georgia, serif;
  font-size: clamp(3.1rem, 4.1vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.price-card__summary {
  min-height: 3.6em;
  margin: 1rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-card__details {
  display: grid;
  gap: 0.8rem;
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(82, 126, 181, 0.20);
}

.price-card__details > div {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  align-items: center;
  gap: 0.7rem 1rem;
}

.price-card dt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.price-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.price-card__icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.price-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-guide__footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.6rem;
}

.price-guide__note {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.65rem;
  margin: 0;
  padding: 0.75rem 1.3rem;
  border: 1px solid rgba(76, 130, 201, 0.18);
  border-radius: 1rem;
  background: rgba(236, 246, 255, 0.70);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.price-guide__note > span:first-child {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #0867f2;
  border-radius: 50%;
  color: #0867f2;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.price-guide__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 4.65rem;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 1rem;
  background: linear-gradient(110deg, #0755e5, #147cff);
  box-shadow: 0 0.8rem 1.8rem rgba(7, 85, 229, 0.20);
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.price-guide__cta span {
  font-size: 1.65rem;
  font-weight: 400;
}

.price-guide__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.25rem rgba(7, 85, 229, 0.28);
}

@media (max-width: 1023px) {
  .price-guide {
    padding-block: 5rem;
  }

  .price-guide__shell {
    padding: clamp(1.5rem, 3.5vw, 2.4rem);
  }

  .price-guide__header {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .price-guide__route {
    justify-self: start;
    margin-top: 0;
  }

  .price-guide__intro h2 {
    font-size: clamp(3.6rem, 7.2vw, 5.3rem);
  }

  .price-guide__cards {
    gap: 0.9rem;
  }

  .price-card {
    min-height: 25rem;
    padding: 1.35rem;
  }

  .price-card__amount {
    font-size: clamp(2.6rem, 4.7vw, 3.4rem);
  }

  .price-card__details > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .price-card dd {
    padding-left: 2.9rem;
  }

  .price-guide__footer {
    grid-template-columns: 1fr;
  }

  /* Keep the top of the next section truly white so it merges with the hero fade. */
  #about-intro {
    background: linear-gradient(180deg, #fff 0%, #fff 8rem, #f8fafc 15rem, var(--cloud) 27rem);
  }
}

@media (max-width: 767px) {
  .price-guide {
    padding: 4.5rem var(--page) 5.5rem;
  }

  .price-guide__shell {
    padding: 1.35rem;
    border-radius: 1.45rem;
  }

  .price-guide__shell::before {
    top: 0;
    right: -30%;
    width: 100%;
    height: 24rem;
    opacity: 0.62;
  }

  .price-guide__intro .eyebrow {
    margin-bottom: 1.1rem;
  }

  .price-guide__intro h2 {
    font-size: clamp(3.15rem, 13.5vw, 4.3rem);
  }

  .price-guide__intro > p:last-child {
    font-size: 0.96rem;
  }

  .price-guide__route {
    width: 100%;
    min-height: 4.3rem;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem 0.55rem 0.55rem;
    font-size: 0.84rem;
  }

  .price-guide__route-icon {
    width: 2.9rem;
    height: 2.9rem;
  }

  .price-guide__route-arrow {
    margin-inline: auto;
    font-size: 1.4rem;
  }

  .price-guide__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .price-card {
    min-height: auto;
    padding: 1.35rem;
  }

  .price-card__summary {
    min-height: 0;
  }

  .price-card__details > div {
    grid-template-columns: minmax(7rem, auto) 1fr;
    gap: 0.6rem;
  }

  .price-card dd {
    padding-left: 0;
  }

  .price-guide__footer {
    margin-top: 1rem;
  }

  .price-guide__note {
    align-items: flex-start;
    font-size: 0.8rem;
  }

  .price-guide__cta {
    min-height: 4.25rem;
  }

  .aircraft-window__headline {
    max-width: 90vw;
    font-size: clamp(2.2rem, 8.8vw, 3.4rem);
    line-height: 0.92;
  }

  /* Final mobile fade guard: no hard edge before the white intro section. */
  .hero__stage::after {
    height: 64%;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.05) 14%,
      rgba(255,255,255,0.23) 32%,
      rgba(255,255,255,0.58) 53%,
      rgba(255,255,255,0.89) 72%,
      rgba(255,255,255,0.99) 88%,
      #fff 94%,
      #fff 100%
    );
  }
}

/* --------------------------------------------------------------------------
   August refinement: open price guide, broader route copy, testimonial rail
   -------------------------------------------------------------------------- */

/* Remove the large visual container around the fare guide while preserving
   a centred content width. The cloud artwork now belongs to the section. */
.price-guide {
  isolation: isolate;
}

.price-guide::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: -5%;
  width: min(58vw, 56rem);
  height: min(52rem, 88%);
  background: url("assets/price-guide-cloud.webp") right top / contain no-repeat;
  opacity: 0.62;
  filter: saturate(0.78) brightness(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.12) 20%, #000 52%, #000 100%), linear-gradient(180deg, #000 0%, #000 66%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.12) 20%, #000 52%, #000 100%);
  pointer-events: none;
}

.price-guide::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 91% 9%, rgba(205, 232, 255, 0.27), transparent 32%);
  pointer-events: none;
}

.price-guide__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 89rem);
  margin-inline: auto;
}

/* Keep a conventional pound glyph even though the display numerals use the
   custom serif face. */
.price-card__currency {
  display: inline-block;
  margin-right: 0.015em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.83em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-0.01em);
}

/* Longer route statement: keep the globe image and give the copy more room. */
.globe-section__copy {
  width: min(calc(100% - var(--page) - var(--page)), 68rem);
}

.globe-section__copy h2 {
  font-size: clamp(3.9rem, 7.1vw, 7.2rem);
}

.globe-section__copy > p:last-child {
  width: min(100%, 58rem);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

/* Testimonials replace the split-image about section. */
.about.testimonials {
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(6rem, 9vw, 9rem);
  background:
    radial-gradient(circle at 50% -18%, rgba(72, 126, 197, 0.22), transparent 38%),
    linear-gradient(180deg, #061f49 0%, var(--midnight) 72%, #021735 100%);
  color: var(--white);
}

.testimonials .about__copy {
  width: min(calc(100% - var(--page) - var(--page)), 64rem);
  margin-inline: auto;
  padding: 0;
  align-items: center;
  text-align: center;
}

.testimonials .about__copy h2 {
  max-width: 58rem;
  margin-top: 1.6rem;
  font-size: clamp(3.8rem, 6.7vw, 6.9rem);
  line-height: 0.94;
}

.testimonials .about__copy > p:not(.eyebrow) {
  max-width: 53rem;
  margin-top: 1.8rem;
  color: #c4cfde;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.testimonial-carousel {
  width: min(100%, 96rem);
  margin: clamp(3.4rem, 6vw, 5.6rem) auto 0;
}

.testimonial-rail {
  display: flex;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  width: 100%;
  padding: 0 max(var(--page), calc((100vw - 96rem) / 2 + var(--page)));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.testimonial-rail::-webkit-scrollbar {
  display: none;
}

.testimonial-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 0 0 clamp(19rem, 30vw, 27rem);
  min-height: clamp(22rem, 29vw, 27rem);
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  padding: clamp(1.7rem, 2.6vw, 2.35rem);
  overflow: hidden;
  border: 1px solid rgba(188, 211, 242, 0.17);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 1.2rem 3rem rgba(0, 10, 31, 0.15);
  backdrop-filter: blur(10px);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -35% 20%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 119, 207, 0.18), transparent 70%);
  pointer-events: none;
}

.testimonial-card__quote {
  position: relative;
  z-index: 1;
  display: block;
  height: 3rem;
  color: #79aef1;
  font-family: "Quaria", Georgia, serif;
  font-size: 5rem;
  line-height: 0.9;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 auto;
  color: #f7fbff;
  font-family: "Quaria", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin-top: 2.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(205, 222, 244, 0.14);
  color: #aebfd5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.testimonial-carousel__footer {
  display: flex;
  width: min(calc(100% - var(--page) - var(--page)), 89rem);
  margin: 1.8rem auto 0;
  align-items: center;
  gap: 2rem;
}

.testimonial-progress {
  position: relative;
  height: 1px;
  flex: 1;
  overflow: hidden;
  background: rgba(194, 214, 238, 0.18);
}

.testimonial-progress span {
  position: absolute;
  inset: 0;
  background: #c8dcf6;
  transform: scaleX(0.125);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}

.testimonial-controls {
  display: flex;
  gap: 0.65rem;
}

.testimonial-controls button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(211, 226, 246, 0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}

.testimonial-controls button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.testimonial-controls button:disabled {
  cursor: default;
  opacity: 0.32;
}

@media (max-width: 1023px) {
  .price-guide::before {
    right: -18%;
    width: 78vw;
    opacity: 0.48;
  }

  .globe-section__copy h2 {
    font-size: clamp(3.5rem, 8vw, 5.7rem);
  }

  .testimonial-card {
    flex-basis: clamp(20rem, 43vw, 25rem);
  }
}

@media (max-width: 767px) {
  .price-guide::before {
    top: 0;
    right: -42%;
    width: 125vw;
    height: 32rem;
    opacity: 0.38;
  }

  .globe-section__copy h2 {
    font-size: clamp(3.1rem, 13.7vw, 4.7rem);
    line-height: 0.96;
  }

  .globe-section__copy > p:last-child {
    width: min(100%, 31rem);
    font-size: 0.96rem;
  }

  .about.testimonials {
    padding: 6.5rem 0 5.5rem;
  }

  .testimonials .about__copy {
    width: calc(100% - 2.5rem);
  }

  .testimonials .about__copy h2 {
    font-size: clamp(3.2rem, 13.5vw, 4.7rem);
  }

  .testimonials .about__copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .testimonial-carousel {
    margin-top: 3.25rem;
  }

  .testimonial-rail {
    gap: 0.9rem;
    padding-inline: var(--page);
  }

  .testimonial-card {
    flex-basis: 84vw;
    min-height: 24rem;
    padding: 1.6rem;
  }

  .testimonial-card blockquote {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }

  .testimonial-carousel__footer {
    gap: 1.15rem;
  }

  .testimonial-controls button {
    width: 2.9rem;
    height: 2.9rem;
  }
}

/* --------------------------------------------------------------------------
   Seamless transitions + popular routes
   -------------------------------------------------------------------------- */

/* Keep the hero-to-intro edge feathered while the intro scrolls over the
   sticky hero. The transparent leading edge prevents a hard horizontal seam. */
.intro#about-intro {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0,
    rgba(255,255,255,.42) 4rem,
    rgba(255,255,255,.82) 8rem,
    rgba(255,255,255,.98) 12rem,
    #fff 15rem,
    #f8fafc 22rem,
    var(--cloud) 34rem
  );
}

/* Make the end of the route section and the beginning of testimonials share
   exactly the same midnight tone before the testimonial lighting blooms. */
.globe-section { margin-bottom: -1px; }
.globe-section::after {
  height: 38vh;
  background: linear-gradient(180deg, transparent 0%, rgba(7,24,49,.14) 36%, var(--midnight) 82%, var(--midnight) 100%);
}
.about.testimonials {
  margin-top: -1px;
  background:
    radial-gradient(circle at 50% 10%, rgba(72,126,197,.19), transparent 34%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight) 8rem, #062653 18rem, var(--midnight) 72%, #021735 100%);
}

/* Popular flights */
.popular-flights {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem,10vw,10rem) var(--page) clamp(7rem,11vw,10.5rem);
  background:
    radial-gradient(ellipse at 50% 6%, rgba(208,231,250,.65), transparent 35%),
    radial-gradient(ellipse at -8% 92%, rgba(219,237,250,.68), transparent 27%),
    radial-gradient(ellipse at 108% 84%, rgba(214,234,250,.66), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #fff 26%, #fff 74%, #f7fbfe 100%);
  color: var(--navy);
  isolation: isolate;
}
.popular-flights::before,.popular-flights::after {
  content:""; position:absolute; z-index:-1; width:min(37vw,34rem); aspect-ratio:1.55; border-radius:50%;
  background:radial-gradient(ellipse at 50% 58%,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 28%,rgba(221,238,251,.58) 52%,rgba(221,238,251,0) 73%);
  filter:blur(9px); pointer-events:none;
}
.popular-flights::before { left:-9%; bottom:-7%; }
.popular-flights::after { right:-8%; bottom:-5%; transform:scaleX(-1); }
.popular-flights__inner { width:min(100%,89rem); margin-inline:auto; }
.popular-flights__head { width:min(100%,60rem); margin:0 auto clamp(3rem,5vw,4.7rem); text-align:center; }
.popular-flights__eyebrow { color:#075fd8; font-size:clamp(.82rem,1.05vw,.96rem); font-weight:600; letter-spacing:.18em; text-transform:uppercase; }
.popular-flights__head h2 { margin-top:1.1rem; font-size:clamp(3.5rem,6.6vw,6.25rem); line-height:.95; }
.popular-flights__head>p:last-child { margin:1.4rem auto 0; color:#607290; font-size:clamp(1rem,1.35vw,1.17rem); }
.popular-flights__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(1rem,1.65vw,1.4rem); }
.popular-flight-card { display:flex; min-width:0; min-height:35rem; flex-direction:column; padding:clamp(1.3rem,2vw,1.65rem); border:1px solid rgba(26,92,176,.22); border-radius:1.2rem; background:rgba(255,255,255,.76); box-shadow:0 1.1rem 3rem rgba(13,61,126,.055),inset 0 1px rgba(255,255,255,.95); backdrop-filter:blur(7px); }
.popular-flight-card__head { display:grid; grid-template-columns:auto 1fr; gap:1rem; min-height:8.7rem; align-items:start; }
.popular-flight-card__icon { display:grid; width:4rem; height:4rem; margin-top:1.1rem; place-items:center; border-radius:50%; background:linear-gradient(145deg,#f1f7ff,#e2efff); color:#075fd8; }
.popular-flight-card__icon svg { width:2.45rem; height:2.45rem; }
.popular-flight-card__icon--plane svg { width:2.7rem; height:2.7rem; }
.popular-flight-card__tag { display:inline-flex; margin-bottom:1rem; padding:.48rem .7rem; border-radius:.45rem; background:#edf5ff; color:#0b55bd; font-size:.82rem; line-height:1; }
.popular-flight-card h3 { font-size:clamp(2.15rem,3vw,3rem); line-height:.95; }
.popular-flight-card__routes { display:grid; gap:.54rem; margin-top:1.25rem; }
.popular-flight-card__routes a { display:grid; grid-template-columns:minmax(0,auto) auto minmax(0,1fr) auto; gap:.55rem; min-height:3.25rem; align-items:center; padding:.65rem .85rem .65rem 1rem; border:1px solid rgba(20,80,163,.16); border-radius:.62rem; background:rgba(255,255,255,.82); color:#0757c5; font-weight:500; box-shadow:0 .28rem .7rem rgba(19,70,137,.025); transition:border-color .25s var(--ease),transform .25s var(--ease),background .25s var(--ease); }
.popular-flight-card__routes a:hover { transform:translateY(-1px); border-color:rgba(0,111,255,.42); background:#fff; }
.popular-flight-card__routes a>span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.popular-flight-card__routes i,.popular-flight-card__routes b { font-style:normal; font-weight:400; }
.popular-flight-card__routes b { justify-self:end; font-size:1.35rem; transition:transform .25s var(--ease); }
.popular-flight-card__routes a:hover b { transform:translateX(3px); }
.popular-flight-card__more { display:inline-flex; gap:.8rem; margin:auto auto 0; padding-top:1.5rem; align-items:center; color:#0757c5; font-weight:500; text-align:center; }
.popular-flight-card__more span { font-size:1.25rem; transition:transform .25s var(--ease); }
.popular-flight-card__more:hover span { transform:translateX(3px); }
.popular-flights__cta { display:flex; justify-content:center; margin-top:clamp(2.5rem,4vw,3.6rem); }
.popular-flights__button { min-width:min(100%,22rem); min-height:4.4rem; padding-left:2rem; background:linear-gradient(100deg,#0755d7,#0878ff); box-shadow:0 .85rem 2.2rem rgba(0,98,225,.19); font-size:1.05rem; }
.popular-flights__button:hover { background:linear-gradient(100deg,#064cc2,#066de7); }

@media (max-width:1050px) {
  .popular-flights__grid { grid-template-columns:1fr; width:min(100%,42rem); margin-inline:auto; }
  .popular-flight-card { min-height:auto; }
  .popular-flight-card__head { min-height:auto; margin-bottom:.5rem; }
  .popular-flight-card__more { margin-top:1.5rem; }
}
@media (max-width:767px) {
  .intro#about-intro { background:linear-gradient(180deg,rgba(255,255,255,0) 0,rgba(255,255,255,.35) 4rem,rgba(255,255,255,.76) 8rem,rgba(255,255,255,.97) 12rem,#fff 15rem,#f8fafc 21rem,var(--cloud) 31rem); }
  .about.testimonials { background:radial-gradient(circle at 50% 7%,rgba(72,126,197,.17),transparent 29%),linear-gradient(180deg,var(--midnight) 0%,var(--midnight) 5rem,#062653 13rem,var(--midnight) 72%,#021735 100%); }
  .popular-flights { padding-inline:1.15rem; }
  .popular-flights__head h2 { font-size:clamp(3rem,14vw,4.4rem); }
  .popular-flight-card { padding:1.15rem; border-radius:1rem; }
  .popular-flight-card__head { grid-template-columns:3.35rem 1fr; gap:.8rem; }
  .popular-flight-card__icon { width:3.35rem; height:3.35rem; margin-top:.9rem; }
  .popular-flight-card__icon svg { width:2rem; height:2rem; }
  .popular-flight-card h3 { font-size:clamp(2.05rem,10vw,2.8rem); }
  .popular-flight-card__routes a { gap:.4rem; padding-inline:.75rem; font-size:.91rem; }
  .popular-flights__button { width:100%; }
}

/* --------------------------------------------------------------------------
   August continuity pass: route + feedback / insights + popular flights
   -------------------------------------------------------------------------- */

/* The route story and traveller feedback now live on one uninterrupted night
   canvas. Child sections are deliberately transparent so there is no seam. */
.route-feedback-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 33%, rgba(55, 129, 206, 0.24), transparent 34%),
    radial-gradient(ellipse at 50% 70%, rgba(38, 95, 166, 0.13), transparent 38%),
    linear-gradient(180deg, #0a315f 0%, #082b58 23%, #072653 47%, #061f49 72%, #021735 100%);
  color: var(--white);
  isolation: isolate;
}

.route-feedback-shell::before {
  content: "";
  position: absolute;
  inset: 36% -18% auto;
  z-index: -1;
  height: 44rem;
  background: radial-gradient(ellipse at 50% 48%, rgba(102, 157, 220, 0.12), transparent 60%);
  pointer-events: none;
}

.route-feedback-shell .globe-section,
.route-feedback-shell .about.testimonials {
  background: transparent !important;
}

.route-feedback-shell .globe-section {
  min-height: auto;
  margin: 0;
  padding-bottom: clamp(1rem, 3vw, 3.25rem);
  overflow: visible;
  isolation: auto;
}

.route-feedback-shell .globe-section::before,
.route-feedback-shell .globe-section::after {
  display: none;
}

/* Keep the complete route globe visible inside its own generous square rather
   than allowing the old 145svh composition to clip it at a section boundary. */
.route-feedback-shell .globe-wrap {
  width: min(82vw, 46rem);
  aspect-ratio: 1;
  margin: clamp(-1.2rem, -1.4vw, 0rem) auto 0;
  transform: none;
}

.route-feedback-shell .route-visual__image {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

/* Clouds remain around the globe but move noticeably enough to register as
   ambient motion. Each layer uses a different duration/direction. */
.route-feedback-shell .globe-section__clouds {
  inset: auto 0 clamp(0.5rem, 2vw, 2rem);
  height: 48%;
  overflow: visible;
}

.route-feedback-shell .globe-cloud--left {
  animation: globe-cloud-drift-right 32s ease-in-out -8s infinite alternate;
}
.route-feedback-shell .globe-cloud--band {
  animation: globe-cloud-drift-left 41s ease-in-out -18s infinite alternate;
}
.route-feedback-shell .globe-cloud--puff {
  animation: globe-cloud-drift-right-soft 47s ease-in-out -21s infinite alternate;
}
.route-feedback-shell .globe-cloud--right {
  animation: globe-cloud-drift-left-soft 36s ease-in-out -13s infinite alternate;
}

@keyframes globe-cloud-drift-right {
  from { transform: translate3d(-2.2vw, 0, 0) rotate(-1deg); }
  to { transform: translate3d(5.2vw, 0, 0) rotate(0.6deg); }
}
@keyframes globe-cloud-drift-left {
  from { transform: translate3d(3.2vw, 0, 0) rotate(0.8deg); }
  to { transform: translate3d(-5vw, 0, 0) rotate(-0.5deg); }
}
@keyframes globe-cloud-drift-right-soft {
  from { transform: translate3d(-1.6vw, 0, 0) scale(0.99); }
  to { transform: translate3d(3.8vw, 0, 0) scale(1.01); }
}
@keyframes globe-cloud-drift-left-soft {
  from { transform: translate3d(2.4vw, 0, 0) scaleX(-1) scale(0.995); }
  to { transform: translate3d(-4.2vw, 0, 0) scaleX(-1) scale(1.01); }
}

.route-feedback-shell .about.testimonials {
  margin: 0;
  padding-top: clamp(2.5rem, 4.5vw, 4.5rem);
}

/* Insights and popular routes are also one continuous light canvas. The
   supplied cloud-radial artwork spans the join instead of introducing a new
   radial-gradient panel at the beginning of Popular Flights. */
.discovery-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cloud) 0%, #fbfdff 42%, #fff 100%);
  color: var(--navy);
  isolation: isolate;
}

.discovery-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/cloud-radial.webp") center 61% / min(116rem, 112vw) auto no-repeat;
  opacity: 0.92;
  pointer-events: none;
}

.discovery-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(247,250,252,.92) 0%,
      rgba(247,250,252,.72) 29%,
      rgba(255,255,255,.25) 51%,
      rgba(255,255,255,.15) 74%,
      rgba(255,255,255,.82) 100%);
  pointer-events: none;
}

.discovery-shell .insights,
.discovery-shell .popular-flights {
  background: transparent !important;
}

.discovery-shell .insights {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(6.5rem, 9vw, 9rem);
}

.discovery-shell .popular-flights {
  position: relative;
  z-index: 1;
  padding-top: clamp(5.5rem, 8vw, 8rem);
}

.discovery-shell .popular-flights::before,
.discovery-shell .popular-flights::after {
  display: none;
}

@media (max-width: 1023px) {
  .route-feedback-shell .globe-wrap {
    width: min(90vw, 43rem);
  }
  .route-feedback-shell .route-visual__image {
    width: 92%;
    height: 92%;
  }
  .discovery-shell::before {
    background-position: center 63%;
    background-size: max(72rem, 150vw) auto;
  }
}

@media (max-width: 767px) {
  .route-feedback-shell .globe-section {
    padding-bottom: 1rem;
  }
  .route-feedback-shell .globe-wrap {
    width: min(104vw, 34rem);
    margin-top: 0;
  }
  .route-feedback-shell .route-visual__image {
    width: 94%;
    height: 94%;
  }
  .route-feedback-shell .globe-section__clouds {
    height: 44%;
    bottom: 0;
  }
  .route-feedback-shell .about.testimonials {
    padding-top: 2.25rem;
  }
  .discovery-shell::before {
    background-position: center 67%;
    background-size: auto 49rem;
    opacity: 0.84;
  }
  .discovery-shell .insights {
    padding-bottom: 5rem;
  }
  .discovery-shell .popular-flights {
    padding-top: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-feedback-shell .globe-cloud {
    animation: none !important;
  }
}

/* ================================================================
   14-tabs intro — visual refresh based on approved mock-up
   ================================================================ */
.intro {
  position: relative;
  isolation: isolate;
  min-height: 0;
  margin-top: -100px;
  padding: clamp(10rem, 17vw, 13rem) var(--page) clamp(6rem, 10vw, 9rem);
  overflow: hidden;
  background: #fff;
}

/* Two deliberately oversized/off-canvas cloud-radial instances. */
.intro::before,
.intro::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: clamp(21rem, 30vw, 29rem);
  width: clamp(39rem, 61vw, 64rem);
  aspect-ratio: 1;
  background: url("assets/cloud-radial.webp") center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.intro::before {
  left: clamp(-42rem, -34vw, -25rem);
}

.intro::after {
  right: clamp(-42rem, -34vw, -25rem);
  transform: scaleX(-1);
}

.intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(25rem, 0.94fr);
  gap: clamp(4rem, 7vw, 8rem) clamp(3rem, 8vw, 8rem);
  width: min(100%, 1220px);
  margin-inline: auto;
}

.intro__title {
  grid-column: 1;
  align-self: start;
}

.intro__title h2 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-family: "Quaria", Georgia, serif;
  font-size: clamp(4.4rem, 7.25vw, 7.15rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.035em;
}

.intro__title h2 em {
  display: inline;
  font-style: italic;
  white-space: nowrap;
}

.intro__flight-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(19rem, 70%);
  margin: clamp(2.4rem, 4vw, 3.6rem) 0 clamp(2.2rem, 3vw, 3rem) clamp(5rem, 9vw, 9rem);
  color: #cc9b42;
}

.intro__flight-rule::before,
.intro__flight-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.intro__flight-rule span {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  transform: rotate(-4deg);
}

.intro__promise {
  max-width: 40rem;
  margin: 0;
  color: #506b98;
  font-size: clamp(1.15rem, 1.75vw, 1.6rem);
  line-height: 1.35;
}

.intro__copy {
  grid-column: 2;
  align-self: center;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 2rem) 0 0;
}

.intro-feature {
  display: grid;
  grid-template-columns: 4.7rem minmax(0, 1fr);
  align-items: center;
  gap: 1.65rem;
}

.intro-feature + .intro-feature {
  margin-top: clamp(1.35rem, 2.6vw, 2.15rem);
}

.intro-feature__icon {
  display: grid;
  width: 4.7rem;
  height: 4.7rem;
  place-items: center;
  border: 1px solid rgba(5, 39, 91, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #1769ff;
  box-shadow: 0 0.8rem 2.2rem rgba(5, 39, 91, 0.08);
  backdrop-filter: blur(7px);
}

.intro-feature__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-feature p {
  margin: 0;
  color: #173c73;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.42;
}

.intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding: 0.72rem 1.65rem 0.72rem 0.72rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 1rem 2.6rem rgba(5, 39, 91, 0.14);
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}

.intro__cta:hover {
  transform: translateY(-2px);
  background: #07346f;
  box-shadow: 0 1.25rem 3rem rgba(5, 39, 91, 0.19);
}

.intro__cta-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1.2rem;
  transition: transform 0.35s var(--ease);
}

.intro__cta:hover .intro__cta-icon {
  transform: rotate(45deg);
}

.comparison {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 39, 91, 0.11);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1.7rem 5rem rgba(5, 39, 91, 0.09);
  backdrop-filter: blur(11px);
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.comparison__header {
  min-height: 4.5rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison__header > span,
.comparison__row > span,
.comparison__row > strong {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-width: 0;
  padding: 1.05rem clamp(1.4rem, 3vw, 2.6rem);
}

.comparison__header > span {
  justify-content: center;
}

.comparison__header > span + span,
.comparison__row > strong {
  border-left: 1px solid rgba(5, 39, 91, 0.09);
}

.comparison__header > span + span {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.comparison__status {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.comparison__status--ordinary { color: #d4a149; }
.comparison__status--ours { color: #6ad7ac; }

.comparison__row {
  position: relative;
  min-height: 5rem;
  color: #173c73;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.comparison__row + .comparison__row {
  border-top: 1px solid rgba(5, 39, 91, 0.1);
}

.comparison__row::after {
  content: "\2192";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(5, 39, 91, 0.08);
  border-radius: 50%;
  background: #fff;
  color: #315987;
  box-shadow: 0 0.35rem 1rem rgba(5, 39, 91, 0.08);
  transform: translate(-50%, -50%);
}

.comparison__row strong {
  color: var(--navy);
  font-weight: 500;
}

.comparison__cell-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 105, 255, 0.07);
  color: #5a79a7;
}

.comparison__cell-icon--good {
  background: rgba(65, 180, 135, 0.1);
  color: #45ad84;
}

.comparison__cell-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 960px) {
  .intro {
    margin-top: -72px;
    padding-top: 9rem;
  }

  .intro::before,
  .intro::after {
    top: 27rem;
    width: clamp(34rem, 78vw, 48rem);
    opacity: 0.78;
  }

  .intro::before { left: -29rem; }
  .intro::after { right: -29rem; }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
    width: min(100%, 760px);
  }

  .intro__title,
  .intro__copy,
  .comparison {
    grid-column: 1;
  }

  .intro__title h2 {
    font-size: clamp(4.2rem, 10vw, 6.2rem);
  }

  .intro__flight-rule {
    margin-left: clamp(2rem, 12vw, 7rem);
  }

  .intro__copy {
    width: min(100%, 620px);
    padding: 0;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .intro {
    margin-top: -54px;
    padding: 7.6rem var(--page) 6rem;
  }

  .intro::before,
  .intro::after {
    top: 22rem;
    width: 35rem;
    opacity: 0.62;
  }

  .intro::before { left: -29rem; }
  .intro::after { right: -29rem; }

  .intro__inner {
    gap: 3rem;
  }

  .intro__title h2 {
    font-size: clamp(3.35rem, 16vw, 4.7rem);
    line-height: 0.91;
  }

  .intro__flight-rule {
    width: 12rem;
    margin: 2rem 0 1.8rem 1.8rem;
  }

  .intro__promise {
    max-width: 18rem;
    font-size: 1.08rem;
  }

  .intro-feature {
    grid-template-columns: 3.45rem minmax(0, 1fr);
    gap: 1rem;
  }

  .intro-feature__icon {
    width: 3.45rem;
    height: 3.45rem;
  }

  .intro-feature__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .intro-feature p {
    font-size: 0.96rem;
  }

  .intro-feature p br {
    display: none;
  }

  .intro__cta {
    width: 100%;
    justify-content: flex-start;
    margin-top: 2.25rem;
  }

  .comparison {
    border-radius: 0.9rem;
  }

  .comparison__header {
    min-height: 3.65rem;
    font-size: 0.61rem;
    letter-spacing: 0.05em;
  }

  .comparison__header > span,
  .comparison__row > span,
  .comparison__row > strong {
    gap: 0.65rem;
    padding: 0.85rem 0.65rem;
  }

  .comparison__status {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.75rem;
  }

  .comparison__row {
    min-height: 4.5rem;
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .comparison__row::after {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }

  .comparison__cell-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .comparison__cell-icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   Responsive flight-request wizard
   -------------------------------------------------------------------------- */
.quote-modal {
  padding: clamp(.75rem, 2vw, 1.5rem);
}

.quote-modal__backdrop {
  background: rgba(1, 20, 50, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-modal__panel.quote-wizard {
  width: min(100%, 62rem);
  max-height: calc(100dvh - clamp(1.5rem, 4vw, 3rem));
  padding: clamp(1.35rem, 3vw, 2.35rem) clamp(1.2rem, 4vw, 3rem) 0;
  border: 1px solid rgba(5, 39, 91, .08);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 234, 255, .55), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
  box-shadow: 0 2rem 7rem rgba(1, 28, 65, .42);
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 39, 91, .2) transparent;
}

.quote-wizard__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-right: 3.2rem;
}

.quote-wizard__topline .eyebrow {
  margin: 0 0 .45rem;
  color: var(--blue);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.quote-modal.quote-modal .quote-wizard__topline h2 {
  max-width: 39rem;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: .98;
}

.quote-wizard__route-badge {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  min-height: 2.7rem;
  padding: .55rem .9rem;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
  box-shadow: 0 .45rem 1.2rem rgba(5, 39, 91, .05);
  font-size: .78rem;
  white-space: nowrap;
}

.quote-wizard__route-badge > span {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .82rem;
  transform: rotate(-7deg);
}

.quote-progress {
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(1.35rem, 3vw, 2rem);
}

.quote-progress ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .45rem;
  margin: 0 0 .6rem;
  padding: 0;
  list-style: none;
}

.quote-progress li {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  color: rgba(5, 39, 91, .38);
  font-size: .73rem;
  transition: color .3s var(--ease);
}

.quote-progress li span {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(5, 39, 91, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  font-size: .64rem;
  font-weight: 700;
  transition: color .3s, border-color .3s, background .3s;
}

.quote-progress li b {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-progress li.is-current,
.quote-progress li.is-complete {
  color: var(--navy);
}

.quote-progress li.is-current span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.quote-progress li.is-complete span {
  border-color: rgba(0, 154, 112, .18);
  background: rgba(0, 154, 112, .1);
  color: #087e62;
}

.quote-progress__track {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 39, 91, .08);
}

.quote-progress__track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #4f91ff);
  transition: width .45s var(--ease);
}

.quote-step {
  animation: quoteStepIn .35s var(--ease) both;
}

.quote-step[hidden] {
  display: none !important;
}

@keyframes quoteStepIn {
  from { opacity: 0; transform: translateY(.55rem); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-step__head {
  margin-bottom: 1.4rem;
}

.quote-step__number {
  margin: 0 0 .35rem;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-step__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: .98;
}

.quote-step__head > p:last-child {
  max-width: 39rem;
  margin: .6rem 0 0;
  color: rgba(5, 39, 91, .58);
  font-size: .88rem;
  line-height: 1.55;
}

.quote-route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: .9rem;
  background: rgba(232, 242, 255, .65);
}

.quote-route-card > div {
  display: grid;
  gap: .2rem;
}

.quote-route-card span,
.quote-field > span {
  color: rgba(5, 39, 91, .55);
  font-size: .7rem;
  font-weight: 600;
}

.quote-route-card strong {
  color: var(--navy);
  font-size: .94rem;
  font-weight: 600;
}

.quote-route-card strong i {
  margin: 0 .35rem;
  color: var(--blue);
  font-style: normal;
}

.quote-text-button {
  appearance: none;
  padding: .25rem;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
}

.quote-route-edit {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: end;
  gap: .7rem;
  margin: -.25rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: .9rem;
  background: #fff;
  animation: quoteReveal .25s var(--ease) both;
}

.quote-route-edit__arrow {
  padding-bottom: .82rem;
  color: var(--blue);
}

.quote-question {
  min-width: 0;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(5, 39, 91, .09);
  border-radius: .9rem;
  background: rgba(255,255,255,.66);
}

.quote-question--compact {
  padding: 0;
  border: 0;
  background: transparent;
}

.quote-question--featured {
  border-color: rgba(0, 102, 255, .17);
  background: rgba(229, 240, 255, .56);
}

.quote-question legend {
  max-width: 100%;
  padding: 0 .35rem;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
}

.quote-question__hint {
  margin: .2rem 0 .75rem;
  color: rgba(5, 39, 91, .5);
  font-size: .7rem;
  line-height: 1.45;
}

.quote-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-top: .65rem;
}

.quote-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-width: 0;
  padding: .75rem;
  border: 1px solid rgba(5, 39, 91, .08);
  border-radius: .75rem;
  background: #fff;
}

.quote-counter > div:first-child {
  display: grid;
  gap: .15rem;
  min-width: 0;
}

.quote-counter strong {
  font-size: .78rem;
}

.quote-counter small,
.quote-field > small,
.quote-field > span small {
  color: rgba(5, 39, 91, .42);
  font-size: .62rem;
  font-weight: 500;
  line-height: 1.4;
}

.quote-counter__control {
  display: grid;
  grid-template-columns: 1.8rem 1.6rem 1.8rem;
  align-items: center;
  text-align: center;
}

.quote-counter__control button {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(5,39,91,.12);
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--navy);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.quote-counter__control button:hover {
  border-color: rgba(0, 102, 255, .32);
  background: #edf5ff;
}

.quote-counter__control output {
  font-size: .76rem;
  font-weight: 700;
}

.quote-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: .65rem;
}

.quote-choice-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-choice-stack {
  display: grid;
  gap: .6rem;
  margin-top: .65rem;
}

.quote-choice {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.quote-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-choice > span {
  display: grid;
  min-height: 100%;
  gap: .2rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: .75rem;
  background: #fff;
  transition: border-color .22s, background .22s, box-shadow .22s, transform .22s var(--ease);
}

.quote-choice:hover > span {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 255, .26);
}

.quote-choice input:checked + span {
  border-color: rgba(0, 102, 255, .48);
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(0, 102, 255, .08);
}

.quote-choice input:focus-visible + span,
.quote-chip-row input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.quote-choice b {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
}

.quote-choice small {
  color: rgba(5, 39, 91, .47);
  font-size: .65rem;
  line-height: 1.4;
}

.quote-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .6rem;
}

.quote-chip-row label {
  position: relative;
  cursor: pointer;
}

.quote-chip-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-chip-row label > span {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  padding: .55rem .8rem;
  border: 1px solid rgba(5, 39, 91, .11);
  border-radius: 999px;
  background: #fff;
  color: rgba(5, 39, 91, .72);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color .22s, background .22s, color .22s, transform .22s var(--ease);
}

.quote-chip-row label:hover > span {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 255, .28);
}

.quote-chip-row input:checked + span {
  border-color: var(--blue);
  background: var(--navy);
  color: #fff;
}

.quote-date-block {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(5, 39, 91, .09);
  border-radius: .9rem;
  background: rgba(255,255,255,.66);
}

.quote-date-block__date {
  margin-bottom: 1rem;
}

.quote-field {
  display: grid;
  gap: .38rem;
  min-width: 0;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
  width: 100%;
  min-width: 0;
  padding: .78rem .85rem;
  border: 1px solid rgba(5, 39, 91, .12);
  border-radius: .7rem;
  outline: none;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: .78rem;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}

.quote-field textarea {
  resize: vertical;
  line-height: 1.5;
}

.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
  border-color: rgba(0, 102, 255, .55);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, .08);
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: rgba(5, 39, 91, .3);
}

.quote-inline-fields,
.quote-split-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.quote-inline-fields .quote-question,
.quote-split-questions .quote-question {
  margin-bottom: 0;
}

.quote-toggle-line {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: .65rem 0 .25rem;
  color: rgba(5, 39, 91, .7);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
}

.quote-toggle-line input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--blue);
}

.quote-help {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  margin-left: .25rem;
  padding: 0;
  border: 1px solid rgba(5,39,91,.18);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: .65rem;
  font-weight: 700;
  cursor: help;
}

.quote-budget-row {
  margin-bottom: 1rem;
}

.quote-money-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(5, 39, 91, .12);
  border-radius: .7rem;
  background: #fff;
  overflow: hidden;
}

.quote-money-input b {
  padding-left: .9rem;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
}

.quote-money-input input {
  border: 0;
  box-shadow: none !important;
}

.quote-final-note {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: .85rem;
  background: rgba(0, 118, 91, .07);
  color: #0b604f;
}

.quote-final-note > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 118, 91, .1);
  font-size: .72rem;
}

.quote-final-note p {
  margin: 0;
  font-size: .7rem;
  line-height: 1.45;
}

.quote-conditional {
  animation: quoteReveal .28s var(--ease) both;
}

.quote-conditional.is-hidden,
.quote-route-edit.is-hidden,
.quote-chip-row.is-hidden,
[data-phone-contact].is-hidden,
.quote-submit.is-hidden {
  display: none !important;
}

@keyframes quoteReveal {
  from { opacity: 0; transform: translateY(-.3rem); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-wizard__footer {
  position: sticky;
  z-index: 4;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem calc(clamp(1.2rem, 4vw, 3rem) * -1) 0;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid rgba(5, 39, 91, .08);
  background: rgba(249, 252, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quote-wizard__footer > p {
  margin: 0;
  color: rgba(5, 39, 91, .42);
  font-size: .66rem;
  font-weight: 600;
  white-space: nowrap;
}

.quote-back {
  justify-self: start;
  padding: .65rem .35rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: .74rem;
  font-weight: 600;
  cursor: pointer;
}

.quote-back:disabled {
  opacity: .25;
  cursor: default;
}

.quote-next {
  justify-self: end;
  min-width: 9.5rem;
  min-height: 3rem;
  justify-content: center;
  border: 0;
}

.quote-submit {
  min-width: 12rem;
}

.quote-counter--single {
  width: min(100%, 24rem);
  margin-top: .65rem;
}

@media (max-width: 760px) {
  .quote-modal {
    padding: .5rem;
  }

  .quote-modal__panel.quote-wizard {
    max-height: calc(100dvh - 1rem);
    padding: 1.15rem 1rem 0;
    border-radius: .95rem;
  }

  .quote-modal__close {
    top: .9rem;
    right: .9rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .quote-wizard__topline {
    display: block;
    padding-right: 2.7rem;
  }

  .quote-wizard__route-badge {
    width: max-content;
    max-width: 100%;
    margin-top: .8rem;
  }

  .quote-progress {
    margin: 1.25rem 0 1.3rem;
  }

  .quote-progress ol {
    gap: .2rem;
  }

  .quote-progress li {
    display: grid;
    justify-items: center;
    gap: .25rem;
    font-size: .58rem;
    text-align: center;
  }

  .quote-progress li span {
    width: 1.45rem;
    height: 1.45rem;
  }

  .quote-progress li b {
    width: 100%;
    white-space: normal;
  }

  .quote-counters,
  .quote-choice-grid--3,
  .quote-inline-fields,
  .quote-split-questions {
    grid-template-columns: 1fr;
  }

  .quote-counter {
    min-height: 3.5rem;
  }

  .quote-route-edit {
    grid-template-columns: 1fr auto 1fr;
  }

  .quote-route-edit .quote-text-button {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .quote-choice-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .quote-wizard__footer {
    margin: 1.3rem -1rem 0;
    padding: .85rem 1rem;
    grid-template-columns: auto 1fr auto;
    gap: .55rem;
  }

  .quote-wizard__footer > p {
    justify-self: center;
    font-size: .58rem;
  }

  .quote-next,
  .quote-submit {
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .72rem;
  }
}

@media (max-width: 460px) {
  .quote-modal.quote-modal .quote-wizard__topline h2 {
    font-size: 1.65rem;
  }

  .quote-wizard__route-badge {
    font-size: .68rem;
  }

  .quote-progress li b {
    font-size: .5rem;
    line-height: 1.1;
  }

  .quote-choice-grid--2 {
    grid-template-columns: 1fr;
  }

  .quote-question,
  .quote-date-block {
    padding: .8rem;
  }

  .quote-chip-row label > span {
    min-height: 2.15rem;
    padding: .48rem .65rem;
    font-size: .66rem;
  }

  .quote-route-edit {
    grid-template-columns: 1fr;
  }

  .quote-route-edit__arrow {
    display: none;
  }

  .quote-wizard__footer > p {
    display: none;
  }

  .quote-wizard__footer {
    grid-template-columns: auto 1fr;
  }

  .quote-next,
  .quote-submit {
    justify-self: stretch;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-step,
  .quote-conditional,
  .quote-route-edit {
    animation: none !important;
  }
}


/* --------- September refinement: lighter request form + editorial insights --------- */
.quote-modal__panel.quote-wizard {
  width: min(100%, 74rem);
}

.quote-step.quote-step--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1rem;
  align-items: start;
}

.quote-step.quote-step--grid > * {
  min-width: 0;
}

.quote-step.quote-step--grid > .quote-step__head,
.quote-step.quote-step--grid > .quote-route-card,
.quote-step.quote-step--grid > .quote-route-edit,
.quote-step.quote-step--grid > .quote-inline-fields,
.quote-step.quote-step--grid > .quote-final-note,
.quote-step.quote-step--grid > label.quote-field,
.quote-step.quote-step--grid > .quote-budget-row {
  grid-column: 1 / -1;
}

.quote-step__head {
  margin-bottom: .2rem;
}

.quote-step__head h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.02;
}

.quote-step__head > p:last-child {
  max-width: 52rem;
  margin-top: .48rem;
  font-size: .82rem;
}

.quote-route-card,
.quote-question,
.quote-date-block,
.quote-route-edit {
  margin-bottom: 0;
}

.quote-question,
.quote-date-block {
  padding: .9rem;
}

.quote-question legend {
  font-size: .82rem;
}

.quote-question__hint {
  margin: .2rem 0 .65rem;
  font-size: .66rem;
}

.quote-date-block {
  display: grid;
  gap: .85rem;
}

.quote-date-block__date {
  margin-bottom: 0;
}

.quote-choice > span {
  padding: .68rem .78rem;
}

.quote-chip-row label > span {
  min-height: 2.2rem;
  padding: .5rem .76rem;
  font-size: .7rem;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
  padding: .72rem .8rem;
  font-size: .76rem;
}

.quote-counters {
  gap: .55rem;
}

.quote-counter {
  padding: .68rem .72rem;
}

.quote-modal.quote-modal .quote-wizard__topline h2 {
  max-width: 43rem;
}

.insights {
  background: transparent;
}

.insights__shell {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.insights__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.insights__header .eyebrow {
  margin-bottom: .85rem;
}

.insights__header h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  line-height: .96;
}

.insights__intro {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: #607290;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.55;
}

.insights__all {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem .85rem 1.15rem;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 .6rem 1.8rem rgba(5, 39, 91, .05);
}

.insights__all span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 95, 216, .08);
  color: var(--blue);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.insight-card {
  display: grid;
  gap: .9rem;
  padding: .8rem;
  border: 1px solid rgba(5, 39, 91, .08);
  border-radius: 1.35rem;
  background: rgba(255,255,255,.84);
  box-shadow: 0 .75rem 2rem rgba(5, 39, 91, .04);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 95, 216, .14);
  box-shadow: 0 1rem 2.5rem rgba(5, 39, 91, .08);
}

.insight-card > div:first-child {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.insight-card h3 {
  margin: 0;
  font-family: "Unica", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.insight-card__arrow {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(5, 39, 91, .1);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 1rem;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .quote-modal__panel.quote-wizard {
    width: min(100%, 68rem);
  }

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

@media (max-width: 760px) {
  .quote-step.quote-step--grid {
    grid-template-columns: 1fr;
  }

  .quote-step.quote-step--grid > * {
    grid-column: auto !important;
  }

  .quote-modal__panel.quote-wizard {
    width: min(100%, 100%);
  }

  .insights__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .insights__all {
    justify-self: start;
  }

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


/* --------- Final polish: editorial cards, footer blend and stable loader reveal --------- */
/* Keep the page's scroll/sticky geometry identical before and after the preloader leaves. */
html {
  scrollbar-gutter: stable;
}
html.aero-preloading,
html.aero-preloading body {
  overflow-x: clip;
  overflow-y: auto;
}
#aero-site-preloader {
  pointer-events: auto;
  touch-action: none;
}

/* The earlier generic insight-card rule also targeted the copy div, creating a large
   artificial aspect-ratio spacer. Reset it and use a deliberate portrait crop. */
.insight-card > .insight-card__body {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
}
.insight-card > div:first-child {
  aspect-ratio: 3 / 4;
}
.insight-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.insight-card {
  align-content: start;
}
.insight-card__body {
  min-height: 5.1rem;
  padding: .05rem .1rem .15rem;
}

/* Fade the entire contact scene — sky and cloud layers together — out of white. */
.contact-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(11rem, 29vh, 20rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(255,255,255,.99) 16%,
    rgba(255,255,255,.94) 31%,
    rgba(255,255,255,.72) 49%,
    rgba(255,255,255,.35) 70%,
    rgba(255,255,255,0) 100%
  );
}
.contact-cta__sky::before {
  display: none;
}
.contact-cta__copy {
  width: min(100%, 54rem);
}
.contact-cta__eyebrow {
  margin: 0 0 1rem;
  color: rgba(5,39,91,.66);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-cta h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .94;
}
.contact-cta__support {
  max-width: 42rem;
  margin: 1.55rem auto 0;
  color: rgba(5,39,91,.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}
.contact-cta .button {
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .insight-grid {
    gap: 1rem;
  }
  .insight-card > div:first-child {
    aspect-ratio: 3 / 4;
  }
  .insight-card__body {
    min-height: 0;
  }
  .contact-cta::before {
    height: clamp(10rem, 26vh, 15rem);
  }
  .contact-cta__support {
    font-size: 1rem;
  }
}


/* -------- final adjustments: lighter CTA fade, richer insights, calmer joins -------- */
.contact-cta::before {
  height: clamp(4.5rem, 12vh, 8rem);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.96) 18%,
    rgba(255,255,255,.72) 42%,
    rgba(255,255,255,.25) 72%,
    rgba(255,255,255,0) 100%
  );
}

.contact-cta__copy {
  width: min(100%, 56rem);
}

/* Lower the decorative backdrop in the price guide and add a fail-safe top fade. */
.price-guide::before {
  top: clamp(3.5rem, 7vw, 6rem);
}
.price-guide::after {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.92) 7rem,
      rgba(255,255,255,0) 15rem),
    radial-gradient(circle at 91% 15%, rgba(205, 232, 255, 0.22), transparent 34%);
}

/* Make the section header sit in one line on desktop and keep the supporting
   copy directly underneath it, left aligned. */
.services .section-head h2 {
  font-size: clamp(3rem, 5vw, 5.55rem);
  white-space: nowrap;
}
.services__lead {
  width: min(100%, var(--content));
  max-width: none;
  margin: calc(clamp(2.75rem, 5vw, 5rem) * -0.42) auto clamp(2.5rem, 4vw, 4rem);
}

/* Testimonial copy smaller and navigation placed to the right side. */
.testimonial-card blockquote {
  font-size: clamp(1.32rem, 1.72vw, 1.7rem);
}
.testimonial-card p {
  font-size: 0.67rem;
}
.testimonial-carousel {
  position: relative;
  width: min(100%, 96rem);
  padding-right: clamp(4.2rem, 6vw, 5.4rem);
}
.testimonial-carousel__footer {
  width: min(calc(100% - var(--page) - var(--page)), 84rem);
}
.testimonial-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: .7rem;
}
.testimonial-controls button[data-testimonial-prev]:disabled {
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
}
.testimonial-controls button[data-testimonial-next]:disabled {
  opacity: 0.3;
}

/* Improve the editorial cards: landscape image, teaser copy and read CTA. */
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.insight-card > div:first-child {
  aspect-ratio: 4 / 3;
}
.insight-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: .1rem .12rem .1rem;
}
.insight-card h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.36rem);
  line-height: 1.2;
}
.insight-card__body p {
  margin: .75rem 0 0;
  color: #6a7d99;
  font-size: .95rem;
  line-height: 1.58;
}
.insight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}
.insight-card__footer em {
  font-style: normal;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.insight-card__arrow {
  width: 2.7rem;
  height: 2.7rem;
}

@media (max-width: 1023px) {
  .testimonial-card blockquote {
    font-size: clamp(1.22rem, 2vw, 1.55rem);
  }
  .testimonial-card p {
    font-size: 0.62rem;
  }
  .route-feedback-shell .globe-cloud--left {
    animation-duration: 22s;
  }
  .route-feedback-shell .globe-cloud--band {
    animation-duration: 28s;
  }
  .route-feedback-shell .globe-cloud--puff {
    animation-duration: 31s;
  }
  .route-feedback-shell .globe-cloud--right {
    animation-duration: 24s;
  }
}

@media (max-width: 860px) {
  .services .section-head h2 {
    white-space: normal;
  }
  .testimonial-carousel {
    padding-right: 0;
  }
  .testimonial-controls {
    position: static;
    transform: none;
    flex-direction: row;
  }
  .testimonial-carousel__footer {
    width: min(calc(100% - var(--page) - var(--page)), 89rem);
  }
}

@media (max-width: 760px) {
  .contact-cta::before {
    height: clamp(4rem, 11vh, 6.5rem);
  }
  .insight-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .insight-grid::-webkit-scrollbar {
    display: none;
  }
  .insight-card {
    flex: 0 0 min(84vw, 24rem);
    scroll-snap-align: start;
  }
  .insight-card > div:first-child {
    aspect-ratio: 4 / 3;
  }
  .insight-card__body p {
    font-size: .9rem;
  }
  .testimonial-card blockquote {
    font-size: clamp(1.08rem, 5.2vw, 1.38rem);
  }
  .testimonial-card p {
    font-size: 0.58rem;
  }
  .route-feedback-shell .globe-cloud--left {
    animation-duration: 14s;
  }
  .route-feedback-shell .globe-cloud--band {
    animation-duration: 18s;
  }
  .route-feedback-shell .globe-cloud--puff {
    animation-duration: 21s;
  }
  .route-feedback-shell .globe-cloud--right {
    animation-duration: 16s;
  }
}


/* --------- final layout refinement: intro, route, reviews, CTA and footer --------- */
.intro {
  background: #fff !important;
}

.hero__mouse-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .38rem;
  margin-top: 1rem;
  color: rgba(3,28,67,.68);
}
.hero__mouse-cue small {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__mouse {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 2.05rem;
  border: 1.5px solid rgba(3,28,67,.72);
  border-radius: .75rem;
  background: rgba(255,255,255,.18);
  box-shadow: 0 1px 7px rgba(255,255,255,.55);
}
.hero__mouse i {
  position: absolute;
  top: .36rem;
  left: 50%;
  width: 2px;
  height: .38rem;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: hero-mouse-wheel 1.65s ease-in-out infinite;
}
@keyframes hero-mouse-wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  75% { opacity: 1; transform: translate(-50%, .48rem); }
  100% { opacity: 0; transform: translate(-50%, .58rem); }
}

.testimonial-card__rating {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin: 1.2rem 0 .45rem;
  color: #f2c45e;
  font-size: .88rem;
  letter-spacing: .12em;
  line-height: 1;
}
.testimonial-card p {
  display: grid;
  gap: .28rem;
}
.testimonial-card p strong {
  color: #f7fbff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
}
.testimonial-card p span {
  color: #aebfd5;
}

.contact-cta__copy {
  width: min(100%, 62rem);
}
.contact-cta h2 {
  font-size: clamp(3.3rem, 6.65vw, 6.65rem);
}

/* A more complete footer/navigation structure. */
.site-footer {
  padding: clamp(4.75rem, 8vw, 7rem) var(--page) 2rem;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.45fr) repeat(3, minmax(9rem, .72fr));
  gap: clamp(2.2rem, 5vw, 5.5rem);
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand-block > p {
  max-width: 25rem;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  line-height: 1.7;
}
.footer-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.7rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.footer-mini-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.07);
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .72rem;
}
.footer-column h3 {
  margin: 0 0 .5rem;
  color: rgba(255,255,255,.96);
  font-family: "Unica", Arial, sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.61);
  font-size: .82rem;
  line-height: 1.45;
}
.footer-column a {
  transition: color .2s, transform .2s;
}
.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer-column--contact a {
  color: rgba(255,255,255,.82);
}
.footer-bottom {
  width: min(100%, var(--content));
  max-width: none;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .intro::before {
    left: calc(clamp(-42rem, -34vw, -25rem) + 100px);
  }
  .intro::after {
    right: calc(clamp(-42rem, -34vw, -25rem) + 100px);
    top: calc(clamp(21rem, 30vw, 29rem) - 100px);
  }
  .intro__title h2 {
    font-size: clamp(3.75rem, 6.15vw, 6.08rem);
  }
  .route-feedback-shell .globe-section__copy {
    width: min(calc(100% - var(--page) - var(--page)), 82rem);
  }
  .route-feedback-shell .globe-section__copy h2 {
    font-size: clamp(3.3rem, 6vw, 6.1rem);
    white-space: nowrap;
  }
  .testimonial-card blockquote {
    font-size: clamp(1.19rem, 1.63vw, 1.54rem);
  }
  .contact-cta__copy {
    width: min(100%, 68rem);
  }
  .contact-cta h2 {
    font-size: clamp(3.15rem, 6.3vw, 6.3rem);
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-column--contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 700px) {
  .hero__mouse-cue {
    margin-top: .8rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem 1.5rem;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
  .footer-column--contact {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mouse i { animation: none; }
}
