@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("/font/AGaramondPro-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("/font/AGaramondPro-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("/font/AGaramondPro-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("/font/AGaramondPro-BoldItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Maax";
  src: url("/font/Maax-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Maax";
  src: url("/font/Maax-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 550;
  font-display: swap;
}
@font-face {
  font-family: "Maax";
  src: url("/font/Maax-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #27434A;
  --ivory: #F3F0E8;
  --black: #1B1E1F;
  --white: #FFFFFF;

  --page-x: clamp(24px, 4vw, 64px);
  --page-y: clamp(24px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  color: var(--white);
  background: var(--blue);
  font-family: "Adobe Garamond Pro", Garamond, Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--page-y) var(--page-x);
}

 .site-header {
  align-self: start;
}

.release {
  align-self: start;
  margin-top: 72px;
  width: 100%;
  padding: 24px 0;
}

.brand {
  display: inline-block;
  color: var(--white);
  font-family: "Maax", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-weight: 550;
}

.series {
  margin: 0 0 14px;
  font-family: "Maax", Arial, sans-serif;
  font-size: 24px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.series span {
  font-weight: 400;
}

h1 {
  margin: 0;
  width: 100%;
  font-family: "Adobe Garamond Pro", Garamond, Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-date {
  margin: 14px 0 0;
  font-family: "Maax";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back-cover {
  width: 72%;
  margin: 0;
  color: var(--ivory);
  font-family: "Adobe Garamond Pro", Garamond, Georgia, serif;
  font-size: 18px;
  line-height: 22.5px;
  text-indent: 11px;
}

.release-date + .back-cover {
  margin-top: 48px;
}

.back-cover + .back-cover {
  margin-top: 11px;
}

.preorder {
  display: inline-block;
  margin-top: 24px;
  color: var(--white);
  font-family: "Maax", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  align-self: end;
  padding-top: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
}

.instagram-link svg {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-link rect,
.instagram-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-link .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.brand:focus-visible,
.instagram-link:focus-visible,
.preorder:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  :root {
    --page-x: clamp(20px, 5vw, 32px);
    --page-y: clamp(20px, 5vw, 32px);
  }

  .release {
    padding: 20px 0;
  }

  .brand {
    font-size: 32px;
  }

  .series {
    font-size: 20px;
  }

  h1 {
    font-size: 64px;
  }
  .release-date {
    font-size: 18px;
  }
  .back-cover {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
