* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: #f70d17;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, Arial, sans-serif;
  color: #ffffff;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f70d17;
}

.site-header {
  position: relative;
  height: 110px;
  background-color: #f70d17;
  background-image: url("../images/checker-tile.png");
  background-repeat: repeat;
  background-size: 126px 126px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.logo-holder {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 0;
}

.logo-holder a {
  display: inline-block;
  line-height: 0;
}

.logo-holder img {
  display: block;
  width: 210px;
  max-width: 42vw;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(80, 0, 0, 0.28));
}

.site-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: #f70d17;
}

.center-box {
  max-width: 90%;
  animation: softIntro 700ms ease-out both;
}

.main-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 10px rgba(70, 0, 0, 0.45);
  transition: transform 220ms ease, text-shadow 220ms ease, letter-spacing 220ms ease;
}

.main-link:hover {
  transform: translateY(-2px);
  letter-spacing: 1px;
  text-decoration: none;
  text-shadow: 0 6px 18px rgba(70, 0, 0, 0.65);
}

.sub-text {
  margin-top: 14px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  opacity: 0.94;
  text-shadow: 0 2px 8px rgba(70, 0, 0, 0.38);
}

.site-footer {
  background-color: #f70d17;
  background-image: url("../images/checker-tile.png");
  background-repeat: repeat;
  background-size: 126px 126px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inner {
  text-align: center;
  color: rgba(96, 42, 18, 0.78);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  padding: 10px 22px;
  background: rgba(255, 245, 238, 0.72);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(120, 0, 0, 0.12);
  backdrop-filter: blur(2px);
}

.footer-inner p {
  margin: 4px 0;
}

.footer-inner a {
  color: rgba(75, 32, 14, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.footer-inner a:hover {
  color: rgba(75, 32, 14, 1);
  text-decoration: underline;
}

.price-page {
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 70px;
}

.price-image-wrap {
  width: 100%;
  text-align: center;
}

.price-image {
  display: inline-block;
  width: min(100%, 760px);
  height: auto;
  vertical-align: top;
  filter: drop-shadow(0 8px 18px rgba(80, 0, 0, 0.28));
}

@keyframes softIntro {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .center-box {
    animation: none;
  }

  .main-link {
    transition: none;
  }
}

@media (max-width: 991px) {
  .site-header {
    height: 95px;
    background-size: 96px 96px;
  }

  .site-footer {
    min-height: 105px;
    background-size: 96px 96px;
  }

  .logo-holder img {
    width: 180px;
    max-width: 50vw;
  }

  .main-link {
    font-size: 36px;
  }

  .sub-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 82px;
    background-size: 78px 78px;
  }

  .site-footer {
    min-height: 92px;
    background-size: 78px 78px;
  }

  .logo-holder img {
    width: 150px;
    max-width: 58vw;
  }

  .main-link {
    font-size: 30px;
  }

  .sub-text {
    font-size: 16px;
    margin-top: 11px;
  }

  .footer-inner {
    font-size: 11px;
  }

  .price-page {
    padding: 38px 12px;
  }

  .price-image {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 72px;
    background-size: 62px 62px;
  }

  .site-footer {
    min-height: 84px;
    background-size: 62px 62px;
  }

  .logo-holder img {
    width: 130px;
  }

  .main-link {
    font-size: 26px;
  }

  .sub-text {
    font-size: 15px;
  }
}