:root {
  --red: #e82625;
  --black: #050506;
  --ink: #111214;
  --soft-black: #0c0d0f;
  --paper: #f5f2ed;
  --paper-2: #ebe6dd;
  --white: #ffffff;
  --muted: #aeb3bb;
  --nav-muted: #82868c;
  --muted-dark: #5f646c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 18, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

main,
section,
figure,
article,
div {
  min-width: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(5, 5, 6, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  max-width: 100vw;
}

.brand img {
  width: 148px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nav-muted);
  font-size: 14px;
  font-weight: 800;
}

.main-nav span {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
}

.nav-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--nav-muted);
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
  padding: 10px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-switch:hover {
  color: var(--white);
}

.nav-switch.is-active {
  background: var(--red);
  color: var(--white);
}

.header-cta {
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid rgba(232, 38, 37, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 0 24px rgba(232, 38, 37, 0.18);
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(232, 38, 37, 0.72);
  border-radius: 14px;
  background: rgba(232, 38, 37, 0.12);
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  min-height: 100svh;
  padding: 150px clamp(20px, 6vw, 96px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(232, 38, 37, 0.12), transparent 28%),
    linear-gradient(180deg, #07080a, var(--black));
}

.buy-hero {
  min-height: auto;
  padding-bottom: clamp(34px, 4vw, 56px);
}

.buy-hero .hero-visual {
  min-height: clamp(460px, 36vw, 600px);
}

.view[hidden] {
  display: none;
}

.view,
.hero,
.inventory,
.fee-calculator,
.listing-detail-shell,
.vehicle-detail-page,
.statement,
.section,
.process,
.quiet-proof,
.contact,
.site-footer {
  max-width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(1020px, 62vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 980px;
  margin-top: 36px;
  font-size: clamp(54px, 6.6vw, 112px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-text {
  max-width: 600px;
  margin-top: 34px;
  color: #d7d9dd;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero .button.primary {
  box-shadow: 0 0 34px rgba(232, 38, 37, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: clamp(640px, 50vw, 820px);
  overflow: visible;
  background: transparent;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 56% 48%, rgba(232, 38, 37, 0.22), transparent 58%);
  filter: blur(28px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(190%, 1480px);
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.06);
  top: clamp(-34px, -2vw, -18px);
  transform: scale(1.62);
  transform-origin: center center;
}

.inventory {
  padding: clamp(30px, 4vw, 58px) clamp(20px, 6vw, 96px) clamp(86px, 11vw, 160px);
  background:
    linear-gradient(180deg, var(--black), #0b0c0e 58%, var(--black));
}

.filter-block {
  margin-top: clamp(38px, 5vw, 68px);
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-toggle span {
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform 240ms ease;
}

.filter-toggle.is-open span {
  transform: rotate(180deg);
}

.filter-panel-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: max-height 340ms ease, opacity 220ms ease, margin-top 320ms ease, visibility 0s linear 340ms;
}

.filter-panel-wrap.is-open {
  max-height: var(--filter-height, 720px);
  opacity: 1;
  margin-top: 16px;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.filter-panel label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.filter-panel select,
.filter-panel input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #090a0c;
  color: var(--white);
  padding: 0 18px;
  outline: none;
}

.filter-panel select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 14px 14px;
  padding: 0 54px 0 18px;
}

.filter-panel input::placeholder {
  color: var(--muted);
}

.range-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.filter-reset {
  align-self: end;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(58px, 8vw, 104px);
}

.listing-card {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.listing-card:hover,
.listing-card.is-selected,
.listing-card.is-touch-flash {
  border-color: rgba(232, 38, 37, 0.72);
  box-shadow: 0 0 32px rgba(232, 38, 37, 0.16);
  transform: translateY(-2px);
}

.no-results {
  grid-column: 1 / -1;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.no-results h3 {
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.no-results p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.listing-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #07080a;
}

.listing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(232, 38, 37, 0.78);
  opacity: 0;
  transition: opacity 160ms ease;
}

.listing-card:hover .listing-image::after,
.listing-card.is-selected .listing-image::after,
.listing-card.is-touch-flash .listing-image::after {
  opacity: 1;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.listing-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px 22px;
  min-width: 0;
}

.listing-meta strong,
.listing-meta em,
.listing-price {
  display: block;
}

.listing-meta strong {
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.listing-meta em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.listing-price {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.fee-calculator {
  padding: clamp(76px, 10vw, 142px) clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 14%, rgba(232, 38, 37, 0.13), transparent 30%),
    linear-gradient(180deg, var(--black), #090a0c);
}

.fee-page {
  min-height: 100svh;
  padding-top: 150px;
  overflow: hidden;
}

.fee-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.fee-calculator .section-heading {
  max-width: 900px;
}

.fee-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(360px, 34vw, 560px);
  margin: 0;
  pointer-events: none;
}

.fee-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 0 8% 12%;
  background: radial-gradient(circle at 58% 52%, rgba(232, 38, 37, 0.32), transparent 60%);
  filter: blur(30px);
}

.fee-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(122%, 780px);
  max-width: none;
  height: auto;
  margin-right: clamp(-74px, -4vw, -24px);
  filter: saturate(1.06) contrast(1.04);
  transform: translateY(-14px) rotate(-1deg);
  transform-origin: center center;
}

.fee-page h1 {
  max-width: 1120px;
  margin-top: 28px;
  font-size: clamp(48px, 5.8vw, 96px);
  line-height: 0.98;
}

.fee-lead {
  max-width: 720px;
  margin-top: 26px;
  color: #d7d9dd;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.fee-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  margin-top: clamp(12px, 2vw, 23px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.fee-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
  align-content: start;
  align-items: start;
}

.fee-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.fee-form label.is-disabled {
  opacity: 0.42;
}

.fee-form select,
.fee-form input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #090a0c;
  color: var(--white);
  padding: 0 18px;
  font-weight: 800;
  outline: none;
}

.fee-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 14px 14px;
  padding: 0 54px 0 18px;
}

.fee-form input::placeholder {
  color: var(--muted-dark);
}

.fee-form select:disabled,
.fee-form input:disabled {
  cursor: not-allowed;
  color: var(--muted-dark);
}

.fee-form input[type="number"]::-webkit-outer-spin-button,
.fee-form input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.fee-result {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 168px;
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.fee-result span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.fee-result strong {
  color: var(--white);
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.95;
  font-weight: 900;
}

.fee-result p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.fee-source {
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 750;
}

.fee-source a {
  color: var(--muted);
  border-bottom: 1px solid rgba(174, 179, 187, 0.34);
}

.fee-source a:hover {
  color: var(--white);
  border-color: rgba(232, 38, 37, 0.78);
}

.fee-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  margin-top: clamp(30px, 4vw, 52px);
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.fee-notice span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(174, 179, 187, 0.46);
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.listing-detail-shell {
  padding: 0 clamp(20px, 6vw, 96px) clamp(86px, 11vw, 160px);
  background: var(--black);
}

.vehicle-detail-page {
  min-height: 100svh;
  padding: 150px clamp(20px, 6vw, 96px) clamp(86px, 11vw, 140px);
  background:
    radial-gradient(circle at 78% 16%, rgba(232, 38, 37, 0.13), transparent 30%),
    linear-gradient(180deg, #07080a, var(--black));
}

.vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.76fr);
  grid-template-areas:
    "media info"
    "description info";
  column-gap: clamp(36px, 6vw, 92px);
  row-gap: 56px;
  align-items: start;
  max-width: 1520px;
  margin: 0 auto;
}

.vehicle-media-column {
  display: grid;
  grid-area: media;
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #07080a;
  box-shadow: 0 0 48px rgba(232, 38, 37, 0.12);
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.fullscreen-trigger {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--red);
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fullscreen-trigger::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.fullscreen-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(232, 38, 37, 0.22);
}

.fullscreen-trigger svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.94);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  z-index: 121;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

body.is-lightbox-open {
  overflow: hidden;
}

.vehicle-info {
  grid-area: info;
  align-self: start;
  padding-top: 10px;
}

.vehicle-info h1,
.vehicle-missing h1 {
  max-width: 820px;
  margin-top: 26px;
  font-size: clamp(46px, 5.7vw, 86px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--red);
}

.vehicle-missing {
  max-width: 760px;
  padding-top: 40px;
}

.vehicle-missing p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.vehicle-missing .button {
  margin-top: 34px;
}

.detail-empty {
  max-width: 760px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.detail-empty h2 {
  margin-top: 22px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.detail-empty p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.listing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.detail-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 22px;
  background: #08090a;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  align-self: center;
}

.detail-content h2 {
  margin-top: 22px;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 0.98;
  font-weight: 900;
}

.detail-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 19px;
}

.detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  min-width: 0;
}

.detail-price-row strong {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid div {
  padding: 18px;
  background: var(--black);
}

.spec-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.detail-description {
  margin-top: 32px;
  color: #d8dbe0;
  font-size: 18px;
  line-height: 1.72;
}

.vehicle-description {
  grid-area: description;
  max-width: 820px;
  margin-top: 0;
  color: #8d929a;
}

.statement {
  padding: clamp(70px, 10vw, 140px) clamp(20px, 8vw, 140px);
  background: var(--paper);
  color: var(--ink);
}

.statement p {
  max-width: 1030px;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(86px, 11vw, 160px) clamp(20px, 6vw, 96px);
}

.section-heading,
.process-heading {
  max-width: 760px;
}

.section-heading h2,
.process-heading h2,
.quiet-proof h2,
.contact-copy h2 {
  margin-top: 22px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.services {
  background: var(--black);
}

.hero .eyebrow::before,
.services .eyebrow::before,
.quiet-proof .eyebrow::before {
  box-shadow: 0 0 18px rgba(232, 38, 37, 0.72);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
  margin-top: clamp(58px, 8vw, 104px);
}

.service-list article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-list span,
.steps span {
  color: var(--red);
  font-weight: 900;
}

.services .service-list span {
  text-shadow: 0 0 18px rgba(232, 38, 37, 0.7);
}

.service-list h3,
.steps h3 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.15;
}

.service-list p,
.steps p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.process {
  padding: clamp(86px, 11vw, 160px) clamp(20px, 6vw, 96px);
  background: var(--paper);
  color: var(--ink);
}

.process .eyebrow,
.contact .eyebrow {
  color: var(--muted-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 8vw, 104px);
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.steps article {
  min-height: 310px;
  padding: 34px 30px;
  background: var(--paper);
}

.steps p {
  color: var(--muted-dark);
}

.quiet-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(90px, 12vw, 180px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--soft-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quiet-proof > p {
  align-self: end;
  max-width: 640px;
  color: #d8dbe0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.22;
  font-weight: 750;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 520px);
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
  padding: clamp(86px, 11vw, 160px) clamp(20px, 6vw, 96px);
  background: var(--paper);
  color: var(--ink);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: 20px;
  line-height: 1.65;
}

.contact-direct {
  display: grid;
  gap: 18px;
  align-self: end;
  padding-top: 10px;
}

.contact-direct span {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  word-break: break-word;
  transition: color 180ms ease;
}

.contact-direct a:hover {
  color: var(--red);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 6vw, 96px);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 210px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .fee-hero,
  .quiet-proof,
  .contact,
  .listing-detail,
  .fee-calculator-shell,
  .vehicle-layout {
    grid-template-columns: 1fr;
  }

  .vehicle-layout {
    grid-template-areas:
      "media"
      "info"
      "description";
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .fee-hero-visual {
    min-height: clamp(300px, 52vw, 460px);
    justify-content: center;
  }

  .fee-hero-visual img {
    width: min(112%, 680px);
    margin-right: 0;
    transform: translateY(-8px) rotate(-1deg);
  }

  .hero-visual img {
    min-height: 420px;
  }

  .listing-grid,
  .filter-panel,
  .fee-form,
  .service-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .fee-result {
    min-height: 0;
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .detail-image {
    min-height: 420px;
  }

  .steps article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    justify-content: center;
    padding: 14px 18px;
  }

  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand img {
    width: 122px;
  }

  .site-header > .main-nav,
  .site-header > .header-cta {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    right: 18px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 0 14px rgba(232, 38, 37, 0.35);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 6, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu .nav-switch {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
  }

  .mobile-menu .nav-switch.is-active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
  }

  .mobile-menu .mobile-phone {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
  }

  .hero {
    padding-top: 118px;
  }

  .eyebrow {
    font-size: 12px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .listing-meta,
  .detail-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.58;
    top: 0;
    transform: scale(1.12);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.76) 58%, rgba(5, 5, 6, 0.35) 100%),
      linear-gradient(180deg, rgba(5, 5, 6, 0.72) 0%, rgba(5, 5, 6, 0.08) 48%, rgba(5, 5, 6, 0.9) 100%);
  }

  .hero-copy {
    z-index: 2;
  }

  .vehicle-detail-page {
    padding-top: 112px;
  }

  .vehicle-info h1 {
    font-size: clamp(34px, 10.5vw, 64px);
  }

  .detail-price-row strong {
    font-size: clamp(20px, 6.8vw, 30px);
  }

  .vehicle-info .detail-price-row {
    gap: 20px;
  }

  .fee-calculator {
    padding-top: 68px;
  }

  .calculator-page .fee-calculator {
    padding-top: 112px;
  }

  .fee-page h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .fee-hero {
    position: relative;
    display: block;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: clamp(28px, 8vw, 52px);
  }

  .fee-hero::before {
    content: none;
    position: absolute;
    z-index: 0;
    inset: -12px 0 0;
    pointer-events: none;
    background: url("assets/main image kalkulacka.png") center center / contain no-repeat;
    opacity: 0.42;
  }

  .fee-hero-visual {
    display: none;
  }

  .fee-hero::after {
    content: none;
    position: absolute;
    inset: -16px -18px -20px;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.82) 58%, rgba(5, 5, 6, 0.42) 100%),
      linear-gradient(180deg, rgba(5, 5, 6, 0.5) 0%, rgba(5, 5, 6, 0.08) 48%, rgba(5, 5, 6, 0.88) 100%);
  }

  .fee-page-heading {
    position: relative;
    z-index: 2;
  }

  .fee-lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .fee-calculator-shell {
    margin-top: 17px;
    padding: 18px;
  }

  .fee-result strong {
    font-size: clamp(38px, 11vw, 58px);
  }

  .statement p {
    font-size: 32px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}
