:root {
  --ink: #10202a;
  --muted: #60717b;
  --paper: #f5f7f8;
  --white: #fff;
  --line: #dce3e6;
  --accent: #d52b1e;
  --accent-dark: #aa1f15;
  --night: #07141b;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 20, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 17px/1.65 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 80px 0; }
.section-soft { background: var(--paper); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.16; letter-spacing: -.022em; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 4.7vw, 4.7rem); max-width: 20ch; }
h2 { font-size: clamp(1.9rem, 3.3vw, 3.15rem); max-width: 24ch; }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.42rem); }
.lead { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #dce6ea; }
.section-copy { max-width: 68ch; color: var(--muted); font-size: 1.06rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(7,20,27,.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}
.brand::before {
  content: "";
  width: clamp(210px, 22vw, 265px);
  aspect-ratio: 8 / 1;
  background: url("./assets/brand/carplaza-logo-uppercase-v1.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .32));
  transition: opacity .2s ease;
}
.brand:hover::before { opacity: .84; }
.brand > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.header .brand {
  min-height: 56px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
}
.header .brand::after {
  content: "АВТОМОБИЛИ ИЗ ЕВРОПЫ";
  width: 100%;
  box-sizing: border-box;
  padding-left: .28em;
  color: #8fa3ad;
  font-size: .52rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .28em;
  text-align: center;
}
.nav { display: flex; align-items: center; gap: 24px; font-size: .93rem; }
.nav a:hover, .nav a[aria-current="page"] { color: #ff7a70; }
.menu-button { display: none; border: 0; background: transparent; color: white; font-size: 1.6rem; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,27,.96) 0%, rgba(7,20,27,.72) 45%, rgba(7,20,27,.18) 80%),
    linear-gradient(0deg, rgba(7,20,27,.9), transparent 52%),
    url("./assets/hero/audi-a3-yellow.jpg") center 48% / cover;
}
.hero-content { position: relative; z-index: 1; padding: 120px 0 76px; }
.hero h1 { max-width: 900px; font-size: clamp(2.25rem, 4.1vw, 4.1rem); }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--accent); color: white; }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { border-color: rgba(255,255,255,.5); color: #fff; }
.button-outline { border-color: var(--line); background: white; }

.trust-grid, .benefits-grid, .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item, .benefit, .step {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.trust-item strong, .benefit strong { display: block; margin-bottom: 7px; }
.trust-item span, .benefit p, .step p { color: var(--muted); }
.step-number { color: var(--accent); font-weight: 900; font-size: 1.8rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: .2s ease; }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.car-image { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.car-content { padding: 20px; }
.car-status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #17663b;
  font-size: .75rem;
  font-weight: 800;
}
.car-specs { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 14px 0 18px; color: var(--muted); font-size: .9rem; }
.text-link { color: var(--accent); font-weight: 800; }
.popular-models-grid { margin-top: 30px; }
.model-card-featured .car-image { height: clamp(210px, 16vw, 260px); aspect-ratio: auto; width: 100%; object-fit: cover; }
.model-card-cover { aspect-ratio: 16/9; }
.model-card-cover { display: flex; align-items: end; padding: 22px; color: #fff; background: linear-gradient(135deg, #18343f, #07141b); }
.model-card-cover span { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 900; line-height: 1; letter-spacing: -.06em; }
.model-card-cover-peugeot { background: linear-gradient(135deg, #384756, #111b22); }
.model-card-cover-bmw { background: linear-gradient(135deg, #294d73, #0b1724); }
.model-card-cover-vw { background: linear-gradient(135deg, #47535d, #172027); }
.model-card-cover-renault { background: linear-gradient(135deg, #9d7832, #2c261b); }
.model-card-cover-citroen { background: linear-gradient(135deg, #6d3542, #21161b); }

.auction-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 40px;
  background: var(--paper);
}
.auction-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; margin-bottom: 22px; }
.auction-intro h2 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); }
.auction-intro > p { max-width: 560px; margin: 0; padding-top: 6px; color: var(--muted); font-size: .94rem; }
.auction-grid { display: grid; grid-template-columns: repeat(6, 1fr); align-items: start; gap: 10px; }
.auction-card {
  display: flex;
  width: 100%;
  height: 136px;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.auction-card:hover { border-color: #b9c6cc; box-shadow: 0 10px 24px rgba(7, 20, 27, .09); transform: translateY(-2px); }
.auction-card:focus-visible { outline: 3px solid rgba(213, 43, 30, .32); outline-offset: 3px; }
.auction-logo {
  display: flex;
  width: 100%;
  height: 66px;
  min-height: 0;
  flex: 0 0 66px;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.auction-logo img { width: auto; height: auto; max-width: 92%; max-height: 44px; object-fit: contain; }
.auction-card[data-auction-open="ayvens"] .auction-logo img { width: 132px; height: auto; max-width: 100%; max-height: none; }
.auction-card[data-auction-open="arval"] .auction-logo { overflow: hidden; }
.auction-card[data-auction-open="arval"] .auction-logo img { width: 124px; height: 68px; max-width: none; max-height: none; object-fit: cover; }
.auction-card[data-auction-open="bca"] .auction-logo img {
  width: 128px;
  height: 50px;
  max-width: 100%;
  max-height: none;
}
.auction-card-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 9px; }
.auction-card-meta strong { font-size: .94rem; }
.auction-type {
  display: inline-flex;
  min-height: 27px;
  margin-top: auto;
  padding: 4px 7px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #edf1f3;
  color: #52646d;
  font-size: .58rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.auction-type-direct { background: #eaf7ef; color: #17663b; }
.auction-more { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--line); color: var(--accent); font-size: .88rem; font-weight: 850; }
.auction-disclaimer { max-width: 900px; margin: 25px 0 0; color: var(--muted); font-size: .85rem; }

.auction-dialog {
  width: min(820px, calc(100% - 28px));
  max-height: min(88vh, 880px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(7, 20, 27, .38);
}
.auction-dialog::backdrop { background: rgba(7, 20, 27, .72); backdrop-filter: blur(5px); }
.auction-dialog-shell { position: relative; max-height: min(88vh, 880px); padding: 42px 46px 34px; overflow-y: auto; }
.auction-dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  margin: -18px -22px 0 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}
.auction-dialog-close:hover { border-color: #b9c6cc; background: var(--paper); }
.auction-dialog-logo { display: flex; min-height: 72px; align-items: center; margin-bottom: 22px; }
.auction-dialog-logo img { width: auto; max-width: 240px; max-height: 70px; object-fit: contain; }
.auction-dialog-logo-square img { max-height: 94px; }
.auction-dialog-logo-bca img { max-height: 86px; }
.auction-panel h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.2rem); }
.auction-summary { max-width: 70ch; margin: 0 0 26px; color: var(--muted); font-size: 1.02rem; }
.auction-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; }
.auction-facts div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.auction-facts dt { margin-bottom: 6px; color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.auction-facts dd { margin: 0; color: #354750; font-size: .91rem; line-height: 1.55; }
.auction-note { margin: 20px 0 0; padding: 16px 18px; border-left: 3px solid #e5b228; background: #fff9e9; color: #5c4a19; font-size: .88rem; }
.auction-sources { margin-top: 22px; color: var(--muted); font-size: .79rem; }
.auction-sources span { font-weight: 800; }
.auction-sources a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.auction-dialog-actions { display: flex; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }

.transit-section {
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}
.transit-section .eyebrow { color: #ff7a70; }
.transit-section-head { margin-bottom: 18px; }
.transit-intro { margin: 0 0 32px; color: #b8c6cc; }
.transit-controls { display: flex; gap: 10px; }
.transit-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #3b4b53;
  border-radius: 50%;
  background: #10242d;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.transit-arrow:hover { border-color: #ff7a70; background: #17313c; transform: translateY(-2px); }
.transit-track {
  display: grid;
  grid-auto-columns: minmax(300px, 360px);
  grid-auto-flow: column;
  gap: 20px;
  margin-right: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
  padding: 4px max(16px, calc((100vw - min(1180px, calc(100vw - 32px))) / 2)) 22px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #53646c transparent;
  scrollbar-width: thin;
}
.transit-track:focus-visible { outline: 2px solid #ff7a70; outline-offset: 8px; }
.transit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #273a43;
  border-radius: 22px;
  background: #0d2029;
  scroll-snap-align: start;
  transition: border-color .2s ease, transform .2s ease;
}
.transit-card:hover { border-color: #4c626c; transform: translateY(-4px); }
.transit-media { position: relative; overflow: hidden; }
.transit-media img { width: 100%; height: 245px; object-fit: cover; }
.transit-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #17663b;
  color: var(--white);
  font-size: .75rem;
  font-weight: 850;
  box-shadow: 0 6px 18px rgba(7, 20, 27, .25);
}
.transit-status-customs { background: #8f5b08; }
.transit-content { display: flex; flex: 1; flex-direction: column; padding: 21px; }
.transit-kicker { margin: 0 0 6px; color: #8fa3ad; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.transit-card h3 { min-height: 2.35em; }
.transit-card .car-specs { margin-bottom: 14px; color: #b8c6cc; }
.transit-note { min-height: 3em; margin: 0 0 20px; color: #8fa3ad; font-size: .88rem; line-height: 1.5; }
.transit-price-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  margin-top: auto;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: .88rem;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.transit-price-button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.transit-hint { margin: 10px 0 0; color: #758b95; font-size: .8rem; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { max-width: 780px; color: var(--muted); }

.form-card { padding: 32px; border-radius: 24px; background: var(--night); color: white; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1/-1; }
.field label { color: #c8d4da; font-size: .86rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #344750;
  border-radius: 12px;
  padding: 13px 14px;
  background: #10242d;
  color: white;
}
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: start; color: #b8c6cc; font-size: .82rem; }
.form-note { min-height: 1.5em; color: #a8e2bd; font-weight: 700; }

.page-hero { padding: 90px 0 62px; background: var(--night); color: white; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.catalog-toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.catalog-toolbar select { min-width: 180px; padding: 11px 38px 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.article { max-width: 820px; }
.article h2 { margin-top: 48px; font-size: 2rem; }
.article p, .article li { max-inline-size: 68ch; color: var(--muted); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { display: flex; min-height: 300px; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card h2 { margin-bottom: 16px; font-size: 1.65rem; }
.article-card p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); }
.article-card .text-link { margin-top: auto; }
.article-hero { padding-bottom: 72px; }
.comparison { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.comparison div { padding: 20px; border-radius: 14px; background: var(--paper); }
.comparison strong, .comparison span { display: block; }
.comparison span { margin-top: 6px; color: var(--muted); }
.article-cta { margin-top: 48px; padding: 32px; border-radius: 22px; background: var(--night); color: var(--white); }
.article-cta h2 { margin: 0; font-size: 1.85rem; }
.article-cta p { color: #c8d4da; }
.model-hero { position: relative; min-height: 700px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--night); }
.model-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,20,27,.96) 0%, rgba(7,20,27,.77) 47%, rgba(7,20,27,.17) 100%), linear-gradient(0deg, rgba(7,20,27,.82), transparent 65%), url("./assets/landing/peugeot-5008/hero.jpg") center / cover; }
.model-hero-308::before { background-image: linear-gradient(90deg, rgba(7,20,27,.96) 0%, rgba(7,20,27,.76) 47%, rgba(7,20,27,.14) 100%), linear-gradient(0deg, rgba(7,20,27,.82), transparent 65%), url("./assets/landing/peugeot-308/hero.jpg"); background-position: center; }
.model-hero-c5::before { background-image: linear-gradient(90deg, rgba(7,20,27,.96) 0%, rgba(7,20,27,.76) 47%, rgba(7,20,27,.14) 100%), linear-gradient(0deg, rgba(7,20,27,.82), transparent 65%), url("./assets/landing/citroen-c5-aircross/hero.jpeg"); background-position: center; }
.model-hero-talisman::before { background-image: linear-gradient(90deg, rgba(7,20,27,.97) 0%, rgba(7,20,27,.77) 47%, rgba(7,20,27,.14) 100%), linear-gradient(0deg, rgba(7,20,27,.82), transparent 65%), url("./assets/landing/renault-talisman/hero.jpeg"); background-position: center; }
.model-hero-content { position: relative; z-index: 1; padding: 118px 0 74px; }
.model-hero h1 { max-width: 20ch; font-size: clamp(2.45rem, 4.8vw, 4.9rem); }
.model-hero .lead { max-width: 760px; }
.model-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 30px 0 0; padding: 0; list-style: none; font-size: .92rem; font-weight: 700; }
.model-points li::before { content: "✓"; margin-right: 8px; color: #ff857b; }
.model-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.model-intro > div:last-child { max-width: 700px; color: var(--muted); font-size: 1.07rem; }
.gallery-intro { max-width: 720px; margin: -10px 0 30px; color: var(--muted); }
.model-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.model-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 15px; background: var(--night); }
.model-gallery .gallery-large { grid-column: span 2; grid-row: span 2; }
.model-gallery figure:nth-child(4) { grid-column: span 2; }
.model-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.model-gallery figure:hover img { transform: scale(1.04); }
.model-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 25px 15px 12px; background: linear-gradient(transparent, rgba(7,20,27,.8)); color: #fff; font-size: .82rem; font-weight: 700; }
.model-steps { margin-top: 34px; }
.model-copy h2 { margin-top: 0; }
.form-subtitle { color: #c8d4da; }
.related-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.related-article { display: flex; min-height: 235px; flex-direction: column; align-items: flex-start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.related-article h3 { max-inline-size: 19ch; margin-bottom: 13px; }
.related-article p:not(.eyebrow) { margin: 0 0 22px; color: var(--muted); font-size: .98rem; }
.related-article .text-link { margin-top: auto; }
.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 34px; }
.decision-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.decision-card-positive { border-color: #bfdfca; background: #f3fbf6; }
.decision-card ul { margin: 20px 0 0; padding-left: 21px; color: var(--muted); }
.decision-card li + li { margin-top: 9px; }

.footer { padding: 54px 0; background: var(--night); color: #dce6ea; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
.footer a { display: block; margin: 6px 0; color: #aebec6; }
.footer .brand { display: inline-flex; margin: 0 0 10px; }
.footer small { color: #82939c; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav { display: none; position: absolute; inset: 74px 0 auto; padding: 20px 24px; background: var(--night); flex-direction: column; align-items: flex-start; }
  .nav.is-open { display: flex; }
  .trust-grid, .benefits-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .auction-intro { grid-template-columns: 1fr; gap: 14px; }
  .auction-intro > p { padding-top: 0; }
  .auction-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .model-intro { grid-template-columns: 1fr; gap: 24px; }
  .model-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .related-articles { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 35px; }
}
@media (max-width: 620px) {
  .brand::before { width: 205px; }
  .section { padding: 58px 0; }
  .auction-section { padding-block: 40px; }
  .hero { min-height: 680px; }
  .trust-grid, .benefits-grid, .steps-grid, .cars-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .auction-grid { grid-template-columns: repeat(2, 1fr); }
  .auction-facts { grid-template-columns: 1fr; }
  .auction-card { height: 136px; }
  .auction-dialog-shell { padding: 34px 22px 26px; }
  .auction-dialog-close { margin: -14px -8px 0 12px; }
  .auction-dialog-actions .button { width: 100%; text-align: center; }
  .comparison { grid-template-columns: 1fr; }
  .transit-section-head { align-items: center; }
  .transit-controls { display: none; }
  .transit-track { grid-auto-columns: minmax(280px, 86vw); }
  .transit-media img { height: 220px; }
  .model-hero { min-height: 650px; }
  .model-hero-content { padding-top: 100px; }
  .model-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .model-gallery .gallery-large, .model-gallery figure:nth-child(4) { grid-column: auto; grid-row: auto; }
  .section-head { align-items: start; flex-direction: column; }
  .field-full { grid-column: auto; }
}
