:root {
  --navy-950: #071427;
  --navy-900: #0b1f3a;
  --navy-800: #12345a;
  --navy-700: #174b7a;
  --gold-500: #d9a62e;
  --gold-400: #e8bb4f;
  --gold-100: #fff4d7;
  --ink: #142033;
  --muted: #5f6c7d;
  --line: #dfe6ee;
  --soft: #f4f7fa;
  --white: #ffffff;
  --danger: #b42318;
  --shadow-sm: 0 10px 28px rgba(7, 20, 39, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 20, 39, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; width: 1em; height: 1em; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.45rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
.site-shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.content-narrow { max-width: 850px; }
.section { padding: 92px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.screen-reader-text,
.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-sm); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; background: var(--gold-500); content: ""; }
.eyebrow-light { color: #d8e5f5; }
.section-head { margin-bottom: 42px; }
.centered-head { max-width: 780px; margin-inline: auto; text-align: center; }
.centered-head .eyebrow { justify-content: center; }
.centered-head p { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.split-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 64px; align-items: end; }
.split-head > p,
.split-head > div:last-child p { color: var(--muted); font-size: 1.02rem; }
.split-head .text-link { margin-top: 16px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button svg, .text-link svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 14px 30px rgba(217, 166, 46, 0.24); }
.button-gold:hover { background: var(--gold-400); box-shadow: 0 18px 38px rgba(217, 166, 46, 0.32); }
.button-navy { background: var(--navy-900); color: var(--white); box-shadow: 0 14px 30px rgba(7, 20, 39, 0.18); }
.button-navy:hover { background: var(--navy-700); }
.button-outline-light { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.06); color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--navy-900); }
.button-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-700); font-size: 0.92rem; font-weight: 800; }
.text-link:hover { color: var(--gold-500); }

.topbar { position: relative; z-index: 80; background: var(--navy-950); color: #d5e0ed; font-size: 0.78rem; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p, .topbar-links, .topbar-links a { display: flex; align-items: center; gap: 9px; }
.topbar-icon, .topbar-links svg { color: var(--gold-400); }
.topbar-icon svg, .topbar-links svg { width: 15px; height: 15px; }
.topbar-links { gap: 22px; }
.topbar-links a:hover { color: var(--white); }

.site-header { position: sticky; z-index: 70; top: 0; border-bottom: 1px solid rgba(7,20,39,0.08); background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); transition: box-shadow 0.2s ease; }
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(7,20,39,0.09); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--navy-900); color: var(--gold-400); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.brand-mark svg { width: 30px; height: 24px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--navy-900); font-size: 1.37rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--navy-700); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 230px; max-height: 58px; }
.desktop-nav { margin-left: auto; }
.desktop-nav .menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.desktop-nav .menu > li { position: relative; }
.desktop-nav .menu > li > a { display: inline-flex; min-height: 82px; align-items: center; gap: 7px; color: #2b3a4f; font-size: 0.88rem; font-weight: 800; white-space: nowrap; }
.desktop-nav .menu > li > a:hover,
.desktop-nav .current-menu-item > a,
.desktop-nav .current-menu-ancestor > a { color: var(--navy-700); }
.desktop-nav .menu-item-has-children > a::after { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; content: ""; transform: rotate(45deg) translateY(-2px); }
.desktop-nav .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: -20px;
  display: grid;
  visibility: hidden;
  min-width: 250px;
  max-height: min(65vh, 560px);
  overflow-y: auto;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  list-style: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.desktop-nav .sub-menu a { display: block; border-radius: 11px; padding: 10px 12px; color: #344257; font-size: 0.84rem; font-weight: 700; }
.desktop-nav .sub-menu a:hover { background: var(--soft); color: var(--navy-700); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone > span:first-child { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--gold-100); color: var(--navy-900); }
.header-phone svg { width: 17px; height: 17px; }
.header-phone > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone small { color: var(--muted); font-size: 0.63rem; font-weight: 700; text-transform: uppercase; }
.header-phone strong { margin-top: 4px; color: var(--navy-900); font-size: 0.82rem; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.menu-toggle > span:not(.screen-reader-text) { width: 20px; height: 2px; border-radius: 3px; background: var(--navy-900); }
.mobile-menu[hidden] { display: none; }
.mobile-menu { position: absolute; z-index: 69; top: 100%; right: 0; left: 0; max-height: calc(100vh - 76px); overflow-y: auto; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 34px rgba(7,20,39,0.12); }
.mobile-menu-inner { padding-block: 18px 32px; }
.mobile-menu .menu { display: grid; gap: 4px; list-style: none; }
.mobile-menu .menu > li > a { display: flex; justify-content: space-between; border-radius: 12px; padding: 13px 14px; color: var(--navy-900); font-weight: 800; }
.mobile-menu .menu > li > a:hover { background: var(--soft); }
.mobile-menu .sub-menu { display: none; margin: 0 0 8px 16px; padding-left: 12px; border-left: 2px solid var(--gold-500); list-style: none; }
.mobile-menu .submenu-open > .sub-menu,
.mobile-menu .current-menu-ancestor > .sub-menu { display: grid; }
.mobile-menu .sub-menu a { display: block; padding: 8px 10px; color: var(--muted); font-size: 0.9rem; font-weight: 700; }
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }

.hero-section { position: relative; overflow: hidden; padding: 94px 0 0; background: linear-gradient(135deg, var(--navy-950) 0%, #0b2e55 58%, #10547f 100%); }
.hero-section::after { position: absolute; right: -14%; bottom: -35%; width: 56%; height: 80%; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; content: ""; transform: rotate(-12deg); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { top: -180px; right: 12%; width: 420px; height: 420px; background: rgba(217,166,46,0.12); }
.hero-glow-two { bottom: -220px; left: -160px; width: 480px; height: 480px; background: rgba(31,132,190,0.18); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.8fr); gap: 76px; align-items: center; }
.hero-copy { padding-bottom: 84px; }
.hero-copy h1, .page-hero h1 { color: var(--white); }
.hero-copy h1 { max-width: 720px; }
.hero-lead { max-width: 690px; margin-top: 24px; color: #d5e2f0; font-size: clamp(1.04rem, 1.6vw, 1.23rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 34px; color: #e1eaf3; font-size: 0.86rem; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--gold-400); }
.hero-booking { align-self: end; padding-bottom: 58px; }

.booking-preview,
.crown-booking-embed { border: 1px solid rgba(255,255,255,0.7); border-radius: var(--radius-lg); padding: 30px; background: rgba(255,255,255,0.98); color: var(--ink); box-shadow: 0 34px 86px rgba(1,8,18,0.32); }
.booking-preview h2 { margin-top: 2px; font-size: clamp(1.6rem, 2.3vw, 2.15rem); }
.booking-preview-head > p { margin-top: 9px; color: var(--muted); font-size: 0.9rem; }
.booking-preview .eyebrow { margin-bottom: 9px; }
.booking-fields { display: grid; gap: 10px; margin: 22px 0 16px; }
.booking-fields > span { display: flex; min-height: 54px; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 14px; padding: 0 15px; background: #fbfcfd; color: #667386; font-size: 0.86rem; font-weight: 700; }
.booking-fields i { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; background: var(--gold-100); color: var(--navy-800); font-style: normal; }
.booking-fields svg { width: 15px; height: 15px; }
.booking-admin-note { margin-top: 12px !important; border-left: 3px solid var(--gold-500); padding: 9px 11px; background: #fff9ea; color: #725716 !important; font-size: 0.76rem !important; line-height: 1.5 !important; }
.route-ribbon { position: relative; z-index: 3; display: grid; grid-template-columns: 1.3fr repeat(5, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-bottom: 0; border-radius: 24px 24px 0 0; background: rgba(5,22,42,0.7); backdrop-filter: blur(16px); }
.route-ribbon > span, .route-ribbon a { display: flex; min-height: 68px; align-items: center; justify-content: center; gap: 9px; border-right: 1px solid rgba(255,255,255,0.1); color: #edf3f8; font-size: 0.8rem; font-weight: 800; }
.route-ribbon > span { color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.11em; }
.route-ribbon a:last-child { border-right: 0; }
.route-ribbon a:hover { background: rgba(255,255,255,0.08); }
.route-ribbon b { display: grid; min-width: 34px; height: 24px; place-items: center; border-radius: 7px; background: rgba(255,255,255,0.1); color: var(--gold-400); font-size: 0.67rem; }

.feature-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.feature-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-strip article { display: flex; min-height: 126px; align-items: center; gap: 16px; border-right: 1px solid var(--line); padding: 22px 28px; }
.feature-strip article:first-child { border-left: 1px solid var(--line); }
.feature-strip i { display: grid; flex: 0 0 auto; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: var(--gold-100); color: var(--navy-800); font-style: normal; }
.feature-strip i svg { width: 22px; height: 22px; }
.feature-strip h2 { font-size: 0.95rem; letter-spacing: -0.015em; }
.feature-strip p { margin-top: 5px; color: var(--muted); font-size: 0.75rem; line-height: 1.55; }

.airport-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.airport-card { display: grid; grid-template-columns: 102px 1fr; min-height: 260px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 24px rgba(7,20,39,0.045); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.airport-card:hover { border-color: #c8d4df; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.airport-code { display: grid; place-items: center; background: linear-gradient(180deg, var(--navy-900), var(--navy-700)); color: var(--gold-400); font-size: 1.15rem; font-weight: 800; letter-spacing: 0.12em; writing-mode: vertical-rl; transform: rotate(180deg); }
.airport-card-content { display: flex; align-items: flex-start; flex-direction: column; padding: 30px; }
.airport-card-label { color: var(--navy-700); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.airport-card h3 { margin-top: 7px; }
.airport-card p { margin: 12px 0 20px; color: var(--muted); font-size: 0.91rem; line-height: 1.7; }
.airport-card .text-link { margin-top: auto; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { display: flex; min-height: 310px; align-items: flex-start; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; background: var(--white); box-shadow: 0 8px 24px rgba(7,20,39,0.045); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.service-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 17px; background: var(--navy-900); color: var(--gold-400); font-style: normal; }
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin-top: 24px; font-size: 1.25rem; }
.service-card p { margin-top: 12px; color: var(--muted); font-size: 0.88rem; line-height: 1.72; }
.service-card .text-link { margin-top: auto; padding-top: 20px; }
.service-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid-large .service-card { min-height: 340px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fleet-card { display: flex; min-height: 500px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 10px 30px rgba(7,20,39,0.055); }
.fleet-card-top { padding: 28px 28px 0; }
.fleet-tag { color: var(--navy-700); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.fleet-card h3 { margin-top: 5px; }
.fleet-card-top p { margin-top: 11px; color: var(--muted); font-size: 0.87rem; line-height: 1.68; }
.fleet-image { display: grid; height: 190px; place-items: center; margin-top: 18px; padding: 12px 28px; background: linear-gradient(180deg, #fbfcfd, #f1f5f8); }
.fleet-image img { width: 100%; max-height: 154px; object-fit: contain; }
.fleet-meta { display: grid; gap: 9px; padding: 20px 28px 0; list-style: none; }
.fleet-meta li { display: flex; align-items: center; gap: 10px; color: #425064; font-size: 0.82rem; font-weight: 700; }
.fleet-meta svg { width: 17px; height: 17px; color: var(--navy-700); }
.fleet-card .text-link { margin: auto 28px 26px; padding-top: 20px; }

.process-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.process-section::after { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 44px 44px; content: ""; mask-image: linear-gradient(to right, transparent, #000); }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 90px; align-items: center; }
.process-intro h2, .process-steps h3 { color: var(--white); }
.process-intro p { margin-top: 18px; color: #cddbea; }
.process-intro .button { margin-top: 26px; }
.process-steps { display: grid; gap: 12px; }
.process-steps article { display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start; border: 1px solid rgba(255,255,255,0.11); border-radius: 20px; padding: 23px; background: rgba(255,255,255,0.055); backdrop-filter: blur(10px); }
.process-steps article > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; background: var(--gold-500); color: var(--navy-950); font-size: 0.83rem; font-weight: 800; }
.process-steps h3 { font-size: 1.12rem; }
.process-steps p { margin-top: 7px; color: #cbd7e5; font-size: 0.85rem; }

.about-home-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 82px; align-items: center; }
.about-visual { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #eaf1f6, #dbe7ef); }
.about-visual::before { position: absolute; inset: 11%; border: 2px dashed rgba(18,52,90,0.16); border-radius: 38%; content: ""; transform: rotate(-8deg); }
.road-line { position: absolute; width: 62%; height: 16px; border-top: 4px dashed rgba(255,255,255,0.88); }
.road-line-one { top: 36%; left: -7%; transform: rotate(17deg); }
.road-line-two { right: -6%; bottom: 27%; transform: rotate(-18deg); }
.about-airport-badge, .about-car-badge { position: absolute; display: grid; grid-template-columns: 44px 1fr; min-width: 190px; align-items: center; column-gap: 12px; border: 1px solid rgba(7,20,39,0.08); border-radius: 18px; padding: 15px; background: rgba(255,255,255,0.9); box-shadow: var(--shadow-sm); }
.about-airport-badge { top: 14%; right: 8%; }
.about-car-badge { bottom: 12%; left: 8%; }
.about-airport-badge > span, .about-car-badge > span { display: grid; grid-row: 1/3; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--navy-900); color: var(--gold-400); }
.about-airport-badge strong, .about-car-badge strong { color: var(--navy-900); font-size: 0.88rem; }
.about-airport-badge small, .about-car-badge small { color: var(--muted); font-size: 0.68rem; }
.about-crown { position: absolute; top: 50%; left: 50%; display: grid; width: 138px; height: 138px; place-items: center; border: 10px solid rgba(255,255,255,0.72); border-radius: 50%; background: var(--navy-900); color: var(--gold-400); box-shadow: var(--shadow-md); transform: translate(-50%, -50%); }
.about-crown svg { width: 72px; height: 58px; }
.about-home-copy > p, .about-story-grid > div > p { margin-top: 18px; color: var(--muted); font-size: 1rem; }
.check-list { display: grid; gap: 12px; margin: 26px 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #314055; font-weight: 700; }
.check-list svg { width: 20px; height: 20px; color: var(--navy-700); }

.faq-shell { max-width: 920px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 6px 20px rgba(7,20,39,0.035); }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; color: var(--navy-900); font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { position: absolute; top: 50%; right: 24px; width: 16px; height: 2px; background: var(--navy-700); content: ""; transform: translateY(-50%); }
.faq-list summary::after { transform: translateY(-50%) rotate(90deg); transition: transform 0.2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq-list details > div { border-top: 1px solid var(--line); padding: 18px 24px 22px; color: var(--muted); font-size: 0.92rem; }

.page-hero { position: relative; overflow: hidden; padding: 82px 0; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); color: var(--white); }
.page-hero::after { position: absolute; top: -50%; right: -10%; width: 48%; height: 190%; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; content: ""; transform: rotate(24deg); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr); gap: 74px; align-items: center; }
.page-hero p { max-width: 680px; margin-top: 20px; color: #d3e0ed; font-size: 1.07rem; }
.page-hero .button { margin-top: 28px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #b8c9da; font-size: 0.72rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold-400); }
.compact-page-hero { padding: 70px 0; }
.compact-page-hero .site-shell { position: relative; z-index: 2; max-width: 930px; }
.compact-page-hero p { max-width: 720px; }
.answer-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.answer-bar-inner { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: center; min-height: 116px; }
.answer-bar strong { color: var(--navy-900); font-size: 0.91rem; }
.answer-bar p { color: var(--muted); font-size: 0.9rem; }
.airport-intro-grid, .service-detail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr); gap: 82px; align-items: start; }
.airport-intro-grid > div > p, .service-detail-grid > div > p { margin-top: 18px; color: var(--muted); }
.airport-intro-grid .button, .service-detail-grid .button { margin-top: 28px; }
.coverage-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; background: var(--soft); }
.coverage-code { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 20px; background: var(--navy-900); color: var(--gold-400); font-size: 1.15rem; font-weight: 800; letter-spacing: 0.1em; }
.coverage-card h3 { margin-top: 22px; }
.coverage-card ul { display: grid; gap: 11px; margin-top: 18px; list-style: none; }
.coverage-card li { display: flex; align-items: flex-start; gap: 10px; color: #465366; font-size: 0.88rem; font-weight: 700; }
.coverage-card li svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 4px; color: var(--navy-700); }
.route-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.route-card { display: grid; grid-template-columns: 42px 1fr 22px; gap: 12px; align-items: center; min-height: 98px; border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: var(--white); box-shadow: 0 7px 22px rgba(7,20,39,0.04); }
.route-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--gold-100); color: var(--navy-800); }
.route-card strong { color: var(--navy-900); font-size: 0.84rem; line-height: 1.45; }
.route-card > svg { color: var(--navy-700); }
.route-card:hover { border-color: #c3d0dc; transform: translateY(-2px); }

.info-columns { display: grid; grid-template-columns: 1.15fr 0.7fr 0.7fr; gap: 26px; align-items: stretch; }
.info-columns > div:first-child { padding-right: 34px; }
.info-columns > div:first-child p { margin-top: 18px; color: var(--muted); }
.info-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; background: var(--white); }
.info-card h3 { font-size: 1.13rem; }
.info-card p { margin-top: 11px; color: var(--muted); font-size: 0.88rem; }
.service-hero-icon { display: grid; min-height: 330px; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); color: var(--gold-400); }
.service-hero-icon svg { width: 92px; height: 92px; }
.service-hero-icon span { margin-top: 20px; color: var(--white); font-size: 1.1rem; font-weight: 800; }
.service-code svg { width: 34px; height: 34px; }
.mini-airport-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.mini-airport-grid a { display: grid; grid-template-columns: 42px 1fr 18px; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 15px; padding: 14px; background: var(--white); }
.mini-airport-grid b { color: var(--gold-500); font-size: 0.74rem; }
.mini-airport-grid span { color: var(--navy-900); font-size: 0.78rem; font-weight: 800; }
.mini-airport-grid svg { color: var(--navy-700); }
.about-hero-mark { display: grid; min-height: 340px; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); }
.about-hero-mark > span { color: var(--gold-400); }
.about-hero-mark svg { width: 110px; height: 84px; }
.about-hero-mark strong { margin-top: 18px; color: var(--white); font-size: 2rem; letter-spacing: 0.05em; text-transform: uppercase; }
.about-hero-mark small { color: #c8d8e7; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
.about-story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.principle-grid article { min-height: 220px; border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: var(--soft); }
.principle-grid article > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: var(--navy-900); color: var(--gold-400); }
.principle-grid h3 { margin-top: 20px; font-size: 1.08rem; }
.principle-grid p { margin-top: 8px; color: var(--muted); font-size: 0.84rem; }
.fleet-hero-cars { display: grid; gap: 18px; align-items: center; }
.fleet-hero-cars img { width: 88%; margin-inline: auto; filter: drop-shadow(0 22px 24px rgba(0,0,0,0.24)); }
.fleet-hero-cars img + img { margin-top: -38px; margin-left: 8%; }
.capacity-table-wrap { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 74px; align-items: start; }
.capacity-table-wrap > div:first-child p { margin-top: 16px; color: var(--muted); }
.capacity-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.capacity-list article { display: grid; grid-template-columns: 44px 1fr; gap: 14px; border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: var(--white); }
.capacity-list article > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: var(--gold-100); color: var(--navy-900); font-size: 0.74rem; font-weight: 800; }
.capacity-list h3 { font-size: 0.98rem; }
.capacity-list p { margin-top: 7px; color: var(--muted); font-size: 0.79rem; }

.booking-page-hero { padding: 82px 0; background: var(--soft); }
.booking-page-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 80px; align-items: start; }
.booking-page-copy { position: sticky; top: 126px; }
.booking-page-copy h1 { color: var(--navy-900); }
.booking-page-copy > p { margin-top: 18px; color: var(--muted); font-size: 1.02rem; }
.dark-checks { margin-top: 28px; }
.booking-contact-box { display: flex; max-width: 330px; align-items: center; gap: 13px; margin-top: 28px; border: 1px solid var(--line); border-radius: 17px; padding: 14px; background: var(--white); }
.booking-contact-box > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: var(--navy-900); color: var(--gold-400); }
.booking-contact-box div { display: flex; flex-direction: column; line-height: 1.2; }
.booking-contact-box small { color: var(--muted); font-size: 0.7rem; }
.booking-contact-box a { margin-top: 4px; color: var(--navy-900); font-weight: 800; }
.booking-page-form .booking-preview,
.booking-page-form .crown-booking-embed { border-color: var(--line); box-shadow: var(--shadow-md); }
.booking-note-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.booking-note-grid article { border: 1px solid var(--line); border-radius: 20px; padding: 26px; }
.booking-note-grid article > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: var(--gold-100); color: var(--navy-900); font-size: 0.77rem; font-weight: 800; }
.booking-note-grid h2 { margin-top: 18px; font-size: 1.12rem; }
.booking-note-grid p { margin-top: 9px; color: var(--muted); font-size: 0.84rem; }
.contact-hero-card { display: grid; gap: 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 20px; background: rgba(255,255,255,0.06); }
.contact-hero-card > a, .contact-hero-card > span { display: flex; align-items: center; gap: 14px; border-radius: 15px; padding: 15px; background: rgba(255,255,255,0.08); }
.contact-hero-card i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--gold-500); color: var(--navy-950); font-style: normal; }
.contact-hero-card span span { display: flex; flex-direction: column; }
.contact-hero-card small { color: #bdcddd; font-size: 0.67rem; }
.contact-hero-card strong { max-width: 310px; margin-top: 3px; color: var(--white); font-size: 0.86rem; overflow-wrap: anywhere; }
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 80px; align-items: start; }
.contact-grid > div:first-child > p { margin-top: 18px; color: var(--muted); }
.contact-methods { display: grid; gap: 10px; margin-top: 28px; }
.contact-methods a { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 16px; padding: 13px; }
.contact-methods a > svg { width: 20px; height: 20px; margin-inline: auto; color: var(--navy-700); }
.contact-methods a span { display: flex; flex-direction: column; }
.contact-methods small { color: var(--muted); font-size: 0.68rem; }
.contact-methods strong { color: var(--navy-900); font-size: 0.84rem; overflow-wrap: anywhere; }
.contact-content-card { min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px; background: var(--soft); }
.contact-content-card > p { margin-top: 14px; color: var(--muted); }

.prose { color: #3e4b5e; font-size: 1rem; line-height: 1.85; }
.prose > *:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.25em; }
.prose h2 { margin: 2em 0 0.65em; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.prose h3 { margin: 1.7em 0 0.55em; font-size: 1.4rem; }
.prose ul, .prose ol { margin: 1em 0 1.3em; padding-left: 1.4em; }
.prose li { margin: 0.35em 0; }
.prose a { color: var(--navy-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 1.5em 0; border-left: 4px solid var(--gold-500); padding: 18px 22px; background: var(--soft); color: var(--navy-900); }
.prose img { border-radius: 18px; }
.prose input, .prose textarea, .prose select,
.contact-content-card input, .contact-content-card textarea, .contact-content-card select,
.crown-booking-embed input, .crown-booking-embed textarea, .crown-booking-embed select { width: 100%; min-height: 50px; border: 1px solid #cad5df; border-radius: 12px; padding: 10px 13px; background: var(--white); color: var(--ink); }
.prose textarea, .contact-content-card textarea, .crown-booking-embed textarea { min-height: 130px; }
.prose input[type="submit"], .prose button,
.contact-content-card input[type="submit"], .contact-content-card button,
.crown-booking-embed input[type="submit"], .crown-booking-embed button { width: auto; min-height: 48px; border: 0; border-radius: 999px; padding: 0 24px; background: var(--gold-500); color: var(--navy-950); font-weight: 800; cursor: pointer; }

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 25px rgba(7,20,39,0.045); }
.post-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; background: #e8eef3; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-card-body { padding: 26px; }
.post-date { color: var(--navy-700); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.post-card h2 { margin-top: 9px; font-size: 1.32rem; }
.post-card p { margin-top: 12px; color: var(--muted); font-size: 0.87rem; }
.post-card .text-link { margin-top: 20px; }
.pagination-wrap { margin-top: 34px; }
.nav-links { display: flex; justify-content: center; gap: 7px; }
.nav-links .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--white); color: var(--navy-900); font-weight: 800; }
.nav-links .current { background: var(--navy-900); color: var(--white); }
.article-meta { font-size: 0.8rem !important; }
.article-featured { margin-top: -35px; position: relative; z-index: 3; }
.article-featured img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.empty-state { grid-column: 1/-1; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 48px; background: var(--white); text-align: center; }
.empty-state p { margin-top: 10px; color: var(--muted); }
.not-found-section { padding: 110px 0; background: var(--soft); }
.not-found-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.not-found-grid > div:first-child > p { margin-top: 18px; color: var(--muted); }
.not-found-code { display: flex; align-items: center; justify-content: center; color: var(--navy-900); font-size: clamp(7rem, 18vw, 14rem); font-weight: 800; line-height: 1; }
.not-found-code svg { width: 0.7em; height: 0.7em; color: var(--gold-500); transform: rotate(18deg); }

.footer-cta { background: linear-gradient(135deg, #11375f, var(--navy-950)); color: var(--white); }
.footer-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; min-height: 250px; padding-block: 50px; }
.footer-cta h2 { color: var(--white); }
.footer-cta p { max-width: 690px; margin-top: 13px; color: #cbd8e6; }
.footer-cta-actions { display: flex; gap: 10px; }
.site-footer { padding: 72px 0 0; background: var(--navy-950); color: #aebdd0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 0.8fr 0.9fr 0.65fr; gap: 58px; }
.brand-footer .brand-mark { background: rgba(255,255,255,0.08); }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: #b5c4d6; }
.footer-brand-col > p { max-width: 410px; margin-top: 22px; color: #9fb0c4; font-size: 0.88rem; }
.footer-contact-list { display: grid; gap: 11px; margin-top: 24px; }
.footer-contact-list > a, .footer-contact-list > span { display: flex; align-items: flex-start; gap: 10px; color: #c0ccdb; font-size: 0.81rem; }
.footer-contact-list svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 5px; color: var(--gold-400); }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 10px; margin-top: 19px; list-style: none; }
.footer-links a { color: #aebdd0; font-size: 0.81rem; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,0.09); padding: 22px 0 26px; color: #8193aa; font-size: 0.74rem; }
.mobile-sticky-actions { display: none; }

@media (max-width: 1180px) {
  .desktop-nav .menu { gap: 18px; }
  .desktop-nav .menu > li > a { font-size: 0.82rem; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr); gap: 44px; }
  .feature-strip article { padding-inline: 18px; }
}

@media (max-width: 1079px) {
  .topbar-links a:first-child { display: none; }
  .desktop-nav, .header-book { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { min-height: 76px; }
  .mobile-menu { max-height: calc(100vh - 76px); }
  .hero-section { padding-top: 72px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { padding-bottom: 0; }
  .hero-booking { max-width: 680px; padding-bottom: 54px; }
  .route-ribbon { grid-template-columns: repeat(3, 1fr); }
  .route-ribbon > span { display: none; }
  .route-ribbon a { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip article:nth-child(2) { border-right: 1px solid var(--line); }
  .feature-strip article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-card:last-child { grid-column: 1/-1; max-width: 570px; width: 100%; justify-self: center; }
  .process-grid, .about-home-grid, .about-story-grid, .contact-grid, .booking-page-grid, .capacity-table-wrap { grid-template-columns: 1fr; gap: 52px; }
  .process-intro { max-width: 720px; }
  .about-visual { min-height: 430px; }
  .airport-intro-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 38px; }
  .coverage-card { max-width: 620px; }
  .route-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-columns { grid-template-columns: 1fr 1fr; }
  .info-columns > div:first-child { grid-column: 1/-1; padding-right: 0; }
  .mini-airport-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-page-copy { position: static; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }

}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .site-shell { width: min(calc(100% - 30px), var(--shell)); }
  .topbar-inner { justify-content: center; }
  .topbar p { text-align: center; }
  .topbar-links { display: none; }
  .brand-mark { width: 43px; height: 43px; border-radius: 13px; }
  .brand-copy strong { font-size: 1.1rem; }
  .brand-copy small { font-size: 0.57rem; }
  .custom-logo { max-width: 190px; max-height: 48px; }
  .split-head { grid-template-columns: 1fr; gap: 20px; }
  .hero-section { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .hero-lead { font-size: 1rem; }
  .hero-booking { padding-bottom: 36px; }
  .booking-preview, .crown-booking-embed { border-radius: 24px; padding: 22px; }
  .route-ribbon { grid-template-columns: repeat(2, 1fr); border-radius: 18px 18px 0 0; }
  .route-ribbon a { min-height: 56px; font-size: 0.73rem; }
  .feature-strip-grid { grid-template-columns: 1fr; }
  .feature-strip article, .feature-strip article:first-child { min-height: 105px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .feature-strip article:first-child { border-top: 0; }
  .airport-grid, .service-grid, .service-grid-large, .fleet-grid, .principle-grid, .capacity-list, .booking-note-grid, .post-grid { grid-template-columns: 1fr; }
  .airport-card { grid-template-columns: 72px 1fr; min-height: 240px; }
  .airport-card-content { padding: 24px; }
  .fleet-card:last-child { grid-column: auto; max-width: none; }
  .fleet-card { min-height: 490px; }
  .process-grid { gap: 34px; }
  .process-steps article { grid-template-columns: 50px 1fr; padding: 18px; }
  .process-steps article > span { width: 44px; height: 44px; }
  .about-visual { min-height: 360px; }
  .about-airport-badge, .about-car-badge { min-width: 160px; padding: 11px; }
  .about-airport-badge { top: 8%; right: 4%; }
  .about-car-badge { bottom: 7%; left: 4%; }
  .about-crown { width: 106px; height: 106px; }
  .about-crown svg { width: 55px; height: 44px; }
  .page-hero { padding: 64px 0; }
  .page-hero p { font-size: 0.98rem; }
  .answer-bar-inner { grid-template-columns: 1fr; gap: 8px; padding-block: 24px; }
  .route-card-grid, .info-columns, .mini-airport-grid { grid-template-columns: 1fr; }
  .service-hero-icon, .about-hero-mark { min-height: 250px; }
  .footer-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-actions { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; padding-bottom: 92px; }
  .mobile-sticky-actions { position: fixed; z-index: 90; right: 10px; bottom: 10px; left: 10px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 6px; background: var(--navy-950); box-shadow: 0 16px 38px rgba(0,0,0,0.28); }
  .mobile-sticky-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; border-radius: 11px; color: var(--white); font-size: 0.82rem; font-weight: 800; }
  .mobile-sticky-actions a:last-child { background: var(--gold-500); color: var(--navy-950); }
  .mobile-sticky-actions svg { width: 17px; height: 17px; }
  .not-found-grid { grid-template-columns: 1fr; gap: 30px; }
  .not-found-code { order: -1; }
}

@media (max-width: 480px) {
  .site-shell { width: min(calc(100% - 24px), var(--shell)); }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.9rem; }
  .header-inner { min-height: 72px; gap: 12px; }
  .mobile-menu { max-height: calc(100vh - 72px); }
  .brand { gap: 8px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-mark svg { width: 25px; height: 21px; }
  .brand-copy strong { font-size: 0.97rem; }
  .brand-copy small { letter-spacing: 0.13em; font-size: 0.52rem; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero-section { padding-top: 50px; }
  .hero-copy h1 { font-size: 2.55rem; }
  .hero-actions, .footer-cta-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button, .footer-cta-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .booking-preview { padding: 20px; }
  .airport-card { grid-template-columns: 58px 1fr; }
  .airport-card-content { padding: 20px; }
  .airport-code { font-size: 0.94rem; }
  .service-card, .fleet-card-top { padding-inline: 22px; }
  .fleet-image { padding-inline: 20px; }
  .fleet-meta { padding-inline: 22px; }
  .fleet-card .text-link { margin-inline: 22px; }
  .process-steps article { grid-template-columns: 1fr; }
  .about-airport-badge, .about-car-badge { transform: scale(0.86); }
  .about-airport-badge { transform-origin: top right; }
  .about-car-badge { transform-origin: bottom left; }
  .about-crown { width: 92px; height: 92px; }
  .route-card { grid-template-columns: 38px 1fr 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
}



.brand-image { display: inline-flex; align-items: center; }
.brand-image img { display: block; width: auto; max-width: 280px; max-height: 58px; }
.brand-footer.brand-image img { max-width: 245px; }

.fleet-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.fleet-card { position: relative; min-height: 520px; transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease; }
.fleet-card:hover { border-color: #c7d2dd; box-shadow: 0 18px 40px rgba(7,20,39,0.09); transform: translateY(-6px); }
.fleet-image { height: 210px; }
.fleet-image img { max-height: 172px; }

.about-hero-mark img { width: 110px; height: auto; }
.about-hero-mark strong { margin-top: 18px; }

.reveal-up { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1270px) {
  .fleet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1079px) {
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-card:last-child { grid-column: auto; max-width: none; width: auto; justify-self: stretch; }
}

@media (max-width: 760px) {
  .brand-image img { max-width: 220px; max-height: 48px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { min-height: 500px; }
  .fleet-card:last-child { grid-column: auto; max-width: none; }
}

@media (max-width: 480px) {
  .brand-image img { max-width: 188px; max-height: 42px; }
}



.brand-image img { max-width: 330px; max-height: 68px; }
.brand-footer.brand-image img { max-width: 290px; max-height: 62px; }

@media (min-width: 1280px) {
  .fleet-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
  }
  .fleet-card {
    grid-column: span 2;
  }
  .fleet-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .fleet-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (min-width: 1080px) and (max-width: 1279px) {
  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .fleet-card,
  .fleet-card:nth-child(4),
  .fleet-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .brand-image img { max-width: 240px; max-height: 50px; }
}

@media (max-width: 480px) {
  .brand-image img { max-width: 198px; max-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
