:root {
  --bg: #050506;
  --bg-soft: #0a0b0d;
  --panel: #f4f1ea;
  --panel-clean: #fffaf1;
  --ink: #161616;
  --muted: #6c6a66;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(11, 11, 12, 0.12);
  --red: #c9232d;
  --red-dark: #9f1720;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --font-previous: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-main: var(--font-previous);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: #000000;
  color: var(--white);
  font-family: var(--font-main);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='104' viewBox='0 0 180 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='shine' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='rgba(255,255,255,0.018)'/%3E%3Cstop offset='0.48' stop-color='rgba(255,255,255,0.072)'/%3E%3Cstop offset='1' stop-color='rgba(255,255,255,0.026)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M30 0 60 17.32v34.64L30 69.28 0 51.96V17.32L30 0Zm60 0 30 17.32v34.64L90 69.28 60 51.96V17.32L90 0Zm60 0 30 17.32v34.64l-30 17.32-30-17.32V17.32L150 0ZM60 51.96l30 17.32v34.64L60 121.24l-30-17.32V69.28l30-17.32Zm60 0 30 17.32v34.64l-30 17.32-30-17.32V69.28l30-17.32Z' fill='none' stroke='url(%23shine)' stroke-width='1.15' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 180px 104px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.74), rgba(5, 5, 6, 0.54));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(140%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

body:not(.legal-page) main {
  padding-top: 76px;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.58), rgba(5, 5, 6, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(26px) saturate(145%);
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.header-logo img {
  width: 930px;
  height: 308px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.76rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-phone:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.button-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-ghost-dark {
  background: transparent;
  border-color: rgba(12, 12, 13, 0.22);
  color: var(--ink);
}

.button-ghost-dark:hover {
  color: var(--white);
}

.intro-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4.5vw, 54px);
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 58px) clamp(18px, 3vw, 30px);
}

.intro-section::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 34px;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004));
}

.intro-section {
  background: #000000;
}

.intro-section::after {
  position: absolute;
  right: clamp(-80px, -2vw, -24px);
  bottom: clamp(64px, 8vw, 122px);
  z-index: 0;
  width: min(1180px, 78vw);
  aspect-ratio: 2 / 1;
  content: "";
  background-image: url("assets/websitehintergrund-neu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.88);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, black 42%, rgba(0, 0, 0, 0.86) 58%, transparent 76%);
  opacity: 0.58;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  justify-items: stretch;
  width: 100%;
  max-width: none;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-eyebrow {
  font-size: 1rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  font-family: var(--font-main);
}

h1 {
  position: relative;
  justify-self: center;
  max-width: min(760px, calc(100vw - 96px));
  margin-bottom: 20px;
  padding: 12px 22px 16px;
  font-size: clamp(1.8rem, 3.1vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  transform: translateY(-18px);
}

h1::before {
  display: none;
  content: "";
}

.hero-title {
  display: grid;
  gap: 10px;
}

.hero-title-main {
  display: block;
  font-size: clamp(1.84rem, 2.95vw, 3.02rem);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-title-main span,
.hero-title-values em {
  color: var(--red);
  font-style: normal;
}

.hero-title-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 11px;
  color: #f5efe4;
  font-size: clamp(1.42rem, 2.45vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.5vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-text {
  justify-self: start;
  max-width: 560px;
  margin-top: 6px;
  margin-bottom: 0;
  color: #d7d2c8;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 560;
  line-height: 1.72;
  text-align: left;
}

.hero-intro-text {
  display: grid;
  justify-self: start;
  gap: 12px;
  width: min(475px, 100%);
  margin-top: clamp(28px, 4.8vw, 64px);
}

.hero-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: #f3ede4;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-intro-eyebrow::before {
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.hero-intro-text p:not(.hero-intro-eyebrow) {
  max-width: 470px;
  margin-bottom: 0;
  color: #d0cbc2;
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 620;
  line-height: 1.68;
}

.hero-intro-body {
  display: grid;
  gap: 2px;
}

.hero-intro-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  justify-self: start;
  width: min(330px, 100%);
  margin-top: 4px;
}

.hero-intro-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--red);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-intro-actions a:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  transform: translateY(-1px);
}

.intro-support {
  max-width: 620px;
  margin-bottom: 0;
  color: #aaa49c;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.55;
}

.intro-facts {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 720px;
  margin-bottom: 14px;
}

.intro-facts span {
  color: #f5efe4;
  font-size: 0.92rem;
  font-weight: 800;
}

.intro-facts span + span {
  position: relative;
}

.intro-facts span + span::before {
  color: var(--red);
  content: "/";
  margin-right: 14px;
}

.intro-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-self: start;
  justify-self: end;
  justify-content: flex-end;
  width: min(640px, 100%);
  margin-top: 2px;
  padding-top: 6px;
}

.intro-notes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #f5efe4;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.finder-panel {
  width: min(390px, 100%);
  margin-left: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7f2e9, #e9e1d3);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.finder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 10, 12, 0.12);
  color: #4a4742;
  font-size: 0.86rem;
  font-weight: 850;
}

.finder-footer a {
  color: var(--red);
}

.panel-heading {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.panel-heading span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading strong {
  font-size: 1.05rem;
}

.quick-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 12, 0.14);
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 35, 45, 0.14);
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 6, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(135%);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.trust-strip div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.trust-strip strong {
  color: #f5efe4;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.trust-strip span:not(.trust-icon) {
  color: #c8c0b5;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.inventory-section,
.service-section,
.inquiry-section,
.contact-section {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 58px);
}

.inventory-section {
  padding-top: 8px;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 20px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: #c7c1b7;
  line-height: 1.6;
}

.section-heading-compact {
  margin-bottom: 22px;
}

.featured-heading h2 {
  margin-bottom: 0;
  color: #f5efe4;
  font-size: clamp(1.32rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.vehicle-groups {
  display: grid;
  gap: 26px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.vehicle-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 570px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    filter 520ms ease;
}

.vehicle-group.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.vehicle-group.is-fading {
  opacity: 0.38;
  transform: translateY(-18px) scale(0.982);
  filter: blur(3px);
}

.inventory-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 22px auto 0;
}

.inventory-cta span {
  color: #c7c1b7;
  font-size: 0.88rem;
  font-weight: 750;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-clean);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #221f1f, #121213);
}

.vehicle-status {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #121216;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.vehicle-status.is-reserved {
  background: #f4efe5;
  color: #171719;
}

.vehicle-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.vehicle-kicker {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin: 8px 0 12px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.price-line strong {
  font-size: 1.35rem;
}

.price-line span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 13px;
}

.spec-details {
  margin-bottom: 13px;
}

.spec-details summary {
  display: none;
  cursor: pointer;
  color: #2d2925;
  font-size: 0.82rem;
  font-weight: 900;
  list-style: none;
}

.spec-details summary::-webkit-details-marker {
  display: none;
}

.spec-grid span {
  padding: 8px;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  color: #393734;
  font-size: 0.8rem;
  font-weight: 800;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.empty-state span {
  color: #d7d1c8;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 8px;
  border-radius: 999px;
  background: #ede4d6;
  color: #3d3933;
  font-size: 0.74rem;
  font-weight: 850;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.vehicle-actions .button {
  min-height: 40px;
  padding-inline: 10px;
  font-size: 0.82rem;
}

.vehicle-actions .button.secondary {
  background: #171719;
  border-color: #171719;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto;
  padding: clamp(16px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(9, 9, 11, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 56px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px) saturate(130%);
}

.contact-section .owner-section {
  width: 100%;
  margin: 0;
  padding: clamp(16px, 2.2vw, 24px);
}

.contact-section .owner-image-wrap {
  aspect-ratio: 4 / 3;
}

.owner-image-wrap {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  background: #292a2d;
}

.owner-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.owner-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #d8d2ca;
  font-size: 0.94rem;
  line-height: 1.55;
}

.owner-name {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-grid article {
  scroll-margin-top: 210px;
  padding: 22px;
  border-radius: var(--radius);
  background: #f4efe5;
  color: var(--ink);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.service-grid p {
  margin-bottom: 0;
  color: #5d5952;
  line-height: 1.55;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(620px, 1.15fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.inquiry-copy p:not(.eyebrow) {
  color: #d2ccc2;
  line-height: 1.6;
}

.inquiry-copy h2 {
  max-width: 620px;
  font-size: clamp(1.72rem, 3.2vw, 2.75rem);
}

.inquiry-copy p:not(.eyebrow) {
  max-width: 500px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: clamp(16px, 2.5vw, 34px);
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius);
  background: var(--panel-clean);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  cursor: pointer;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.trade-fields {
  display: none;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(201, 35, 45, 0.24);
  border-radius: var(--radius);
  background: #f3eadc;
}

.trade-fields.is-open {
  display: grid;
}

.form-button {
  width: fit-content;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.form-note[data-state="pending"] {
  color: #8b672d;
}

.form-note[data-state="success"] {
  color: #277245;
}

.form-note[data-state="error"] {
  color: var(--red);
}

.google-rating-card {
  display: flex;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(9, 9, 11, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px) saturate(130%);
}

.google-rating-card a {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 100%;
  min-height: 270px;
  padding: 28px 22px;
  text-align: center;
}

.google-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
}

.google-rating-label {
  color: #f5efe4;
  font-size: 0.92rem;
  font-weight: 900;
}

.google-rating-card strong {
  margin-top: 13px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.google-stars {
  margin-top: 11px;
  color: #f2b84b;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.google-rating-text {
  max-width: 220px;
  margin-top: 14px;
  color: #cfc8bd;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.45;
}

.google-rating-card a:hover .google-rating-text {
  color: #ffffff;
}

.footer-contact-panel {
  padding: 0 clamp(18px, 4vw, 58px) 22px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.05fr 0.9fr;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 10, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 56px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(135%);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.footer-contact-item:last-child {
  border-right: 0;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
}

.footer-contact-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-contact-item h2 {
  margin: 0 0 8px;
  color: #f5efe4;
  font-size: 0.98rem;
  line-height: 1.2;
}

.footer-contact-item span,
.footer-contact-item a,
.footer-hours {
  color: #cfc8bd;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.55;
}

.footer-contact-item a {
  display: block;
  width: fit-content;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contact-action {
  margin-top: 10px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #f5efe4;
}

.footer-contact-link {
  margin-top: 10px;
  color: #ffb1b5;
  font-weight: 900;
}

.footer-hours {
  display: grid;
  gap: 4px;
  margin: 0;
}

.footer-hours div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
}

.footer-hours dt {
  color: #f5efe4;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #f5efe4;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 35, 45, 0.72);
  background: rgba(201, 35, 45, 0.16);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.7), rgba(5, 5, 6, 0.56));
  backdrop-filter: blur(18px) saturate(130%);
  color: #d7d1c8;
}

.site-footer strong,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer strong {
  color: #f5efe4;
  font-size: 0.86rem;
}

.site-footer a {
  color: #d7d1c8;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer a:hover {
  color: #ffffff;
}

.legal-main {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0;
}

.legal-panel {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-clean);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  max-width: none;
  margin-bottom: 24px;
  padding: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-align: left;
  white-space: normal;
  transform: none;
}

.legal-panel h1::before {
  display: none;
}

.legal-panel h2 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.legal-panel p,
.legal-panel li {
  color: #4c4944;
  line-height: 1.65;
}

.legal-panel a {
  color: var(--red);
  font-weight: 850;
}

.legal-panel ul {
  margin: 0;
  padding-left: 20px;
}

.legal-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #f3eadc;
  color: #4c4944;
  font-size: 0.9rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f5efe4;
  font-size: 0.86rem;
  font-weight: 900;
}

body.legal-page {
  min-height: 100vh;
}

body.legal-page .site-header {
  position: relative;
}

body.legal-page .header-logo img {
  width: 420px;
  height: 138px;
}

body.legal-page .mobile-contact-bar,
body.legal-page .whatsapp-rail {
  display: none;
}

body.legal-page .site-footer {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  background: transparent;
}

.vehicle-dialog {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--panel-clean);
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.62);
}

.vehicle-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 0;
}

.dialog-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #221f1f, #121213);
}

.dialog-content {
  padding: 28px;
}

.dialog-content h3 {
  margin: 8px 0 10px;
  font-size: 1.8rem;
}

.dialog-content p {
  color: #56524c;
  line-height: 1.55;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-contact-bar {
  display: none;
}

.whatsapp-rail {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  min-height: 48px;
  overflow: hidden;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #21c063;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
  transition:
    width 220ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-rail svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-rail span {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    max-width 220ms ease,
    opacity 160ms ease,
    padding-left 220ms ease;
}

.whatsapp-rail:hover,
.whatsapp-rail:focus-visible {
  width: 320px;
  transform: translateY(-2px);
  background: #1daf59;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.whatsapp-rail:hover span,
.whatsapp-rail:focus-visible span {
  max-width: 258px;
  opacity: 1;
  padding-left: 10px;
}

@media (max-width: 940px) {
  .intro-section {
    min-height: auto;
  }

  .intro-section::after {
    right: -240px;
    bottom: 150px;
    width: 820px;
    opacity: 0.24;
  }

  .intro-grid,
  .owner-section,
  .inquiry-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    justify-items: center;
    text-align: center;
  }

  h1,
  .intro-text {
    justify-self: center;
    text-align: center;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-title-values {
    justify-content: center;
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }

  .intro-facts,
  .intro-actions {
    justify-content: center;
  }

  .intro-notes {
    justify-self: center;
    justify-content: center;
    width: min(760px, 100%);
    margin-top: 0;
  }

  .vehicle-group,
  .service-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-contact-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-contact-item:last-child {
    border-bottom: 0;
  }

  .vehicle-card {
    max-width: none;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip article:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
    grid-column: 1 / -1;
  }

}

@media (max-width: 680px) {
  html {
    scrollbar-width: none;
  }

  body::-webkit-scrollbar {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  body:not(.legal-page) main {
    padding-top: 68px;
  }

  .header-logo img {
    width: 286px;
    height: 118px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
  }

  .intro-section {
    justify-content: flex-start;
    min-height: calc(100vh - 68px);
    gap: 228px;
    padding: 22px 16px 86px;
  }

  .intro-section::after {
    display: block;
    top: 273px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(386px, 106vw);
    background-position: center;
    opacity: 0.68;
    transform: translateX(-50%);
  }

  h1 {
    max-width: calc(100vw - 34px);
    margin-bottom: 8px;
    padding: 0;
    font-size: clamp(1.56rem, 7.4vw, 2rem);
    transform: none;
  }

  .hero-title {
    gap: 6px;
  }

  .hero-title-main {
    font-size: clamp(1.24rem, 5.7vw, 1.54rem);
    white-space: normal;
  }

  .hero-title-main span {
    white-space: nowrap;
  }

  .hero-title-values {
    gap: 5px 8px;
    font-size: clamp(1.02rem, 5vw, 1.34rem);
  }

  .intro-text {
    max-width: 300px;
    margin-top: 13px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .hero-intro-text {
    justify-self: center;
    gap: 8px;
    width: min(296px, 100%);
    margin-top: 44px;
    text-align: center;
  }

  .hero-intro-eyebrow {
    justify-content: center;
    gap: 9px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-intro-eyebrow::before,
  .hero-intro-eyebrow::after {
    display: block;
    flex: 0 0 28px;
    width: 28px;
  }

  .hero-intro-eyebrow::after {
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    content: "";
  }

  .hero-intro-text p:not(.hero-intro-eyebrow) {
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .hero-intro-actions {
    gap: 7px;
    justify-self: center;
    width: min(244px, 100%);
    margin-top: 4px;
  }

  .hero-intro-actions a {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.66rem;
  }

  .intro-notes {
    justify-content: center;
    gap: 7px 12px;
  }

  .intro-notes span + span::before {
    display: none;
  }

  .intro-facts {
    gap: 7px;
  }

  .intro-facts span {
    width: 100%;
  }

  .intro-facts span + span::before {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(354px, 100%);
    border-radius: 8px;
  }

  .trust-strip article:nth-child(5) {
    display: none;
  }

  .trust-strip article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    min-height: 52px;
    padding: 6px 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    text-align: center;
  }

  .trust-strip article:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip article:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .trust-icon {
    width: 21px;
    height: 21px;
  }

  .trust-icon svg {
    width: 12px;
    height: 12px;
  }

  .trust-strip div {
    align-content: start;
    min-height: 16px;
  }

  .trust-strip strong {
    font-size: 0.51rem;
    line-height: 1.12;
  }

  .trust-strip span:not(.trust-icon) {
    display: none;
  }

  .quick-search,
  .form-row,
  .dialog-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .finder-panel {
    padding: 16px;
  }

  .panel-heading {
    display: grid;
  }

  .inventory-section,
  .service-section,
  .inquiry-section,
  .contact-section {
    padding: 44px 18px;
  }

  .section-heading,
  .vehicle-groups,
  .inventory-cta,
  .service-grid,
  .inquiry-section,
  .contact-section,
  .footer-contact-grid {
    width: min(332px, 100%);
  }

  .inventory-section {
    padding-top: 22px;
  }

  .featured-heading h2 {
    font-size: 1.34rem;
  }

  .section-heading h2 {
    font-size: 1.56rem;
  }

  .vehicle-group {
    gap: 12px;
  }

  .vehicle-card {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: min(276px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .vehicle-media {
    aspect-ratio: 2.08 / 1;
    min-height: 0;
  }

  .vehicle-status {
    left: 7px;
    top: 7px;
    padding: 5px 6px;
    font-size: 0.58rem;
  }

  .vehicle-content {
    padding: 7px 8px 8px;
  }

  .vehicle-kicker {
    font-size: 0.58rem;
  }

  .vehicle-card h3 {
    margin: 3px 0 5px;
    font-size: 0.84rem;
    line-height: 1.13;
  }

  .price-line {
    gap: 8px;
    margin-bottom: 5px;
  }

  .price-line strong {
    font-size: 0.9rem;
  }

  .price-line span {
    display: none;
  }

  .spec-details {
    margin-bottom: 6px;
  }

  .spec-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 29px;
    padding: 0 9px;
    border: 1px solid rgba(12, 12, 13, 0.16);
    border-radius: 6px;
    background: #f2eadc;
    font-size: 0.72rem;
  }

  .spec-details summary::after {
    content: "+";
    color: var(--red);
    font-size: 1rem;
    font-weight: 950;
  }

  .spec-details[open] summary::after {
    content: "-";
  }

  .spec-details .spec-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 7px 0 0;
  }

  .spec-grid span {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .tag-list {
    display: none;
  }

  .owner-section {
    width: min(332px, 100%);
    padding: 14px;
  }

  .owner-copy p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .service-grid article {
    padding: 18px;
  }

  .service-grid span {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .service-grid strong {
    font-size: 1rem;
  }

  .service-grid p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .contact-form {
    gap: 11px;
    padding: 16px;
  }

  label {
    font-size: 0.78rem;
  }

  input,
  select,
  textarea {
    font-size: 0.86rem;
  }

  .vehicle-actions {
    grid-template-columns: 1fr;
  }

  .vehicle-actions .button {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    padding-bottom: 88px;
    text-align: center;
  }

  .site-footer strong,
  .site-footer nav {
    justify-content: center;
    width: 100%;
  }

  .footer-contact-panel {
    padding: 0 18px 18px;
  }

  .google-rating-card a {
    min-height: 230px;
    padding: 24px 18px;
  }

  .google-rating-card strong {
    font-size: 3.1rem;
  }

  .footer-contact-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .footer-hours div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .dialog-media-placeholder {
    min-height: 270px;
    max-height: 340px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 20px;
    bottom: 12px;
    left: 20px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(9, 9, 10, 0.94);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-right: 1px solid var(--line);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
    background: var(--red);
  }

  .mobile-contact-bar a:first-child {
    background: var(--red);
  }

  .mobile-contact-bar a:nth-child(2) {
    background: #1fad58;
    color: #ffffff;
    border-right-color: rgba(255, 255, 255, 0.18);
  }

  .mobile-contact-bar a:nth-child(2) {
    animation: whatsappTextPulse 2.8s ease-in-out infinite;
  }

  @keyframes whatsappTextPulse {
    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.045);
    }
  }

  .whatsapp-rail {
    display: none;
  }
}
