:root {
  --ink: #111a15;
  --ink-soft: #414b45;
  --paper: #f6f4ee;
  --paper-deep: #ece8dd;
  --white: #ffffff;
  --olive: #9b8148;
  --olive-dark: #705d32;
  --line: rgba(17, 20, 17, .14);
  --line-light: rgba(255, 255, 255, .24);
  --muted: #71746e;
  --max: 1240px;
  --header: 64px;
  color-scheme: light;
  font-family: "Avenir Next", "Segoe UI Variable", "Helvetica Neue", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body { margin: 0; background: var(--paper); color: var(--ink); overflow-x: hidden; line-height: 1.5; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: inherit; font-weight: 650; letter-spacing: -.018em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--white);
  background: rgba(17, 20, 17, .94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background-color .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled { background: rgba(17, 20, 17, .98); box-shadow: 0 12px 34px rgba(0,0,0,.16); }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand > img { width: 34px; height: 34px; object-fit: contain; }
.brand > span { display: grid; gap: 1px; min-width: 0; }
.brand strong { font-size: 16px; font-weight: 700; letter-spacing: .14em; white-space: nowrap; }
.brand small { font-size: 8px; letter-spacing: .12em; opacity: .68; white-space: nowrap; }
.desktop-nav, .desktop-consult { display: none; }
.header-actions { display: flex; align-items: center; gap: 7px; }
.language-control select { appearance: none; min-width: 56px; height: 34px; padding: 0 8px; color: inherit; background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 1px; font-size: 11px; text-align: center; }
.language-control option { color: var(--ink); }
.menu-toggle { width: 38px; height: 38px; display: grid; place-items: center; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle img { width: 19px; height: 19px; filter: invert(1); }

.mobile-menu {
  position: fixed;
  inset: var(--header) 0 auto;
  z-index: 70;
  display: grid;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  visibility: hidden;
  opacity: 0;
  transition: max-height .28s ease, padding .28s ease, opacity .2s ease;
}
.mobile-menu.is-open { max-height: calc(100svh - var(--header)); padding-top: 16px; padding-bottom: 20px; visibility: visible; opacity: 1; }
.mobile-menu a { padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; font-weight: 600; }
.mobile-menu .button { margin-top: 18px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:active { transform: translateY(1px); }
.button-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-primary:hover { background: var(--olive); border-color: var(--olive); }
.site-header .button-primary { background: var(--olive); border-color: var(--olive); }
.button-light { background: transparent; color: currentColor; border-color: currentColor; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: calc(var(--header) + 54px) 18px 46px; color: var(--white); overflow: hidden; background: var(--ink); }
.hero-media { position: absolute; inset: 0; background-image: var(--hero-image); background-size: cover; background-position: 60% center; transform: scale(1.02); animation: hero-drift 15s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,6,.72) 0%, rgba(5,7,6,.42) 54%, rgba(5,7,6,.18) 100%); }
.hero-content { position: relative; z-index: 1; width: min(100%, 630px); }
.eyebrow { margin-bottom: 10px; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-dark); }
.hero-eyebrow { color: #d2bb87; }
.hero h1 { max-width: 600px; margin-bottom: 14px; font-size: clamp(43px, 13vw, 68px); line-height: 1.06; letter-spacing: .02em; white-space: pre-line; }
.hero-subtitle { max-width: 520px; margin-bottom: 22px; font-size: 17px; font-weight: 450; line-height: 1.7; }
.hero-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; margin: 0 0 26px; padding: 0; list-style: none; font-size: 12px; }
.hero-facts li { display: flex; align-items: center; gap: 7px; }
.hero-facts img { width: 13px; height: 13px; filter: invert(93%) sepia(16%) saturate(635%) hue-rotate(24deg); }
.hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-actions .button-primary { background: #fff; color: var(--ink); border-color: #fff; }
.hero-actions .button-primary:hover { background: #d2bb87; border-color: #d2bb87; }

.section { width: min(100%, calc(var(--max) + 36px)); margin: 0 auto; padding: 64px 18px; border-bottom: 1px solid var(--line); }
.section-heading { display: grid; gap: 14px; margin-bottom: 30px; }
.section-heading h2, .about-section h2 { margin-bottom: 0; font-size: clamp(32px, 4.1vw, 46px); line-height: 1.14; }
.section-heading > p { max-width: 580px; margin-bottom: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px; background: var(--ink); border: 2px solid var(--ink); }
.service-tile { position: relative; aspect-ratio: 4 / 5; overflow: hidden; padding: 0; color: var(--white); background: var(--ink); border: 0; text-align: left; cursor: pointer; }
.service-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.service-shade { position: absolute; inset: 0; background: rgba(8,14,11,.35); transition: background-color .35s ease; }
.service-tile-copy { position: absolute; left: 13px; right: 28px; bottom: 13px; display: grid; gap: 3px; }
.service-tile-copy strong { font-size: 20px; font-weight: 650; letter-spacing: -.02em; }
.service-tile-copy small { font-size: 9px; letter-spacing: .08em; opacity: .78; }
.tile-chevron { position: absolute; right: 12px; bottom: 16px; width: 9px; height: 9px; filter: invert(1); }
.service-tile:hover .service-photo, .service-tile[aria-expanded="true"] .service-photo { transform: scale(1.08); filter: saturate(1.08); }
.service-tile:hover .service-shade, .service-tile[aria-expanded="true"] .service-shade { background: rgba(8,14,11,.18); }
.service-tile[aria-expanded="true"] { outline: 2px solid #c8ad74; outline-offset: -2px; }
.service-motion-layer { position: absolute; z-index: 2; pointer-events: none; opacity: 0; will-change: transform, opacity, filter; }
.service-flight-layer { top: 48%; left: 84%; width: 70%; max-width: none; filter: drop-shadow(0 10px 8px rgba(16,20,18,.2)); transform-origin: center; }
.service-headlight-layer { inset: 0; width: 100%; height: 100%; overflow: hidden; mix-blend-mode: screen; }
.service-headlight-halo { fill: rgba(255,242,178,.58); filter: blur(1.6px) drop-shadow(0 0 4px rgba(255,238,166,.9)) drop-shadow(0 0 12px rgba(248,213,119,.76)); }
.service-headlight-core { fill: rgba(255,255,241,.98); filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 8px rgba(255,236,170,.95)); }
.service-icon { position: absolute; z-index: 2; left: 13px; bottom: 48px; width: 22px; height: 22px; filter: invert(1); }
.service-motion-planeFlyby.is-in-view .service-flight-layer { animation: airport-flyby var(--service-motion-duration, 6.8s) cubic-bezier(.16,.68,.24,1) .35s both; }
.service-motion-headlights.is-in-view .service-headlight-layer { animation: service-headlights var(--service-motion-duration, 5.2s) cubic-bezier(.22,.72,.24,1) .25s both; }
.service-motion-loop.is-in-view .service-motion-layer { animation-iteration-count: infinite; }

.expand-panel { margin-top: 18px; }
.expand-panel[hidden] { display: none; }
.service-detail { display: grid; border: 1px solid var(--ink); background: var(--paper-deep); }
.service-detail-copy { padding: 28px 22px; }
.service-detail-copy h3 { margin-bottom: 12px; font-size: 32px; }
.service-detail-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.service-detail-photo { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.detail-accordion { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
details:last-child { border-bottom: 0; }
summary { position: relative; padding: 17px 38px 17px 18px; list-style: none; cursor: pointer; font-weight: 700; font-size: 13px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 18px; top: 14px; font-size: 20px; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p, details ul { margin: -3px 18px 17px; padding-left: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.8; }
details ul { padding-left: 18px; }

.advantage-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.advantage-item { min-height: 188px; position: relative; padding: 20px 16px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.advantage-item > img { width: 24px; height: 24px; margin-bottom: 23px; opacity: .72; }
.advantage-item h3 { margin-bottom: 8px; font-size: 18px; }
.advantage-item p { margin-bottom: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.7; }

.fleet-section { overflow: hidden; }
.fleet-board + .fleet-board { margin-top: 86px; }
.fleet-selected { min-width: 0; }
.fleet-selected-card:not(.is-selected) { display: none; }
.fleet-thumbnail-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 7px; margin-top: 10px; }
.fleet-thumbnail { min-width: 0; display: grid; grid-template-rows: auto 1fr; padding: 0; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.52); text-align: left; cursor: pointer; transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.fleet-thumbnail:hover { transform: translateY(-2px); border-color: rgba(112,93,50,.55); background: var(--white); }
.fleet-thumbnail.is-active { border-color: var(--olive); background: var(--white); box-shadow: inset 0 0 0 1px var(--olive), 0 10px 30px rgba(17,20,17,.08); }
.fleet-thumbnail-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e8e5dc; }
.fleet-thumbnail-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.fleet-thumbnail:hover .fleet-thumbnail-image img, .fleet-thumbnail.is-active .fleet-thumbnail-image img { transform: scale(1.035); filter: saturate(1.05) contrast(1.02); }
.fleet-thumbnail-copy { min-width: 0; display: grid; align-content: start; gap: 2px; padding: 8px 7px 9px; }
.fleet-thumbnail-copy strong { display: -webkit-box; overflow: hidden; font-size: 10px; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.fleet-thumbnail-copy small { display: none; overflow: hidden; color: var(--muted); font-size: 9px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.vehicle-card { min-width: 0; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 40px rgba(17,20,17,.06); }
.vehicle-card[hidden] { display: none; }
.vehicle-card > button { width: 100%; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.vehicle-image { position: relative; aspect-ratio: 16/11; overflow: hidden; background: #ebe9e3; }
.vehicle-photo, .vehicle-light-layer, .vehicle-motion { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vehicle-motion { display: none; }
.vehicle-photo { transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.vehicle-light-layer { opacity: 0; filter: brightness(1.42) contrast(1.07) saturate(1.04); mix-blend-mode: screen; animation: vehicle-light 4.8s ease-in-out infinite; }
.vehicle-motion { opacity: 0; transition: opacity .45s ease; }
.vehicle-card:hover .vehicle-photo { transform: scale(1.035); }
.vehicle-card:hover .vehicle-light-layer, .fleet-selected-card.is-selected .vehicle-light-layer { opacity: .44; }
.vehicle-card:hover .vehicle-motion, .fleet-selected-card.is-selected .vehicle-motion { opacity: 1; }
.vehicle-card-copy { padding: 20px 18px 18px; }
.vehicle-card-copy > p { margin-bottom: 5px; color: var(--olive-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.vehicle-card-copy h3 { margin-bottom: 17px; font-size: 27px; line-height: 1.15; }
.vehicle-guide { display: -webkit-box; min-height: 34px; margin: -8px 0 13px; overflow: hidden; color: var(--muted); font-size: 9px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vehicle-card-copy dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 15px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vehicle-card-copy dl div { padding: 11px 8px 11px 0; }
.vehicle-card-copy dl div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.vehicle-card-copy dt { margin-bottom: 4px; color: var(--muted); font-size: 9px; letter-spacing: .04em; }
.vehicle-card-copy dt { display: flex; align-items: center; gap: 5px; }
.vehicle-card-copy dt img { width: 12px; height: 12px; flex: 0 0 12px; }
.vehicle-card-copy dd { margin: 0; font-size: 14px; font-weight: 800; }
.vehicle-scene { display: flex; align-items: flex-start; gap: 6px; min-height: 34px; margin-bottom: 14px; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.vehicle-scene img { width: 12px; height: 12px; flex: 0 0 12px; }
.text-link { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.text-link img { width: 9px; height: 9px; }
.fleet-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.fleet-board-note { margin: 10px 0 0; color: var(--muted); font-size: 9px; text-align: right; }

.route-list { border-top: 1px solid var(--ink); }
.route-row { width: 100%; min-height: 88px; display: grid; grid-template-columns: 76px 1fr 12px; align-items: center; gap: 11px; padding: 10px 2px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; text-align: left; cursor: pointer; }
.route-photo { width: 76px; height: 62px; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.route-row:hover .route-photo, .route-row[aria-expanded="true"] .route-photo { transform: scale(1.04); filter: saturate(1.08); }
.route-title { display: grid; gap: 4px; min-width: 0; }
.route-title strong { font-size: 18px; font-weight: 650; }
.route-title small { display: -webkit-box; overflow: hidden; color: var(--ink-soft); font-size: 10px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.route-chevron { width: 9px; height: 9px; }
.route-row[aria-expanded="true"] { color: var(--olive-dark); }
.route-detail { display: grid; border: 1px solid var(--ink); background: var(--white); }
.route-detail-visual { position: relative; min-height: 310px; overflow: hidden; color: var(--white); }
.route-detail-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.route-detail-visual > span { position: absolute; inset: 0; background: rgba(10,18,14,.46); }
.route-detail-visual > div { position: absolute; inset: auto 22px 22px; }
.route-detail-visual h3 { margin-bottom: 9px; font-size: 32px; }
.route-detail-visual p:last-child { margin-bottom: 0; font-size: 12px; line-height: 1.6; }
.route-detail-list { border-top: 1px solid var(--ink); }
.route-detail > .button { margin: 18px; }

.guarantee-layout { display: grid; border: 1px solid var(--ink); }
.guarantee-photo { position: relative; min-height: 280px; background-image: var(--guarantee-photo); background-size: cover; background-position: center; color: var(--white); }
.guarantee-photo > span { position: absolute; inset: 0; background: rgba(10,18,14,.42); }
.guarantee-photo > div { position: absolute; inset: auto 20px 20px; }
.guarantee-photo h3 { margin-bottom: 0; font-size: 30px; }
.guarantee-list article { display: grid; grid-template-columns: 20px 1fr; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.guarantee-list article:last-child { border-bottom: 0; }
.guarantee-list img { width: 17px; height: 17px; opacity: .72; }
.guarantee-list h3 { margin-bottom: 4px; font-size: 17px; }
.guarantee-list p { margin-bottom: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }
.driver-standard { padding: 20px 18px; color: var(--white); background: var(--ink); }
.driver-standard ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.driver-standard li { padding-bottom: 13px; border-bottom: 1px solid var(--line-light); font-size: 12px; }
.driver-standard li:last-child { padding-bottom: 0; border-bottom: 0; }
.mobile-refund-column, .mobile-qualification-block { display: none; }

.refund-section { display: grid; gap: 22px; background: var(--ink); color: var(--white); }
.refund-statement .eyebrow { color: #d2bb87; }
.refund-statement h2 { margin-bottom: 20px; font-size: clamp(32px,8vw,52px); line-height: 1.2; }
.refund-statement strong { display: block; margin-bottom: 14px; color: #d2bb87; font-size: 20px; font-weight: 650; }
.refund-statement > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.8; }
.refund-boundaries { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.refund-boundaries article { min-height: 160px; padding: 16px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.refund-boundaries img { width: 18px; height: 18px; margin-bottom: 18px; filter: invert(1); opacity: .72; }
.refund-boundaries h3 { margin-bottom: 6px; font-size: 16px; }
.refund-boundaries p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.65; }

.testimonial-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.testimonial-grid blockquote { min-height: 220px; display: flex; flex-direction: column; margin: 0; padding: 18px 15px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.testimonial-photo { width: 100%; height: 132px; margin-bottom: 16px; object-fit: cover; }
.testimonial-grid blockquote > p { flex: 1; font-size: 15px; line-height: 1.75; }
.testimonial-grid footer { display: grid; gap: 3px; }
.testimonial-grid footer strong { font-size: 11px; }
.testimonial-grid footer small { color: var(--muted); font-size: 9px; line-height: 1.5; }
.testimonial-grid em { margin-top: 12px; color: var(--olive-dark); font-size: 8px; font-style: normal; line-height: 1.45; }

.qualification-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.qualification-grid article { min-height: 150px; position: relative; padding: 18px 15px; border: 1px solid var(--ink); }
.qualification-grid img { width: 22px; height: 22px; margin-bottom: 34px; opacity: .7; }
.qualification-grid .qualification-material { width: 100%; height: 88px; margin-bottom: 18px; object-fit: cover; opacity: 1; }
.qualification-grid span { position: absolute; top: 17px; right: 13px; max-width: 92px; color: var(--muted); font-size: 8px; line-height: 1.4; text-align: right; }
.qualification-grid h3 { margin-bottom: 0; font-size: 17px; line-height: 1.4; }

.about-section { display: grid; gap: 22px; }
.about-section > div > p { color: var(--ink-soft); font-size: 13px; line-height: 1.9; }
.about-section strong { font-size: 12px; color: var(--olive-dark); }
.process-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; padding: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); list-style: none; }
.process-list li { min-height: 104px; display: grid; align-content: space-between; padding: 14px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-list span { font-size: 9px; color: var(--muted); letter-spacing: .16em; }
.process-list strong { font-size: 15px; font-weight: 650; }

.site-footer { padding: 42px 18px 98px; color: var(--white); background: var(--ink); }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 28px; border-bottom: 1px solid var(--line-light); }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-brand strong { font-size: 22px; font-weight: 700; letter-spacing: .12em; }
.footer-brand p { margin: 6px 0 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.6; }
.footer-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px 18px; padding: 28px 0; }
.footer-columns h3 { margin-bottom: 13px; color: #d2bb87; font-family: inherit; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-columns a, .footer-columns .footer-placeholder { display: block; margin: 0 0 9px; color: rgba(255,255,255,.7); font-size: 10px; }
.footer-legal { padding-top: 20px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.7; }
.footer-legal p { margin: 8px 0; }

.mobile-consult-bar { position: fixed; z-index: 60; inset: auto 12px 12px; }
.mobile-consult-bar button { width: 100%; height: 58px; display: flex; align-items: center; gap: 12px; padding: 0 18px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.28); box-shadow: 0 10px 30px rgba(17,20,17,.24); cursor: pointer; }
.mobile-consult-bar img { width: 20px; height: 20px; filter: invert(1); }
.mobile-consult-bar span { display: grid; gap: 1px; text-align: left; }
.mobile-consult-bar small { font-size: 8px; letter-spacing: .16em; opacity: .75; text-transform: uppercase; }
.mobile-consult-bar strong { font-size: 16px; font-weight: 650; }

dialog { padding: 0; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); }
dialog::backdrop { background: rgba(8,14,11,.74); }
.dialog-close { position: absolute; z-index: 5; top: 12px; right: 12px; width: 38px; height: 38px; display: grid; place-items: center; padding: 11px; background: var(--paper); border: 1px solid var(--ink); cursor: pointer; }
.dialog-close img { width: 13px; height: 13px; }
.content-dialog { width: min(calc(100% - 20px), 860px); max-height: calc(100svh - 20px); overflow: auto; }
.vehicle-dialog { width: min(calc(100% - 20px), 1180px); max-height: calc(100svh - 20px); overflow: auto; }
.vehicle-modal-grid { min-height: 100%; display: grid; background: var(--ink); color: var(--white); }
.vehicle-modal-media { padding: 10px; }
.vehicle-modal-main { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #111; }
.vehicle-modal-main img, .vehicle-modal-main video { width: 100%; height: 100%; object-fit: cover; }
.vehicle-modal-main img { will-change: opacity, transform; }
.vehicle-gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(84px,1fr)); gap: 5px; margin-top: 5px; }
.vehicle-gallery-thumb { position: relative; overflow: hidden; padding: 0; background: #111; border: 1px solid transparent; opacity: .58; cursor: pointer; transition: opacity .22s ease, border-color .22s ease, transform .22s ease; }
.vehicle-gallery-thumb::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; pointer-events: none; transition: border-color .22s ease; }
.vehicle-gallery-thumb img { width: 100%; aspect-ratio: 4/3; display: block; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.vehicle-gallery-thumb:hover { opacity: .86; }
.vehicle-gallery-thumb:hover img { transform: scale(1.045); }
.vehicle-gallery-thumb.is-active { border-color: #d2bb87; opacity: 1; }
.vehicle-gallery-thumb.is-active::after { border-color: rgba(255,255,255,.72); }
.vehicle-gallery-thumb:focus-visible { outline: 2px solid #f4dda9; outline-offset: 2px; opacity: 1; }
.vehicle-modal-copy { padding: 28px 20px 26px; border-top: 1px solid var(--line-light); }
.vehicle-modal-copy .eyebrow { color: #d2bb87; }
.vehicle-modal-copy h2 { margin-bottom: 14px; font-size: 36px; }
.price-reference { font-size: 12px; }
.price-reference small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); }
.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 20px 0; border: 1px solid var(--line-light); }
.vehicle-specs div { padding: 13px; }
.vehicle-specs div + div { border-left: 1px solid var(--line-light); }
.vehicle-specs dt { margin-bottom: 4px; color: rgba(255,255,255,.55); font-size: 9px; }
.vehicle-specs dd { margin: 0; font-size: 18px; font-weight: 800; }
.vehicle-notes { border-top: 1px solid var(--line-light); }
.vehicle-notes > div { display: grid; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.vehicle-notes h3 { margin-bottom: 4px; font-family: inherit; font-size: 12px; }
.vehicle-notes p { margin-bottom: 0; color: rgba(255,255,255,.65); font-size: 10px; line-height: 1.6; }
.vehicle-modal-copy > .button { width: 100%; margin-top: 18px; }

.consult-dialog { width: min(calc(100% - 20px), 720px); max-height: calc(100svh - 20px); overflow: auto; padding: 28px 20px; }
.consult-dialog-heading { padding-right: 35px; }
.consult-dialog-heading h2 { margin-bottom: 12px; font-size: 31px; line-height: 1.2; }
.consult-dialog-heading > p:last-child { color: var(--ink-soft); font-size: 11px; line-height: 1.7; }
.consult-dialog form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 22px; }
.consult-dialog label { display: grid; gap: 7px; font-size: 10px; font-weight: 700; }
.consult-dialog input, .consult-dialog select, .consult-dialog textarea { width: 100%; min-height: 43px; padding: 10px 11px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); border-radius: 0; }
.consult-dialog textarea { resize: vertical; }
.full-field { grid-column: 1/-1; }
.consult-result { margin-top: 20px; padding: 16px; background: var(--ink); color: var(--white); }
.consult-result h3 { margin-bottom: 10px; font-size: 18px; }
.consult-result pre { white-space: pre-wrap; font-family: inherit; font-size: 11px; line-height: 1.7; }

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .46s ease, transform .46s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hero-drift { from { transform: scale(1.02) translate3d(0,0,0); } to { transform: scale(1.09) translate3d(-1.2%,0,0); } }
@keyframes airport-flyby {
  0% { opacity: 0; transform: translate3d(0,16%,0) scale(.28) rotate(1deg); }
  14% { opacity: .96; }
  68% { opacity: .96; }
  100% { opacity: 0; transform: translate3d(-180%,-128%,0) scale(1.06) rotate(-3deg); }
}
@keyframes service-headlights {
  0%, 10% { opacity: 0; filter: brightness(.82); }
  24% { opacity: .94; filter: brightness(1.08); }
  38% { opacity: .72; filter: brightness(.98); }
  52% { opacity: 1; filter: brightness(1.14); }
  70% { opacity: .9; filter: brightness(1.04); }
  84%, 100% { opacity: 0; filter: brightness(.86); }
}
@keyframes vehicle-light { 0%, 56%, 100% { opacity: 0; } 63% { opacity: .42; } 70% { opacity: .1; } 76% { opacity: .35; } 84% { opacity: 0; } }

@media (min-width: 720px) {
  :root { --header: 72px; }
  .site-header { padding-inline: 28px; }
  .section { padding: 82px 28px; }
  .service-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .service-tile { aspect-ratio: 3/5; }
  .advantage-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .advantage-item { min-height: 220px; padding: 24px 20px; }
  .fleet-thumbnail-grid { gap: 12px; margin-top: 14px; }
  .fleet-thumbnail-image { aspect-ratio: 16/9; }
  .fleet-thumbnail-copy { padding: 11px 12px 12px; }
  .fleet-thumbnail-copy strong { font-size: 13px; -webkit-line-clamp: 1; }
  .fleet-thumbnail-copy small { display: block; }
  .route-row { grid-template-columns: 140px 1fr 18px; min-height: 116px; gap: 18px; }
  .route-photo { width: 140px; height: 92px; }
  .testimonial-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .qualification-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .process-list { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .footer-columns { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 980px) {
  .site-header { left: 50%; right: auto; width: min(calc(100% - 40px), 1400px); transform: translateX(-50%); padding-inline: 24px; }
  .desktop-nav { display: flex; align-items: center; gap: 23px; }
  .desktop-nav a { position: relative; font-size: 11px; color: rgba(255,255,255,.78); }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: #d2bb87; transition: right .25s ease; }
  .desktop-nav a:hover::after { right: 0; }
  .desktop-consult { display: inline-flex; min-height: 36px; padding-inline: 17px; font-size: 11px; }
  .menu-toggle, .mobile-menu, .mobile-consult-bar { display: none; }
  .hero { min-height: 760px; padding: 140px max(6vw, calc((100vw - var(--max))/2)) 80px; align-items: center; }
  .hero-media { background-position: center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,7,6,.72) 0%, rgba(5,7,6,.4) 55%, rgba(5,7,6,.16) 100%); }
  .hero h1 { font-size: 62px; }
  .hero-subtitle { font-size: 18px; }
  .hero-facts { grid-template-columns: repeat(5,auto); justify-content: start; }
  .hero-actions { display: flex; }
  .hero-actions .button { min-width: 150px; }
  .section { padding-block: 86px; }
  .section-heading { grid-template-columns: minmax(0,1fr) 420px; align-items: end; margin-bottom: 48px; }
  .section-heading > p { justify-self: end; }
  .service-tile { aspect-ratio: 4/5; }
  .service-tile-copy { left: 22px; right: 40px; bottom: 22px; }
  .service-tile-copy strong { font-size: 23px; }
  .tile-chevron { right: 22px; bottom: 27px; }
  .service-flight-layer { width: 74%; }
  .service-tile[data-motion-desktop="false"] .service-motion-layer { display: none; }
  .service-detail { grid-template-columns: .8fr 1.2fr; grid-template-areas: "copy photo" "accordion photo"; }
  .service-detail-copy { grid-area: copy; padding: 48px 42px 22px; }
  .service-detail-photo { grid-area: photo; height: 100%; aspect-ratio: auto; object-fit: cover; border-left: 1px solid var(--ink); }
  .detail-accordion { grid-area: accordion; border-top: 1px solid var(--ink); }
  .advantage-item h3 { font-size: 23px; }
  .fleet-selected-card > button { display: grid; grid-template-columns: minmax(0,1.62fr) minmax(330px,.78fr); }
  .fleet-selected-card .vehicle-image { min-height: 520px; aspect-ratio: auto; }
  .fleet-selected-card .vehicle-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px 42px 42px; }
  .fleet-selected-card .vehicle-card-copy h3 { font-size: 34px; }
  .fleet-selected-card .vehicle-guide { margin-bottom: 22px; }
  .fleet-selected-card .vehicle-card-copy dl { margin-bottom: 22px; }
  .fleet-selected-card .vehicle-scene { margin-bottom: 24px; }
  .fleet-thumbnail-grid { gap: 14px; }
  .fleet-note { max-width: 720px; }
  .route-row { grid-template-columns: 190px 1fr 22px; min-height: 126px; }
  .route-photo { width: 190px; height: 102px; }
  .route-title strong { font-size: 22px; }
  .route-title small { font-size: 12px; -webkit-line-clamp: 1; }
  .route-detail { grid-template-columns: 1.05fr .95fr; }
  .route-detail-visual { grid-row: span 2; min-height: 620px; }
  .route-detail-list { border-top: 0; border-left: 1px solid var(--ink); }
  .route-detail > .button { margin: 20px; }
  .guarantee-layout { grid-template-columns: 1fr 1fr; grid-template-areas: "photo list" "photo standard"; }
  .guarantee-photo { grid-area: photo; min-height: 680px; }
  .guarantee-list { grid-area: list; }
  .driver-standard { grid-area: standard; }
  .refund-section { grid-template-columns: .9fr 1.1fr; width: 100%; max-width: none; padding-inline: max(28px, calc((100vw - var(--max))/2)); }
  .refund-boundaries { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testimonial-grid blockquote { min-height: 260px; padding: 26px 22px; }
  .qualification-grid article { min-height: 190px; padding: 24px 20px; }
  .about-section { grid-template-columns: 280px 1fr; }
  .process-list { grid-template-columns: repeat(8,minmax(0,1fr)); }
  .process-list li { min-height: 142px; }
  .site-footer { padding: 60px max(28px, calc((100vw - var(--max))/2)) 42px; }
  .footer-brand { max-width: 480px; }
  .footer-columns { margin-left: auto; max-width: 760px; }
  .vehicle-modal-grid { grid-template-columns: 1.2fr .8fr; }
  .vehicle-modal-copy { border-top: 0; border-left: 1px solid var(--line-light); padding: 54px 42px 38px; }
  .vehicle-modal-media { align-self: center; padding: 18px; }
  .consult-dialog { padding: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .vehicle-light-layer, .vehicle-motion, .service-motion-layer { display: none; }
}

@media (max-width: 719px) {
  :root { --header: 60px; }

  .site-header {
    padding: 0 14px;
    background: rgba(17, 20, 17, .96);
  }
  .brand { gap: 9px; }
  .brand > img { width: 32px; height: 32px; }
  .brand strong { font-size: 15px; letter-spacing: .12em; }
  .brand small { display: none; }
  .header-actions { gap: 4px; }
  .language-control select { min-width: 54px; height: 38px; padding-inline: 6px; font-size: 11px; }
  .menu-toggle { width: 44px; height: 44px; padding: 12px; }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: calc(var(--header) + 82px) 18px 30px;
  }
  .hero-media { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5,7,6,.12) 12%, rgba(5,7,6,.36) 48%, rgba(5,7,6,.88) 100%); }
  .hero-content { width: 100%; }
  .hero-eyebrow { margin-bottom: 9px; font-size: 9px; line-height: 1.4; }
  .hero h1 {
    max-width: 330px;
    margin-bottom: 11px;
    font-size: clamp(38px, 10.6vw, 42px);
    line-height: 1.08;
    letter-spacing: .01em;
  }
  .hero-subtitle { max-width: 330px; margin-bottom: 18px; font-size: 14px; line-height: 1.6; }
  .hero-facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 12px; margin-bottom: 20px; font-size: 11px; line-height: 1.35; }
  .hero-facts img { width: 14px; height: 14px; flex: 0 0 14px; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { min-height: 46px; padding-inline: 12px; font-size: 12px; }

  .section { padding: 62px 18px; }
  .section-heading { gap: 11px; margin-bottom: 26px; }
  .section-heading h2, .about-section h2 { font-size: clamp(28px, 8vw, 32px); line-height: 1.18; }
  .section-heading > p { max-width: none; font-size: 13px; line-height: 1.7; }
  .eyebrow { margin-bottom: 8px; font-size: 9px; }

  .service-grid { gap: 4px; background: transparent; border: 0; }
  .service-tile { min-height: 196px; aspect-ratio: 4 / 5; border-radius: 2px; }
  .service-tile-copy { left: 14px; right: 28px; bottom: 14px; gap: 4px; }
  .service-tile-copy strong { font-size: 18px; line-height: 1.2; }
  .service-tile-copy small { font-size: 9px; line-height: 1.4; }
  .service-icon { left: 14px; bottom: 59px; width: 23px; height: 23px; }
  .tile-chevron { right: 13px; bottom: 19px; width: 10px; height: 10px; }
  .service-flight-layer { top: 50%; left: 86%; width: 80%; }
  .service-tile[data-motion-mobile="false"] .service-motion-layer { display: none; }
  .expand-panel { margin-top: 16px; }
  .service-detail { grid-template-columns: 1fr; background: var(--white); }
  .service-detail-copy { padding: 28px 20px 24px; }
  .service-detail-copy h3 { margin-bottom: 10px; font-size: 31px; }
  .service-detail-copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.75; }
  .service-detail-copy .button { width: 100%; margin-top: 4px; }
  .service-detail-photo { aspect-ratio: 4 / 3; border-top: 1px solid var(--ink); }
  .detail-accordion { border-top: 1px solid var(--ink); }
  summary { min-height: 48px; padding: 15px 44px 15px 17px; font-size: 14px; }
  summary::after { right: 17px; top: 12px; font-size: 22px; }
  details p, details ul { margin: -2px 17px 17px; font-size: 13px; line-height: 1.75; }

  .advantage-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .advantage-item { min-height: 192px; padding: 20px 16px; }
  .advantage-item > img { width: 25px; height: 25px; margin-bottom: 28px; }
  .advantage-item h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.3; }
  .advantage-item p { font-size: 12px; line-height: 1.65; }

  .fleet-section { overflow: hidden; }
  .fleet-board + .fleet-board { margin-top: 76px; }
  .fleet-selected-card { box-shadow: 0 16px 42px rgba(17,20,17,.08); }
  .vehicle-image { aspect-ratio: 16 / 10; }
  .vehicle-card-copy { padding: 22px 18px 19px; }
  .vehicle-card-copy > p { font-size: 10px; }
  .vehicle-card-copy h3 { margin-bottom: 16px; font-size: 26px; }
  .vehicle-card-copy dt { font-size: 10px; }
  .vehicle-card-copy dd { font-size: 15px; }
  .vehicle-scene { min-height: 0; margin-bottom: 15px; font-size: 12px; }
  .text-link { font-size: 12px; }
  .fleet-thumbnail-grid { gap: 6px; margin-top: 8px; }
  .fleet-thumbnail-copy { padding: 7px 5px 8px; }
  .fleet-thumbnail-copy strong { font-size: 9.5px; line-height: 1.35; }
  .fleet-board-note, .fleet-note { font-size: 10px; line-height: 1.65; text-align: left; }

  .route-row { min-height: 106px; grid-template-columns: 104px 1fr 14px; gap: 13px; padding: 12px 0; }
  .route-photo { width: 104px; height: 78px; }
  .route-title { gap: 5px; }
  .route-title strong { font-size: 18px; line-height: 1.25; }
  .route-title small { font-size: 11px; line-height: 1.55; }
  .route-chevron { width: 10px; height: 10px; }
  .route-detail { grid-template-columns: 1fr; }
  .route-detail-visual { min-height: 330px; }
  .route-detail-visual > div { inset: auto 19px 19px; }
  .route-detail-visual h3 { font-size: 31px; }
  .route-detail-visual p:last-child { font-size: 13px; }
  .route-detail-list { border-top: 1px solid var(--ink); border-left: 0; }
  .route-detail > .button { margin: 16px; }

  .guarantee-layout { grid-template-columns: 1fr; }
  .guarantee-photo { min-height: 330px; }
  .guarantee-photo h3 { font-size: 29px; }
  .guarantee-list article { grid-template-columns: 23px 1fr; gap: 12px; padding: 18px 16px; }
  .guarantee-list img { width: 20px; height: 20px; }
  .guarantee-list h3 { font-size: 17px; }
  .guarantee-list p { font-size: 12px; line-height: 1.65; }
  .driver-standard { padding: 22px 18px; }
  .driver-standard li { font-size: 13px; line-height: 1.5; }
  .mobile-refund-column { display: none; }

  .refund-section { grid-template-columns: 1fr; gap: 28px; }
  .refund-statement h2 { font-size: 34px; }
  .refund-statement strong { font-size: 19px; line-height: 1.5; }
  .refund-statement > p:last-child { font-size: 13px; }
  .refund-boundaries { grid-template-columns: 1fr; }
  .refund-boundaries article { min-height: 132px; padding: 18px; }
  .refund-boundaries h3 { font-size: 17px; }
  .refund-boundaries p { font-size: 11px; }

  .mobile-subheading { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; margin: 0 0 16px; font-size: 20px; }
  .mobile-subheading small { color: var(--muted); font-size: 10px; font-weight: 400; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid blockquote { min-height: 210px; padding: 22px 18px; }
  .testimonial-grid blockquote > p { font-size: 15px; line-height: 1.75; }
  .testimonial-grid footer strong { font-size: 12px; }
  .testimonial-grid footer small { font-size: 10px; }
  .testimonial-grid em { font-size: 9px; }
  .mobile-qualification-block { display: none; }
  .qualification-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .qualification-grid article { min-height: 156px; padding: 18px 15px; }
  .qualification-grid img { width: 23px; height: 23px; margin-bottom: 35px; }
  .qualification-grid span { font-size: 8px; }
  .qualification-grid h3 { font-size: 16px; }

  .about-section { display: grid; gap: 20px; }
  .about-section > div > p { font-size: 14px; line-height: 1.85; }
  .process-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-list li { min-height: 112px; padding: 15px; }
  .process-list span { font-size: 10px; }
  .process-list strong { font-size: 15px; line-height: 1.4; }

  .site-footer { padding: 46px 18px 112px; }
  .footer-brand { gap: 12px; padding-bottom: 26px; }
  .footer-brand img { width: 40px; height: 40px; }
  .footer-brand strong { font-size: 20px; }
  .footer-brand p { font-size: 11px; }
  .footer-columns { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 18px; }
  .footer-columns h3 { font-size: 10px; }
  .footer-columns a { margin-bottom: 10px; font-size: 11px; line-height: 1.45; }
  .footer-legal { font-size: 9px; }
  .footer-citymark { display: none; }

  .mobile-consult-bar { inset: auto 12px calc(12px + env(safe-area-inset-bottom)); opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .24s ease, transform .24s ease; }
  .mobile-consult-bar.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-consult-bar button { min-height: 58px; }

  .services-section > .expand-panel, .routes-section > .expand-panel { display: none !important; }
  .content-dialog { width: 100%; height: 100svh; max-height: 100svh; border: 0; }
  .content-dialog[open] { animation: mobile-detail-enter .32s cubic-bezier(.16,.72,.24,1) both; }
  .content-dialog .service-detail, .content-dialog .route-detail { min-height: 100%; border: 0; }
  .content-dialog .service-detail { display: flex; flex-direction: column; }
  .content-dialog .service-detail-photo { order: -1; aspect-ratio: 16 / 11; }
  .content-dialog .service-detail-copy { padding: 26px 18px; }
  .content-dialog .service-detail-copy h3 { font-size: 34px; }
  .content-dialog .route-detail-visual { min-height: min(52svh, 430px); }
  .content-dialog .route-detail > .button { margin-bottom: calc(18px + env(safe-area-inset-bottom)); }

  .vehicle-dialog { width: 100%; height: 100svh; max-height: 100svh; border: 0; }
  .vehicle-modal-grid { display: block; min-height: 100%; overflow: visible; }
  .vehicle-modal-media { padding: 58px 14px 10px; }
  .vehicle-modal-main { aspect-ratio: 16 / 11; }
  .vehicle-gallery { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .vehicle-modal-copy { padding: 26px 18px 34px; border-top: 1px solid var(--line-light); }
  .vehicle-modal-copy h2 { font-size: 34px; }
  .price-reference { font-size: 11px; }
  .vehicle-notes > div { padding: 13px 0; }
  .vehicle-notes h3 { font-size: 12px; }
  .vehicle-notes p { font-size: 10px; }
  .dialog-close { position: fixed; top: 10px; right: 10px; }
  .consult-dialog { width: calc(100% - 20px); padding: 28px 18px; }
  .consult-dialog form { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
}

@keyframes mobile-detail-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
