@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/roboto-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --c-primary: #0299d2;
  --c-dark: #212121;
  --c-navy: #1b2a4a;
  --c-bg: #f4f4f4;
  --c-gray: #ebebeb;
  --c-logo-gray: #9c9d9f;
  --c-line: rgba(27, 42, 74, .14);
  --radius: 8px;
  --shadow: 0 18px 50px rgba(7, 18, 42, .18);
  --site-max: 1160px;
  --content-max: 860px;
  --site-gutter: 16px;
  font-family: Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }
body { margin: 0; color: var(--c-dark); background: #fff; font: 16px/1.55 Roboto, Arial, sans-serif; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 40px 62px minmax(82px, auto);
  grid-template-areas: "brand menu lang quote";
  gap: 4px;
  align-items: center;
  padding: 8px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--c-line);
}
.brand { grid-area: brand; min-width: 0; }
.brand img { width: min(100%, clamp(116px, 31vw, 150px)); }
.menu-toggle { grid-area: menu; position: relative; width: 40px; height: 40px; display: grid; place-content: center; justify-self: end; border: 1px solid var(--c-line); background: #fff; border-radius: var(--radius); }
.menu-toggle span { position: absolute; left: 9px; top: 50%; width: 20px; height: 2px; background: var(--c-navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }
.primary-menu { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 10px 16px 18px; background: #fff; border-bottom: 1px solid var(--c-line); }
.primary-menu.is-open { display: block; }
.menu-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.menu-list a { display: block; padding: 10px 0; color: var(--c-navy); text-decoration: none; font-weight: 700; }
.header-phone, .header-quote { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); font-weight: 700; text-decoration: none; }
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); font-weight: 700; text-decoration: none; }
.header-phone { grid-area: phone; width: auto; justify-self: stretch; gap: 2px; color: #fff; background: var(--c-primary); font-size: 11px; line-height: 1; white-space: nowrap; }
.header-phone { display: none; }
.phone-icon { width: 14px; height: 14px; flex: 0 0 auto; }
.phone-hours { display: inline; }
.phone-number { display: none; }
.header-quote { grid-area: quote; min-width: 0; padding: 0 7px; color: #fff; background: var(--c-primary); white-space: nowrap; font-size: clamp(11px, 3vw, 13px); }
.language-switcher { grid-area: lang; position: relative; min-height: 40px; display: flex; align-items: stretch; justify-content: stretch; font-size: 12px; font-weight: 700; color: var(--c-navy); }
.language-current { width: 100%; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 4px; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 0 5px; background: #fff; color: inherit; font: inherit; cursor: pointer; }
.language-current::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.language-menu { position: absolute; top: calc(100% + 6px); right: 0; z-index: 40; min-width: 92px; margin: 0; padding: 6px; list-style: none; display: none; gap: 2px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.language-switcher.is-open .language-menu, .language-switcher:hover .language-menu, .language-switcher:focus-within .language-menu { display: grid; }
.language-menu a { min-height: 34px; display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; text-decoration: none; color: inherit; }
.language-menu a:hover { background: var(--c-bg); }
.flag { width: 20px; height: 15px; display: block; flex: 0 0 auto; border: 1px solid rgba(27,42,74,.14); border-radius: 2px; object-fit: cover; }
@media (max-width: 379px) {
  .site-header { grid-template-columns: minmax(82px, 1fr) 38px 56px minmax(76px, auto); gap: 3px; padding: 7px; }
  .brand img { width: clamp(96px, 30vw, 112px); }
  .menu-toggle { width: 38px; height: 38px; }
  .header-quote { min-height: 38px; }
  .language-switcher, .language-current { min-height: 38px; }
  .language-current { gap: 3px; padding: 0 4px; }
  .header-quote { padding: 0 6px; font-size: 10.5px; }
}
.hero { position: relative; min-height: calc(100svh - 64px); display: grid; align-items: center; padding: 32px 16px 38px; color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,16,34,.28), rgba(8,16,34,.78)); }
.hero > picture { position: absolute; inset: 0; display: block; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content, .hero-form { position: relative; z-index: 1; }
.hero h1, .page-hero h1 { margin: 0; max-width: 920px; font-size: 34px; line-height: 1.06; letter-spacing: 0; }
.hero p { max-width: 720px; font-size: 17px; }
.eyebrow { margin: 0 0 10px; color: var(--c-primary); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
.hero .eyebrow { color: #bcd4ff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn { border: 0; padding: 12px 18px; cursor: pointer; }
.btn-primary { color: #fff; background: var(--c-primary); }
.btn-light { color: var(--c-navy); background: #fff; }
.hero-form, .inquiry-form { background: #fff; color: var(--c-dark); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-form { display: block; margin-top: 28px; padding: 18px; }
.hero-form h2 { margin: 0 0 6px; font-size: 22px; }
.form-intro { margin: 0 0 12px; color: #4b5563; font-size: 14px; }
.inquiry-form { position: relative; display: grid; overflow: hidden; padding: 16px; box-shadow: none; transition: height .34s ease; }
.inquiry-form:not(.is-sent) { overflow: visible; }
.hero-form .inquiry-form { padding: 0; }
.inquiry-form.is-form-pulsing, .hero-form.is-form-pulsing { animation: form-focus-pulse 2s ease-out 1; }
@keyframes form-focus-pulse {
  0% { outline: 2px solid transparent; outline-offset: 2px; }
  28% { outline-color: var(--c-primary); outline-offset: 5px; }
  100% { outline-color: transparent; outline-offset: 10px; }
}
.form-fields, .form-success-panel { grid-area: 1 / 1; transition: opacity .28s ease, transform .28s ease, visibility .28s ease; }
.form-fields { opacity: 1; visibility: visible; }
.form-success-panel { display: grid; place-items: center; min-height: 100%; padding: 28px; border: 1px solid #b9e5f7; border-radius: var(--radius); background: linear-gradient(145deg, #f6fcff, #fff); color: var(--c-navy); text-align: center; opacity: 0; transform: translateY(10px); visibility: hidden; pointer-events: none; }
.form-success-panel__content { max-width: 460px; }
.form-success-panel__icon { width: 52px; height: 52px; display: inline-grid; place-items: center; margin-bottom: 14px; border-radius: 50%; background: var(--c-primary); color: #fff; font-size: 30px; font-weight: 700; line-height: 1; }
.form-success-panel h3 { margin: 0 0 10px; color: var(--c-navy); font-size: 24px; line-height: 1.15; }
.form-success-panel p { margin: 0; color: #4b5563; font-size: 16px; font-weight: 400; line-height: 1.5; }
.form-success-panel a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 4px; }
.inquiry-form.is-sent .form-fields { position: absolute; inset: 0; opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none; }
.inquiry-form.is-sent .form-success-panel { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.field-grid { display: grid; gap: 8px; }
label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; }
input, textarea { width: 100%; min-height: 44px; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 10px 12px; font: inherit; }
textarea { resize: vertical; }
.form-field { position: relative; display: block; min-width: 0; font-size: 16px; font-weight: 400; }
.form-field > input:not([type="hidden"]), .form-field > textarea { min-height: 60px; padding: 22px 12px 6px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.form-field > textarea { min-height: 132px; padding-top: 28px; }
.form-field__label { position: absolute; top: 50%; left: 12px; z-index: 1; max-width: calc(100% - 24px); overflow: hidden; color: #667085; font-size: 16px; font-weight: 400; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; transform: translateY(-50%); transform-origin: left top; transition: color .18s ease, top .18s ease, transform .18s ease; }
.form-field--textarea .form-field__label, .form-field:focus-within .form-field__label, .form-field.is-filled .form-field__label { top: 13px; color: var(--c-primary); transform: scale(.75); }
.form-field:focus-within > input:not([type="hidden"]), .form-field:focus-within > textarea { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 157, 219, .12); outline: none; }
@media (hover: hover) {
  .form-field:hover > input:not([type="hidden"]), .form-field:hover > textarea { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 157, 219, .12); }
}
.form-field.is-invalid > input:not([type="hidden"]), .form-field.is-invalid > textarea { border-color: #d92d20; box-shadow: 0 0 0 3px rgba(217, 45, 32, .1); }
.form-field.is-invalid .form-field__label { color: #d92d20; }
.form-field:not(:focus-within):not(.is-filled):not(.form-field--textarea) > input::placeholder { color: transparent; }
.form-field:focus-within > input::placeholder, .form-field:focus-within > textarea::placeholder, .form-field--textarea > textarea::placeholder { color: #98a2b3; }
.date-range-field { position: relative; grid-column: 1 / -1; min-width: 0; }
.date-range-field__trigger { position: relative; width: 100%; min-height: 60px; display: block; padding: 8px 42px 7px 12px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; color: var(--c-dark); font-family: Roboto, Arial, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.2; text-align: left; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease; }
.date-range-field__trigger:hover, .date-range-field__trigger:focus-visible { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0, 157, 219, .12); outline: none; }
.date-range-field__label { display: block; height: 14px; color: var(--c-primary); font-size: 16px; font-weight: 400; line-height: 1.2; transform: scale(.75); transform-origin: left top; }
.date-range-field__value { display: block; margin-top: 1px; overflow: hidden; color: #667085; font-size: 16px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.date-range-field.is-filled .date-range-field__value { color: var(--c-dark); }
.date-range-field__icon { position: absolute; top: 50%; right: 13px; width: 20px; height: 20px; transform: translateY(-50%); }
.date-range-field__icon svg { display: block; width: 100%; height: 100%; stroke: var(--c-navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.date-range-field.is-invalid .date-range-field__trigger { border-color: #d92d20; box-shadow: 0 0 0 3px rgba(217, 45, 32, .1); }
.date-range-field__panel { position: absolute; top: calc(100% + 6px); right: 0; z-index: 45; width: 620px; max-width: calc(100vw - (var(--site-gutter) * 2)); padding: 14px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.date-range-field__toolbar { display: grid; grid-template-columns: 36px minmax(0, 1fr) 36px; align-items: center; gap: 4px; margin-bottom: 12px; }
.date-range-field__toolbar strong { color: var(--c-navy); font-size: 14px; line-height: 1.3; text-align: center; }
.date-range-field__nav { width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--c-navy); font-size: 26px; line-height: 1; cursor: pointer; }
.date-range-field__nav:hover, .date-range-field__nav:focus-visible { background: #eef8fc; outline: none; }
.date-range-field__nav:disabled { color: #98a2b3; cursor: not-allowed; }
.date-range-field__nav:disabled:hover { background: transparent; }
.date-range-field__calendars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.date-range-field__month { min-width: 0; }
.date-range-field__month-title { display: block; margin-bottom: 8px; color: var(--c-navy); font-size: 14px; font-weight: 700; text-align: center; text-transform: capitalize; }
.date-range-field__weekdays, .date-range-field__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.date-range-field__weekdays span { padding-bottom: 3px; color: #667085; font-size: 10px; font-weight: 700; text-align: center; text-transform: uppercase; }
.date-range-field__day { aspect-ratio: 1; min-width: 0; border: 0; border-radius: 50%; background: transparent; color: var(--c-dark); font: inherit; font-size: 13px; cursor: pointer; }
.date-range-field__day:hover, .date-range-field__day:focus-visible { background: #dff3fc; outline: none; }
.date-range-field__day.is-start, .date-range-field__day.is-end { background: var(--c-primary); color: #fff; font-weight: 700; }
.date-range-field__day.is-in-range { border-radius: 0; background: #dff3fc; }
.date-range-field__day.is-start.is-in-range { border-radius: 50% 0 0 50%; }
.date-range-field__day.is-end.is-in-range { border-radius: 0 50% 50% 0; }
.date-range-field__day.is-start.is-end.is-single-day { border-radius: 50%; box-shadow: inset 0 0 0 2px #fff; }
.date-range-field__day.is-outside { color: #98a2b3; }
.date-range-field__footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; }
.date-range-field__clear, .date-range-field__close { padding: 0; border: 0; background: transparent; color: var(--c-primary); font: inherit; font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.date-range-field__close { color: var(--c-navy); }
.date-range-field__clear:hover, .date-range-field__clear:focus-visible, .date-range-field__close:hover, .date-range-field__close:focus-visible { outline: none; text-decoration-thickness: 2px; }
.airport-field { position: relative; }
.airport-field input[type="hidden"] { display: none; }
.airport-suggestions { position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 35; display: none; max-height: 280px; overflow: auto; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.airport-field.is-open .airport-suggestions { display: grid; }
.airport-option { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 12px; padding: 10px 12px; border: 0; border-bottom: 1px solid var(--c-line); background: #fff; color: var(--c-dark); text-align: left; cursor: pointer; }
.airport-option:last-child { border-bottom: 0; }
.airport-option:hover, .airport-option:focus { background: #eef8fc; outline: none; }
.airport-city { color: var(--c-navy); font-weight: 700; }
.airport-code { align-self: center; padding: 3px 7px; border-radius: 999px; background: var(--c-primary); color: #fff; font-size: 12px; font-weight: 700; }
.airport-name { grid-column: 1 / -1; color: #4b5563; font-size: 13px; font-weight: 400; }
.consent { grid-template-columns: 22px 1fr; align-items: start; margin: 12px 0; font-weight: 400; }
.consent input { min-height: 0; margin-top: 4px; }
.field-grid + .form-field { margin-top: 8px; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-status { margin-bottom: 10px; color: var(--c-primary); font-weight: 700; }
.inquiry-form.is-loading { opacity: .72; pointer-events: none; }
.inquiry-form { scroll-margin-top: 92px; }
.counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-line); }
.counters div { min-height: 106px; display: grid; place-content: center; padding: 16px; background: var(--c-navy); color: #fff; text-align: center; }
.counters strong { font-size: 28px; line-height: 1; }
.counters span { font-size: 13px; color: #dbe7ff; }
.section, .cta-section, .page-hero { padding: 32px var(--site-gutter); }
.section > *, .cta-section > *, .page-hero > * { max-width: var(--site-max); margin-left: auto; margin-right: auto; }
.content.section, .section.cards, .section.faq-list, .section.split {
  width: 100%;
  max-width: calc(var(--site-max) + (var(--site-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}
.section h2, .cta-section h2 { margin: 0 0 20px; color: var(--c-navy); font-size: 30px; line-height: 1.08; }
.section > h2, .section > .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.section.split > *, .section.cards > *, .section.faq-list > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.muted { background: var(--c-bg); }
.feature-grid, .cards { display: grid; gap: 14px; }
.feature-grid article, .card, details { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 18px; }
.feature-grid h3, .card h3, .card h2 { margin: 0 0 8px; color: var(--c-navy); font-size: 20px; }
.card { text-decoration: none; color: inherit; }
.card:hover { border-color: var(--c-primary); }
.listing-cards .card h2 { font-size: 17px; line-height: 1.35; }
.listing-cards .card p { font-size: 16px; line-height: 1.55; }
.split { display: grid; gap: 24px; }
.media-pair { display: grid; gap: 14px; }
.media-card { margin: 0; overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-line); }
.media-card picture { display: block; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card figcaption { padding: 10px 12px; color: #4b5563; font-size: 13px; }
.check-list { padding-left: 22px; }
.check-list li { margin: 8px 0; }
.standards {
  position: relative;
  width: min(100%, 560px);
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.standards::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 82%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(2,153,210,.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(2,153,210,.12) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(2,153,210,.08), transparent 62%);
  z-index: -1;
}
.standards::after {
  display: none;
  content: none;
}
.standards-center {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 44px rgba(7,18,42,.2);
}
.standards-center strong { font-size: 42px; line-height: 1; }
.standards-center span { max-width: 92px; color: #c9d8f5; font-size: 12px; line-height: 1.2; text-transform: uppercase; }
.standards-point {
  position: absolute;
  width: min(176px, 34%);
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(2,153,210,.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-navy);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 34px rgba(7,18,42,.1);
}
.standards-point:nth-child(2) {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}
.standards-point:nth-child(3) {
  right: 0;
  top: 42%;
  transform: translateY(-50%);
}
.standards-point:nth-child(4) {
  right: 9%;
  bottom: 24px;
}
.standards-point:nth-child(5) {
  left: 9%;
  bottom: 24px;
}
.standards-point:nth-child(6) {
  left: 0;
  top: 42%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .standards {
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    place-items: stretch;
  }
  .standards::before, .standards::after { display: none; }
  .standards-center {
    grid-column: 1 / -1;
    width: 132px;
    margin: 0 auto 4px;
  }
  .standards-center strong { font-size: 36px; }
  .standards .standards-point {
    position: static;
    inset: auto;
    width: auto;
    min-height: 68px;
    transform: none;
  }
  .standards-point:last-child:nth-child(6) {
    grid-column: 1 / -1;
    max-width: calc(50% - 5px);
    justify-self: center;
  }
}
.cta-section { display: grid; gap: 20px; background: var(--c-navy); color: #fff; }
.cta-section h2 { color: #fff; }
.cta-section .eyebrow { color: #bcd4ff; }
.cta-section .inquiry-form { max-width: 760px; }
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--c-navy); color: #fff; }
.page-hero::before { position: absolute; inset: 0; z-index: 0; background: url("../img/page-hero-wing.jpg") center / cover no-repeat; content: ""; }
.page-hero::after { position: absolute; inset: 0; z-index: 1; background: var(--c-navy); content: ""; opacity: .86; }
.page-hero > * { position: relative; z-index: 2; }
.page-hero p { max-width: 760px; font-size: 18px; }
.page-hero .contact-whatsapp { margin-top: 4px; color: #dbe7ff; }
.page-hero .contact-whatsapp a { color: #fff; font-weight: 700; text-underline-offset: 4px; }
.breadcrumbs { margin-bottom: 18px; display: flex; gap: 8px; color: #c9d8f5; font-size: 14px; }
.content { max-width: var(--content-max); }
.content.section { max-width: calc(var(--site-max) + (var(--site-gutter) * 2)); }
.content.section > * { max-width: var(--content-max); margin-left: 0; margin-right: 0; }
.content.section > .faq-list { max-width: var(--site-max); }
.page-hero > h1, .page-hero > p, .page-hero > .eyebrow {
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
}
.content h2 { margin-top: 34px; color: var(--c-navy); }
.content p, .content li { font-size: 18px; }
.content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 16px; }
.content th, .content td { padding: 12px; border: 1px solid var(--c-line); text-align: left; vertical-align: top; }
.content th { width: 34%; color: var(--c-navy); background: var(--c-bg); }
.fleet-reference-main { width: min(100%, calc(var(--site-max) + (var(--site-gutter) * 2))); margin: 0 auto; padding: 32px var(--site-gutter); }
.fleet-reference-copy { max-width: var(--content-max); }
.fleet-reference-copy h2, .fleet-reference-models > h2 { margin: 0 0 20px; color: var(--c-navy); font-size: 30px; line-height: 1.08; }
.fleet-reference-copy h3 { margin: 0 0 8px; color: var(--c-navy); font-size: 20px; line-height: 1.2; }
.fleet-reference-copy p { margin: 0 0 24px; color: var(--c-dark); font-size: 18px; line-height: 1.55; }
.fleet-reference-columns { display: grid; gap: 24px; margin-top: 34px; }
.fleet-reference-columns p { margin-bottom: 0; font-size: 18px; }
.fleet-reference-models { margin-top: 58px; }
.fleet-reference-models__grid { display: grid; gap: 58px; }
.fleet-reference-plane { display: grid; grid-template-rows: 48px 174px 80px auto; }
.fleet-reference-plane h3 { margin: 0; color: var(--c-navy); font-size: 20px; line-height: 1.2; }
.fleet-reference-plane__image { height: 174px; display: grid; place-items: center; margin: 0; padding: 12px 0 18px; border-bottom: 1px solid var(--c-line); }
.fleet-reference-plane__image-file { width: 100%; max-width: 580px; max-height: 144px; height: auto; }
.fleet-reference-plane__summary { min-height: 80px; margin: 0; padding: 20px 0 18px; color: var(--c-dark); font-size: 16px; line-height: 1.45; }
.fleet-reference-plane__specs { margin: 0; border-top: 1px solid #d6d6d6; }
.fleet-reference-plane__specs div { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid #d6d6d6; color: #333; font-size: 14px; }
.fleet-reference-plane__specs dt, .fleet-reference-plane__specs dd { margin: 0; }
.fleet-reference-plane__specs dd { color: #111; font-weight: 700; text-align: right; }
  .content.section > .about-director-letter { max-width: var(--site-max); }
.about-director-letter { margin: 30px 0; }
.about-director-letter > .wp-block-group__inner-container { display: grid; gap: 22px; }
.about-director-letter__copy > :first-child { margin-top: 0; }
.about-director-letter__copy > :last-child { margin-bottom: 0; }
.about-director-letter__photo { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--c-bg); }
.about-director-letter__photo > .wp-block-image { margin: 0; }
.about-director-letter__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.faq-list { display: grid; gap: 10px; }
summary { cursor: pointer; font-weight: 700; color: var(--c-navy); }
.legal-section { background: #1f1f1f; color: #e8e8e8; }
.legal-content { max-width: 1160px; }
.legal-content h2 { margin: 0 0 4px; color: #fff; font-size: 22px; line-height: 1.2; }
.legal-content p { margin: 0 0 26px; font-size: 20px; line-height: 1.35; }
.legal-link { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: center; margin: 26px 0 34px; }
.legal-link span { color: var(--c-primary); font-size: 42px; line-height: 1; transform: rotate(18deg); }
.legal-link a, .legal-extra a { color: #34bdf0; font-size: 22px; font-weight: 700; overflow-wrap: anywhere; }
.legal-extra { margin-top: 18px; }
.site-footer { padding: 38px 16px 96px; color: rgba(255,255,255,.86); background: #07152f; font: 400 15px/1.45 Roboto, Arial, sans-serif; }
.site-footer :is(h2, p, a, li) { font: inherit; color: inherit; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; gap: 26px; }
.footer-grid > div { min-width: 0; }
.footer-grid > div:not(:first-child) { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-brand img { width: 180px; }
.site-footer h2 { margin: 0 0 12px; }
.site-footer p { margin: 0; }
.site-footer a { text-decoration: none; text-underline-offset: 4px; }
.site-footer a:hover { color: #8edcff; text-decoration: underline; }
.footer-operator p { max-width: 360px; }
.footer-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.footer-nav .footer-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 360px; }
.scroll-plane { --scroll-plane-heading: 135deg; position: fixed; top: var(--scroll-plane-start, 78px); right: max(6px, env(safe-area-inset-right)); z-index: 25; width: 45px; height: 45px; display: grid; place-items: center; pointer-events: none; opacity: .78; transform: translate3d(0,0,0); transition: opacity .2s ease; will-change: transform; }
.scroll-plane img { width: 39px; height: 39px; display: block; filter: drop-shadow(0 4px 8px rgba(27,42,74,.2)); transform: rotate(var(--scroll-plane-heading)); transition: transform .18s ease-out; }
.scroll-plane.is-moving-up { --scroll-plane-heading: 315deg; }
.mobile-actions { position: fixed; left: max(14px, env(safe-area-inset-left)); bottom: max(14px, env(safe-area-inset-bottom)); z-index: 30; display: flex; gap: 10px; }
.mobile-actions a { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--c-primary); box-shadow: var(--shadow); text-decoration: none; }
.mobile-actions a img { width: 28px; height: 28px; display: block; }
@media (max-width: 767px) {
  .hero.is-date-range-open { z-index: 31; }
  .date-range-field__panel { position: fixed; inset: 0; z-index: 100; width: auto; max-width: none; padding: 18px; border: 0; border-radius: 0; overflow: auto; }
  .date-range-field__calendars { grid-template-columns: 1fr; gap: 24px; }
  .date-range-field__month { max-width: 420px; width: 100%; margin: 0 auto; }
  .date-range-field__day { font-size: 15px; }
}
@media (min-width: 768px) {
  :root { --site-gutter: 28px; }
  .site-header { grid-template-columns: auto minmax(0, 1fr) auto auto auto; grid-template-areas: "brand nav lang phone quote"; padding: 14px 20px; gap: 12px; }
  .brand img { width: 210px; }
  .menu-toggle { display: none; }
  .header-phone { display: inline-flex; }
  .primary-menu { grid-area: nav; display: block; position: static; padding: 0; border: 0; background: transparent; }
  .menu-list { display: flex; justify-content: center; gap: 14px; }
  .menu-list a { font-size: 15px; }
  .language-switcher { min-height: 34px; align-items: center; justify-content: center; }
  .language-current { width: auto; min-height: 36px; }
  .header-phone { width: auto; min-height: 44px; padding: 0 14px; gap: 8px; font-size: 16px; }
  .phone-hours { display: none; }
  .phone-number { display: inline; }
  .header-quote { min-height: 44px; font-size: 14px; padding: 0 12px; }
  .inquiry-form { scroll-margin-top: 92px; }
  .hero { min-height: calc(100svh - 72px); grid-template-columns: minmax(0, 1fr) minmax(320px, 430px); align-items: center; gap: 32px; padding: 56px 28px; }
  .hero h1, .page-hero h1 { font-size: 48px; }
  .section h2, .cta-section h2 { font-size: 36px; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(4, 1fr); }
  .feature-grid, .cards { grid-template-columns: repeat(3, 1fr); }
  .split, .cta-section { grid-template-columns: 1fr 1fr; }
  .standards { width: min(100%, 500px); min-height: 470px; }
  .standards::before { width: min(380px, 80%); }
  .standards-center { width: 132px; }
  .standards-center strong { font-size: 38px; }
  .standards-point { width: min(164px, 34%); min-height: 60px; padding: 10px 12px; font-size: 15px; }
  .footer-grid {
    grid-template-columns: minmax(150px, .85fr) minmax(220px, .9fr) minmax(160px, 1fr) minmax(260px, 1.45fr) minmax(190px, 1fr);
    grid-template-areas:
      "brand contact nav operator docs";
    gap: 28px;
    align-items: start;
  }
  .footer-grid > div:not(:first-child) { padding-top: 0; border-top: 0; }
  .footer-brand { grid-area: brand; }
  .footer-contact { grid-area: contact; }
  .footer-operator { grid-area: operator; }
  .footer-nav { grid-area: nav; }
  .footer-docs { grid-area: docs; }
  .footer-brand img { width: 210px; }
  .footer-nav .footer-menu { grid-template-columns: repeat(2, minmax(90px, 1fr)); max-width: 260px; }
  .section, .cta-section, .page-hero { padding: 58px var(--site-gutter); }
  .media-pair { grid-template-columns: 1fr 1fr; }
  .about-director-letter > .wp-block-group__inner-container { grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); align-items: start; gap: 56px; }
  .fleet-reference-main { padding-top: 58px; padding-bottom: 58px; }
  .fleet-reference-copy h2, .fleet-reference-models > h2 { font-size: 36px; }
  .fleet-reference-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
  .fleet-reference-models__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
  .about-director-letter__photo { grid-column: 2; grid-row: 1; }
  .mobile-actions { display: none; }
  .scroll-plane { top: var(--scroll-plane-start, 90px); right: max(10px, env(safe-area-inset-right)); width: 51px; height: 51px; }
  .scroll-plane img { width: 45px; height: 45px; }
}
@media (min-width: 1200px) {
  :root { --site-gutter: 28px; }
  .hero { padding-left: calc((100vw - 1160px) / 2); padding-right: calc((100vw - 1160px) / 2); }
  .hero h1, .page-hero h1 { font-size: 58px; }
  .section h2, .cta-section h2 { font-size: 36px; }
  .fleet-reference-copy h2, .fleet-reference-models > h2 { font-size: 36px; }
  .standards { width: min(100%, 560px); min-height: 500px; }
  .standards::before { width: min(420px, 82%); }
  .standards-center { width: 150px; }
  .standards-center strong { font-size: 42px; }
  .standards-point { width: min(176px, 34%); min-height: 64px; padding: 12px 16px; font-size: 16px; }
}
