/* =====================================
    BASE
    ===================================== */

:root {
  --paper: #ffffff;
  --ink: #111111;
  --grey: #777777;
  --yellow: #ffe500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;

  /* subtle paper-like background */
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 4px
    );
}

img {
  display: block;
  width: 100%;
}

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

.wrapper {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}


/* =====================================
    GRAIN
    ===================================== */

body::before {
  content: "";

  position: fixed;
  inset: 0;

  z-index: 999;
  pointer-events: none;

  opacity: 0.06;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}


/* =====================================
    HEADER
    ===================================== */

header {
  padding-top: 18px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);

  padding: 10px 0;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.header-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-links a:hover {
  text-decoration: line-through;
}

.issue {
  white-space: nowrap;
}

/* big title header */
.main-masthead {
  padding: 28px 0 20px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(70px, 15vw, 220px);

  line-height: 0.72;
  letter-spacing: -0.075em;

  text-transform: uppercase;

  border-bottom: 8px solid var(--ink);

  overflow: hidden;
}

.second-masthead {
  padding: 28px 0 20px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(70px, 15vw, 180px);

  line-height: 0.72;
  letter-spacing: -0.075em;

  text-transform: uppercase;

  border-bottom: 8px solid var(--ink);

  overflow: hidden;
}

/* smaller article masthead */

.logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 22px 0 16px;

  border-bottom: 8px solid var(--ink);
}

.logo a {
  font-family: "Archivo Black", sans-serif;

  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.75;

  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.back-home {
  margin-bottom: 5px;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.back-home:hover {
  text-decoration: line-through;
}

/* =====================================
    FOOTER
    ===================================== */

footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  padding: 24px 0 45px;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;

  border-top: 3px solid var(--ink);
}

.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
}


.footer-links a:hover {
  text-decoration: line-through;
}



/* =====================================
    ARTICLE HEADER
    ===================================== */

.article-header {
  padding: 65px 0 35px;

  border-bottom: 1px solid var(--ink);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  margin-bottom: 35px;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}

.article-title {
  margin: 0;

  max-width: 1200px;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(80px, 15vw, 220px);

  line-height: 0.74;
  letter-spacing: -0.065em;

  text-transform: uppercase;
}


/* =====================================
   ARTICLE INTRO
   ===================================== */

.article-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 60px;

  align-items: stretch;

  margin-top: 45px;
}


/* LEFT — TECHNICAL BOX */

.article-tech {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  width: 100%;
  min-height: 95px;
  max-height: 95px;

  margin-top: 8px;
  padding: 10px 25px;

  background: #0b0b0b;
  color: #fff;

  border: 2px solid var(--ink);

  overflow: visible;
}

.article-tech::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");

  mix-blend-mode: screen;
}

.article-tech-copy {
  position: relative;
  z-index: 2;

  width: max-content;
  max-width: 100%;
}

.article-tech-title {
  margin-bottom: 10px;

  color: #fff;

  font-family: "Archivo Black", sans-serif;
  font-size: 15px;

  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.article-tech p {
  margin: 0;

  color: #fff;

  font-size: 10px;
  line-height: 1.55;

  white-space: nowrap;

  text-transform: uppercase;
}


/* RIGHT — ARTICLE BLURB */

.article-intro-copy {
  display: flex;
  align-items: center;
}

.article-intro-copy p {
  margin: 0;

  max-width: 650px;

  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.55;
}




/* =====================================
   ARTICLE PAGE — NEW POST STICKER
   ===================================== */

.article-new-post-sticker {
  position: absolute;

  left: -18px;
  top: -20px;

  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 120px;

  background: var(--yellow);
  color: var(--ink);

  border-radius: 50%;

  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  line-height: 0.9;

  text-align: center;
  text-transform: uppercase;

  box-shadow:
    inset 0 0 0 5px var(--yellow),
    inset 0 0 0 9px var(--ink),
    inset 0 0 0 13px var(--yellow),
    5px 5px 0 var(--ink);

  transform: rotate(-8deg);
  transition: transform 120ms ease;
}

.article-new-post-sticker:hover {
  transform: rotate(-3deg) scale(1.06);
}



.zine-sticker {
  position: absolute;
  z-index: 11;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 165px;
  aspect-ratio: 1;
  padding: 24px;

  background: transparent;
  color: #fff;

  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  line-height: 0.95;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  filter: drop-shadow(6px 8px 0 var(--ink));
  transform: rotate(8deg);
  transition: transform 120ms ease;
}

.zine-sticker-shape {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  clip-path: polygon(
    50% 0%, 58% 16%, 71% 4%, 74% 22%, 91% 15%, 85% 32%,
    100% 38%, 83% 47%, 96% 59%, 77% 62%, 82% 81%, 64% 74%,
    57% 96%, 48% 78%, 34% 94%, 32% 74%, 12% 82%, 20% 62%,
    0% 56%, 17% 45%, 4% 32%, 23% 29%, 18% 10%, 38% 20%
  );
}

.article-zine-sticker {
  left: -18px;
  top: -42px;
}

.article-sticker-pair .article-zine-sticker {
  left: 140px;
  right: auto;
  top: auto;
  bottom: -25px;
}

.zine-sticker-shape::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  /* background: #d71920;*/
  background: #9900ff;
  clip-path: inherit;
}

.zine-sticker-shape > span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.zine-sticker:hover,
.zine-sticker:focus-visible {
  color: #fff;
  transform: rotate(3deg) scale(1.06);
}

.zine-sticker:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -22px;
}


/* =====================================
   ARTICLE IMAGE GALLERY
   ===================================== */

.article-gallery {
  margin: 20px 0 80px;

  border-bottom: 3px solid var(--ink);
}

.article-gallery-title {
  margin-bottom: 6px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 4vw, 58px);

  line-height: 0.9;
  letter-spacing: -0.04em;

  text-transform: uppercase;
}

.article-gallery-header {
  display: flex;
  justify-content: space-between;

  padding: 9px 0;

  border-bottom: 1px solid var(--ink);

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}


/* THE SCROLLING STRIP */

.article-gallery-track {
  position: relative;

  display: flex;
  gap: 10px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 16px 10px 4px;

  background: #0b0b0b;

  scroll-snap-type: x proximity;

  scrollbar-width: thin;
  scrollbar-color: #fff #0b0b0b;
}

.article-gallery-track::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.16;

  mix-blend-mode: screen;
}

/* INDIVIDUAL IMAGE */


.article-gallery-track img {
  position: relative;
  z-index: 1;

  flex: 0 0 auto;

  width: auto;
  height: 180px;

  object-fit: cover;

  cursor: zoom-in;

  scroll-snap-align: start;
}

/* WEBKIT SCROLLBAR */

.article-gallery-track::-webkit-scrollbar {
  height: 8px;
}

.article-gallery-track::-webkit-scrollbar-track {
  background: var(--paper);

  border-top: 1px solid var(--ink);
}

.article-gallery-track::-webkit-scrollbar-thumb {
  background: var(--ink);
}

/* ===============================
    INTRO STRIP
    =============================== */

.intro-strip {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  padding: 12px 0;

  border-bottom: 1px solid var(--ink);

  font-size: 11px;
  text-transform: uppercase;
}

.intro-strip p {
  margin: 0;
  max-width: 620px;
}


/* ===============================
    SECTION LABEL
    =============================== */

.section-label {
  display: flex;
  justify-content: space-between;

  margin-top: 46px;
  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
}


/* ===============================
    NEW POST / HERO
    =============================== */

.new-post-wrap {
  position: relative;
}

.new-post {
  position: relative;

  display: grid;
  grid-template-columns: 1.65fr 0.8fr;

  border: 3px solid var(--ink);

  background: var(--ink);
  color: var(--paper);
}

.new-post-image {
  position: relative;
  overflow: visible;
  min-height: 620px;
}

.new-post-image--portrait {
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 1;
  align-self: start;
}

.new-post-image--portrait img {
  position: absolute;
  inset: 0;
}

.new-post-image img {
  height: 100%;
  object-fit: cover;

  filter:
    grayscale(1)
    contrast(1.3);
}

.home-new-post-sticker {
  position: absolute;
  top: -12px;
  left: -18px;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 120px;

  background: #ffe500;
  color: #111;

  border: none;
  border-radius: 50%;

  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  transform: rotate(-8deg);
  transition: transform 120ms ease;

  box-shadow:
    inset 0 0 0 5px #ffe500,  /* outer yellow edge */
    inset 0 0 0 9px #111,    /* black ring */
    inset 0 0 0 13px #ffe500, /* inner yellow gap */
    5px 5px 0 #111;           /* existing drop shadow */
}

.home-new-post-sticker:hover,
.new-post:focus-visible .home-new-post-sticker {
  transform: rotate(-3deg) scale(1.06);
}

.home-zine-sticker {
  left: -18px;
  top: -34px;
  z-index: 20;
}

.new-post-wrap:has(.home-new-post-sticker) > .home-zine-sticker {
  left: 145px;
}

.new-post-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px;
}

.new-post-copy .meta {
  font-size: 11px;
  text-transform: uppercase;
}

.new-post-copy h1 {
  margin: 30px 0 20px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(50px, 6vw, 100px);

  line-height: 0.82;
  letter-spacing: -0.05em;

  text-transform: uppercase;
}

.new-post-copy p {
  max-width: 450px;

  font-size: 14px;
  line-height: 1.6;
}

.read-link {
  display: inline-block;

  margin-top: 30px;

  border: 2px solid var(--paper);

  padding: 10px 14px;

  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;

  width: fit-content;
}

.read-link:hover {
  background: var(--paper);
  color: var(--ink);
}


/* ===============================
    GRID
    =============================== */

.grid-heading {
  margin-top: 70px;

  border-top: 5px solid var(--ink);
  border-bottom: 1px solid var(--ink);

  padding: 12px 0;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 4vw, 60px);

  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-left: 1px solid var(--ink);
}

.tile {
  position: relative;

  min-height: 460px;

  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);

  display: flex;
  flex-direction: column;

  transition: background 120ms linear;
}

.tile:hover {
  background: var(--ink);
  color: var(--paper);
}

.tile-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;

  border-bottom: 1px solid var(--ink);
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    grayscale(1)
    contrast(1.25);
}

.tile:hover img {
  filter:
    grayscale(1)
    contrast(1.65);
}

.tile-copy {
  padding: 16px;
}

.tile-number {
  font-size: 10px;
  margin-bottom: 14px;

  text-transform: uppercase;
}

.tile h2 {
  margin: 0 0 14px;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.92;

  text-transform: uppercase;
}

.tile p {
  margin: 0;

  max-width: 360px;

  font-size: 12px;
  line-height: 1.5;
}


/* ===============================
    MANIFESTO BLOCK
    =============================== */

.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr;

  gap: 40px;

  padding: 80px 0;

}

.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.manifesto-text {
  margin: 0;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 6vw, 86px);

  letter-spacing: -0.05em;
  line-height: 0.95;

  text-transform: uppercase;
}

/* =====================================
    HERO IMAGE
    ===================================== */

.hero-photo {
  margin-top: 20px;
}

.hero-photo img {
  width: 100%;

  max-height: 900px;

  object-fit: cover;

}


/* =====================================
    CAPTIONS
    ===================================== */

.caption {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding-top: 8px;

  font-size: 10px;
  line-height: 1.45;

  text-transform: uppercase;
}

.caption span:last-child {
  color: var(--grey);
  text-align: right;
}


/* =====================================
    ARTICLE TEXT
    ===================================== */

.article-text {
  width: min(680px, 100%);

  margin: 85px auto;
}

.article-text p {
  margin: 0 0 30px;

  font-size: 16px;
  line-height: 1.85;
}

.article-inline-link {
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-inline-link:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.article-text p:first-child::first-letter {
  float: left;

  margin-right: 10px;
  margin-top: 5px;

  font-family: "Archivo Black", sans-serif;

  font-size: 74px;
  line-height: 0.7;
}

.article-text h2 {
  margin: 85px 0 28px;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(38px, 5vw, 70px);

  line-height: 0.9;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}


/* =====================================
    FULL WIDTH PHOTOGRAPH
    ===================================== */

.photo-full {
  margin: 90px 0;
}

.photo-full img {
  display: block;

  width: 100%;
  height: auto;

  max-height: none;
}


/* =====================================
    TWO PHOTO SPREAD
    ===================================== */

.photo-pair-portrait,
.photo-pair-landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
  margin: 90px 0;

  align-items: start;
}

.photo-pair-portrait img,
.photo-pair-landscape img {
  display: block;

  width: 100%;
  height: auto;
}

/* =====================================
    PORTRAIT PHOTO
    ===================================== */

.photo-portrait {
  width: min(650px, 75%);

  margin: 110px auto;
}

.photo-portrait img {
}


/* =====================================
    LANDSCAPE PHOTO
    ===================================== */

.photo-landscape {
  width: min(1000px, 90%);

  margin: 110px auto;
}

.photo-landscape img {
}

.photo-landscape-left {
  width: min(1000px, 90%);

  margin: 110px auto 110px 0;
}

.photo-landscape-left img {
}

.photo-landscape-right {
  width: min(1000px, 90%);

  margin: 110px 0 110px auto;
}

.photo-landscape-right img {
}


/* =====================================
    OFFSET PHOTO
    ===================================== */

.photo-offset {
  width: 62%;

  margin: 110px 0 110px auto;
}

.photo-offset img {
}

.photo-offset-left {
  width: 62%;

  margin: 110px auto 110px 0;
}

.photo-offset-left img {
}

/* =====================================
   FLEXIBLE PHOTO ROW
   ===================================== */

.photo-row {
  display: flex;
  gap: 18px;

  width: 100%;
  margin: 90px 0;

  align-items: flex-start;
}

.about-page .photo-row {
  margin: -20px 0 70px;
}

.photo-row figure {
  margin: 0;
  flex: none;
}

.photo-row img {
  display: block;

  width: auto;
  height: auto;

  max-width: none;

  object-fit: contain;
}


/* =====================================
    PULL QUOTE
    ===================================== */

.pullquote {
  margin: 120px 0;

  padding: 30px 0;

  border-top: 7px solid var(--ink);
  border-bottom: 7px solid var(--ink);

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(48px, 8vw, 115px);

  line-height: 0.88;
  letter-spacing: -0.05em;

  text-transform: uppercase;
}


/* =====================================
    LITTLE NOTE / ASIDE
    ===================================== */

.aside {
  width: min(500px, 80%);

  margin: 90px 8% 90px auto;

  border: 2px solid var(--ink);

  padding: 20px;

  font-size: 12px;
  line-height: 1.7;

  transform: rotate(1deg);
}

.aside-title {
  margin-bottom: 12px;

  font-family: "Archivo Black", sans-serif;

  font-size: 18px;
  text-transform: uppercase;
}

/* =====================================
   OPTIONAL ARTICLE TEMPLATE BLOCKS
   ===================================== */

.template-guide {
  margin: 55px 0 80px;
  padding: 18px 20px;
  border: 2px dashed var(--ink);
  background: var(--yellow);
  font-size: 12px;
  line-height: 1.65;
}

.template-guide strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.article-text-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 6vw, 90px);
  margin: 100px 0;
  padding: 28px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.article-text-split h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.article-text-split p {
  max-width: 650px;
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
}

.article-text-split a {
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-text-split a:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.field-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  width: min(620px, 88%);
  margin: 90px auto 90px 4%;
  padding: 22px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-1deg);
}

.field-note-number {
  font-family: "Archivo Black", sans-serif;
  font-size: 42px;
  line-height: 0.85;
}

.field-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 72px);
  gap: 12px;
  margin: 100px 0;
}

.photo-mosaic figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.photo-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic .mosaic-portrait {
  grid-column: 1 / 5;
  grid-row: 1 / 9;
}

.photo-mosaic .mosaic-landscape {
  grid-column: 5 / 13;
  grid-row: 1 / 5;
}

.photo-mosaic .mosaic-small-left {
  grid-column: 5 / 9;
  grid-row: 5 / 9;
}

.photo-mosaic .mosaic-small-right {
  grid-column: 9 / 13;
  grid-row: 5 / 9;
}

.photo-contact-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 100px 0;
  padding: 12px;
  background: var(--ink);
}

.photo-contact-sheet figure {
  margin: 0;
  background: var(--paper);
}

.contact-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.photo-contact-sheet .contact-photo-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-contact-sheet .contact-photo-frame .contact-photo-rotate {
  inset: 50% auto auto 50%;
  width: auto;
  height: 133.333%;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(90deg);
}

.photo-contact-sheet .caption {
  padding: 7px 8px 9px;
}

.photo-bleed {
  width: 100vw;
  margin: 110px 0 110px calc(50% - 50vw);
}

.photo-bleed img {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: cover;
}

.photo-bleed .caption {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* =====================================
  IMAGE LIGHTBOX
  ===================================== */

.article-photo {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.96);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  display: block;

  max-width: 100%;
  max-height: calc(100vh - 60px);

  width: auto;
  height: auto;

  object-fit: contain;

  /* don't apply the blog's B&W filter again */
  filter: none;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 25px;

  z-index: 1001;

  border: 0;
  background: none;
  color: white;

  font-family: "Archivo Black", sans-serif;
  font-size: 42px;

  cursor: pointer;
}

.lightbox-close:hover {
  color: #ffe500;
}

/* =====================================
   LIGHTBOX NAVIGATION
   ===================================== */

.lightbox-next-group {
  position: fixed;

  top: 50%;
  right: 15px;

  z-index: 2001;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateY(-50%);
}

.lightbox-next-group .lightbox-next {
  position: static;
  transform: none;
}

.lightbox-counter {
  position: fixed;
  top: calc(50% + 55px);
  right: 35px;
  z-index: 2001;

  color: white;

  margin-top: -8px;

  transform: translateX(-50%);

  font-size: 11px;
  font-weight: 700;

  text-align: center;
  text-transform: uppercase;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;

  z-index: 2001;

  transform: translateY(-50%);

  border: 0;

  background: none;
  color: white;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(45px, 6vw, 90px);

  line-height: 1;

  cursor: pointer;

  padding: 20px;
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

.lightbox-arrow:hover {
  color: var(--yellow);
}


/* =====================================
    END MARK
    ===================================== */

.article-end {
  display: flex;
  align-items: center;
  gap: 15px;

  margin: 110px auto;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}

.article-end::before,
.article-end::after {
  content: "";

  flex: 1;

  height: 2px;

  background: var(--ink);
}


/* =====================================
    NEXT / PREVIOUS
    ===================================== */

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 7px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.post-navigation a {
  min-height: 280px;

  padding: 25px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-navigation a:first-child {
  border-right: 1px solid var(--ink);
}

.post-navigation a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav-label {
  font-size: 10px;

  font-weight: 700;
  text-transform: uppercase;
}

.nav-title {
  font-family: "Archivo Black", sans-serif;

  font-size: clamp(38px, 5vw, 72px);

  line-height: 0.88;

  letter-spacing: -0.04em;

  text-transform: uppercase;
}



/* =====================================
   ARCHIVE PAGE
   ===================================== */

.archive-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

  margin-top: 65px;

  padding: 10px 0;


  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}

.archive-heading-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.archive-heading-links a:hover {
  text-decoration: line-through;
}

/* =====================================
   ARCHIVE ITEM
   ===================================== */

.archive-item {
  display: grid;

  grid-template-columns:
    minmax(150px, 260px)
    1fr
    80px;

  gap: 30px;

  align-items: center;

  padding: 24px 0;

  border-bottom: 1px solid var(--ink);

  transition:
    background 120ms linear,
    color 120ms linear;
}


/* IMAGE */

.archive-image {
  overflow: hidden;

  aspect-ratio: 4 / 3;

  background: var(--ink);
}

.archive-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
   grayscale(1);

  transition:
    transform 180ms ease,
    filter 180ms ease;
}


/* COPY */

.archive-copy {
  align-self: stretch;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-meta {
  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}

.archive-copy h2 {
  margin: 0 0 18px;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(42px, 6vw, 92px);

  line-height: 0.82;
  letter-spacing: -0.05em;

  text-transform: uppercase;
}

.archive-copy p {
  margin: 0;

  max-width: 650px;

  font-size: 12px;
  line-height: 1.6;
}


/* ARROW */

.archive-arrow {
  justify-self: end;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(35px, 4vw, 65px);

  line-height: 1;
}


/* =====================================
   HOVER
   ===================================== */

.archive-item:hover {
  background: var(--ink);
  color: var(--paper);
}

.archive-item:hover .archive-image img {
  filter:
   grayscale(1)
   contrast(1.2);
}

.archive-item:hover .archive-arrow {
  transform: translateX(6px);
}

/* =====================================
   ZINES PAGE
   ===================================== */

.zines-masthead {
  padding: 20px 0 15px;

  border-bottom: 8px solid var(--ink);

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(100px, 20vw, 300px);

  line-height: 0.8;
  letter-spacing: -0.075em;

  text-transform: uppercase;

  overflow: hidden;
}


/* INTRO */

.zines-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;

  padding: 60px 0;

  border-bottom: 1px solid var(--ink);
}

.zines-intro-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.zines-intro p {
  margin: 0;

  max-width: 850px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 4vw, 60px);

  line-height: 0.95;
  letter-spacing: -0.035em;

  text-transform: uppercase;
}


/* GRID */

.zine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-left: 1px solid var(--ink);
}

.zine-card {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.zine-card a {
  display: block;
  height: 100%;
}

.zine-card:hover {
  background: var(--ink);
  color: var(--paper);
}


/* COVER */

.zine-cover {
  padding: 30px;

  border-bottom: 1px solid var(--ink);
}

.zine-cover img {
  width: min(100%, 520px);

  margin: 0 auto;

  aspect-ratio: 3 / 4;

  object-fit: cover;


  box-shadow: 10px 10px 0 var(--ink);
}

.zine-card:hover .zine-cover img {
  box-shadow: 10px 10px 0 var(--paper);

  filter:
   grayscale(1)
   contrast(1.2);

}


/* INFO */

.zine-info {
  padding: 24px;
}

.zine-meta {
  margin-bottom: 30px;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}

.zine-info h2 {
  margin: 0 0 24px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 5vw, 78px);

  line-height: 0.85;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.zine-info p {
  max-width: 500px;

  font-size: 13px;
  line-height: 1.6;
}

.zine-print-info {
  margin-top: 35px;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}

.zine-download {
  display: inline-block;

  margin-top: 22px;

  padding: 10px 14px;

  border: 2px solid var(--ink);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
}

.zine-card:hover .zine-download {
  border-color: var(--paper);
}


/* PRINT NOTE */

.zine-note {
  display: grid;
  grid-template-columns: 1fr 2fr;

  gap: 40px;

  padding: 70px 0;

  border-bottom: 7px solid var(--ink);
}

.zine-note > div {
  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}

.zine-note p {
  margin: 0;

  max-width: 700px;

  font-size: 14px;
  line-height: 1.7;
}


/* ENDING */

.zine-ending {
  padding: 80px 0;
}

.zine-ending p {
  margin: 0;

  font-family: "Archivo Black", sans-serif;

  font-size: clamp(70px, 12vw, 180px);

  line-height: 0.78;
  letter-spacing: -0.06em;

  text-transform: uppercase;
}

/* =====================================
   ZINE FOLDING INSTRUCTIONS
   ===================================== */

.zine-instructions {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin-top: 0;

  border-top: 8px solid var(--ink);
  border-bottom: 8px solid var(--ink);
}


/* LEFT COLUMN */

.instruction-column {
  padding: 45px 45px 50px 0;

  border-right: 1px solid var(--ink);
}


/* RIGHT COLUMN */

.instruction-sidebar {
  padding: 45px 0 50px 40px;
}


/* MAIN HEADINGS */

.instruction-heading {
  margin-bottom: 12px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 4vw, 58px);

  line-height: 0.9;
  letter-spacing: -0.04em;

  text-transform: uppercase;
}


/* SMALL INTRO LINE */

.instruction-subheading {
  margin: 0 0 40px;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}


/* =====================================
   INDIVIDUAL STEPS
   ===================================== */

.instruction-step {
  display: grid;
  grid-template-columns: 70px 1fr;

  gap: 22px;

  padding: 22px 0;

  border-top: 1px solid var(--ink);

  align-items: start;
}

.instruction-step:last-child {
  border-bottom: 1px solid var(--ink);
}


/* STEP NUMBER */

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: var(--ink);
  color: var(--paper);

  border-radius: 50%;

  font-family: "Archivo Black", sans-serif;
  font-size: 17px;

  line-height: 1;
}


/* STEP TITLE */

.instruction-step h3 {
  margin: 0 0 8px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(12px, 2vw, 14px);

  line-height: 0.95;
  letter-spacing: -0.025em;

  text-transform: uppercase;
}


/* STEP COPY */

.instruction-step p {
  margin: 0;

  max-width: 650px;

  font-size: 12px;
  line-height: 1.65;
}


/* =====================================
   VIDEO / ALTERNATIVE INSTRUCTIONS
   ===================================== */


.fold-video-embed {
  margin-top: 25px;
}

.fold-video:hover {
  background: var(--ink);
  color: var(--paper);
}


/* PLAY ICON */


.video-frame {
  width: 100%;

  border: 3px solid var(--ink);

  box-shadow: 6px 6px 0 var(--ink);

  background: var(--ink);

  overflow: hidden;
}

.fold-video:hover .video-play {
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
}


/* VIDEO COPY */



.video-frame iframe {
  display: block;

  width: 100%;
  aspect-ratio: 16 / 9;

  border: 0;
}

.video-caption {
  margin-top: 14px;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}

/* =====================================
   ABOUT PAGE
   ===================================== */

.about-masthead {
  padding: 35px 0 25px;

  border-bottom: 8px solid var(--ink);

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(100px, 20vw, 300px);

  line-height: 0.7;
  letter-spacing: -0.075em;

  text-transform: uppercase;
  overflow: hidden;
}


/* INTRO */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;

  padding: 70px 0;

  border-bottom: 1px solid var(--ink);
}

.about-intro-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-intro h1 {
  margin: 0;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 6vw, 90px);

  line-height: 0.95;
  letter-spacing: -0.045em;

  text-transform: uppercase;
}


/* PORTRAIT / BIO */

.about-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr;

  gap: clamp(40px, 8vw, 130px);

  align-items: start;

  padding: 100px 0;
}

.small-text {
  font-size: 11px;
}




.about-portrait img {
  display: block;

  width: 85%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  filter: contrast(1.2);
}

.about-portrait figcaption,
.about-wide-photo figcaption {
  padding-top: 8px;

  font-size: 10px;
  text-transform: uppercase;
}

.about-bio {
  padding-top: 40px;
}

.about-bio-heading {
  margin-bottom: 35px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.8;
  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.about-bio p {
  max-width: 560px;

  margin: 0 0 28px;

  font-size: 16px;
  line-height: 1.8;
}


/* BIG STATEMENT */

.about-statement {
  padding: 45px 0;

  border-top: 8px solid var(--ink);
}

.about-statement a {
  margin: 0;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(60px, 10vw, 150px);

  line-height: 0.82;
  letter-spacing: -0.06em;

  text-transform: uppercase;
}

.about-statement a:hover {
  text-decoration: line-through;
}

/* DETAILS */

.about-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-left: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-detail {
  min-height: 400px;

  padding: 22px;

  border-right: 1px solid var(--ink);
}

.about-detail-number {
  display: block;

  margin-bottom: 80px;

  font-size: 11px;
  font-weight: 700;
}

.about-detail h2 {
  margin: 0 0 25px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 4vw, 58px);

  line-height: 0.9;
  letter-spacing: -0.04em;

  text-transform: uppercase;
}

.about-detail p {
  max-width: 380px;

  font-size: 12px;
  line-height: 1.65;
}

.about-links {
  margin-top: 30px;
}

.about-links a {
  font-weight: 700;
  text-transform: uppercase;
}

.about-links a:hover {
  background: var(--ink);
  color: var(--paper);
}


/* WIDE PHOTO */

.about-wide-photo {
  margin: 100px 0;
}

.about-wide-photo img {
  width: 100%;
  max-height: 850px;

  object-fit: cover;

}


/* END */

.about-end {
  display: flex;
  justify-content: space-between;

  gap: 30px;

  padding: 18px 0;

  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}

.about-end a:hover {
  text-decoration: line-through;
}

