:root {
  --bg: #19110d;
  --fg: #fffaf0;
  --yellow: #f4bd2f;
  --red: #8f2029;
  --green: #dc861d;
  --sans: "Nunito Sans", sans-serif;
}
body {
  overflow-x: hidden;
}
.hero {
  min-height: calc(100svh - 34px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr auto;
  position: relative;
}
.media {
  position: relative;
  grid-row: 1/3;
  min-height: 760px;
  overflow: hidden;
}
.media:after {
  content: "";
  position: absolute;
  inset: auto -10% 8% -10%;
  height: 80px;
  background: var(--red);
  transform: rotate(-6deg);
}
header {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  padding: 26px var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.logo,
nav {
  pointer-events: auto;
}
.logo {
  font: 34px/0.78 "Archivo Black";
  color: var(--yellow);
  transform: rotate(-4deg);
}
nav {
  display: flex;
  gap: 24px;
  font-weight: 800;
}
.yellow {
  padding: 140px 7vw 70px;
  background: var(--yellow);
  color: #19110d;
}
.yellow > span {
  font-size: 11px;
  font-weight: 800;
}
.yellow h1 {
  margin: 25px 0 0;
  font: clamp(56px, 6.2vw, 105px) / 0.81 "Archivo Black";
  letter-spacing: -0.065em;
}
.red {
  position: absolute;
  z-index: 6;
  right: 4vw;
  bottom: 15%;
  width: 180px;
  aspect-ratio: 1;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(8deg);
  text-align: center;
  color: #fff;
}
.red strong {
  font: 64px/1 "Archivo Black";
}
.red span {
  max-width: 110px;
  font-size: 11px;
}
.green {
  padding: 25px 7vw;
  background: var(--green);
  font-weight: 800;
}
.about {
  padding: 130px var(--page-pad);
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 7vw;
  align-items: start;
  background: #fffaf0;
  color: #19110d;
}
.sticker {
  width: 190px;
  height: 120px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font: 52px "Archivo Black";
  transform: rotate(-8deg);
}
.about h2,
.type h2 {
  margin: 0;
  font: clamp(48px, 7vw, 108px) / 0.88 "Archivo Black";
  letter-spacing: -0.055em;
}
.about p {
  max-width: 660px;
  margin: 38px 0 0;
  font-size: 18px;
  line-height: 1.7;
}
.day {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.day figure {
  margin: 0;
  min-height: 700px;
}
.day img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.day figcaption {
  padding: 8px;
  font-size: 9px;
}
.type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  background: var(--red);
}
.type > span {
  font-weight: 800;
}
.type h2 {
  margin-top: 30px;
}
.contact {
  padding: 100px var(--page-pad);
  background: var(--yellow);
  color: #19110d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact p {
  font-weight: 800;
}
.contact > .phone-cta {
  font: clamp(48px, 9vw, 96px) / 1 "Archivo Black";
  letter-spacing: -0.04em;
  border-bottom: 8px solid var(--red);
}
.contact .map-link:hover {
  background: #19110d;
  color: var(--yellow);
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 24px var(--page-pad);
  background: #fffaf0;
  color: #19110d;
}
@media (max-width: 820px) {
  .hero {
    display: block;
  }
  .media {
    min-height: 68svh;
  }
  .yellow {
    padding-top: 70px;
  }
  .red {
    bottom: 29%;
    width: 135px;
  }
  .green {
    padding-left: var(--page-pad);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .sticker {
    width: 145px;
    height: 90px;
  }
  .day {
    grid-template-columns: 1fr;
  }
  .day figure {
    min-height: 480px;
  }
  .contact > .phone-cta {
    border-bottom-width: 4px;
  }
  footer {
    flex-direction: column;
    gap: 12px;
  }
}
