:root {
  --red: #e50914;
  --red-dark: #b70710;
  --black: #070707;
  --dark: #111318;
  --white: #fff;
  --muted: #6d7179;
  --soft: #f5f5f6;
  --line: #e7e7ea;
  --card: #fff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --transition: 0.25s ease;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}
body.nav-open {
  overflow: hidden;
}
body.gallery-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}
.brand-name {
  font-size: 1.12rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  font-size: 0.95rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(229, 9, 20, 0.22);
}
.menu-toggle {
  display: none;
  border: 0;
  background: #fff;
  color: #111;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: var(--transition);
}
body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #060607 0%, #111318 52%, #2a0609 100%);
  overflow: hidden;
}
.hero-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 18px
    );
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 0 62%,
    rgba(229, 9, 20, 0.14) 62% 72%,
    transparent 72%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 520px);
  gap: 38px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 12px;
}
.hero-content h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.07em;
}
.hero-content h1 {
  max-width: 780px;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 34px;
}
.hero-actions,
.form-actions,
.quick-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero .hero-actions {
  justify-content: center;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.98rem;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(229, 9, 20, 0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: #111;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-light.alt {
  border: 1px solid var(--line);
}
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  padding: 16px 22px;
}
.hero-showcase {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-showcase:before {
  content: "";
  position: absolute;
  inset: 18% 0 12% 12%;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(229, 9, 20, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  transform: skewX(-7deg);
}
.hero-showcase:after {
  content: "";
  position: absolute;
  left: 11%;
  right: 7%;
  bottom: 15%;
  z-index: 1;
  height: 52px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.48),
    transparent 68%
  );
  filter: blur(8px);
}
.hero-car-main {
  position: relative;
  z-index: 2;
  width: min(112%, 590px);
  max-width: none;
  height: auto;
  transform: translateX(-3%);
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42));
  opacity: 1;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease;
}
.hero-showcase.is-switching .hero-car-main {
  opacity: 0;
}
.showcase-kicker {
  position: absolute;
  top: 54px;
  left: 8px;
  z-index: 3;
  display: inline-flex;
  color: #fff;
  background: rgba(229, 9, 20, 0.85);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}
.showcase-panel {
  position: absolute;
  right: 0;
  bottom: 44px;
  z-index: 3;
  width: min(290px, 78%);
  padding: 18px;
  color: #111;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 1;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.hero-showcase.is-switching .showcase-panel {
  opacity: 0.82;
  transform: translateY(4px);
}
.showcase-panel strong,
.showcase-panel span {
  display: block;
}
.showcase-panel strong {
  line-height: 1.1;
}
.showcase-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}
@media (min-width: 1025px) {
  .hero-section {
    min-height: 700px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 560px);
    gap: 34px;
  }
  .hero-showcase {
    min-height: 500px;
    justify-self: end;
    width: min(100%, 560px);
  }
  .hero-showcase:before {
    inset: 95px 18px 70px 64px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.13),
        rgba(255, 255, 255, 0.04)
      ),
      linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(0, 0, 0, 0.08));
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    transform: skewX(-5deg);
  }
  .hero-showcase:after {
    left: 15%;
    right: 10%;
    bottom: 84px;
  }
  .hero-car-main {
    width: min(112%, 620px);
    transform: translate(-4%, 2%);
  }
  .showcase-kicker {
    top: 76px;
    left: 34px;
    box-shadow: 0 14px 28px rgba(229, 9, 20, 0.28);
  }
  .showcase-panel {
    right: 22px;
    bottom: 58px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  }
}
.featured-section,
.areas-section,
.catalogue-section,
.contact-page-section,
.legal-section,
.conditions-section,
.local-seo-section {
  padding: 86px 0;
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reservation-benefits {
  margin-top: 34px;
}
.assurance-card,
.condition-card,
.vehicle-card,
.contact-card,
.premium-form,
.legal-wrap article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.assurance-card {
  padding: 24px;
}
.assurance-card span,
.condition-card span {
  font-size: 2rem;
}
.assurance-card h3,
.condition-card h2 {
  margin: 12px 0 8px;
  line-height: 1.15;
}
.assurance-card p,
.condition-card p,
.section-heading p,
.contact-item p,
.legal-wrap p,
.site-footer p {
  color: var(--muted);
  margin: 0;
}
.reservation-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7f7f8 0%, #fff 100%);
}
.reservation-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.05em;
}
.section-heading.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}
.mini-info {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.mini-info span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: #333;
  font-weight: 750;
}
.premium-form {
  padding: 30px;
}
.form-honey {
  display: none;
}
.form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field label {
  display: block;
  font-weight: 850;
  margin-bottom: 8px;
  color: #20242b;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dcdde2;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  outline: none;
  transition: var(--transition);
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}
.field .error-message {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 6px;
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--red);
}
.price-summary {
  border: 1px solid rgba(229, 9, 20, 0.18);
  background: #fff5f5;
  color: #331;
  display: grid;
  gap: 4px;
  text-align: center;
  border-radius: 18px;
  padding: 16px;
  font-weight: 900;
  margin: 6px 0 18px;
}
.price-summary span {
  color: var(--muted);
  font-size: 0.92rem;
}
.price-summary.is-ready {
  background: #fff;
  border-color: rgba(229, 9, 20, 0.32);
  box-shadow: var(--shadow-soft);
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin: 13px 0 0;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-grid.compact {
  margin-bottom: 32px;
}
.vehicle-card {
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.vehicle-media {
  height: 220px;
  background: linear-gradient(135deg, #111, #383838);
  position: relative;
  overflow: hidden;
}
.vehicle-media.image-missing {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-media.image-missing:before {
  content: "Image indisponible";
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}
.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.vehicle-gallery-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
}
.vehicle-gallery-trigger img {
  transition: transform 0.35s ease;
}
.vehicle-gallery-trigger:hover img,
.vehicle-gallery-trigger:focus-visible img {
  transform: scale(1.04);
}
.vehicle-gallery-trigger:focus-visible {
  outline: 4px solid rgba(229, 9, 20, 0.32);
  outline-offset: -4px;
}
.gallery-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.78);
  color: #fff;
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.vehicle-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vehicle-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.vehicle-card h3 {
  font-size: 1.3rem;
  line-height: 1.1;
  margin: 0;
}
.price-pill {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 950;
  white-space: nowrap;
  font-size: 0.87rem;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 18px 0;
}
.specs span {
  background: var(--soft);
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 0.88rem;
  color: #30333a;
  font-weight: 750;
}
.vehicle-body .btn {
  margin-top: auto;
}
.areas-section {
  background: #f7f7f8;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.area-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  transition: var(--transition);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.area-card strong {
  font-size: 1.25rem;
}
.area-card span {
  color: var(--muted);
}
.local-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.local-copy,
.local-checklist {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.local-copy h2,
.local-checklist h2 {
  margin: 0 0 14px;
  line-height: 1.12;
}
.local-copy p {
  color: var(--muted);
  margin: 0 0 16px;
}
.local-checklist ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.local-checklist li + li {
  margin-top: 10px;
}
.page-hero {
  padding: 105px 0;
  text-align: center;
  background: #111;
  color: #fff;
}
.page-hero.dark {
  background: linear-gradient(135deg, #070707, #151515 58%, #3b0508);
}
.page-hero p:not(.eyebrow) {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
}
.filters-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 18px;
}
.empty-state {
  text-align: center;
  background: #fff5f5;
  border: 1px solid rgba(229, 9, 20, 0.2);
  border-radius: 18px;
  padding: 22px;
  font-weight: 900;
  color: var(--red);
}
.contact-layout {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 34px;
}
.map-section {
  margin-top: 52px;
}
.map-embed {
  aspect-ratio: 16 / 9;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--soft);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-card {
  padding: 30px;
}
.contact-card h2,
.premium-form h2 {
  margin: 0 0 22px;
  font-size: 1.8rem;
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item span {
  font-size: 1.4rem;
}
.contact-item strong {
  display: block;
  margin-bottom: 2px;
}
.quick-actions {
  margin-top: 24px;
}
.quick-actions .btn {
  flex: 1;
}
.split .btn {
  flex: 1;
}
.legal-wrap {
  max-width: 900px;
}
.legal-wrap article {
  padding: 26px;
  margin-bottom: 18px;
  border-left: 5px solid var(--red);
}
.legal-wrap h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.legal-note,
.cta-band {
  background: #111;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.condition-card {
  padding: 24px;
}
.cta-band {
  margin-top: 28px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 20px;
  max-width: 760px;
}
.cta-band h2 {
  margin: 0 0 12px;
}
.site-footer {
  background: #08080a;
  color: #fff;
  padding: 58px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1fr;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  padding: 3px;
}
.site-footer h3 {
  color: #fff;
  margin: 0 0 14px;
}
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
  transition: var(--transition);
}
.site-footer a:hover {
  color: #fff;
}
.socials {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 10px;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  padding: 0;
  margin: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}
.social-link.facebook {
  background: #1877f2;
}
.social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}
.social-link.tiktok {
  background: #000;
}
.social-link.whatsapp {
  background: #25d366;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 42px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.58);
}
.center {
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 18px 40px rgba(31, 168, 85, 0.34);
  transition: var(--transition);
}
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.floating-whatsapp span {
  display: none;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #168c45;
}
.vehicle-lightbox[hidden] {
  display: none;
}
.vehicle-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.vehicle-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
}
.vehicle-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  min-height: 420px;
  display: grid;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 14px;
  touch-action: pan-y;
}
.vehicle-lightbox-figure {
  margin: 0;
  min-width: 0;
}
.vehicle-lightbox-image {
  width: 100%;
  max-height: min(76vh, 720px);
  object-fit: contain;
  border-radius: 18px;
  background: #090909;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}
.vehicle-lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  margin-top: 12px;
  font-weight: 850;
}
.vehicle-lightbox-caption span {
  color: rgba(255, 255, 255, 0.7);
}
.vehicle-lightbox-close,
.vehicle-lightbox-nav {
  border: 0;
  color: #111;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.vehicle-lightbox-close:hover,
.vehicle-lightbox-nav:hover {
  transform: translateY(-2px);
}
.vehicle-lightbox-close:focus-visible,
.vehicle-lightbox-nav:focus-visible {
  outline: 4px solid rgba(229, 9, 20, 0.38);
  outline-offset: 3px;
}
.vehicle-lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.45rem;
  z-index: 2;
}
.vehicle-lightbox-nav {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  font-size: 2.1rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .hero-grid,
  .reservation-layout,
  .contact-layout,
  .local-seo-layout {
    grid-template-columns: 1fr;
  }
  .hero-section {
    min-height: auto;
    padding: 110px 0;
  }
  .hero-showcase {
    max-width: 620px;
  }
  .assurance-grid,
  .conditions-grid,
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 26px, var(--max));
  }
  .header-inner {
    height: 70px;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    position: fixed;
    inset: 70px 13px auto 13px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  }
  body.nav-open .main-nav {
    display: flex;
  }
  .main-nav a {
    padding: 14px 16px;
  }
  .hero-content h1,
  .page-hero h1 {
    letter-spacing: -0.05em;
  }
  .hero-section {
    padding: 52px 0 72px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-showcase {
    min-height: 310px;
    max-width: 100%;
  }
  .hero-showcase:before {
    inset: 16% 0 14% 8%;
  }
  .hero-car-main {
    width: min(118%, 470px);
  }
  .showcase-kicker {
    top: 28px;
    left: 0;
  }
  .showcase-panel {
    right: 0;
    bottom: 78px;
    width: min(270px, 86%);
    padding: 15px;
  }
  .assurance-grid,
  .conditions-grid,
  .areas-grid,
  .vehicle-grid,
  .filters-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .reservation-section,
  .featured-section,
  .areas-section,
  .catalogue-section,
  .contact-page-section,
  .legal-section,
  .conditions-section,
  .local-seo-section {
    padding: 58px 0;
  }
  .premium-form,
  .contact-card {
    padding: 20px;
  }
  .map-section {
    margin-top: 34px;
  }
  .map-embed {
    aspect-ratio: 1 / 1;
    min-height: 300px;
  }
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .vehicle-media {
    height: 200px;
  }
  .page-hero {
    padding: 72px 0;
  }
  .quick-actions,
  .split {
    flex-direction: column;
  }
  .footer-grid {
    gap: 22px;
  }
  .socials {
    grid-template-columns: repeat(4, 44px);
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp img {
    width: 26px;
    height: 26px;
  }
  .vehicle-lightbox {
    padding: 13px;
  }
  .vehicle-lightbox-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vehicle-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    z-index: 2;
  }
  .vehicle-lightbox-nav:hover {
    transform: translateY(-50%);
  }
  .vehicle-lightbox-nav.prev {
    left: 8px;
  }
  .vehicle-lightbox-nav.next {
    right: 8px;
  }
  .vehicle-lightbox-close {
    top: 8px;
    right: 8px;
  }
  .vehicle-lightbox-caption {
    flex-direction: column;
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
