* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: #f4f2f0;
  color: #171717;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}
header,
main,
footer {
  max-width: 1180px;
  margin: auto;
  padding: 0 32px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 112px;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid #777e0b;
  outline-offset: 5px;
}
header > a:last-child {
  font-size: 13px;
}
.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.logo small {
  display: block;
  letter-spacing: 1.6px;
  font-size: 8px;
  margin-top: 8px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.intro {
  padding: 60px 0 52px;
  max-width: 840px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #555b43;
}
h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -3px;
  margin: 20px 0 24px;
}
p {
  color: #51564a;
  font-size: 15px;
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  font-size: 13px;
}
.button {
  background: #171717;
  color: #fff;
  padding: 15px 21px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid #d7d8cc;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 0 48px;
  gap: 20px;
}
.facts article {
  border-bottom: 1px solid #d2d6c7;
  padding: 15px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.facts b {
  font-size: 36px;
  letter-spacing: -2px;
}
.facts span {
  font-size: 12px;
  color: #586147;
}
h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.3px;
  margin: 15px 0 28px;
}
.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.asset-grid article {
  background: #fffefa;
  border: 1px solid #d9d9d0;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 0 23px;
}
.asset-grid article > img,
.wordmark-preview {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #e9eade;
}
.wordmark-preview {
  display: grid;
  place-items: center;
  padding: 25px;
}
.wordmark-preview img {
  width: 100%;
  height: auto;
}
.asset-grid h3 {
  font-size: 19px;
  margin: 22px 22px 7px;
}
.asset-grid p {
  font-size: 13px;
  margin: 0 22px 16px;
}
.asset-grid article > div:last-child {
  display: flex;
  gap: 22px;
  font-size: 12px;
  margin: 0 22px;
}
.identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 70px 0;
  background: #e9ebde;
  border-radius: 22px;
  padding: 38px;
}
.identity h2 {
  font-size: 42px;
}
.swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.swatches > div {
  padding: 20px;
  min-height: 120px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.swatches span {
  font-family: monospace;
  font-size: 12px;
}
.charcoal {
  background: #171717;
  color: #fff;
}
.citrus {
  background: #e4f222;
}
.paper {
  background: #f4f2f0;
}
.coral {
  background: #ff6e4e;
}
.credits {
  padding-bottom: 65px;
}
.credits p {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 14px;
}
.credits > a {
  font-size: 13px;
}
footer {
  border-top: 1px solid #d5d9cc;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 35px;
  font-size: 12px;
}
@media (max-width: 650px) {
  header,
  main,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    height: 95px;
  }
  .logo {
    font-size: 20px;
  }
  .logo small {
    font-size: 6px;
  }
  .logo img {
    width: 32px;
    height: 32px;
  }
  header > a:last-child {
    font-size: 10px;
  }
  .intro {
    padding-top: 30px;
  }
  h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }
  .actions {
    gap: 15px;
    flex-wrap: wrap;
  }
  .facts {
    gap: 13px;
  }
  .facts article {
    flex-direction: column;
    gap: 0;
  }
  .facts span {
    font-size: 10px;
  }
  .asset-grid {
    grid-template-columns: 1fr;
  }
  .identity {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 23px;
    margin: 45px 0;
  }
  .identity h2 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  .swatches > div {
    padding: 15px;
  }
  .credits p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
