:root {
  --ink: #1e1e1e;
  --muted: #62666d;
  --paper: #fff;
  --wash: #f8f8f8;
  --brand: #bc1230;
  --brand-dark: #8f0e24;
  --line: #e6e6e6;
  --shell: min(1280px, calc(100% - 40px));
}

body {
  font-family: "Barlow", "Avenir Next", Arial, sans-serif;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.cta h2,
.detail-aside h2,
.prose h2,
.prose h3,
.card h3,
.hero-stat strong {
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
}

.site-header .brand img {
  width: 180px;
  height: auto;
}

.brand-footer img {
  width: 220px;
  height: auto;
}

.site-nav {
  gap: 18px;
}

.site-nav > a,
.site-nav summary {
  position: relative;
  color: #1e1e1e;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav details {
  position: relative;
}

.site-nav summary {
  cursor: pointer;
  list-style: none;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav summary::after {
  color: var(--brand);
  content: " +";
}

.site-nav details[open] summary::after {
  content: " −";
}

.site-nav details[data-current="true"] summary,
.site-nav > a[aria-current="page"] {
  color: var(--brand);
}

.nav-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  min-width: 285px;
  padding: 14px 18px;
  background: #fff;
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow);
}

.nav-dropdown a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  text-decoration: none;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-group-label {
  padding: 12px 0 4px;
  color: var(--brand);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(122deg, #1e1e1e 0 58%, #bc1230 58%);
}

.hero-highlights {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-highlights article {
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border-left: 3px solid #fff;
  background: rgb(30 30 30 / 22%);
}

.hero-highlights strong {
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
  font-size: .86rem;
}

.hero-highlights span,
.hero-highlights a {
  font-size: .76rem;
}

.hero-highlights a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-intro {
  padding-bottom: 0;
}

.detail-facts .disc-price {
  display: inline;
  margin-left: 8px;
  color: var(--brand);
  font-weight: 800;
}

.detail-facts s {
  color: var(--muted);
}

.site-footer h2 {
  margin: .35em 0 .7em;
  color: #fff;
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer .footer-grid > div:first-child p {
  max-width: 560px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.copyright p {
  margin: 0;
}

@media (max-width: 1180px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .site-nav summary {
    padding: 8px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 4px 0 10px;
    padding: 8px 14px;
    border-top: 1px solid var(--line);
    box-shadow: none;
  }

  .site-nav details[open] .nav-dropdown {
    display: grid;
  }
}

@media (max-width: 760px) {
  .copyright {
    flex-direction: column;
  }

  .hero {
    background: linear-gradient(155deg, #1e1e1e 0 78%, #bc1230 78%);
  }
}

@media (max-width: 620px) {
  .site-nav {
    max-height: calc(100vh - 108px);
    max-height: calc(100dvh - 108px);
  }
}
