* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  color: #162542;
  background-color: #ffffff;
  line-height: 1.6;
  width: 96%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 70rem;
  margin-inline: auto;
}

.upper {
  width: 96vw;
  margin-inline: auto;
}

.btn {
  padding: 0.9em 1.6em;
  font-weight: 700;
  font-size: 1em;
  border-radius: 0.5em;
  cursor: pointer;
  letter-spacing: 0.08em;
  border: none;
}

.btnPrimary {
  background-color: #f16718;
  color: #ffffff;
}

.btnSecondary {
  background-color: #e8eff2;
  color: #162542;
  white-space: nowrap;
}

.header {
  display: flex;
  align-items: center;
  height: 4.5em;
}

.headerInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: clamp(1.8rem, 2.5vw, 2.4rem);
}

.intro {
  margin-top: 6vh;
  display: grid;
  grid-template-columns: 42% 54%;
  gap: 4%;
  align-items: center;
}

.introText h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.introText p {
  margin-block: 2em 2.5em;
  max-width: 90%;
  color: #7b8bad;
}

.introActions {
  display: flex;
  align-items: center;
  gap: 2em;
}

.release {
  font-size: 0.9em;
  font-weight: 700;
  color: #7b8bad;
}

.introImage img {
  border-radius: 1.2em;
}

.gallery {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2em;
  margin-block: 8vh;
  align-items: stretch;
}

.galleryImages {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2em;
  margin-block: 1vh;
  align-items: stretch;
}

.gallery > div {
  height: 100%;
}

.galleryImageSmall,
.galleryImageLarge {
  border-radius: 1.2em;
  overflow: hidden;
}

.galleryImageSmall img,
.galleryImageLarge img {
  height: 100%;
  object-fit: cover;
}

.galleryText {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.galleryText h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
}

.galleryText p {
  margin-top: 2em;
  max-width: 90%;
  color: #7b8bad;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  margin-bottom: 4vh;
}

.feature img {
  width: 2.5em;
  margin-bottom: 2em;
}

.feature h3 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 1.5em;
  letter-spacing: 0.08em;
  line-height: 1.1;
  font-weight: 900;
}

.feature p {
  font-size: 0.95em;
  color: #7b8bad;
}

.footer {
  text-align: center;
  padding-block: 1.5vh;
  font-size: 0.95em;
  color: #7b8bad;
}

@media (max-width: 37.5em) {
  .headerInner {
    justify-content: space-between;
  }

  .btnSecondary {
    font-size: 0.85em;
    padding: 0.7em 1.2em;
  }

  .intro {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3em;
  }

  .introText p {
    margin-inline: auto;
  }

  .introActions {
    flex-direction: row;
    align-items: center;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
  }

  .introActions .btnPrimary {
    width: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 2em;
    margin-block: 6vh;
  }

  .galleryText {
    text-align: center;
  }

  .galleryText p {
    margin-inline: auto;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 3em;
    text-align: center;
  }

  .feature img {
    margin-inline: auto;
  }

  .feature p {
    margin-inline: auto;
    max-width: 85%;
  }
}

@media (max-width: 75em) and (min-width: 37.5em) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }

  .introActions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2em;
  }

  .btnPrimary {
    white-space: nowrap;
    flex-shrink: 1;
  }
  .release {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
