/* ============================================================
   SAS Airports v3 — Aurora
   Dark/light dual theme · gradient-led · aviation-grade
   ============================================================ */

:root {
  /* Brand — derived from the new logo gradient */
  --cyan:      #5BB4E5;
  --azure:     #2D6FE0;
  --indigo:    #1E2A8C;
  --platinum:  #C7CDD1;
  --steel:     #6B7280;

  /* Gradients (theme-independent) */
  --gradient-flow: linear-gradient(120deg, #5BB4E5 0%, #2D6FE0 35%, #1E2A8C 70%, #6B7280 100%);
  --gradient-text: linear-gradient(120deg, #98D6F5 0%, #5BB4E5 40%, #2D6FE0 100%);
  --gradient-soft: linear-gradient(120deg, rgba(91,180,229,.18), rgba(45,111,224,.18) 50%, rgba(107,114,128,.18));

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  ui-monospace, "SFMono-Regular", Menlo, "JetBrains Mono", "Roboto Mono", monospace;

  /* Geometry */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 72px;
  --radius: 6px;
  --radius-card: 14px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.22, .8, .25, 1);
  --ease-out: cubic-bezier(.2, .9, .25, 1);
}

/* ---------- Themes ---------- */
[data-theme="dark"] {
  --bg:        #050816;
  --surface:   #0B1024;
  --surface-2: #141A33;
  --surface-3: #1C2547;
  --text:      #E8ECF4;
  --text-soft: #9BA3B8;
  --text-mute: #6770895c;
  --line:      rgba(199,205,209,.10);
  --line-soft: rgba(199,205,209,.06);
  --shadow:    0 30px 80px -40px rgba(0, 0, 0, .8);
  --glow:      0 0 60px -10px rgba(91, 180, 229, .35);

  /* Aurora layers - brighter on dark */
  --aurora-1: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,180,229,.30), transparent 65%);
  --aurora-2: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(45,111,224,.25), transparent 70%);
  --aurora-3: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(30,42,140,.30), transparent 70%);
}

[data-theme="light"] {
  --bg:        #F4F6FB;
  --surface:   #FFFFFF;
  --surface-2: #E8ECF4;
  --surface-3: #DCE2EE;
  --text:      #0A0E1A;
  --text-soft: #4A5168;
  --text-mute: #8590A9;
  --line:      rgba(10,14,26,.10);
  --line-soft: rgba(10,14,26,.05);
  --shadow:    0 28px 70px -38px rgba(10, 14, 26, .25);
  --glow:      0 0 60px -10px rgba(45, 111, 224, .25);

  --aurora-1: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,180,229,.22), transparent 65%);
  --aurora-2: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(45,111,224,.18), transparent 70%);
  --aurora-3: radial-gradient(ellipse 70% 55% at 85% 40%, rgba(107,114,128,.18), transparent 70%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark light;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--azure); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }
.header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand__mark { width: auto; height: 36px; flex: none; object-fit: contain; }
.brand__word {
  display: flex; flex-direction: column; line-height: 1;
}
.brand__word em {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.02em;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-pill);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.is-active { color: var(--text); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gradient-flow);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 8px;
  padding: 10px 18px !important;
  color: #fff !important;
  background: var(--gradient-flow) !important;
  background-size: 200% 100% !important;
  transition: background-position .5s var(--ease), transform .25s var(--ease) !important;
}
.nav__cta:hover {
  background-position: 100% 0 !important;
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.theme-toggle:hover { color: var(--text); border-color: var(--text-soft); background: var(--surface-2); }
.theme-toggle svg { width: 16px; height: 16px; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Burger */
.burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  gap: 4px; flex-direction: column;
  color: var(--text);
  transition: border-color .25s var(--ease);
}
.burger span {
  display: block; width: 16px; height: 1.5px;
  background: currentColor; border-radius: 1px;
  transition: transform .3s var(--ease), opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ============================================================
   COMMON
   ============================================================ */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section__head {
  display: grid;
  grid-template-columns: minmax(auto, 200px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-flow);
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--text);
}
.section__title em {
  font-style: italic;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-soft);
  max-width: 60ch;
  margin: 18px 0 0;
  line-height: 1.55;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .35s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  color: #fff;
  background: var(--gradient-flow);
  background-size: 200% 100%;
  background-position: 0 0;
}
.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: var(--glow);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--text-soft);
  background: var(--surface-2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(60px, 10vw, 120px)) var(--gutter) clamp(60px, 8vw, 100px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

/* Reception hall image drifting behind the hero — slow Ken Burns effect */
.hero__panorama {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: url("../assets/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .22;
  animation: hero-kenburns 40s ease-in-out infinite alternate;
  filter: saturate(.85) contrast(.95);
  transform-origin: 60% 40%;
}
[data-theme="light"] .hero__panorama {
  opacity: .14;
  filter: saturate(.6) contrast(.95) brightness(1.15);
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.06) translate(-1%, 0); }
  100% { transform: scale(1.14) translate(2%, -2%); }
}

/* Gradient mask so the bottom fades to surface — keeps text legible */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}
.hero::before {
  background: var(--aurora-1), var(--aurora-2), var(--aurora-3);
  animation: aurora-drift 22s ease-in-out infinite alternate;
}
.hero::after {
  background:
    radial-gradient(ellipse 40% 30% at 70% 90%, rgba(91,180,229,.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(45,111,224,.15), transparent 70%);
  animation: aurora-drift 28s ease-in-out -8s infinite alternate;
}

/* Bottom-fade gradient over the panorama for type contrast */
.hero__panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg) 70%, transparent) 70%, var(--bg) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 40%, transparent) 0%, transparent 50%);
}

@keyframes aurora-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(-1%, 1%, 0) scale(1.02); }
}

.hero__inner {
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  width: max-content;
}
.hero__ticker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.hero__ticker .sep { opacity: .35; }
.hero__ticker #time { color: var(--text); font-variant-numeric: tabular-nums; }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: .96;
  letter-spacing: -.035em;
  margin: 0;
  color: var(--text);
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--text-soft), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .25; transform: scaleY(.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  background: var(--bg);
  position: relative;
}
.journey__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.journey__list::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--azure), var(--indigo), var(--steel), transparent);
  opacity: .55;
}

.step {
  position: relative;
  padding: 0 16px;
  padding-top: 72px;
}
.step__num {
  position: absolute;
  top: 8px; left: 16px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.step:hover .step__num {
  border-color: transparent;
  background: var(--gradient-flow);
  color: #fff;
}
.step__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--text);
}
.step__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   TOUR (Pannellum)
   ============================================================ */
.tour {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.panorama-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.panorama {
  width: 100%;
  height: clamp(420px, 64vh, 720px);
  background: var(--surface-2);
}
.panorama__label {
  position: absolute;
  top: 18px; right: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 16, 36, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  z-index: 4;
}

.panorama__controls {
  position: absolute;
  bottom: 18px; right: 18px;
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: var(--radius-pill);
  background: rgba(11, 16, 36, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 4;
}
.pano-ctrl {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.pano-ctrl:hover { background: rgba(255,255,255,.12); }
.pano-ctrl:active { transform: scale(.94); }
.pano-ctrl svg { width: 16px; height: 16px; }
.pano-ctrl .ic-shrink { display: none; }
.panorama-wrap.is-fullscreen .pano-ctrl[data-pano="fullscreen"] .ic-expand { display: none; }
.panorama-wrap.is-fullscreen .pano-ctrl[data-pano="fullscreen"] .ic-shrink { display: block; }

/* Pseudo-fullscreen fallback for iOS (where the JS fullscreen API is blocked) */
.panorama-wrap.is-fullscreen,
.panorama-wrap:fullscreen,
.panorama-wrap:-webkit-full-screen {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-width: none !important;
  z-index: 100 !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #000 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.panorama-wrap.is-fullscreen .panorama,
.panorama-wrap:fullscreen .panorama,
.panorama-wrap:-webkit-full-screen .panorama {
  width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
}
.panorama-wrap.is-fullscreen .pnlm-ui,
.panorama-wrap.is-fullscreen .pnlm-render-container,
.panorama-wrap:fullscreen .pnlm-ui,
.panorama-wrap:fullscreen .pnlm-render-container,
.panorama-wrap:-webkit-full-screen .pnlm-ui,
.panorama-wrap:-webkit-full-screen .pnlm-render-container {
  width: 100% !important;
  height: 100% !important;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.thumb {
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: all .25s var(--ease);
}
.thumb:hover {
  border-color: var(--azure);
  transform: translateY(-1px);
}
.thumb.is-active {
  border-color: transparent;
  background: var(--gradient-flow);
  color: #fff;
}
.thumb__num {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  opacity: .7;
}
.thumb__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

/* Pannellum overrides for both themes */
.pnlm-container { background: var(--surface-2) !important; }
.pnlm-load-box { color: var(--text) !important; }
.pnlm-load-box p { color: var(--text-soft) !important; }
.pnlm-panorama-info, .pnlm-title-box, .pnlm-author-box,
.pnlm-controls-container, .pnlm-zoom-controls, .pnlm-fullscreen-toggle-button,
.pnlm-compass, .pnlm-orientation-button, .pnlm-hotspot-base { display: none !important; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.fleet__image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.fleet__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fleet__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,8,22,.5));
  pointer-events: none;
}
.fleet__image .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 16, 36, .65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

.fleet__body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.fleet__body p:first-child {
  color: var(--text);
  font-size: 19px;
}

.fleet__stats {
  margin-top: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat__value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.02em;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__details { display: grid; gap: 28px; }
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.contact__row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-top: 6px;
}
.contact__value {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}
.contact__value a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.contact__value a:hover { color: var(--cyan); border-color: var(--cyan); }

.contact__form {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 16px;
}
.form__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.015em;
  margin: 0 0 4px;
  color: var(--text);
}
.form__sub {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.field { display: grid; gap: 6px; }
.field__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--surface);
}
.field textarea { min-height: 100px; resize: vertical; font-family: inherit; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn--block {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(40px, 5vw, 60px) 0 clamp(28px, 3vw, 36px);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 28px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.footer__nav a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .journey__list { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .journey__list::before { display: none; }
  .step { padding-top: 64px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .fleet__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header { z-index: 70; }
  .brand__sub { display: none; }
  .section__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .journey__list { grid-template-columns: repeat(2, 1fr); }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .fleet__stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .nav {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(84vw, 340px);
    height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: var(--bg);
    border-left: 1px solid var(--line);
    padding: 28px 22px 40px;
    transform: translateX(110%);
    transition: transform .35s var(--ease);
    z-index: 60;
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 14px 18px; font-size: 15px; border-radius: var(--radius); }
  .nav a.is-active::after { display: none; }
  .nav__cta { text-align: center; margin: 12px 0 0; }

  body.is-locked { overflow: hidden; }

  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(5, 8, 22, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 55;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }

  .burger { display: inline-flex; }
}

@media (max-width: 480px) {
  .thumbs { grid-template-columns: 1fr 1fr; }
  .hero__scroll { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
