@font-face {
  font-family: colfax;
  src: url("../../font/ColfaxWebLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: colfax;
  src: url("../../font/ColfaxWebRegular.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body,
main,
article,
header,
nav,
div,
figure,
figcaption,
h1,
p,
a,
img,
blockquote,
button {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

html {
  min-height: 100%;
  font-family: Palatino, serif;
  -webkit-text-size-adjust: none;
}

body {
  min-height: 100vh;
  color: #111;
  background: #fff;
  font: 400 17px/1.86 Palatino, serif;
  letter-spacing: 0;
}

body::before,
body::after,
.storyNav::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.075) 0 0.45px, transparent 0.7px);
  background-size: 10px 10px, 10px 10px, 5px 5px;
  mix-blend-mode: multiply;
}

body::after {
  z-index: 0;
  opacity: 0.05;
  background:
    repeating-linear-gradient(
      96deg,
      rgba(48, 48, 48, 0.018) 0,
      rgba(48, 48, 48, 0.018) 1px,
      transparent 1px,
      transparent 16px
    );
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.storyNav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 116px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 72%, rgba(255, 255, 255, 0) 100%);
}

.storyNav::after {
  z-index: 21;
  height: 116px;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.032) 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: multiply;
}

.siteName,
.storyMenu,
.homeLink {
  position: fixed;
  z-index: 22;
  font-family: colfax, sans-serif;
  text-transform: uppercase;
}

.siteName {
  top: 58px;
  left: 72px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32em;
  white-space: nowrap;
  -webkit-text-stroke: 0.18px currentColor;
}

.storyMenu {
  top: 56px;
  right: 62px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  color: #777;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.homeLink {
  position: static;
}

.storyMenuDropdown {
  position: relative;
  text-align: center;
}

.storyMenuDropdown::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 232px;
  height: 13px;
  transform: translateX(-50%);
  content: "";
}

.storyMenuTrigger {
  color: #777;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.storyMenuTrigger:focus-visible,
.storyMenu a:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.35);
  outline-offset: 4px;
}

.storyMenuList {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  display: flex;
  min-width: 232px;
  padding: 12px 14px 13px;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.storyMenuDropdown:hover .storyMenuList,
.storyMenuDropdown:focus-within .storyMenuList {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.storyMenuList a {
  color: #777;
  white-space: nowrap;
}

.storyMenuList a[aria-current="page"] {
  color: #111;
}

.storyPage {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 180px 34px 116px;
  margin: 0 auto;
}

.storyTitle {
  max-width: 860px;
  margin: 0 auto;
  color: #111;
  font-size: clamp(38px, 4.65vw, 66px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.storyDek {
  max-width: 780px;
  margin: 36px auto 90px;
  color: #5f5f5f;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.66;
  text-align: center;
}

.articleText {
  max-width: 640px;
  margin: 0 auto;
}

.articleText p {
  color: #292929;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}

.articleText p + p {
  margin-top: 25px;
}

.articleText blockquote {
  max-width: 600px;
  margin: 50px auto;
  color: #111;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.36;
  text-align: center;
}

.storyFigure {
  width: min(760px, calc(100vw - 68px));
  margin: 46px 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.storyFigure.narrow {
  width: min(640px, calc(100vw - 68px));
}

.storyFigure.portrait {
  width: min(500px, calc(100vw - 68px));
}

.storyFigure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.075);
}

.storyFigure figcaption {
  max-width: 620px;
  margin: 10px auto 0;
  color: #777;
  font-family: colfax, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-align: center;
}

.storyFigurePair {
  display: grid;
  width: min(760px, calc(100vw - 68px));
  margin: 46px 0;
  margin-left: 50%;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  transform: translateX(-50%);
}

.storyFigurePair figure {
  min-width: 0;
}

.storyFigurePair img {
  width: 100%;
  max-height: 66vh;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.075);
}

.storyFigurePair figcaption {
  max-width: 360px;
  margin: 10px auto 0;
  color: #777;
  font-family: colfax, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-align: center;
}

.storyPlaceholder {
  position: fixed;
  right: 72px;
  bottom: 74px;
  left: 72px;
  z-index: 1;
  color: #777;
  font-family: colfax, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .storyNav {
    height: 88px;
  }

  .storyNav::after {
    height: 88px;
  }

  .siteName {
    top: 34px;
    left: 28px;
    font-size: 12px;
  }

  .storyMenu {
    top: 34px;
    right: 28px;
    gap: 18px;
  }

  .storyMenuDropdown::after {
    width: 220px;
    height: 12px;
  }

  .storyMenuList {
    min-width: 220px;
    padding: 11px 12px 12px;
  }

  .homeLink {
    position: static;
  }

  .storyPage {
    padding: 128px 28px 72px;
  }

  .storyDek {
    margin-bottom: 58px;
    font-size: 16px;
  }

  .articleText p {
    font-size: 17px;
    line-height: 1.84;
  }

  .articleText blockquote {
    font-size: 21px;
    line-height: 1.36;
  }

  .storyFigure,
  .storyFigure.narrow,
  .storyFigure.portrait {
    width: 100%;
    margin: 38px 0;
    transform: none;
  }

  .storyFigurePair {
    width: 100%;
    margin: 38px 0;
    grid-template-columns: 1fr;
    transform: none;
  }

  .storyPlaceholder {
    right: 28px;
    bottom: 44px;
    left: 28px;
    font-size: 22px;
  }
}
