/* ═══════════════════════════════════════════
   AUVERO — yellow × black, editorial (not SaaS)
   ═══════════════════════════════════════════ */

:root {
  --font: 'IBM Plex Sans', system-ui, sans-serif;
  --display: 'Bricolage Grotesque', 'IBM Plex Sans', system-ui, sans-serif;

  --black: #0e0e0e;
  --ink: #171717;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --bg: #ffffff;
  --wash: #f8f8f8;
  --yellow: #f0c000;
  --yellow-ink: #0e0e0e;
  --studio: #f0f0f0;

  --header-h: 64px;
  --dock-h: 64px;
  --max: 1100px;
  --gutter: 1.25rem;
  --radius: 10px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (min-width: 768px) {
  :root { --gutter: 1.5rem; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  :root { --header-h: 68px; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea {
  font: inherit;
  color: var(--ink);
  width: 100%;
  border: 1px solid #ccc;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--black);
}
textarea { min-height: 110px; resize: vertical; }
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.av-wrap {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}
.is-hidden { display: none !important; }
body.is-locked { overflow: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Header */
.av-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  transition: background .2s, border-color .2s, color .2s;
  border-bottom: 1px solid transparent;
}
.av-header.is-solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.av-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.av-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.av-brand__mark { display: none !important; }
.av-brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}
.av-header.is-solid .av-brand__name { color: var(--black); }
.av-brand__sub { display: none !important; }
.av-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.av-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  line-height: 1;
}
.av-nav__link:hover,
.av-nav__link.is-active { color: #fff; }
.av-header.is-solid .av-nav__link { color: var(--muted); }
.av-header.is-solid .av-nav__link:hover,
.av-header.is-solid .av-nav__link.is-active { color: var(--black); }
.av-header__actions { display: flex; align-items: center; gap: 0.45rem; }
.av-header__book {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  line-height: 1;
}
.av-header__book:hover { filter: brightness(0.96); }
.av-burger {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
}
.av-header.is-solid .av-burger {
  color: var(--black);
  border-color: var(--line);
}
@media (min-width: 900px) {
  .av-nav { display: flex; }
  .av-header__book { display: inline-flex; }
  .av-burger { display: none; }
}

.av-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.av-overlay.is-on { opacity: 1; visibility: visible; }
.av-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(100%, 300px);
  z-index: 201;
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: 4.5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
}
.av-drawer.is-open { transform: translateX(0); }
.av-drawer__close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 42px; height: 42px;
  font-size: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.av-drawer__links { display: flex; flex-direction: column; }
.av-drawer__links a {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

/* Buttons */
.av-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  min-height: 46px;
  transition: filter .15s, background .15s, color .15s;
  white-space: nowrap;
}
.av-btn--primary {
  background: var(--yellow);
  color: var(--black);
}
.av-btn--primary:hover { filter: brightness(0.95); }
.av-btn--dark {
  background: var(--black);
  color: #fff;
}
.av-btn--dark:hover { background: #000; }
.av-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.av-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.av-btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.av-btn--outline:hover { background: var(--black); color: #fff; }
.av-btn--wa { background: #1fad52; color: #fff; }

/* Hero — content shares .av-wrap alignment */
.av-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}
.av-hero__media { position: absolute; inset: 0; }
.av-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.av-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.88) 100%);
  pointer-events: none;
}
.av-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: calc(1.75rem + var(--dock-h));
}
@media (min-width: 900px) {
  .av-hero__inner { padding-bottom: 3.75rem; }
}
.av-hero__stamp { display: none !important; }
.av-hero__content {
  width: 100%;
  max-width: 34rem;
}
.av-hero__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.6rem, 13vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}
.av-hero__title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 18ch;
  margin-bottom: 0.7rem;
}
.av-hero__lead {
  font-size: 1rem;
  color: rgba(255,255,255,.74);
  max-width: 32ch;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.av-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Brand line */
.av-marquee {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--yellow);
  padding: 0.8rem 0;
}
.av-marquee__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  animation: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.av-marquee__track span::after { content: none; }
@media (max-width: 700px) {
  .av-marquee__track { justify-content: flex-start; gap: 0.55rem 1.1rem; }
}

/* Sections */
.av-section { padding: 3.25rem 0; }
@media (min-width: 768px) { .av-section { padding: 4.5rem 0; } }
.av-section--soft { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.av-section--ink { background: var(--black); color: #fff; }
.av-section--ink .av-section__label { color: var(--yellow); }
.av-section--ink .av-section__title { color: #fff; }
.av-section--ink .av-section__copy { color: rgba(255,255,255,.6); }
.av-section__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.av-section__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 0.45rem;
}
.av-section__copy {
  font-size: 1rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
}
.av-section__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.av-section__row > div { min-width: 0; flex: 1 1 16rem; }
.av-section__row .av-btn { flex-shrink: 0; }
.av-section__top { margin-bottom: 1.75rem; max-width: 36rem; }

/* Runway / cards */
.av-runway {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0;
  padding: 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.av-runway::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .av-runway {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 1.1rem;
  }
}

.av-car-card {
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .25s var(--ease);
}
@media (min-width: 900px) {
  .av-car-card { flex: unset; }
  .av-car-card:hover {
    border-color: #c8c8c8;
    transform: translateY(-3px);
  }
}
.av-car-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--studio);
  overflow: hidden;
}
.av-car-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.av-car-card__tag {
  position: absolute;
  top: 0.65rem; left: 0.65rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}
.av-car-card__num { display: none; }
.av-car-card__body {
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  border-top: 1px solid var(--line);
}
.av-car-card__brand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.av-car-card__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
  margin-top: 0.1rem;
}
.av-car-card__sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.av-car-card__price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.av-car-card__price strong { color: var(--black); font-weight: 600; }
.av-car-card__actions {
  display: flex;
  gap: 0.45rem;
  margin-top: auto;
}
.av-car-card__actions button {
  flex: 1;
  min-height: 42px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}
.av-car-card__actions button:active {
  border-color: var(--black);
  background: var(--yellow);
}
.av-car-card__go {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: var(--radius);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.av-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .av-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .av-vehicle-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.av-vehicle-grid .av-car-card { flex: unset; width: 100%; }

/* Filters */
.av-tabs,
.av-chips,
.av-fleet-filters {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.av-tabs::-webkit-scrollbar,
.av-chips::-webkit-scrollbar,
.av-fleet-filters::-webkit-scrollbar { display: none; }
.av-chip {
  flex-shrink: 0;
  min-height: 38px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.av-chip.is-on {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

/* Why — stacked rows, no icon cards */
.av-features {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.15);
}
.av-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  align-items: start;
}
.av-feature__icon {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: block;
  margin: 0.15rem 0 0;
  min-width: 1.5rem;
}
.av-feature__icon i { display: none; }
.av-feature__icon::before {
  content: attr(data-n);
}
.av-feature h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.av-feature p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.58);
  max-width: 40rem;
  line-height: 1.55;
}

/* Steps — one column rules */
.av-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .av-steps { grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); }
}
.av-step {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}
@media (min-width: 800px) {
  .av-step {
    padding: 1.25rem 1.15rem;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
}
.av-step__n {
  display: inline;
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow-ink);
  background: var(--yellow);
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.75rem;
}
.av-step h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.av-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.av-faq { display: flex; flex-direction: column; gap: 0; max-width: 680px; border-top: 1px solid var(--line); }
.av-faq__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.av-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  min-height: 52px;
  color: var(--black);
}
.av-faq__q i {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform .2s;
}
.av-faq__item.is-open .av-faq__q i { transform: rotate(45deg); color: var(--black); background: none; }
.av-faq__a { display: none; padding: 0 0 1.05rem; }
.av-faq__item.is-open .av-faq__a { display: block; }
.av-faq__a p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* CTA — solid black, yellow accent */
.av-cta {
  padding: 3.5rem 0;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.av-cta::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--yellow);
}
.av-cta .av-wrap { position: relative; z-index: 1; }
.av-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.av-cta p {
  color: rgba(255,255,255,.6);
  max-width: 28rem;
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.av-cta__row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.av-cta .av-btn--outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.av-cta .av-btn--outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* Contact — simple cells */
.av-contact {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .av-contact { grid-template-columns: repeat(3, 1fr); }
}
.av-contact__cell {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.25rem 0;
  box-shadow: none;
}
@media (min-width: 768px) {
  .av-contact__cell {
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .av-contact__cell:last-child { border-right: none; padding-right: 0; }
  .av-contact__cell:not(:first-child) { padding-left: 1.25rem; }
}
.av-contact__cell:hover { transform: none; box-shadow: none; }
.av-contact__cell h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.av-contact__cell a {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--black);
  word-break: break-word;
}
.av-contact__cell a:hover { color: var(--muted); }
.av-contact__cell small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.av-footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  padding: 2.25rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) { .av-footer { padding-bottom: 2.25rem; } }
.av-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 640px) {
  .av-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.av-footer .av-brand__name { color: var(--yellow); }
/* Inner pages: header always solid → black wordmark */
body:has(.av-page-hero) .av-header .av-brand__name,
body:has(.av-page-hero) .av-header .av-nav__link { color: var(--muted); }
body:has(.av-page-hero) .av-header .av-brand__name { color: var(--black); }
body:has(.av-page-hero) .av-header .av-nav__link:hover,
body:has(.av-page-hero) .av-header .av-nav__link.is-active { color: var(--black); }
body:has(.av-page-hero) .av-header .av-burger {
  color: var(--black);
  border-color: var(--line);
}
.av-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  font-weight: 500;
  font-size: 0.88rem;
}
.av-footer__links a:hover { color: #fff; }
.av-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.05rem;
  font-size: 0.8rem;
}

/* Page hero */
.av-page-hero {
  padding: calc(var(--header-h) + 2rem) 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.av-page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.av-page-hero p {
  color: var(--muted);
  max-width: 32rem;
  font-size: 1rem;
}

/* Fleet */
.av-filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.av-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.9rem;
  min-height: 46px;
  box-shadow: none;
}
.av-search i { color: var(--muted); }
.av-search input {
  border: none;
  padding: 0.75rem 0;
  background: transparent;
}
.av-search input:focus { box-shadow: none; }
.av-fleet-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.av-more { display: flex; justify-content: center; margin-top: 1.75rem; }
.av-empty { text-align: center; padding: 2.5rem 1rem; }
.av-empty h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.av-fleet-zone { padding: 2rem 0 3.25rem; }

/* Booking */
.av-booking {
  display: grid;
  gap: 1.15rem;
  padding: 1.5rem 0 3rem;
}
@media (min-width: 900px) {
  .av-booking {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
  }
}
.av-form-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem 1.4rem;
  box-shadow: none;
}
@media (min-width: 640px) { .av-form-panel { padding: 1.5rem; } }
.av-form-panel h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.av-field { margin-bottom: 0.9rem; }
.av-field-row { display: grid; gap: 0.75rem; }
@media (min-width: 560px) {
  .av-field-row { grid-template-columns: 1fr 1fr; }
}
.av-form-note {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.av-success { display: none; text-align: center; padding: 1.75rem 1rem; }
.av-success.is-on { display: block; }
.av-success i { font-size: 2.4rem; color: var(--black); display: block; margin-bottom: 0.55rem; }
.av-success h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.av-aside {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}
.av-aside__img {
  aspect-ratio: 16 / 10;
  background: var(--studio);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.av-aside__img img { width: 100%; height: 100%; object-fit: cover; }
.av-aside__body { padding: 1.05rem 1.1rem; }
.av-aside__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.av-aside__name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.2rem 0 0.9rem;
}
.av-aside__rows { display: flex; flex-direction: column; gap: 0.45rem; }
.av-aside__rows div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}
.av-aside__rows span:first-child { color: var(--muted); }
.av-aside__foot {
  padding: 0 1.1rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.av-aside__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  background: var(--wash);
}
.av-aside__actions a {
  padding: 0.9rem 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-right: 1px solid var(--line);
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.av-aside__actions a:last-child { border-right: none; }
.av-aside__actions a:active { background: var(--yellow); }

/* Modal */
.av-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.av-modal.is-open { opacity: 1; visibility: visible; }
@media (min-width: 720px) {
  .av-modal { align-items: center; padding: 1.25rem; }
}
.av-modal__box {
  background: var(--bg);
  width: 100%;
  max-width: 840px;
  max-height: 92dvh;
  overflow-y: auto;
  border-radius: 10px 10px 0 0;
  display: grid;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s var(--ease);
  box-shadow: none;
  border: 1px solid var(--line);
}
.av-modal.is-open .av-modal__box { transform: none; }
@media (min-width: 720px) {
  .av-modal__box {
    grid-template-columns: 1.05fr 1fr;
    border-radius: var(--radius);
    max-height: 85vh;
  }
}
.av-modal__close {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  z-index: 5;
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.av-modal__visual {
  position: relative;
  background: var(--studio);
  min-height: 210px;
}
.av-modal__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 210px;
}
@media (min-width: 720px) {
  .av-modal__visual { border-right: 1px solid var(--line); }
  .av-modal__visual img { min-height: 100%; position: absolute; inset: 0; }
}
.av-modal__cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
}
.av-modal__content { padding: 1.25rem 1.15rem 1.4rem; }
.av-modal__brand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.av-modal__name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.2rem 0 0.6rem;
}
.av-modal__desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.av-modal__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.av-modal__specs div {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.av-modal__specs small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.av-modal__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  font-weight: 600;
}
.av-modal__price span:first-child { color: var(--muted); font-weight: 500; }
.av-modal__actions { display: grid; gap: 0.55rem; }
@media (min-width: 480px) {
  .av-modal__actions { grid-template-columns: 1fr 1fr; }
}

/* Dock */
.av-dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 180;
  height: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  box-shadow: none;
}
@media (min-width: 900px) { .av-dock { display: none; } }
.av-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  min-height: var(--dock-h);
}
.av-dock a i { font-size: 1.25rem; }
.av-dock a.is-active { color: var(--black); }
.av-dock__book {
  color: var(--black) !important;
  background: var(--yellow);
  margin: 0.5rem 0.5rem 0.5rem 0;
  border-radius: var(--radius);
  min-height: calc(var(--dock-h) - 1rem) !important;
  box-shadow: none;
}

#scroll-up {
  position: fixed;
  right: 0.9rem;
  bottom: calc(var(--dock-h) + 0.9rem + env(safe-area-inset-bottom, 0px));
  z-index: 170;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--yellow);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s;
  border: none;
  box-shadow: none;
}
@media (min-width: 900px) { #scroll-up { bottom: 1.25rem; } }
#scroll-up.is-shown { opacity: 1; visibility: visible; }
