:root {
  --bg: #eef1f4;
  --bg-soft: #f8fafb;
  --bg-deep: #dfe6ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-tint: rgba(236, 242, 247, 0.84);
  --line: rgba(17, 35, 48, 0.11);
  --line-strong: rgba(17, 35, 48, 0.18);
  --text: #10202c;
  --text-soft: #415360;
  --text-muted: #72818f;
  --accent: #ff7b20;
  --accent-strong: #ffb16a;
  --accent-deep: #d85d0d;
  --accent-2: #1a5b7a;
  --accent-2-soft: #d9e9f0;
  --success: #2b7a58;
  --shadow-lg: 0 30px 80px rgba(18, 32, 44, 0.12);
  --shadow-md: 0 16px 36px rgba(18, 32, 44, 0.09);
  --shadow-sm: 0 8px 18px rgba(18, 32, 44, 0.06);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-xl: 54px;
  --container: min(1240px, calc(100vw - 40px));
  --header-height: 88px;
  --transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 32, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f6f8 0%, #eef1f4 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-soft);
  font-family: "Work Sans", sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 123, 32, 0.14), transparent 0 18%),
    radial-gradient(circle at 84% 10%, rgba(26, 91, 122, 0.12), transparent 0 18%),
    linear-gradient(180deg, #f8f8f9 0%, #eef1f4 48%, #e8edf2 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 32, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 44, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 84%);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  appearance: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid rgba(26, 91, 122, 0.45);
  outline-offset: 4px;
}

::selection {
  background: rgba(255, 123, 32, 0.22);
  color: var(--text);
}

[hidden] {
  display: none !important;
}

.backdrop {
  position: fixed;
  inset: auto;
  filter: blur(42px);
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.backdrop--orange {
  top: 10%;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 123, 32, 0.18);
}

.backdrop--blue {
  right: -110px;
  top: 28%;
  width: 300px;
  height: 300px;
  background: rgba(26, 91, 122, 0.15);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 150;
  background: rgba(16, 32, 44, 0.06);
}

.page-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong), var(--accent-2));
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 160;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.shell {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(74px, 9vw, 122px) 0;
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.section-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.section-copy p,
.hero-text,
.hero-points li,
.service-panel p,
.frame-card p,
.frame-panel p,
.timeline-card p,
.quote-card p,
.contact-copy p,
.vehicle-card__summary,
.vehicle-sheet__note,
.vehicle-sheet__highlights li,
.empty-state p {
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 123, 32, 0.86), rgba(255, 123, 32, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  padding: 16px 0 0;
}

.shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 44, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 44, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(233, 239, 244, 0.8)),
    linear-gradient(135deg, rgba(255, 123, 32, 0.16), rgba(26, 91, 122, 0.14));
}

.brand-mark__dot,
.brand-mark__line {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.brand-mark__dot {
  width: 14px;
  height: 14px;
  top: 16px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 5px rgba(255, 123, 32, 0.12);
}

.brand-mark__line {
  width: 18px;
  height: 2px;
  top: 22px;
  right: 10px;
  background: linear-gradient(90deg, var(--accent-2), rgba(26, 91, 122, 0.2));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.8rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(233, 239, 244, 0.86);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(16, 32, 44, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: linear-gradient(135deg, var(--accent), #ffa34f);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 123, 32, 0.24);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow: 0 20px 34px rgba(255, 123, 32, 0.28);
}

.button--soft {
  background: rgba(26, 91, 122, 0.09);
  color: var(--accent-2);
  border: 1px solid rgba(26, 91, 122, 0.14);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(16, 32, 44, 0.1);
}

.button--text {
  min-height: auto;
  padding: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.button--text:hover,
.button--text:focus-visible {
  transform: none;
}

.button--compact {
  min-height: 46px;
  padding-inline: 18px;
}

.hero {
  padding-top: 32px;
}

.hero-grid,
.editorial-grid,
.frame-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 3.6vw, 54px);
  align-items: start;
}

.hero-grid > *,
.editorial-grid > *,
.frame-grid > *,
.contact-grid > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
  padding-top: clamp(20px, 3vw, 34px);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  max-width: 10.6ch;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent-2);
  background: linear-gradient(135deg, var(--accent-2), #2f86ae);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  color: #314756;
}

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

.hero-points {
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(255, 123, 32, 0.12);
}

.hero-spotlight,
.service-panel,
.catalog-workbench,
.frame-panel,
.frame-card,
.timeline-card,
.quote-card,
.contact-form,
.vehicle-card,
.metric-card,
.trust-chip,
.vehicle-sheet__panel,
.catalog-sidebar__note,
.hero-spotlight__note {
  min-width: 0;
}

.hero-spotlight,
.catalog-workbench,
.frame-panel,
.frame-card,
.timeline-card,
.quote-card,
.contact-form,
.service-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 32, 44, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    linear-gradient(145deg, rgba(26, 91, 122, 0.04), rgba(255, 123, 32, 0.05));
  box-shadow: var(--shadow-lg);
}

.hero-spotlight {
  padding: 24px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero-spotlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 123, 32, 0));
}

.hero-spotlight__topline,
.hero-spotlight__footer,
.vehicle-card__header,
.vehicle-card__footer,
.site-footer__inner,
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-spotlight__badge,
.vehicle-card__status,
.vehicle-sheet__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 91, 122, 0.08);
  border: 1px solid rgba(26, 91, 122, 0.14);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-spotlight__visual {
  position: relative;
  min-height: 300px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(220, 227, 234, 0.9);
}

.vehicle-figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.vehicle-figure__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  transform: translate(var(--media-shift-x, 0%), var(--media-shift-y, 0%)) scale(var(--media-scale, 1));
  transform-origin: center;
}

.vehicle-figure--hero .vehicle-figure__media {
  min-height: 300px;
}

.vehicle-figure--card .vehicle-figure__media {
  aspect-ratio: 16 / 10;
}

.vehicle-figure--modal .vehicle-figure__media {
  aspect-ratio: 16 / 8;
}

.vehicle-figure__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 35, 48, 0.04), rgba(17, 35, 48, 0.12) 45%, rgba(17, 35, 48, 0.4)),
    linear-gradient(120deg, rgba(255, 123, 32, 0.08), transparent 34%, transparent 74%, rgba(26, 91, 122, 0.12));
}

.vehicle-figure__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-figure__story,
.vehicle-figure__brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 32, 44, 0.54);
  color: #fff;
  backdrop-filter: blur(10px);
}

.vehicle-figure__story {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-figure__brand {
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-spotlight__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-spotlight__note,
.catalog-sidebar__note,
.metric-card,
.trust-chip,
.vehicle-sheet__panel {
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 44, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 243, 247, 0.82)),
    linear-gradient(135deg, rgba(26, 91, 122, 0.04), rgba(255, 123, 32, 0.06));
  box-shadow: var(--shadow-sm);
}

.hero-spotlight__note span,
.hero-spotlight__price span,
.metric-card span,
.vehicle-card__price span,
.vehicle-card__meta-grid span,
.field > span,
.field-head > span,
.filter-group__label,
.vehicle-sheet__panel span {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-spotlight__note strong,
.catalog-sidebar__note strong,
.metric-card strong,
.vehicle-card__price strong,
.vehicle-card__meta-grid strong,
.vehicle-sheet__panel strong {
  display: block;
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  line-height: 1.06;
}

.hero-spotlight__content {
  display: grid;
  gap: 16px;
}

.hero-spotlight__location,
.vehicle-card__location,
.vehicle-sheet__location {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-spotlight h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
}

.hero-spotlight__specs,
.vehicle-card__specs,
.vehicle-sheet__specs,
.chip-row,
.vehicle-sheet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-chip,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 44, 0.09);
  background: rgba(238, 243, 247, 0.88);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.spec-chip--accent {
  background: rgba(255, 123, 32, 0.1);
  border-color: rgba(255, 123, 32, 0.18);
  color: var(--accent-deep);
}

.hero-spotlight__price strong {
  display: block;
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 0.94;
}

.hero-spotlight__actions,
.vehicle-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-spotlight__price small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.hero-band {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.hero-metrics,
.trust-strip,
.frame-panel__grid,
.frame-cards,
.timeline-grid,
.quote-grid,
.contact-points,
.vehicle-card__meta-grid,
.vehicle-sheet__grid {
  display: grid;
  gap: 16px;
}

.hero-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  min-height: 100%;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-grid,
.frame-grid {
  align-items: start;
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-panel {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.service-panel__index {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 123, 32, 0.18), rgba(26, 91, 122, 0.12));
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.service-panel h3,
.frame-card h3,
.timeline-card h3,
.vehicle-card h3,
.vehicle-sheet h3,
.section-copy h2,
.frame-panel h2,
.contact-copy h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
}

.section-copy h2,
.frame-panel h2,
.contact-copy h2 {
  max-width: 18ch;
}

.service-panel h3,
.frame-card h3,
.timeline-card h3,
.vehicle-card h3,
.vehicle-sheet h3 {
  line-height: 1.04;
}

.stock-head {
  margin-bottom: 32px;
}

.catalog-workbench {
  display: grid;
  grid-template-columns: minmax(290px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  padding: 24px;
}

.catalog-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.catalog-sidebar__headline strong {
  display: block;
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.catalog-sidebar__headline span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.catalog-sidebar__fields,
.filter-panel {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 10px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 32, 44, 0.11);
  background: rgba(248, 250, 251, 0.96);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c98a3;
}

.field select {
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%),
    linear-gradient(180deg, rgba(248, 250, 251, 0.96), rgba(248, 250, 251, 0.96));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.field-head > span {
  margin-bottom: 0;
}

.field--vehicle-picker {
  gap: 14px;
}

.vehicle-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.picker-card {
  width: 100%;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 44, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 249, 0.92)),
    linear-gradient(145deg, rgba(26, 91, 122, 0.03), rgba(255, 123, 32, 0.05));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: left;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.picker-card:hover,
.picker-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 123, 32, 0.2);
  box-shadow: var(--shadow-md);
}

.picker-card.is-selected {
  border-color: rgba(255, 123, 32, 0.34);
  box-shadow:
    0 18px 36px rgba(255, 123, 32, 0.14),
    inset 0 0 0 1px rgba(255, 123, 32, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 240, 0.96)),
    linear-gradient(145deg, rgba(255, 123, 32, 0.08), rgba(26, 91, 122, 0.04));
}

.picker-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.8;
  overflow: hidden;
  background: rgba(220, 227, 234, 0.9);
}

.picker-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--picker-media-position, center);
  transform:
    translate(var(--picker-media-shift-x, 0%), var(--picker-media-shift-y, 0%))
    scale(var(--picker-media-scale, 1));
  transform-origin: center;
}

.picker-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 44, 0.02), rgba(16, 32, 44, 0.28));
}

.picker-card__status {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
}

.picker-card__body {
  display: grid;
  gap: 9px;
  padding: 14px 14px 16px;
}

.picker-card__eyebrow {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.picker-card__body strong {
  color: var(--text);
  font-family: "Archivo", sans-serif;
  font-size: 1.08rem;
  line-height: 1.02;
}

.picker-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.picker-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(238, 243, 247, 0.96);
  border: 1px solid rgba(16, 32, 44, 0.08);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.picker-card__price {
  color: var(--accent-deep);
  font-family: "Archivo", sans-serif;
  font-size: 1.26rem;
  line-height: 1;
}

.vehicle-picker__hint {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.vehicle-picker__clear {
  color: var(--accent-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-group {
  display: grid;
  gap: 10px;
}

.chip-row {
  gap: 8px;
}

.chip {
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.chip:hover,
.chip.is-active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 123, 32, 0.18);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.catalog-stage {
  min-width: 0;
}

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

.vehicle-card {
  padding: 18px;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.vehicle-card__visual {
  overflow: hidden;
  border-radius: 26px;
}

.vehicle-card__body {
  display: grid;
  gap: 14px;
}

.vehicle-card__status {
  flex-shrink: 0;
}

.vehicle-card__header {
  align-items: flex-start;
}

.vehicle-card__summary {
  color: var(--text-soft);
  font-size: 1rem;
}

.vehicle-card__meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vehicle-card__price strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.vehicle-card__price small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.vehicle-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vehicle-card__actions .button {
  min-height: 44px;
}

.empty-state {
  padding: 26px;
  border-radius: 26px;
  border: 1px dashed rgba(16, 32, 44, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.empty-state strong {
  color: var(--text);
}

.frame-panel {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.frame-panel__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.frame-panel__grid div {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 44, 0.08);
  background: rgba(248, 250, 251, 0.84);
}

.frame-panel__grid strong,
.contact-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.frame-cards {
  grid-template-columns: 1fr;
}

.frame-card,
.timeline-card,
.quote-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.timeline-grid {
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card span {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.72;
  font-style: italic;
}

.quote-card strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.14rem;
  color: var(--accent-2);
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-points div {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 44, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  padding: 24px;
}

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

.form-actions {
  margin-top: 18px;
  flex-wrap: wrap;
}

.form-status {
  color: var(--text-muted);
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer__inner {
  padding-top: 24px;
  border-top: 1px solid rgba(16, 32, 44, 0.08);
  flex-wrap: wrap;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  color: var(--text-muted);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 170;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(16, 32, 44, 0.94);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 44, 0.34);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(1080px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  border-radius: 34px;
  border: 1px solid rgba(16, 32, 44, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(145deg, rgba(26, 91, 122, 0.04), rgba(255, 123, 32, 0.05));
  box-shadow: 0 40px 120px rgba(16, 32, 44, 0.18);
}

.modal__close {
  position: sticky;
  top: 14px;
  z-index: 2;
  margin: 14px 14px 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(16, 32, 44, 0.92);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.modal__content {
  padding: 8px 22px 24px;
}

.vehicle-sheet {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.vehicle-sheet__visual {
  overflow: hidden;
  border-radius: 30px;
}

.vehicle-sheet__content {
  display: grid;
  gap: 16px;
}

.vehicle-sheet__top {
  display: grid;
  gap: 12px;
}

.vehicle-sheet__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vehicle-sheet__panel strong {
  font-size: 1.12rem;
}

.vehicle-sheet__highlights {
  display: grid;
  gap: 10px;
}

.vehicle-sheet__highlights li {
  position: relative;
  padding-left: 18px;
}

.vehicle-sheet__highlights li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.vehicle-sheet__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .hero-grid,
  .editorial-grid,
  .frame-grid,
  .contact-grid,
  .vehicle-sheet {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
  }

  .hero-spotlight h2,
  .section-copy h2,
  .frame-panel h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  }

  .catalog-workbench {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 28px, 1240px);
    --header-height: 78px;
  }

  .shell {
    min-height: var(--header-height);
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(16, 32, 44, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px 14px;
    background: rgba(248, 250, 251, 0.92);
    border-radius: 18px;
  }

  .hero-spotlight__rail,
  .frame-panel__grid,
  .contact-points,
  .hero-metrics,
  .trust-strip,
  .vehicle-card__meta-grid,
  .vehicle-sheet__grid {
    grid-template-columns: 1fr;
  }

  .vehicle-grid,
  .quote-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 24px, 1240px);
  }

  .section {
    padding: 66px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-spotlight,
  .catalog-workbench,
  .frame-panel,
  .frame-card,
  .timeline-card,
  .quote-card,
  .contact-form,
  .service-panel,
  .vehicle-card,
  .modal__dialog {
    padding: 18px;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .hero-spotlight__topline,
  .hero-spotlight__footer,
  .vehicle-card__header,
  .vehicle-card__footer,
  .form-actions,
  .site-footer__inner {
    display: grid;
    justify-content: stretch;
  }

  .hero-spotlight__actions,
  .vehicle-card__actions,
  .vehicle-sheet__actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .modal {
    padding: 12px;
  }

  .modal__dialog {
    width: 100%;
    max-height: calc(100vh - 12px);
  }

  .modal__content {
    padding: 8px 18px 20px;
  }

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

@media (max-width: 480px) {
  :root {
    --container: calc(100vw - 20px);
  }

  .site-header {
    padding-top: 10px;
  }

  .shell {
    gap: 12px;
    padding-inline: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy em {
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.8vw, 3rem);
  }

  .hero-spotlight__visual,
  .vehicle-figure--hero .vehicle-figure__media {
    min-height: 220px;
  }

  .vehicle-figure__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-spotlight__badge,
  .vehicle-card__status,
  .vehicle-sheet__status,
  .spec-chip,
  .chip {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .hero-spotlight h2,
  .section-copy h2,
  .frame-panel h2,
  .contact-copy h2,
  .vehicle-sheet h3 {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }

  .service-panel h3,
  .frame-card h3,
  .timeline-card h3,
  .vehicle-card h3 {
    font-size: 1.5rem;
  }

  .metric-card,
  .hero-spotlight__note,
  .trust-chip,
  .catalog-sidebar__note,
  .vehicle-sheet__panel,
  .contact-points div {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .vehicle-card__visual {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
