.motors-site {
  background: var(--paper);
}

.motor-header nav a[aria-current="page"] {
  color: var(--orange-light);
}

.motor-header nav a[aria-current="page"]:after {
  right: 0;
}

.motor-hero,
.motor-product-hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - 86px);
  background: var(--deep);
}

.motor-hero__copy,
.motor-product-hero__copy {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 8vw, 126px) clamp(42px, 6vw, 92px) clamp(80px, 8vw, 126px) max(4.5vw, calc(50vw - 660px));
  color: var(--white);
}

.motor-eyebrow,
.motor-section-heading > p,
.motor-overview header > p,
.motor-specs__copy > p,
.motor-related header > p,
.motor-contact__copy > p {
  margin-bottom: 16px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.motor-hero h1,
.motor-product-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.motor-product-hero h1 {
  font-size: clamp(56px, 6.2vw, 92px);
}

.motor-hero__copy > p,
.motor-product-hero__copy > p {
  max-width: 620px;
  margin-bottom: 35px;
  color: #e9dfcc;
  font-size: 17px;
  line-height: 1.75;
}

.motor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.motor-hero__media,
.motor-product-hero__media {
  display: grid;
  position: relative;
  place-items: center;
  min-width: 0;
  margin: 0;
  padding: clamp(28px, 4vw, 68px);
  overflow: hidden;
  background: #fff;
}

.motor-hero__media:before,
.motor-product-hero__media:before {
  position: absolute;
  inset: clamp(20px, 3vw, 48px);
  border: 1px solid #d9d4c9;
  content: "";
  pointer-events: none;
}

.motor-hero__media img,
.motor-product-hero__media img {
  width: min(100%, 760px);
  height: min(100%, 760px);
  object-fit: contain;
}

.motor-hero__media figcaption,
.motor-product-hero__media figcaption {
  position: absolute;
  right: clamp(34px, 5vw, 76px);
  bottom: clamp(30px, 4vw, 62px);
  color: #6a6d68;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motor-stats,
.motor-product-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-inline: max(4.5vw, calc(50vw - 660px));
  color: var(--white);
  background: var(--deep-2);
}

.motor-stats div,
.motor-product-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 148px;
  padding: 26px clamp(18px, 2.4vw, 38px);
  border-right: 1px solid #f17a3752;
}

.motor-stats div:last-child,
.motor-product-stats div:last-child {
  border-right: 0;
}

.motor-stats dt,
.motor-product-stats dt {
  order: 2;
  color: #a9beb5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motor-stats dd,
.motor-product-stats dd {
  order: 1;
  margin: 0 0 9px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1;
}

.motor-catalog {
  padding-block: clamp(82px, 10vw, 132px);
}

.motor-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--orange);
}

.motor-section-heading h2,
.motor-overview h2,
.motor-specs h2,
.motor-related h2,
.motor-contact h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.motor-section-heading > span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.motor-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.motor-filter button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.motor-filter button:hover,
.motor-filter button:focus-visible,
.motor-filter button.is-active {
  border-color: var(--deep);
  color: var(--white);
  background: var(--deep);
}

.motor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 32px);
}

.motor-card {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper-light);
  flex-direction: column;
}

.motor-card[hidden] {
  display: none;
}

.motor-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.motor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.42s ease;
}

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

.motor-card__media span {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 42px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.motor-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 25px 27px;
}

.motor-card__copy > p {
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motor-card h3 {
  margin-bottom: 19px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(29px, 2.7vw, 39px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.motor-card__facts {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
}

.motor-card__facts div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.motor-card__facts dt {
  color: var(--muted);
  font-size: 11px;
}

.motor-card__facts dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.motor-card .product-cta {
  width: 100%;
  margin-top: auto;
}

.motor-confidence {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  padding-block: clamp(78px, 9vw, 120px);
  color: var(--white);
  background: var(--deep);
}

.motor-confidence__heading {
  padding-left: max(4.5vw, calc(50vw - 660px));
}

.motor-confidence__heading p {
  margin-bottom: 15px;
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.motor-confidence h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.motor-confidence__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-right: max(4.5vw, calc(50vw - 660px));
}

.motor-confidence__list article {
  min-height: 180px;
  padding: 28px;
  border-bottom: 1px solid #f17a3752;
  border-left: 1px solid #f17a3752;
}

.motor-confidence__list b {
  display: block;
  margin-bottom: 28px;
  color: var(--orange-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.motor-confidence__list h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.motor-confidence__list p {
  margin: 0;
  color: #afc1b9;
  font-size: 13px;
  line-height: 1.65;
}

.motor-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  margin-bottom: 40px;
  color: #b9c9c1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motor-breadcrumb span {
  color: var(--orange-light);
}

.motor-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(50px, 10vw, 145px);
  padding-block: clamp(84px, 10vw, 132px);
}

.motor-overview > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.motor-specs {
  padding-block: clamp(84px, 9vw, 124px);
  background: var(--paper-light);
}

.motor-specs__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  gap: clamp(52px, 9vw, 125px);
}

.motor-specs h2 {
  margin-bottom: 38px;
}

.motor-spec-table {
  margin: 0;
  border-top: 1px solid var(--orange);
}

.motor-spec-table div {
  display: grid;
  grid-template-columns: minmax(145px, 0.7fr) 1fr;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.motor-spec-table dt {
  color: var(--muted);
  font-size: 13px;
}

.motor-spec-table dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.motor-config-note {
  align-self: start;
  padding: 34px;
  border-left: 3px solid var(--orange);
  color: var(--white);
  background: var(--deep);
}

.motor-config-note span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motor-config-note h3 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
}

.motor-config-note p {
  margin: 0 0 24px;
  color: #b9cac2;
  font-size: 14px;
  line-height: 1.72;
}

.motor-related {
  padding-block: clamp(82px, 9vw, 118px);
}

.motor-related header {
  margin-bottom: 42px;
}

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

.motor-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
  padding-block: clamp(84px, 9vw, 120px);
  scroll-margin-top: 86px;
}

.motor-contact__copy > span {
  display: block;
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.72;
}

.motor-contact__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 38px;
}

.motor-contact__links a {
  color: var(--orange);
  border-bottom: 1px solid;
  font-size: 14px;
  font-weight: 700;
}

.motor-form-shell {
  min-height: 560px;
  padding-left: clamp(30px, 5vw, 72px);
  border-left: 1px solid var(--orange);
}

.motor-form-shell iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #fff;
}

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

.motor-footer-note {
  color: #90a69c;
  max-width: 340px;
  margin: 25px 0 0;
  line-height: 1.7;
}

.motor-footer .footer-markets a {
  color: var(--white);
}

.motor-footer .footer-markets a:hover,
.motor-footer .footer-markets a:focus-visible {
  color: var(--orange-light);
}

.motor-whatsapp {
  z-index: 40;
  display: grid;
  position: fixed;
  right: 22px;
  bottom: 22px;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: #1ca75b;
  box-shadow: 0 12px 32px #00000040;
  transition: transform 0.2s;
}

.motor-whatsapp:hover,
.motor-whatsapp:focus-visible {
  transform: translateY(-3px);
}

.motor-whatsapp svg {
  width: 23px;
  height: 23px;
}

@media (width <= 1120px) {
  .motor-hero,
  .motor-product-hero {
    grid-template-columns: minmax(390px, 0.92fr) 1.08fr;
  }

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

  .motor-confidence {
    grid-template-columns: 0.62fr 1fr;
  }
}

@media (width <= 860px) {
  .motor-header nav a[aria-current="page"] {
    border-bottom-color: var(--orange-light);
  }

  .motor-hero,
  .motor-product-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .motor-hero__copy,
  .motor-product-hero__copy {
    min-height: 580px;
    padding: 76px 24px 84px;
  }

  .motor-hero__media,
  .motor-product-hero__media {
    min-height: 620px;
  }

  .motor-stats,
  .motor-product-stats {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 24px;
  }

  .motor-stats div:nth-child(2),
  .motor-product-stats div:nth-child(2) {
    border-right: 0;
  }

  .motor-stats div:nth-child(-n + 2),
  .motor-product-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid #f17a3752;
  }

  .motor-section-heading,
  .motor-overview,
  .motor-specs__inner,
  .motor-contact {
    grid-template-columns: 1fr;
  }

  .motor-section-heading {
    align-items: start;
    gap: 24px;
  }

  .motor-confidence {
    grid-template-columns: 1fr;
  }

  .motor-confidence__heading {
    padding-inline: 24px;
  }

  .motor-confidence__list {
    padding: 0 24px;
  }

  .motor-overview {
    gap: 35px;
  }

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

  .motor-form-shell {
    padding: 42px 0 0;
    border-top: 1px solid var(--orange);
    border-left: 0;
  }

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

  .motor-footer .footer-markets {
    display: none;
  }
}

@media (width <= 600px) {
  .motor-hero__copy,
  .motor-product-hero__copy {
    min-height: 530px;
    padding-top: 65px;
  }

  .motor-hero h1,
  .motor-product-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .motor-actions {
    display: grid;
    gap: 20px;
  }

  .motor-actions .button {
    width: 100%;
  }

  .motor-hero__media,
  .motor-product-hero__media {
    min-height: 390px;
    padding: 20px;
  }

  .motor-hero__media:before,
  .motor-product-hero__media:before {
    inset: 18px;
  }

  .motor-hero__media figcaption,
  .motor-product-hero__media figcaption {
    right: 30px;
    bottom: 27px;
  }

  .motor-stats,
  .motor-product-stats {
    padding-inline: 18px;
  }

  .motor-stats div,
  .motor-product-stats div {
    min-height: 122px;
    padding: 22px 14px;
  }

  .motor-stats dd,
  .motor-product-stats dd {
    font-size: 29px;
  }

  .motor-grid,
  .motor-related .motor-grid {
    grid-template-columns: 1fr;
  }

  .motor-section-heading h2,
  .motor-overview h2,
  .motor-specs h2,
  .motor-related h2,
  .motor-contact h2 {
    font-size: 42px;
  }

  .motor-confidence__list {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .motor-confidence__list article {
    min-height: 0;
    border-right: 1px solid #f17a3752;
  }

  .motor-overview > p {
    font-size: 16px;
  }

  .motor-spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .motor-contact {
    padding-block: 78px;
  }

  .motor-form-shell,
  .motor-form-shell iframe {
    min-height: 620px;
  }

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

  .motor-footer .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .motor-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motor-card__media img,
  .motor-whatsapp {
    transition: none;
  }
}
