:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #121416;
  --muted: #626970;
  --line: #dedbd5;
  --brand: #e7352c;
  --brand-dark: #b92520;
  --brand-text: #b92520;
  --brand-text-on-dark: #ef4b42;
  --max: 76rem;
  --radius: 1rem;
  --font-display: "Bahnschrift SemiCondensed", "Arial Narrow", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-utility: Verdana, Geneva, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-wrap: break-word;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.7rem, 11vw, 8.25rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.65rem);
}

h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

::selection {
  background: var(--brand);
  color: #ffffff;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--surface {
  background: var(--surface);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.4rem;
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--brand-text);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.product-card--dark .eyebrow {
  color: var(--brand-text-on-dark);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding-block: 0.8rem;
  gap: 0.75rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.45rem;
  text-decoration: none;
}

.brand img {
  width: 6.7rem;
}

.brand span {
  padding-left: 0.5rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 2.75rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 100vw;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-utility);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle__mark {
  position: relative;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: 0.55rem;
}

.nav-toggle__mark::before,
.nav-toggle__mark::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle__mark::before {
  top: 0.2rem;
}

.nav-toggle__mark::after {
  top: 0.62rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__mark::before {
  top: 0.42rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__mark::after {
  top: 0.42rem;
  transform: rotate(-45deg);
}

.site-navigation {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.2rem;
  padding-block: 0.35rem 0.7rem;
}

.site-navigation a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: 0.75rem;
  border-radius: 0.35rem;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation a:hover {
  background: var(--surface);
  color: var(--brand-dark);
}

.site-navigation a[aria-current="page"] {
  background: var(--surface);
  color: var(--brand-dark);
}

.js .nav-toggle {
  display: inline-flex;
}

.js .site-navigation {
  display: none;
}

.js .site-navigation[data-open] {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  gap: 3.5rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 0.3rem solid var(--brand);
}

.hero__lede {
  max-width: 41rem;
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 100vw;
  font-family: var(--font-utility);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--brand);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--brand-dark);
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button--secondary:hover {
  border-color: var(--ink);
}

.hero__visual {
  position: relative;
  min-height: 21rem;
  padding: clamp(1.5rem, 5vw, 3.25rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9e8e3;
}

.hero__rail {
  position: absolute;
  top: 0;
  right: clamp(2rem, 7vw, 5rem);
  left: 0;
  height: 0.3rem;
  background: var(--brand);
}

.hero__rail::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.3rem;
  height: clamp(7rem, 25vw, 12rem);
  background: var(--brand);
  content: "";
}

.hero__visual img {
  width: 100%;
  margin: 3rem auto 1.5rem;
  filter: drop-shadow(0 1.5rem 1.5rem rgb(18 20 22 / 14%));
}

.hero__visual-label {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__visual-label span:last-child {
  color: var(--brand-dark);
}

.hero__model {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.hero__model span {
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(115deg, var(--bg) 0%, var(--bg) 68%, #ece9e2 68%, #ece9e2 100%);
}

.page-intro__inner {
  display: grid;
  gap: 2.5rem;
}

.page-intro h1 {
  max-width: 12ch;
}

.page-intro__support {
  max-width: 39rem;
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 0.3rem solid var(--brand);
}

.page-intro__support > p:first-child {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.page-intro__legal {
  margin-top: 1.35rem;
  color: var(--ink);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-transform: uppercase;
}

.editorial-split {
  display: grid;
  gap: 2.5rem;
}

.editorial-split h2 {
  max-width: 11ch;
}

.editorial-split__copy {
  max-width: 38rem;
}

.editorial-split__copy p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}

.capabilities {
  border-bottom: 1px solid var(--line);
}

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

.capability-card {
  min-height: 16rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.capability-card__index {
  margin-bottom: 3.5rem;
  color: var(--brand-dark);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
}

.capability-card > p:last-child {
  max-width: 28rem;
  color: var(--muted);
}

.registered-strip__inner,
.contact-note__inner {
  display: grid;
  gap: 2.5rem;
}

.registered-strip h2,
.contact-note h2 {
  max-width: 12ch;
}

.registered-strip address {
  font-style: normal;
}

.section--ink .site-footer__label {
  color: #d5d7d8;
}

.registered-strip address > p:last-child {
  color: #d5d7d8;
}

.button--light {
  align-self: start;
  border-color: #5d6265;
  background: #ffffff;
  color: var(--ink);
}

.button--light:hover {
  border-color: #ffffff;
  background: var(--brand);
  color: #ffffff;
}

.product-showcase {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.product-feature {
  display: grid;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.product-feature__media {
  display: grid;
  min-height: 18rem;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: #efeee9;
}

.product-feature__media img {
  width: 100%;
  max-height: 25rem;
  object-fit: contain;
}

.product-feature__media--dark {
  background: #202326;
}

.product-feature__media--power img {
  max-height: 22rem;
}

.product-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.product-feature__copy h2 {
  margin-bottom: 1.2rem;
}

.product-feature__copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}

.product-feature__facts {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.product-feature__facts li {
  position: relative;
  max-width: 32rem;
  padding: 0.55rem 0 0.55rem 1.3rem;
  border-top: 1px solid var(--line);
}

.product-feature__facts li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.product-feature__facts li:last-child {
  border-bottom: 1px solid var(--line);
}

.product-disclaimer {
  max-width: 48rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-left: 0.3rem solid var(--brand);
  background: var(--bg);
}

.product-disclaimer p:last-child {
  font-size: 1.04rem;
}

.contact-details__heading {
  max-width: 39rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-details__heading h2 {
  max-width: 11ch;
}

.contact-details {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-detail {
  min-height: 11rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-detail--identity {
  min-height: 15rem;
}

.contact-detail__label {
  margin-bottom: 1.1rem;
  color: var(--brand-dark);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail h3 {
  max-width: 16ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.03;
}

.contact-detail > p:last-child {
  max-width: 34rem;
  color: var(--muted);
}

.contact-detail a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.28em;
}

.company-overview__inner {
  display: grid;
  gap: 2.5rem;
}

.company-overview h2 {
  max-width: 15ch;
}

.company-overview__copy {
  align-self: end;
  max-width: 38rem;
}

.company-overview__copy > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.55rem;
  color: var(--brand-dark);
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-underline-offset: 0.3em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  gap: 1.5rem;
}

.section-heading h2 {
  max-width: 11ch;
}

.section-heading > p {
  max-width: 35rem;
  align-self: end;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--light > p {
  color: #adb1b4;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 0.25rem;
  background: var(--brand);
  content: "";
}

.product-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  text-decoration: none;
}

.product-card__link:focus-visible {
  outline-offset: -5px;
}

.product-card__media {
  display: grid;
  min-height: 16rem;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  overflow: hidden;
  background: #efeee9;
}

.product-card__media img {
  width: 100%;
  max-height: 20rem;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card__link:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  min-height: 16rem;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

.product-card__body h3 {
  margin-bottom: 1rem;
}

.product-card__body > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.product-card__action {
  margin-top: auto;
  color: var(--brand-dark);
  font-family: var(--font-utility);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.product-card--dark .product-card__media {
  background: #202326;
}

.product-card--dark .product-card__body > p:not(.eyebrow) {
  color: #afb4b7;
}

.product-card--dark .product-card__action {
  color: #ffffff;
}

.product-card--power .product-card__media img {
  max-height: 22rem;
}

.area-grid {
  display: grid;
  border-top: 1px solid #3b3e40;
}

.area-card {
  padding: 2rem 0;
  border-bottom: 1px solid #3b3e40;
}

.area-card__marker {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3rem;
  place-items: center;
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand-text-on-dark);
  font-family: var(--font-utility);
  font-size: 0.7rem;
  font-weight: 700;
}

.area-card h3 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.area-card > p:last-child {
  max-width: 29rem;
  color: #adb1b4;
}

.contact-callout__inner {
  display: grid;
  gap: 3rem;
}

.contact-callout h2 {
  max-width: 12ch;
}

.contact-callout h2 + p {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-callout__actions {
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.contact-action {
  display: flex;
  min-height: 5rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-action:hover {
  border-color: var(--brand);
  transform: translateX(3px);
}

.contact-action span {
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  border-top: 0.3rem solid var(--brand);
  background: #e9e7e2;
}

.site-footer__inner {
  display: grid;
  gap: 3rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.site-footer__brand > p {
  max-width: 34rem;
  color: var(--muted);
}

.site-footer__details {
  display: grid;
  gap: 1.5rem;
}

.site-footer__details p,
.site-footer__details address {
  margin-bottom: 0;
}

.site-footer__details address {
  font-style: normal;
}

.site-footer__details a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-underline-offset: 0.2em;
}

.site-footer__label {
  margin-bottom: 0.35rem !important;
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  border-top: 1px solid #cfcbc4;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--font-utility);
  font-size: 0.64rem;
  letter-spacing: 0.02em;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  text-underline-offset: 0.25em;
}

@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 4rem), var(--max));
  }

  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(1rem);
  }

  .site-header__inner {
    min-height: 5.5rem;
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand img {
    width: 8.3rem;
  }

  .brand span {
    padding-left: 0.7rem;
  }

  .js .nav-toggle,
  .nav-toggle {
    display: none;
  }

  .site-navigation,
  .js .site-navigation {
    display: flex;
    width: auto;
    flex-direction: row;
    padding: 0;
    gap: 0.35rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .page-intro__inner,
  .editorial-split,
  .registered-strip__inner,
  .contact-note__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .page-intro__support {
    justify-self: end;
  }

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

  .capability-card {
    min-height: 20rem;
    padding: 2.25rem;
    border-right: 1px solid var(--line);
  }

  .capability-card:nth-child(2n + 1) {
    padding-left: 0;
  }

  .capability-card:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .product-feature {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.8fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    padding-block: clamp(3rem, 7vw, 6rem);
  }

  .product-feature--reversed {
    grid-template-columns: minmax(19rem, 0.8fr) minmax(0, 1fr);
  }

  .product-feature--reversed .product-feature__media {
    order: 2;
  }

  .product-feature--reversed .product-feature__copy {
    order: 1;
  }

  .product-feature__copy {
    padding-block: 1rem;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 7vw, 7rem);
  }

  .contact-detail--identity {
    grid-column: 1 / -1;
  }

  .hero__copy {
    padding-block: 1.5rem;
  }

  .hero__visual {
    min-height: 31rem;
  }

  .hero__visual img {
    margin-top: 6.5rem;
  }

  .company-overview__inner,
  .section-heading,
  .contact-callout__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

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

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

  .area-card {
    min-height: 26rem;
    padding: 2.25rem;
    border-right: 1px solid #3b3e40;
  }

  .area-card:first-child {
    padding-left: 0;
  }

  .area-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .site-footer__details {
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) and (max-width: 71.99rem) {
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 8.25vw, 4.2rem);
    overflow-wrap: normal;
  }
}

@media (min-width: 72rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(27rem, 0.9fr);
  }

  .hero__visual {
    min-height: 35rem;
  }

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

  .product-card {
    grid-column: span 5;
  }

  .product-card--wide,
  .product-card--power {
    grid-column: span 7;
  }

  .product-card--wide .product-card__media,
  .product-card--power .product-card__media {
    min-height: 22rem;
  }

  .site-footer__inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .site-footer__bottom {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
