@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic-variable.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA-02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f4f0e8;
  --paper-deep: #e9e1d4;
  --paper-light: #fbf8f2;
  --ink: #171513;
  --ink-soft: #2c2925;
  --muted: #6f685f;
  --line: #d2c8ba;
  --line-dark: #37332e;
  --red: #c9152b;
  --red-dark: #9e0e20;
  --white: #fffdf8;
  --green: #187454;
  --shadow: 0 22px 60px rgb(35 24 15 / 12%);
  --shadow-small: 0 10px 30px rgb(35 24 15 / 9%);
  --radius: 4px;
  --container: 1280px;
  --gutter: clamp(18px, 3vw, 42px);
  --header-offset: 126px;
  --font-sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-editorial: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% -10%, rgb(201 21 43 / 7%), transparent 28rem),
    var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

picture {
  display: block;
  overflow: hidden;
  background: #d9d2c7;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 4px;
}

[hidden],
.is-hidden {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 12px auto auto 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 102;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px rgb(201 21 43 / 50%);
  transform-origin: left center;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--ink);
  background: rgb(244 240 232 / 94%);
  backdrop-filter: blur(14px) saturate(125%);
}

.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 76px;
  gap: clamp(20px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.085em;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-glyph {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--red);
}

.brand-glyph::before,
.brand-glyph::after,
.brand-glyph i {
  position: absolute;
  content: "";
  background: var(--white);
  transform: rotate(-34deg);
}

.brand-glyph::before {
  width: 25px;
  height: 4px;
  top: 11px;
  left: 7px;
}

.brand-glyph::after {
  width: 20px;
  height: 4px;
  right: 4px;
  bottom: 10px;
}

.brand-glyph i {
  width: 4px;
  height: 24px;
  left: 12px;
  bottom: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.site-nav a {
  position: relative;
  padding-block: 28px 25px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
}

.menu-toggle > span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0 10px 12px;
  border: 0;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-toggle span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-toggle span::after {
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

.newsline {
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.newsline .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 26px;
  overflow: hidden;
  white-space: nowrap;
}

.newsline span {
  color: #f8b7bf;
  font-weight: 800;
  text-transform: uppercase;
}

.newsline a {
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
}

.newsline a::before {
  margin-right: 10px;
  color: var(--red);
  content: "●";
  font-size: 0.56rem;
}

/* Shared editorial typography */
.rubric {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  font-family: var(--font-editorial);
  font-weight: 750;
}

h1,
h2 {
  letter-spacing: -0.038em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.45vw, 2.6rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.2;
}

.story-lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-editorial);
  font-size: clamp(1.08rem, 1.65vw, 1.48rem);
  font-weight: 450;
  line-height: 1.48;
}

.text-link,
.section-heading > a,
.video-card__body > a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span,
.section-heading > a span {
  color: var(--red);
}

.text-link:hover,
.section-heading > a:hover,
.video-card__body > a:hover {
  color: var(--red);
}

.section {
  padding-block: clamp(32px, 3.8vw, 54px);
}

.section--paper {
  background: var(--paper-light);
  border-block: 1px solid var(--line);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section--ink .rubric {
  color: #ff6476;
}

.section--ink a,
.section--ink .text-link {
  color: inherit;
}

.section--red {
  color: var(--white);
  background: var(--red);
}

.section--red .rubric {
  color: #ffdce0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(24px, 3vw, 38px);
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
}

.archive-models {
  margin-top: clamp(42px, 5vw, 66px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: clamp(20px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

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

/* Home cover */
.cover {
  padding-block: clamp(12px, 1.4vw, 20px) clamp(20px, 2.4vw, 34px);
}

.cover + .section {
  padding-top: clamp(32px, 3vw, 48px);
}

.cover-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  padding-bottom: clamp(16px, 2vw, 24px);
}

.cover-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 3.35vw, 3.45rem);
  line-height: 1;
}

.cover-intro__copy {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.cover-intro__copy > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.cover-intro__copy > p {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(300px, 0.78fr);
  height: clamp(380px, 29vw, 430px);
  gap: clamp(18px, 2vw, 28px);
}

.cover-main {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.cover-main > a,
.cover-main picture,
.cover-main img {
  width: 100%;
  height: 100%;
}

.cover-main > a {
  display: block;
  position: relative;
  color: var(--white);
  text-decoration: none;
}

.cover-main img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 250ms ease;
}

.cover-main:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.cover-main__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: rgb(15 14 13 / 90%);
  backdrop-filter: blur(8px);
}

.cover-main__overlay span {
  color: #ff8392;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cover-main__overlay strong {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.cover-main__overlay i {
  color: var(--red);
  font-size: 1.45rem;
  font-style: normal;
}

.cover-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
  overflow: hidden;
  border-top: 4px solid var(--red);
}

.cover-news {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  padding-block: 18px;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.cover-news .issue {
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: 1.55rem;
  line-height: 1;
}

.cover-news h2 {
  margin-bottom: 9px;
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(1.16rem, 1.4vw, 1.45rem);
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cover-news h2 a {
  text-decoration: none;
}

.cover-news h2 a:hover {
  color: var(--red);
}

.cover-news p:last-child {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.8rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(14px, 2vw, 22px);
  border-block: 1px solid var(--ink);
}

.stat-bar > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px clamp(10px, 1.7vw, 22px);
  border-right: 1px solid var(--line);
}

.stat-bar > div:last-child {
  border-right: 0;
}

.stat-bar strong {
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: clamp(1.65rem, 2.1vw, 2.2rem);
  line-height: 1;
}

.stat-bar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Filters and buttons */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.chip,
.button,
.print-button,
.city-jump button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.chip {
  padding: 10px 18px;
}

.chip:hover,
.chip.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button,
.print-button {
  padding: 14px 22px;
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button:hover,
.print-button:hover,
.city-jump button:hover {
  color: var(--white);
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink) !important;
  border-color: var(--white);
  background: var(--white);
}

.button--light:hover {
  color: var(--white) !important;
  border-color: var(--red);
  background: var(--red);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Model cards */
.model-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.model-grid--home {
  align-items: stretch;
}

.model-card {
  display: flex;
  grid-column: span 4;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.model-card--featured {
  grid-column: span 4;
}

.model-card:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.model-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d7d1c8;
}

.model-card__media picture,
.model-card__media img {
  width: 100%;
}

.model-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease;
}

.model-card:hover .model-card__media img {
  transform: scale(1.035);
}

.model-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 34px);
}

.model-card__body .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.model-card__body h3 {
  margin-bottom: 14px;
  font-family: var(--font-editorial);
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  letter-spacing: -0.035em;
}

.model-card__body h3 a {
  text-decoration: none;
}

.model-card__body h3 a:hover {
  color: var(--red);
}

.model-card__body > p:not(.rubric) {
  color: var(--muted);
  font-size: 0.92rem;
}

.section--model-choice {
  padding-block: clamp(42px, 5vw, 68px);
}

.model-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.model-choice-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(240px, 1.1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-light);
  transition: border-color 180ms ease, transform 180ms ease;
}

.model-choice-card:hover {
  border-color: #a9a095;
  transform: translateY(-3px);
}

.model-choice-card__media {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #d7d1c8;
}

.model-choice-card__media picture,
.model-choice-card__media img {
  width: 100%;
  height: 100%;
}

.model-choice-card__media img {
  object-fit: cover;
  transition: transform 360ms ease;
}

.model-choice-card:hover .model-choice-card__media img {
  transform: scale(1.025);
}

.model-choice-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.2vw, 30px);
}

.model-choice-card__body h3 {
  margin: 5px 0 9px;
  font-family: var(--font-editorial);
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.model-choice-card__body h3 a {
  text-decoration: none;
}

.model-choice-card__body > p:not(.rubric) {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.model-choice-card__body dl {
  margin: 16px 0 17px;
  border-top: 1px solid var(--line);
}

.model-choice-card__body dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.model-choice-card__body dt,
.model-choice-card__body dd {
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.35;
}

.model-choice-card__body dt {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.model-choice-card__body dd {
  font-weight: 750;
  text-align: right;
}

.model-choice-card__body .text-link {
  margin-top: auto;
}

@media (max-width: 1120px) {
  .model-choice-card {
    grid-template-columns: 1fr;
  }

  .model-choice-card__media img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .model-choice-grid {
    grid-template-columns: 1fr;
  }
}

.model-status {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.model-card__media > .model-status {
  position: absolute;
  top: 14px;
  left: 14px;
}

.model-status.is-current {
  background: var(--green);
}

.mini-specs {
  display: grid;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.mini-specs > div {
  display: grid;
  grid-template-columns: minmax(80px, 0.75fr) minmax(0, 1.25fr);
  gap: 12px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
}

.mini-specs dt {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-specs dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: right;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.story-card {
  display: flex;
  grid-column: span 3;
  min-width: 0;
  flex-direction: column;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.story-grid > .story-card--text:nth-child(n) {
  grid-column: span 4;
}

.story-grid > .story-card:nth-child(n) {
  grid-column: span 4;
}

.story-card__media {
  display: block;
  overflow: hidden;
  background: #d7d1c8;
}

.story-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 260ms ease, transform 420ms ease;
}

.story-card:hover .story-card__media img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-block: 22px 26px;
}

.story-card__body .text-link {
  margin-top: auto;
  padding-top: 16px;
}

.story-card--text {
  position: relative;
  border-top: 3px solid var(--red);
}

.story-card--text .story-card__body {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 22px 4px 24px;
}

.story-card--text h3 {
  font-size: clamp(1.18rem, 1.4vw, 1.48rem);
  line-height: 1.12;
}

.story-card--text .story-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.story-card--text .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.story-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card__meta time {
  color: var(--muted);
}

.story-card h3 {
  font-family: var(--font-editorial);
  font-size: clamp(1.24rem, 1.65vw, 1.72rem);
  letter-spacing: -0.035em;
}

.story-card h3 a {
  text-decoration: none;
}

.story-card h3 a:hover {
  color: var(--red);
}

.story-card__body > p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Ads */
.ad-slot {
  display: flex;
  width: min(100% - (var(--gutter) * 2), var(--container));
  min-height: 140px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: clamp(20px, 3vw, 34px) auto;
  padding: 26px;
  border: 1px dashed #aaa196;
  color: #8b8378;
  background:
    repeating-linear-gradient(-45deg, transparent 0 8px, rgb(0 0 0 / 1.5%) 8px 9px),
    rgb(255 253 248 / 42%);
  text-align: center;
}

.ad-slot > span {
  padding: 5px 8px;
  border: 1px solid currentColor;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ad-slot > div {
  display: grid;
  gap: 4px;
}

.ad-slot strong {
  color: #625b53;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.ad-slot small {
  font-size: 0.68rem;
}

.story-aside .ad-slot,
.dealer-layout aside .ad-slot {
  width: 100%;
  min-height: 520px;
  flex-direction: column;
  margin: 34px 0 0;
}

.prose .ad-slot {
  width: 100%;
  min-height: 150px;
  margin-block: 34px;
}

/* Long-form article and model pages */
.story-head,
.collection-head,
.city-hero {
  padding-block: clamp(26px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.story-head h1,
.collection-head h1,
.city-hero h1 {
  max-width: 1000px;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.06;
  text-wrap: balance;
}

.story-head h1 {
  max-width: 940px;
  font-size: clamp(1.95rem, 2.45vw, 2.85rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 22px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-cover {
  margin-top: clamp(22px, 3vw, 42px);
}

.story-cover picture {
  background: var(--ink);
}

.story-cover img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.story-cover > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.story-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(26px, 4vw, 56px);
  padding-block: clamp(30px, 3.7vw, 50px);
}

.story-cover + .story-layout {
  padding-top: clamp(26px, 3vw, 36px);
}

.story-aside {
  grid-column: 1;
  min-width: 0;
}

.prose {
  grid-column: 2;
  min-width: 0;
  color: var(--ink-soft);
  font-family: var(--font-editorial);
  font-size: clamp(1.05rem, 1.25vw, 1.17rem);
  line-height: 1.78;
}

.prose--wide {
  width: min(100%, 980px);
  margin-inline: auto;
}

.prose > :first-child,
.prose > section:first-child > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: clamp(30px, 3.4vw, 46px);
  margin-bottom: 20px;
  padding-top: 11px;
  border-top: 4px solid var(--ink);
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.08rem);
  scroll-margin-top: var(--header-offset);
  text-wrap: balance;
}

.prose section > h2:first-child {
  margin-top: 0;
}

.prose section + section > h2:first-child {
  margin-top: clamp(38px, 4.5vw, 60px);
}

.prose section > h2 + h2,
.prose section > h2 + * > h2:first-child {
  margin-top: 32px;
  border-top-width: 1px;
  font-size: clamp(1.6rem, 2.15vw, 2.2rem);
}

.prose h3 {
  margin-top: 32px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.prose p {
  margin: 0 0 1.45em;
}

.prose a {
  color: var(--red-dark);
  text-decoration-color: rgb(201 21 43 / 38%);
}

.prose a:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

.prose ul,
.prose ol {
  margin: 0 0 1.7em;
  padding-left: 1.35em;
}

.prose li {
  margin-block: 0.55em;
  padding-left: 0.22em;
}

.prose li::marker {
  color: var(--red);
  font-family: var(--font-sans);
  font-weight: 900;
}

.prose blockquote,
.callout,
.note {
  position: relative;
  margin: clamp(32px, 5vw, 58px) 0;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 44px);
  border: 0;
  border-left: 5px solid var(--red);
  color: var(--ink);
  background: var(--paper-deep);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
}

.prose blockquote::before,
.callout::before {
  position: absolute;
  top: -21px;
  right: 20px;
  color: rgb(201 21 43 / 18%);
  content: "“";
  font-family: var(--font-editorial);
  font-size: 7rem;
  line-height: 1;
}

.prose blockquote p:last-child,
.callout p:last-child,
.note p:last-child {
  margin-bottom: 0;
}

.note {
  border-left-color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.prose table,
.spec-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.45;
}

.prose table,
.spec-table {
  display: table;
  margin-block: 34px 46px;
  border-block: 3px solid var(--ink);
}

.prose th,
.prose td,
.compare-table th,
.compare-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th,
.compare-table th {
  color: var(--ink);
  font-weight: 850;
}

.prose thead th,
.compare-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.67rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.prose tbody tr:nth-child(even),
.compare-table tbody tr:nth-child(even) {
  background: rgb(255 253 248 / 56%);
}

.toc {
  position: sticky;
  top: calc(var(--header-offset) + 22px);
  display: grid;
  max-height: calc(100vh - var(--header-offset) - 44px);
  gap: 0;
  overflow-y: auto;
  border-top: 4px solid var(--red);
}

.toc strong {
  padding: 15px 0 11px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.toc a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover,
.toc a.is-active,
.toc a[aria-current="true"] {
  color: var(--red);
}

.sources {
  margin-top: clamp(42px, 5vw, 66px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.55;
}

.sources h2 {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sources ul {
  margin-bottom: 20px;
}

.sources > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.faq {
  margin-top: clamp(42px, 5vw, 66px);
}

.faq > h2 {
  margin-top: 0;
}

.faq-list {
  border-top: 1px solid var(--ink);
  font-family: var(--font-sans);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 50px 22px 0;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--red);
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 46px 20px 0;
  color: var(--muted);
}

.faq-list details > div p:last-child {
  margin-bottom: 0;
}

.related {
  padding-block: 0 clamp(46px, 6vw, 82px);
}

.topic-links {
  margin-top: clamp(34px, 4vw, 52px);
  padding: clamp(22px, 3vw, 34px);
  border-top: 4px solid var(--red);
  background: var(--paper-deep);
}

.topic-links h2 {
  margin: 5px 0 18px;
  padding: 0;
  border: 0;
  font-size: clamp(1.4rem, 1.65vw, 1.7rem);
}

.topic-links ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-links li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding-block: 12px;
  border-top: 1px solid var(--line);
}

.topic-links li::marker {
  content: none;
}

.topic-links li a {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.topic-links li a:hover {
  color: var(--red);
}

.topic-links li span {
  align-self: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Model hero */
.model-hero {
  padding-block: clamp(28px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}

.model-hero__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.model-hero__copy {
  padding-bottom: clamp(32px, 4vw, 52px);
}

.model-hero__copy > .model-status {
  margin-bottom: 22px;
}

.model-hero__copy h1 {
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
}

.model-hero__media {
  align-self: stretch;
  min-height: 380px;
  overflow: hidden;
  background: #d6d0c7;
}

.model-hero__media picture,
.model-hero__media img {
  width: 100%;
  height: 100%;
}

.model-hero__media img {
  min-height: 380px;
  object-fit: cover;
}

.verdict {
  margin: 34px 0 0;
  padding: 20px 0 0 24px;
  border: 0;
  border-left: 4px solid var(--red);
  color: var(--muted);
}

.verdict strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdict p {
  margin: 0;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid var(--ink);
}

.fact-strip > div {
  min-width: 0;
  padding: 22px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div:nth-child(4n) {
  border-right: 0;
}

.fact-strip dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-strip dd {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.model-story {
  grid-template-columns: 230px minmax(0, 840px) minmax(0, 1fr);
}

/* Comparison table */
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  min-width: 760px;
  color: var(--white);
}

.compare-table th,
.compare-table td {
  border-color: var(--line-dark);
}

.compare-table tbody tr:nth-child(even) {
  background: rgb(255 255 255 / 4%);
}

.compare-table a {
  color: var(--white);
  text-decoration-color: var(--red);
}

/* Feature lists */
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
}

.split-feature > div:first-child {
  position: sticky;
  top: calc(var(--header-offset) + 20px);
}

.split-feature > div:first-child p:not(.rubric) {
  max-width: 580px;
  color: rgb(255 253 248 / 70%);
}

.compact-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.compact-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 5px 18px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.compact-list a > span {
  grid-row: 1 / 3;
  color: #ff6476;
  font-family: var(--font-editorial);
  font-size: 1.7rem;
}

.compact-list strong {
  font-family: var(--font-editorial);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.1;
}

.compact-list small {
  color: rgb(255 253 248 / 58%);
  font-size: 0.78rem;
}

.compact-list a:hover strong {
  color: #ff8190;
}

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.video-card {
  min-width: 0;
  border-bottom: 1px solid var(--ink);
}

.video-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  text-align: left;
}

.video-card__media picture,
.video-card__media img {
  width: 100%;
}

.video-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 200ms ease, transform 420ms ease;
}

.video-card__media:hover img {
  opacity: 0.72;
  transform: scale(1.03);
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 5px 20px rgb(0 0 0 / 24%);
  transform: translate(-50%, -50%);
}

.play::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  content: "";
  transform: translate(-40%, -50%);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  color: var(--white);
  background: rgb(0 0 0 / 78%);
  font-size: 0.67rem;
  font-weight: 800;
}

.video-card__body {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding-block: 18px 24px;
}

.video-card__body h3 {
  margin-bottom: 10px;
  font-family: var(--font-editorial);
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(1.12rem, 1.25vw, 1.34rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.video-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.video-card__body h3 a:hover {
  color: var(--red);
}

.video-card__body > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.76rem;
}

.video-card__body > a:last-child {
  margin-top: auto;
}

.video-hub-head {
  padding-bottom: clamp(26px, 3vw, 40px);
}

.video-hub {
  padding-top: clamp(28px, 3.5vw, 46px);
}

.video-hub__content {
  width: 100%;
  max-width: none;
}

.video-hub__content > p,
.video-hub__content > h2 {
  max-width: 860px;
}

.video-hub__content > p:first-child {
  margin-top: 0;
}

.video-hub__content > .video-grid {
  margin-top: clamp(30px, 4vw, 48px);
}

.video-detail {
  padding-block: clamp(26px, 3.5vw, 46px) clamp(40px, 5vw, 68px);
}

.video-detail__player {
  width: min(100%, 1120px);
  margin-bottom: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background: #080808;
}

.video-detail__player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.prose--video {
  width: min(100%, 780px);
  margin-left: clamp(0px, 8vw, 180px);
}

.video-credit {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Authors */
.author-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.author-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.author-card__initials {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-weight: 800;
}

.author-card h2 {
  margin: 4px 0 12px;
  font-size: clamp(1.5rem, 1.9vw, 2rem);
}

.author-card h2 a {
  text-decoration: none;
}

.author-card p:not(.rubric, .author-card__initials) {
  color: var(--muted);
}

.author-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 42px;
  max-width: 880px;
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.author-focus dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-focus dd {
  margin: 4px 0 0;
  font-weight: 750;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.photo-grid--home {
  grid-auto-flow: row;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.photo-grid--home .photo-tile,
.photo-grid--home .photo-tile:first-child {
  grid-column: auto;
  min-width: 0;
}

.photo-grid--home .photo-tile img,
.photo-grid--home .photo-tile:first-child img {
  aspect-ratio: 16 / 10;
}

.photo-grid--home .photo-tile figcaption {
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.photo-tile {
  grid-column: span 4;
  margin: 0;
}

.photo-tile:first-child,
.photo-tile--1:nth-child(odd) {
  grid-column: span 7;
}

.photo-tile--2:nth-child(even) {
  grid-column: span 5;
}

.photo-tile a[data-lightbox] {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 200ms ease, transform 420ms ease;
}

.photo-tile:first-child img,
.photo-tile--1:nth-child(odd) img {
  aspect-ratio: 16 / 10;
}

.photo-tile a[data-lightbox] > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--red);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo-tile a[data-lightbox]:hover img {
  opacity: 0.84;
  transform: scale(1.025);
}

.photo-tile a[data-lightbox]:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.photo-tile figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.photo-tile figcaption a {
  color: var(--ink);
}

@media (max-width: 980px) {
  .photo-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Dealer promo and city directory */
.dealer-promo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.dealer-promo h2 {
  max-width: 760px;
}

.dealer-promo > div > p:not(.rubric) {
  max-width: 680px;
  color: rgb(255 255 255 / 78%);
}

.city-jump label,
.city-search > span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.city-jump > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.city-jump input,
.city-search input,
.search-dialog input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid currentColor;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.city-jump input:focus,
.city-search input:focus,
.search-dialog input:focus {
  border-color: #ffb000;
  box-shadow: 0 0 0 3px rgb(255 176 0 / 36%);
}

.city-jump button {
  min-width: 100px;
  padding: 12px 20px;
  border-radius: 0;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.city-hero {
  background:
    linear-gradient(100deg, rgb(201 21 43 / 8%), transparent 55%),
    var(--paper-light);
}

.city-hero--index {
  padding-bottom: clamp(44px, 5vw, 78px);
}

.city-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(38px, 7vw, 100px);
}

.city-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 3px solid var(--red);
  background: transparent;
}

.city-hero__stats > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.city-hero__stats strong {
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: 2.4rem;
  line-height: 1;
}

.city-hero__stats span {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.city-search {
  display: block;
  width: min(100%, 620px);
  margin-top: 38px;
}

.city-search input {
  min-height: 62px;
  border: 2px solid var(--ink);
  font-size: 1.05rem;
}

.alphabet {
  display: grid;
  gap: 42px;
}

.alphabet > section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.alphabet > section > h2 {
  position: sticky;
  top: calc(var(--header-offset) + 18px);
  align-self: start;
  margin: 0;
  color: var(--red);
  font-size: 3rem;
}

.city-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
}

.city-directory a {
  border: 1px solid var(--line);
}

.city-directory a,
.city-links a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  align-content: center;
  padding: 18px 20px;
  background: var(--paper-light);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.city-directory a:hover,
.city-links a:hover {
  color: var(--white);
  background: var(--red);
}

.city-directory span,
.city-links span {
  color: var(--muted);
  font-size: 0.69rem;
}

.city-directory a:hover span,
.city-links a:hover span {
  color: rgb(255 255 255 / 72%);
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(38px, 6vw, 80px);
}

.dealer-layout > main,
.dealer-main {
  min-width: 0;
}

.dealer-layout > aside {
  position: sticky;
  top: calc(var(--header-offset) + 20px);
}

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

.dealer-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.dealer-card__top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.dealer-card__top > span {
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: 1.65rem;
  line-height: 1;
}

.dealer-card h2 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.dealer-card__top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.dealer-card dl {
  display: grid;
  margin: 18px 0;
}

.dealer-card dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
}

.dealer-card dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dealer-card dd {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 750;
}

.dealer-card dd a {
  color: var(--red-dark);
  text-decoration: none;
}

.dealer-card dd a:hover {
  text-decoration: underline;
}

.dealer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dealer-services span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 750;
}

.dealer-note {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.side-note {
  margin-top: 20px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
}

.side-note strong {
  display: block;
  margin-bottom: 14px;
  color: #ff7788;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.side-note ul {
  margin: 0;
  padding-left: 18px;
}

.side-note li {
  margin-block: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  padding: clamp(25px, 3vw, 40px);
  background: var(--paper-light);
}

.steps article > span {
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: 2.5rem;
}

.steps h3 {
  margin-top: 35px;
  font-size: 1.15rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.city-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line-dark);
}

.city-links a {
  color: var(--ink);
}

/* Footer */
.site-footer {
  padding-top: clamp(48px, 5vw, 76px);
  color: var(--white);
  background: #0f0e0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 44px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer small {
  color: #9e9890;
}

.footer-about > p {
  max-width: 440px;
  color: #b9b2aa;
  font-size: 0.84rem;
}

.footer-about .disclaimer {
  color: #807a73;
  font-size: 0.7rem;
}

.footer-grid > nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > nav strong {
  margin-bottom: 10px;
  color: #ff6577;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > nav a {
  color: #c9c3bc;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-grid > nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #302d29;
  color: #817b75;
  font-size: 0.68rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Dialogs: search, lightbox and video */
dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgb(10 9 8 / 78%);
  backdrop-filter: blur(5px);
}

.search-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: min(78vh, 760px);
  margin: 8vh auto auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper-light);
  box-shadow: 0 32px 100px rgb(0 0 0 / 42%);
}

.search-dialog[open] {
  animation: dialog-in 180ms ease-out both;
}

.search-dialog__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: end;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--white);
  background: var(--ink);
}

.search-dialog__head label > span {
  display: block;
  margin-bottom: 9px;
  color: #ff8190;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-dialog__head button,
.lightbox > button {
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.4rem;
}

.search-dialog__head button:hover,
.lightbox > button:hover {
  border-color: var(--red);
  background: var(--red);
}

.search-results {
  max-height: 52vh;
  padding: 12px clamp(22px, 4vw, 38px) 28px;
  overflow-y: auto;
}

.search-results > p {
  color: var(--muted);
}

.search-results > a,
.search-results article,
.search-results li {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  list-style: none;
}

.search-results > a:hover strong,
.search-results article a:hover {
  color: var(--red);
}

.search-results strong {
  font-family: var(--font-editorial);
  font-size: 1.28rem;
  line-height: 1.15;
}

.search-results span,
.search-results small,
.search-results p {
  color: var(--muted);
  font-size: 0.77rem;
}

.lightbox {
  position: relative;
  width: min(1180px, calc(100% - 24px));
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--white);
  background: #080706;
  box-shadow: 0 30px 100px rgb(0 0 0 / 55%);
}

.lightbox[open] {
  display: grid;
  place-items: center;
  animation: dialog-in 180ms ease-out both;
}

.lightbox > button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  background: rgb(0 0 0 / 55%);
}

.lightbox img,
.lightbox iframe {
  width: 100%;
  max-height: calc(94vh - 56px);
  object-fit: contain;
}

.lightbox iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.lightbox > p {
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  color: #c3bdb6;
  font-size: 0.76rem;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 404 */
.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding-block: 70px;
  text-align: center;
}

.not-found .container {
  max-width: 880px;
}

.error-code {
  margin: 0;
  color: var(--red);
  font-family: var(--font-editorial);
  font-size: clamp(7rem, 24vw, 18rem);
  line-height: 0.7;
}

.not-found h1 {
  margin-top: 35px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

.not-found .button-row {
  justify-content: center;
}

/* Responsive */
@media (max-width: 1160px) {
  :root {
    --header-offset: 111px;
  }

  .header-row {
    gap: 18px;
  }

  .site-nav {
    gap: 13px;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .search-toggle b {
    display: none;
  }

  .story-layout,
  .model-story {
    grid-template-columns: 205px minmax(0, 1fr);
  }

  .prose {
    grid-column: 2;
  }

  .model-grid > .model-card:nth-child(n),
  .model-card {
    grid-column: span 6;
  }

  .story-card,
  .story-grid > .story-card:nth-child(n) {
    grid-column: span 6;
  }

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

  .dealer-list {
    grid-template-columns: 1fr;
  }

  .city-directory {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1050px) {
  .cover-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .cover-main {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .cover-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .cover-news:first-child {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --header-offset: 110px;
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .brand {
    grid-column: 1;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .search-toggle {
    grid-column: 3;
    grid-row: 1;
    padding-left: 5px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 72px);
    padding: 10px var(--gutter) 28px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--ink);
    background: var(--paper-light);
    box-shadow: var(--shadow);
  }

  .menu-toggle[aria-expanded="true"] + .site-nav,
  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .newsline .container {
    overflow-x: auto;
  }

  .cover-intro,
  .cover-grid,
  .city-hero__grid,
  .model-hero__grid,
  .dealer-promo,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .cover-intro {
    gap: 16px;
  }

  .cover-intro__copy {
    max-width: 680px;
    padding-left: 0;
    border-left: 0;
  }

  .city-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .city-hero__stats > div {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 5px;
    padding: 14px 12px;
  }

  .cover-grid {
    height: auto;
    min-height: 0;
  }

  .cover-main {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .cover-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .cover-news:first-child {
    border-right: 1px solid var(--line);
  }

  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-bar > div:nth-child(2) {
    border-right: 0;
  }

  .stat-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .story-layout,
  .model-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-aside,
  .prose {
    grid-column: 1;
  }

  .story-aside {
    display: contents;
  }

  .toc {
    position: relative;
    top: auto;
    order: -1;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 8px;
  }

  .toc strong {
    grid-column: 1 / -1;
  }

  .toc a {
    padding-right: 16px;
  }

  .story-aside .ad-slot {
    display: none;
  }

  .model-hero__copy {
    padding-bottom: 0;
  }

  .model-hero__media,
  .model-hero__media img {
    min-height: 0;
  }

  .model-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .fact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .split-feature > div:first-child,
  .dealer-layout > aside {
    position: static;
  }

  .dealer-layout {
    grid-template-columns: 1fr;
  }

  .dealer-layout > aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .dealer-layout > aside .ad-slot,
  .side-note {
    min-height: 100%;
    margin: 0;
  }

  .city-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .prose--video {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 18px;
    --header-offset: 106px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .story-head h1,
  .collection-head h1,
  .city-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .model-hero__copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section {
    padding-block: 32px 44px;
  }

  .cover-intro h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .cover-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cover-main__overlay {
    grid-template-columns: 1fr auto;
    padding: 13px 16px;
  }

  .cover-main__overlay span {
    display: none;
  }

  .cover-side {
    grid-template-columns: 1fr;
  }

  .cover-news:first-child {
    border-right: 0;
  }

  .stat-bar > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
  }

  .model-grid > .model-card:nth-child(n),
  .model-card,
  .story-card,
  .story-grid > .story-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .model-card__body {
    padding: 22px;
  }

  .story-grid > .story-card:nth-child(n) .story-card__media img {
    aspect-ratio: 16 / 10;
  }

  .ad-slot {
    min-height: 150px;
    flex-direction: column;
  }

  .story-head,
  .collection-head,
  .city-hero {
    padding-block: 30px 42px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .story-cover {
    width: 100%;
    margin-top: 0;
  }

  .story-cover > p {
    padding-inline: var(--gutter);
  }

  .story-layout {
    padding-block: 38px 56px;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .topic-links li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .prose {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  .prose h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .prose table,
  .spec-table {
    display: block;
    max-width: calc(100vw - (var(--gutter) * 2));
    overflow-x: auto;
    white-space: normal;
  }

  .prose th,
  .prose td {
    min-width: 145px;
  }

  .toc {
    display: block;
    overflow: visible;
  }

  .toc strong,
  .toc a {
    display: block;
  }

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

  .fact-strip > div,
  .fact-strip > div:nth-child(n) {
    display: grid;
    grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
    align-items: baseline;
    gap: 15px;
    border-right: 0;
  }

  .fact-strip dd {
    text-align: right;
  }

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

  .photo-tile,
  .photo-tile:first-child,
  .photo-tile--1:nth-child(odd),
  .photo-tile--2:nth-child(even) {
    grid-column: 1 / -1;
  }

  .photo-tile img,
  .photo-tile:first-child img,
  .photo-tile--1:nth-child(odd) img {
    aspect-ratio: 16 / 10;
  }

  .photo-tile a[data-lightbox] > span {
    opacity: 1;
    transform: none;
  }

  .dealer-promo {
    gap: 30px;
  }

  .city-jump > div {
    grid-template-columns: 1fr;
  }

  .city-jump button {
    min-height: 50px;
  }

  .city-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-hero__stats > div {
    padding: 14px 10px;
  }

  .city-hero__stats strong {
    font-size: 2rem;
  }

  .alphabet > section {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .alphabet > section > h2 {
    font-size: 2.3rem;
  }

  .city-directory {
    grid-template-columns: 1fr;
  }

  .dealer-layout > aside {
    grid-template-columns: 1fr;
  }

  .dealer-layout > aside .ad-slot {
    min-height: 170px;
  }

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

  .city-links {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .search-dialog {
    width: 100%;
    max-height: 88vh;
    margin: 0;
  }

  .search-dialog__head {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 18px;
  }

  .search-dialog__head button {
    width: 42px;
    height: 42px;
  }

  .search-results {
    max-height: 62vh;
    padding-inline: 18px;
  }

  .lightbox {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand-glyph {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .header-row {
    gap: 7px;
  }

  .menu-toggle,
  .search-toggle {
    width: 40px;
  }

  .search-toggle span {
    width: 17px;
    height: 17px;
  }

  .cover-main {
    min-height: 0;
  }

  .stat-bar > div {
    min-height: 78px;
  }

  .stat-bar strong {
    font-size: 2rem;
  }

  .mini-specs > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mini-specs dd {
    text-align: left;
  }

  .article-meta {
    display: grid;
  }

  .city-hero__stats {
    grid-template-columns: 1fr;
  }

  .city-hero__stats > div {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .alphabet > section {
    grid-template-columns: 1fr;
  }

  .alphabet > section > h2 {
    position: static;
  }

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

  .footer-grid > nav:last-child,
  .footer-about {
    grid-column: auto;
  }

  .button-row {
    display: grid;
  }
}

/* Reduced motion and print */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 15mm;
  }

  :root {
    --paper: #fff;
    --paper-light: #fff;
    --paper-deep: #f2f2f2;
    --ink: #000;
    --ink-soft: #111;
    --muted: #444;
    --line: #aaa;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    color: #000;
    background: #fff !important;
    font-size: 10.5pt;
  }

  .site-header,
  .site-footer,
  .reading-progress,
  .skip-link,
  .ad-slot,
  .story-aside,
  .related,
  .filter-row,
  .print-button,
  .search-dialog,
  .lightbox,
  .video-grid,
  .photo-grid,
  .button-row,
  .section-heading > a {
    display: none !important;
  }

  .container {
    width: 100%;
    max-width: none;
  }

  main,
  .section,
  .story-head,
  .collection-head,
  .city-hero,
  .story-layout,
  .model-hero {
    padding: 0 !important;
    border: 0;
  }

  h1 {
    font-size: 30pt;
    line-height: 1;
  }

  h2 {
    font-size: 20pt;
  }

  h3 {
    font-size: 13pt;
  }

  a {
    color: #000 !important;
    text-decoration: none;
  }

  .prose a[href^="http"]::after,
  .sources a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    overflow-wrap: anywhere;
  }

  .story-layout,
  .model-story,
  .dealer-layout {
    display: block;
  }

  .prose {
    width: 100%;
    max-width: none;
    font-size: 10.5pt;
    line-height: 1.5;
  }

  .prose h2 {
    margin-top: 12mm;
    padding-top: 3mm;
    border-top: 1pt solid #000;
    break-after: avoid;
  }

  .prose p,
  .prose li,
  .dealer-card {
    orphans: 3;
    widows: 3;
  }

  .prose table,
  .spec-table,
  .compare-table {
    display: table;
    width: 100%;
    break-inside: avoid;
    font-size: 8.5pt;
  }

  .model-hero__grid {
    display: block;
  }

  .model-hero__media,
  .story-cover {
    max-width: 150mm;
    margin: 8mm auto;
  }

  .fact-strip {
    grid-template-columns: repeat(4, 1fr);
    break-inside: avoid;
  }

  .dealer-list {
    display: block;
  }

  .dealer-card {
    margin-bottom: 6mm;
    padding: 5mm;
    border: 1pt solid #888;
    page-break-inside: avoid;
  }

  .dealer-card a[href^="tel:"]::after {
    content: none;
  }

  .city-hero__stats,
  .steps,
  .city-links {
    break-inside: avoid;
  }
}
