:root {
  --navy-950: #020b18;
  --navy-900: #06152c;
  --navy-800: #0a2343;
  --navy-700: #12385f;
  --teal-500: #12c7cf;
  --teal-600: #069eaa;
  --aqua-100: #dcfbfc;
  --gold-400: #e8bd68;
  --silver-100: #f5f7fa;
  --silver-200: #e7edf3;
  --silver-300: #d6e0e9;
  --ink: #102238;
  --muted: #5d6d80;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(3, 19, 40, .08);
  --shadow-lg: 0 28px 70px rgba(3, 19, 40, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(90deg, rgba(2,11,24,.97), rgba(7,29,56,.94));
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 35px rgba(0,0,0,.14);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.brand img {
  width: 61px;
  height: 61px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 650;
}
.site-nav a { position: relative; transition: color .2s ease; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--teal-500);
  transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.site-nav a:hover { color: #fff; }
.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), #78eef1);
  color: var(--navy-950) !important;
  box-shadow: 0 10px 28px rgba(18,199,207,.24);
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: #fff; }

.hero {
  min-height: 820px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: url("assets/hero-banner.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 84px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(to top, rgba(2,11,24,.42), transparent);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 35%, rgba(18,199,207,.10), transparent 30%),
    linear-gradient(90deg, rgba(2,11,24,.97) 0%, rgba(2,13,29,.88) 42%, rgba(2,13,29,.36) 72%, rgba(2,13,29,.17) 100%);
}
.hero-content { position: relative; padding-block: 120px 100px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--teal-500);
  font-size: .78rem;
  letter-spacing: .20em;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--teal-600); }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.25rem, 6.3vw, 6.15rem);
  letter-spacing: -.045em;
  text-shadow: 0 8px 28px rgba(0,0,0,.26);
}
h2 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  letter-spacing: -.03em;
}
.hero-copy {
  max-width: 675px;
  margin: 0 0 36px;
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.button.primary {
  background: linear-gradient(135deg, var(--teal-500), #7beff2);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(18,199,207,.22);
}
.button.secondary { border-color: rgba(255,255,255,.48); color: #fff; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.button.light { background: #fff; color: var(--navy-900); }
.button.full { width: 100%; border-radius: 13px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 27px; margin-top: 45px; color: rgba(255,255,255,.78); font-size: .9rem; }
.hero-points span::before { content: "✓"; margin-right: 9px; color: var(--teal-500); font-weight: 900; }

.trust-strip {
  position: relative;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800), var(--navy-950));
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(3,19,40,.18);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 29px 25px; border-right: 1px solid rgba(255,255,255,.11); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--teal-500); font-size: 1.45rem; letter-spacing: .08em; }
.trust-grid span { color: rgba(255,255,255,.68); font-size: .87rem; }

.section { padding: 108px 0; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading > p:last-child, .airport-copy > p, .about-copy > p { color: var(--muted); }
.card-grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--teal-500), var(--navy-700));
  opacity: .9;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(18,199,207,.38); }
.service-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(18,199,207,.20);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(18,199,207,.17), rgba(10,35,67,.08));
  color: var(--teal-600);
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}
.service-card h3 { font-size: 1.32rem; margin-bottom: 13px; color: var(--navy-900); }
.service-card p { margin: 0; color: var(--muted); }

.airport-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(18,199,207,.16), transparent 27%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.airport-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
}
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.airport-image-wrap { position: relative; z-index: 1; }
.airport-image-wrap::before { content: ""; position: absolute; inset: 10% 6%; border-radius: 50%; background: rgba(18,199,207,.20); filter: blur(48px); }
.airport-image-wrap img { position: relative; filter: drop-shadow(0 30px 52px rgba(0,0,0,.42)); }
.airport-copy { position: relative; z-index: 1; }
.airport-copy > p { color: rgba(255,255,255,.70); }
.check-list { list-style: none; margin: 30px 0; padding: 0; }
.check-list li { margin: 14px 0; color: rgba(255,255,255,.86); }
.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), #74eef1);
  color: var(--navy-950);
  font-size: .8rem;
  font-weight: 900;
}
.text-link { color: var(--teal-500); font-weight: 800; }

.about-section {
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    radial-gradient(circle at 15% 20%, rgba(18,199,207,.14), transparent 24%),
    var(--silver-100);
}
.quote { margin: 30px 0 !important; color: var(--navy-900) !important; font-family: "Playfair Display", Georgia, serif; font-size: 1.75rem; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-stats div { padding: 20px 15px; border-radius: 15px; background: #fff; border: 1px solid var(--silver-200); box-shadow: 0 8px 22px rgba(3,19,40,.05); }
.mini-stats strong { display: block; color: var(--teal-600); font-size: 1.5rem; }
.mini-stats span { display: block; color: var(--muted); font-size: .78rem; }
.about-panel {
  min-height: 535px;
  display: grid;
  place-items: center;
  padding: 50px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 32%, rgba(18,199,207,.23), transparent 32%),
    linear-gradient(145deg, #143d67 0%, #071a34 58%, #020b18 100%);
  box-shadow: var(--shadow-lg);
}
.about-panel img { max-height: 445px; filter: drop-shadow(0 24px 38px rgba(0,0,0,.42)); }


/* Founder section */
.founder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(18,199,207,.12), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef4f8 100%);
}
.founder-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -220px;
  bottom: -250px;
  border: 1px solid rgba(10,35,67,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(10,35,67,.025), 0 0 0 140px rgba(10,35,67,.016);
}
.founder-layout {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 78px;
}
.founder-photo-wrap {
  position: relative;
  max-width: 540px;
}
.founder-photo-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px;
  background: var(--navy-900);
  box-shadow: 0 32px 70px rgba(3,19,40,.22);
}
.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,11,24,.28), transparent 38%);
  pointer-events: none;
}
.founder-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center 24%;
  transition: transform .5s ease;
}
.founder-photo-wrap:hover img { transform: scale(1.025); }
.founder-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  min-width: 145px;
  padding: 17px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: #fff;
  box-shadow: 0 18px 38px rgba(2,11,24,.28);
  text-align: center;
}
.founder-badge span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.founder-badge strong {
  display: block;
  margin-top: 3px;
  color: var(--teal-500);
  font-size: 1.8rem;
  line-height: 1;
}
.founder-copy > p:not(.eyebrow):not(.founder-name):not(.founder-title) { color: var(--muted); }
.founder-name {
  margin: 0;
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
}
.founder-title {
  margin: 4px 0 24px;
  color: var(--teal-600);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.founder-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.founder-values span {
  padding: 9px 13px;
  border: 1px solid rgba(18,199,207,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--navy-800);
  font-size: .78rem;
  font-weight: 750;
  box-shadow: 0 7px 18px rgba(3,19,40,.05);
}
.founder-values span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal-600);
  font-weight: 900;
}
.founder-copy blockquote {
  margin: 30px 0 0;
  padding: 19px 24px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.82);
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  box-shadow: 0 12px 28px rgba(3,19,40,.06);
}

.quote-section {
  background:
    linear-gradient(125deg, rgba(2,11,24,.97), rgba(9,35,66,.96)),
    var(--navy-900);
  color: #fff;
}
.quote-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: start; }
.booking-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 65px; align-items: center; }
.booking-layout > div > p { color: rgba(255,255,255,.72); }
.booking-note { margin-top: 24px; padding-left: 18px; border-left: 3px solid var(--teal-500); font-weight: 600; }
.booking-panel {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
  box-shadow: 0 28px 72px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.booking-panel h3 { margin-bottom: 10px; font-size: 1.55rem; }
.booking-panel > p { margin-bottom: 25px; color: rgba(255,255,255,.68); }
.booking-panel .button + .button { margin-top: 13px; }
.outline-light { border: 1px solid rgba(255,255,255,.65); background: transparent; color: #fff; }
.outline-light:hover { background: #fff; color: var(--navy-900); }
.office-line { display: flex; justify-content: space-between; gap: 20px; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.office-line span { color: rgba(255,255,255,.58); }
.office-line a { color: var(--teal-500); font-weight: 800; }

.quote-layout > div > p { color: rgba(255,255,255,.70); }
.contact-cards { display: grid; gap: 13px; margin-top: 32px; }
.contact-cards a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 21px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  transition: border-color .2s ease, transform .2s ease;
}
.contact-cards a:hover { transform: translateX(4px); border-color: rgba(18,199,207,.48); }
.contact-cards span { color: rgba(255,255,255,.62); }
.contact-cards strong { color: var(--teal-500); }
.quote-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 25px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(0,0,0,.34);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
label { display: block; margin-bottom: 17px; font-size: .87rem; font-weight: 750; color: var(--navy-800); }
input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cbd6e1;
  border-radius: 11px;
  background: #f8fafc;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal-600); background: #fff; box-shadow: 0 0 0 4px rgba(18,199,207,.12); }
textarea { resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .75rem; }

.cta-banner {
  padding: 54px 0;
  background: linear-gradient(100deg, #057f8b, var(--teal-500) 52%, #76edf1);
  color: var(--navy-950);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-content h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.cta-content .eyebrow { color: var(--navy-900); opacity: .82; }

.site-footer { padding: 76px 0 28px; background: var(--navy-950); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; }
.footer-brand img { width: 125px; margin-bottom: 17px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.28)); }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.56); }
.site-footer h3 { margin-bottom: 17px; font-size: .9rem; color: var(--teal-500); text-transform: uppercase; letter-spacing: .1em; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; color: rgba(255,255,255,.64); }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: .81rem; }
.footer-bottom span, .footer-bottom a { margin: 0; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(4,20,41,.98);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .hero { min-height: 730px; background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,11,24,.97), rgba(2,13,29,.74)); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .card-grid.three, .split, .quote-layout, .booking-layout, .founder-layout, .footer-grid { grid-template-columns: 1fr; }
  .split { gap: 42px; }
  .airport-image-wrap img { max-width: 620px; margin-inline: auto; }
  .about-panel { min-height: 400px; }
  .founder-layout { gap: 46px; }
  .founder-photo-wrap { margin-inline: auto; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand span { display: none; }
  .hero { min-height: 690px; }
  .hero-content { padding-block: 98px 74px; }
  h1 { font-size: 3rem; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .section { padding: 78px 0; }
  .card-grid.three, .form-row, .mini-stats { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .about-panel { padding: 26px; min-height: 330px; }
  .founder-photo-frame { border-width: 5px; border-radius: 22px; }
  .founder-badge { right: 12px; bottom: 14px; min-width: 124px; padding: 13px 16px; }
  .founder-copy blockquote { font-size: 1.1rem; }
  .quote-form { padding: 23px; }
  .contact-cards a, .office-line { flex-direction: column; }
  .cta-content, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Official airport links */
.airport-links-block {
  position: relative;
  z-index: 2;
  margin-top: 82px;
  padding-top: 70px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.airport-links-heading {
  max-width: 790px;
  margin-bottom: 34px;
}
.airport-links-heading h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  letter-spacing: -.025em;
}
.airport-links-heading > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.airport-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.airport-link-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.airport-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18,199,207,.55);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(18,199,207,.07));
}
.airport-code {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,199,207,.42);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18,199,207,.22), rgba(2,11,24,.38));
  color: var(--teal-500);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.airport-link-content h4 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.3;
}
.airport-link-content p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.64);
  font-size: .91rem;
  line-height: 1.55;
}
.airport-link-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-500);
  font-size: .88rem;
  font-weight: 800;
}
.airport-link-content a:hover { color: #8ff5f7; }
.airport-disclaimer {
  margin: 26px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .75rem;
}

@media (max-width: 900px) {
  .airport-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .airport-links-block { margin-top: 58px; padding-top: 54px; }
  .airport-link-card { grid-template-columns: 1fr; padding: 24px; }
  .airport-code { width: 72px; height: 72px; border-radius: 15px; }
}
