@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --black: #080808;
  --white: #f2eeee;
  --red: #d71919;
  --dark-red: #9f1010;
  --gray: #8b7777;
  --border: #3a1717;
  --dark-border: #241010;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.5;
}

a {
  color: inherit;
}

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


/* =========================
   header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  height: 64px;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--black);
  color: #fff;

  border-bottom: 1px solid var(--dark-border);
}

.logo {
  color: var(--red);
  text-decoration: none;

  font-size: 17px;
  font-weight: 600;

  letter-spacing: -1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #765f5f;

  text-decoration: none;

  font-size: 10px;
  text-transform: lowercase;

  transition: color .15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}


/* =========================
   layout
========================= */

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 40px;
}


/* =========================
   hero
========================= */

.hero {
  min-height: 610px;

  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;

  gap: 70px;

  padding: 80px 40px;

  width: min(1200px, 100%);
  margin: auto;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;

  color: var(--red);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;
}

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

  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 900;

  line-height: .9;
  letter-spacing: -4px;
}

h1 {
  margin-bottom: 0;

  font-size: clamp(70px, 10vw, 125px);
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 0;

  font-size: clamp(55px, 7vw, 90px);
}

.intro {
  max-width: 530px;

  margin: 28px 0;

  color: #9a8585;

  font-size: 12px;
}

.actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.button {
  min-height: 40px;
  padding: 0 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--red);
  border: 1px solid var(--red);

  color: #fff;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 9px;
  font-weight: 600;
}

.button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--black);
}

.button.outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.button.outline:hover {
  background: var(--red);
  color: #fff;
}


/* =========================
   board graphic
========================= */

.hero-art {
  height: 390px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  border-left: 1px solid var(--border);
}

.board {
  width: 75px;
  height: 350px;

  position: relative;

  background: var(--red);

  border-radius: 45px;

  transform: rotate(8deg);

  box-shadow: 14px 14px 0 #fff;
}

.board::before,
.board::after {
  content: "";

  position: absolute;
  left: 50%;

  width: 18px;
  height: 42px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: #4a1717;
}

.board::before {
  top: -7px;
}

.board::after {
  bottom: -7px;
}

.hero-label {
  position: absolute;

  top: 10px;
  left: 20px;

  color: var(--red);

  font-size: 9px;
  font-weight: 600;
}


/* =========================
   ticker
========================= */

.ticker {
  min-height: 42px;

  padding: 0 25px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  background: var(--red);
  color: #fff;

  font-size: 9px;
  font-weight: 600;

  text-transform: uppercase;
}

.ticker b {
  font-weight: 400;
}


/* =========================
   page heading
========================= */

.page-head {
  padding: 85px 0 50px;

  border-bottom: 1px solid var(--border);
}

.page-number {
  margin: 0 0 12px;

  color: var(--red);

  font-size: 10px;
  font-weight: 600;
}

.page-head h1 {
  margin-bottom: 25px;
}

.page-head > p:last-child {
  max-width: 560px;

  margin: 0;

  color: #9a8585;

  font-size: 11px;
}


/* =========================
   sections
========================= */

.section {
  padding: 75px 0;
}

.section.dark {
  background: #050505;
  color: #fff;
}

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

.section-title {
  margin-bottom: 38px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}

.section-title > p {
  max-width: 320px;

  margin: 0;

  color: var(--gray);

  font-size: 9px;
}

.dark .section-title > p {
  color: #765f5f;
}


/* =========================
   buttons
========================= */

.filter {
  min-height: 34px;

  padding: 0 12px;

  display: inline-flex;
  align-items: center;

  background: transparent;

  border: 1px solid var(--red);

  color: var(--red);

  text-decoration: none;
  text-transform: uppercase;

  font-size: 8px;
  font-weight: 600;
}

.filter:hover,
.filter.active {
  background: var(--red);
  color: #fff;
}


/* =========================
   home cards
========================= */

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.home-card {
  min-height: 220px;

  padding: 25px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  text-decoration: none;
}

.home-card span {
  color: var(--red);

  font-size: 9px;
}

.home-card strong {
  font-family: "Archivo Black", Impact, sans-serif;

  font-size: 35px;
  letter-spacing: -2px;

  text-transform: lowercase;
}

.home-card small {
  color: #765f5f;

  font-size: 9px;
  text-transform: uppercase;
}

.home-card:hover {
  background: var(--red);
  color: #fff;
}

.home-card:hover small,
.home-card:hover span {
  color: #fff;
}


/* =========================
   brand grid
========================= */

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

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.card {
  min-height: 260px;

  padding: 22px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card small {
  color: var(--red);

  font-size: 8px;

  text-transform: uppercase;
}

.card h3 {
  margin: 45px 0 10px;

  font-size: 28px;

  text-transform: lowercase;
}

.card p {
  margin: 0 0 20px;

  color: #9a8585;

  font-size: 10px;
}

.card-button {
  align-self: flex-start;

  margin-top: auto;

  min-height: 33px;

  padding: 0 11px;

  display: inline-flex;
  align-items: center;

  background: var(--red);
  border: 1px solid var(--red);

  color: #fff;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 8px;
  font-weight: 600;
}

.card-button:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}


/* =========================
   parks
========================= */

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

.list-item {
  display: grid;
  grid-template-columns: 55px 1fr auto;

  align-items: center;

  gap: 20px;

  padding: 23px 0;

  border-bottom: 1px solid var(--dark-border);
}

.list-item .num {
  color: var(--red);

  font-size: 9px;
}

.list-item h3 {
  margin: 0;

  font-size: 23px;

  text-transform: lowercase;
}

.list-item p {
  margin: 4px 0 0;

  color: #765f5f;

  font-size: 9px;
}

.dark .card-button {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.dark .card-button:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}


/* =========================
   tricks
========================= */

.tricks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

  margin-top: 30px;
}

.trick {
  min-height: 150px;

  padding: 21px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trick b {
  font-family: "Archivo Black", Impact, sans-serif;

  font-size: 19px;
  letter-spacing: -1px;

  text-transform: lowercase;
}

.trick span {
  color: #765f5f;

  font-size: 9px;
}


/* =========================
   resources
========================= */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #241010;
}

.resource-card {
  min-height: 180px;

  padding: 25px;

  display: grid;
  grid-template-columns: 45px 1fr;

  text-decoration: none;

  border-bottom: 1px solid #241010;
}

.resource-card span {
  grid-row: 1 / 3;

  color: var(--red);

  font-size: 9px;
}

.resource-card strong {
  font-family: "Archivo Black", Impact, sans-serif;

  font-size: 24px;
  letter-spacing: -1px;

  text-transform: lowercase;
}

.resource-card small {
  font-size: 9px;
}

.resource-card:hover {
  background: var(--red);
  color: #fff;
}


/* =========================
   quote
========================= */

.quote {
  max-width: 800px;

  display: flex;
  gap: 25px;

  padding-top: 20px;
}

.quote span {
  color: var(--red);

  font-family: Georgia, serif;

  font-size: 80px;

  line-height: .5;
}

.quote p {
  margin: 0;

  font-family: "Archivo Black", Impact, sans-serif;

  font-size: clamp(25px, 4vw, 45px);

  line-height: 1;

  letter-spacing: -2px;
}


/* =========================
   footer
========================= */

footer {
  min-height: 65px;

  padding: 20px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  background: #050505;
  color: #765f5f;

  font-size: 8px;

  text-transform: uppercase;
}

footer a {
  color: var(--red);

  text-decoration: none;
}

footer a:hover {
  color: #fff;
}


/* =========================
   tablet
========================= */

@media (max-width: 850px) {

  .container {
    padding: 0 25px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 75px 25px;
  }

  .hero-art {
    display: none;
  }

  .section-title {
    display: block;
  }

  .section-title > p {
    margin-top: 15px;
  }

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

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

}


/* =========================
   mobile
========================= */

@media (max-width: 560px) {

  .site-header {
    height: 58px;

    padding: 0 18px;
  }

  .logo {
    font-size: 14px;
  }

  .main-nav {
    gap: 9px;
  }

  .main-nav a {
    font-size: 8px;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 65px 18px;
  }

  h1 {
    font-size: 60px;

    letter-spacing: -3px;
  }

  .page-head {
    padding: 65px 0 40px;
  }

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 54px;
  }

  .home-grid,
  .grid,
  .tricks,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 230px;
  }

  .list-item {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .list-item .card-button {
    grid-column: 2;
    width: max-content;
  }

  .ticker {
    justify-content: flex-start;

    gap: 18px;

    overflow-x: auto;
    white-space: nowrap;
  }

  footer {
    padding: 20px;

    flex-direction: column;
    align-items: flex-start;
  }

}
