/*
  MARA VEY / BEAUTY WITH TEETH
  An editorial system in ink, bone, and signal red.
*/

:root {
  --ink: #0b0b0a;
  --bone: #e8e1d6;
  --paper: #f2ede5;
  --signal: #ff3b18;
  --signal-on-light: #d3361c;
  --blue-black: #09121b;
  --wine: #2a0e0c;
  --hairline: rgba(232, 225, 214, 0.42);
  --page-gutter: clamp(1rem, 2vw, 2rem);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --serif: "Bodoni Moda", "Didot", "Bodoni 72", serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--signal) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.index-open {
  overflow: hidden;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--signal);
}

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

picture {
  display: contents;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  z-index: 180;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.page-progress {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress::before {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  background: var(--signal);
  content: "";
}

.cursor {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--bone);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition:
    width 280ms var(--ease-out),
    height 280ms var(--ease-out),
    margin 280ms var(--ease-out),
    opacity 180ms ease,
    background-color 280ms ease;
  mix-blend-mode: difference;
}

.cursor span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-image {
  width: 94px;
  height: 94px;
  margin: -15px 0 0 -15px;
  background: var(--bone);
  color: var(--ink);
}

.cursor.is-image span {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  padding: 18px var(--page-gutter);
  color: var(--bone);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: opacity 220ms ease;
}

.index-open .site-header,
.index-open .chapter-rail {
  opacity: 0;
}

.site-header a,
.site-header button {
  pointer-events: auto;
}

.wordmark {
  grid-column: 1 / 3;
  width: max-content;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.7;
}

.wordmark span {
  display: block;
}

.header-status {
  grid-column: 4 / 6;
  margin: 2px 0 0;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(255, 59, 24, 0.2);
  font-size: 0;
}

.header-place {
  grid-column: 7 / 9;
  margin: 2px 0 0;
}

.header-nav {
  display: flex;
  grid-column: 9 / 13;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 2rem);
}

.header-nav a,
.header-nav button {
  position: relative;
  padding: 2px 0 5px;
  cursor: pointer;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.header-nav a::after,
.header-nav button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 320ms var(--ease-out);
}

.header-nav a:hover::after,
.header-nav button:hover::after,
.header-nav a:focus-visible::after,
.header-nav button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chapter-rail {
  position: fixed;
  z-index: 140;
  top: 50%;
  right: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 108px;
  transform: translateY(-50%);
  color: var(--bone);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: opacity 220ms ease;
}

.chapter-current {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 10px;
  gap: 7px;
}

.chapter-divider {
  height: 1px;
  flex: 1;
  background: currentColor;
  font-size: 0;
  opacity: 0.6;
}

.chapter-name {
  min-height: 2.6em;
  margin: 0 0 18px;
  text-align: right;
}

.chapter-rail nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.chapter-rail nav a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0.52;
  transition:
    opacity 180ms ease,
    border-color 180ms ease;
}

.chapter-rail nav a:hover,
.chapter-rail nav a:focus-visible,
.chapter-rail nav a.is-active {
  border-color: currentColor;
  opacity: 1;
}

/* Full-screen living index */
.index-dialog {
  position: fixed;
  z-index: 300;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--signal);
  color: var(--ink);
}

.index-dialog[open] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: index-in 560ms var(--ease-in-out) both;
}

.index-dialog.is-closing {
  animation: index-out 420ms var(--ease-in-out) both;
}

.index-dialog::backdrop {
  background: var(--ink);
}

@keyframes index-in {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}

@keyframes index-out {
  from {
    clip-path: inset(0);
  }
  to {
    clip-path: inset(100% 0 0 0);
  }
}

.index-topline,
.index-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 var(--page-gutter);
  padding: 17px 0;
  border-bottom: 1px solid rgba(11, 11, 10, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-topline p {
  margin: 0;
}

.index-topline button {
  padding: 0;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
}

.index-topline button span {
  display: inline-block;
  margin-left: 1.2rem;
  font-family: var(--display);
  font-size: 25px;
  line-height: 0;
  vertical-align: -2px;
}

.index-body {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--page-gutter);
  min-height: 0;
  padding: clamp(1.5rem, 4vh, 3.5rem) var(--page-gutter);
}

.index-side-note {
  grid-column: 1 / 3;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-list {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 3 / 10;
  flex-direction: column;
  justify-content: center;
}

.index-list h2 {
  margin: 0 0 clamp(1rem, 4vh, 3rem);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.72;
  text-transform: uppercase;
}

.index-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(0.75rem, 1.5vh, 1.25rem) 0;
  border-top: 1px solid rgba(11, 11, 10, 0.55);
}

.index-row:last-child {
  border-bottom: 1px solid rgba(11, 11, 10, 0.55);
}

.index-row span,
.index-row em {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-row strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  transition: padding-left 300ms var(--ease-out);
}

.index-row:hover strong,
.index-row:focus-visible strong {
  padding-left: 0.55em;
}

.index-preview {
  position: relative;
  z-index: 1;
  grid-column: 10 / 13;
  align-self: center;
  margin: 0;
  transform: rotate(2.5deg);
}

.index-preview::before,
.index-preview::after {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  content: "";
}

.index-preview::before {
  top: -7px;
  left: -7px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.index-preview::after {
  right: -7px;
  bottom: 18px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.index-preview img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 160ms ease;
}

.index-preview.is-swapping img {
  opacity: 0.15;
}

.index-preview figcaption {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.index-footer {
  border-top: 1px solid rgba(11, 11, 10, 0.55);
  border-bottom: 0;
}

.index-footer a {
  border-bottom: 1px solid currentColor;
}

/* Cover */
.cover {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--ink);
}

.cover-image {
  position: absolute;
  inset: 0 0 0 34%;
  overflow: hidden;
}

.cover-image img {
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.015);
  object-fit: cover;
  object-position: 50% 15%;
  filter: saturate(0.84) contrast(1.05);
  will-change: transform;
}

.cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 11, 10, 0.88) 28%, transparent 64%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.62) 0%, transparent 32%);
}

.cover-kicker {
  position: absolute;
  top: 19vh;
  left: var(--page-gutter);
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-title {
  position: absolute;
  z-index: 2;
  top: 23vh;
  right: var(--page-gutter);
  left: var(--page-gutter);
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.69;
  text-transform: uppercase;
}

.title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  animation: cover-line-in 1.15s var(--ease-out) both;
}

.title-line-a {
  font-size: clamp(7rem, 17.2vw, 19rem);
}

.title-line-b {
  margin: 0 0 0 auto;
  padding-right: 0.05em;
  font-size: clamp(6rem, 14.8vw, 17rem);
  animation-delay: 120ms;
}

.title-line em {
  display: inline-block;
  margin-right: 0.05em;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  vertical-align: 0.48em;
}

@keyframes cover-line-in {
  from {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-4vw);
  }
  to {
    clip-path: inset(0);
    transform: translateX(0);
  }
}

.cover-meta {
  position: absolute;
  bottom: 24px;
  left: var(--page-gutter);
  display: flex;
  gap: clamp(2rem, 7vw, 8rem);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.cover-meta p {
  margin: 0;
}

.cover-note {
  position: absolute;
  right: var(--page-gutter);
  bottom: 24px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-style: italic;
  line-height: 1.15;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  bottom: 19px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 29px;
  overflow: hidden;
  background: rgba(232, 225, 214, 0.3);
  font-size: 0;
}

.scroll-line::after {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background: var(--bone);
  content: "";
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  65%,
  100% {
    transform: translateY(100%);
  }
}

/* Editorial introduction */
.work-intro {
  display: flex;
  min-height: 96svh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(7rem, 14vh, 11rem) var(--page-gutter) 2rem;
  background: var(--bone);
  color: var(--ink);
}

.eyebrow {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-intro h2 {
  max-width: 12ch;
  margin: 7vh 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 10.8vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.76;
  text-transform: uppercase;
}

.work-intro h2 em {
  display: inline-block;
  color: var(--signal-on-light);
  font-family: var(--serif);
  font-size: 0.54em;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: none;
}

.work-intro-foot {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
}

.work-intro-foot > p:first-child {
  grid-column: 7 / 11;
  max-width: 43ch;
  margin: 0;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  line-height: 1.6;
}

.issue-mark {
  grid-column: 12;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

/* Shared story grammar */
.story {
  position: relative;
  overflow: clip;
  padding: 64px var(--page-gutter) 0;
}

.story-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 11, 10, 0.38);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-head-light {
  border-color: var(--hairline);
  color: var(--bone);
}

.story-head p {
  margin: 0;
}

.story-head span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 6px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.story-label {
  margin: 0 0 1.25rem;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-figure {
  position: relative;
  margin: 0;
}

.editorial-figure img {
  transition:
    filter 700ms ease,
    transform 1.1s var(--ease-out);
}

.editorial-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 9px 0 0;
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.media-reveal {
  overflow: hidden;
}

.media-reveal figcaption {
  position: relative;
  z-index: 2;
}

html.js .media-reveal::after {
  position: absolute;
  z-index: 2;
  inset: 0 0 25px;
  transform: translateX(0);
  background: var(--signal);
  content: "";
  transition: transform 1.05s var(--ease-in-out);
}

html.js .media-reveal img {
  transform: scale(1.035);
}

html.js .media-reveal.is-visible::after {
  transform: translateX(102%);
}

html.js .media-reveal.is-visible img {
  transform: scale(1);
}

/* 01 / Chrome Bloom */
.story-chrome {
  min-height: 150svh;
  padding-bottom: clamp(7rem, 14vw, 14rem);
  background: var(--paper);
  color: var(--ink);
}

.chrome-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--page-gutter);
  padding-top: clamp(4rem, 9vw, 10rem);
}

.chrome-copy {
  position: sticky;
  top: 18vh;
  grid-column: 1 / 7;
  align-self: start;
  padding-top: 5vh;
}

.chrome-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.6rem, 11.8vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.65;
  text-transform: uppercase;
}

.chrome-copy h2 em {
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.46em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

.story-description {
  max-width: 36ch;
  margin: clamp(2.5rem, 6vw, 6rem) 0 0;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.chrome-figure {
  grid-column: 7 / 12;
}

.chrome-figure img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.2) contrast(1.05);
}

.chrome-figure:hover img {
  filter: saturate(1) contrast(1);
}

.vertical-note {
  align-self: start;
  grid-column: 12 / 13;
  margin: 0;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* 02 / Second Skin */
.story-second {
  display: grid;
  min-height: 175svh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--page-gutter);
  padding-bottom: clamp(7rem, 12vw, 13rem);
  background: var(--blue-black);
}

.story-second .story-head {
  grid-column: 1 / 13;
}

.second-title-wrap {
  position: sticky;
  z-index: 2;
  top: 18vh;
  grid-column: 1 / 8;
  align-self: start;
  margin-top: clamp(6rem, 12vw, 13rem);
}

.second-title-wrap h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.59;
  text-transform: uppercase;
}

.second-title-wrap h2 em {
  margin-left: 0.24em;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.54em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.second-figure {
  z-index: 1;
  grid-column: 7 / 12;
  margin-top: clamp(5rem, 9vw, 9rem);
}

.second-figure img {
  aspect-ratio: 0.48;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.2) contrast(1.04);
}

.second-figure:hover img {
  filter: saturate(1) contrast(1);
}

.second-copy {
  z-index: 2;
  display: grid;
  grid-column: 2 / 7;
  grid-template-columns: 1fr 1fr;
  align-self: end;
  gap: var(--page-gutter);
  margin-top: 8rem;
}

.second-copy p {
  margin: 0;
}

.second-copy p:first-child {
  color: var(--signal);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.7vw, 2.9rem);
  font-style: italic;
  line-height: 1.05;
}

.second-copy p:last-child {
  align-self: end;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.7;
}

.second-word {
  position: absolute;
  right: -0.03em;
  bottom: -0.16em;
  margin: 0;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(12rem, 31vw, 34rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(232, 225, 214, 0.18);
}

/* Manifesto */
.manifesto {
  display: flex;
  min-height: 104svh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter) 2rem;
  overflow: hidden;
  background: var(--signal);
  color: var(--ink);
}

.manifesto h2 {
  margin: 6vh 0;
  font-family: var(--display);
  font-size: clamp(6rem, 15.2vw, 17rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.63;
  text-transform: uppercase;
}

.manifesto h2 em {
  display: inline-block;
  margin-left: 0.63em;
  font-family: var(--serif);
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.manifesto-footer {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
}

.manifesto-footer p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.manifesto-footer p:first-child {
  grid-column: 1 / 4;
}

.manifesto-footer span {
  grid-column: 6 / 8;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.7;
}

.manifesto-footer p:last-child {
  grid-column: 10 / 13;
  text-align: right;
}

/* 03 / Saint Static */
.story-saint {
  min-height: 155svh;
  padding-bottom: clamp(6rem, 12vw, 12rem);
  background: var(--ink);
}

.saint-title-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: clamp(5rem, 10vw, 10rem) 0 0;
}

.saint-title-wrap .story-label {
  grid-column: 1 / 4;
}

.saint-title-wrap h2 {
  grid-column: 2 / 13;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(8rem, 21vw, 23rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.56;
  text-align: right;
  text-transform: uppercase;
}

.saint-title-wrap h2 em {
  display: inline-block;
  margin-right: 0.08em;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.47em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.saint-figure {
  width: calc(100% + 2 * var(--page-gutter));
  margin-top: -2vw;
  margin-left: calc(-1 * var(--page-gutter));
}

.saint-figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.22) contrast(1.04);
}

.saint-figure:hover img {
  filter: saturate(0.88) contrast(1);
}

.saint-figure figcaption {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.saint-copy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--page-gutter);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.saint-copy p {
  margin: 0;
}

.saint-copy .large-copy {
  grid-column: 2 / 8;
  color: var(--signal);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-style: italic;
  line-height: 1.03;
}

.saint-copy p:last-child {
  grid-column: 9 / 12;
  align-self: end;
  line-height: 1.75;
}

/* 04 / After Party */
.story-after {
  min-height: 145svh;
  padding-bottom: clamp(7rem, 13vw, 13rem);
  background: var(--wine);
}

.after-title-wrap {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 10rem) 0 0;
}

.after-title-wrap h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(9rem, 23vw, 25rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.57;
  text-transform: uppercase;
}

.after-title-wrap h2 em {
  display: block;
  margin-left: 27%;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.48em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.after-figure {
  width: 82%;
  margin: -1vw 0 0 auto;
}

.after-figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.34) contrast(1.07);
}

.after-figure:hover img {
  filter: saturate(0.98) contrast(1);
}

.after-caption {
  max-width: 42ch;
  margin: clamp(3rem, 6vw, 6rem) 9% 0 auto;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

/* Archive */
.archive {
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 12rem) var(--page-gutter);
  background: var(--bone);
  color: var(--ink);
}

.archive > header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.archive > header .eyebrow {
  grid-column: 1 / 4;
  align-self: start;
}

.archive > header h2 {
  grid-column: 4 / 11;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.7;
  text-transform: uppercase;
}

.archive > header > p:last-child {
  grid-column: 11 / 13;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.archive-list {
  border-top: 1px solid var(--ink);
}

.archive-row {
  display: grid;
  grid-template-columns: 1fr 7fr 2fr 1fr;
  align-items: baseline;
  gap: var(--page-gutter);
  padding: clamp(1.25rem, 2.5vw, 2.25rem) 0;
  border-bottom: 1px solid var(--ink);
  transition:
    padding-right 350ms var(--ease-out),
    padding-left 350ms var(--ease-out),
    color 200ms ease,
    background-color 200ms ease;
}

.archive-row:hover,
.archive-row:focus-visible {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  background: var(--signal);
}

.archive-row span,
.archive-row em,
.archive-row small {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-row strong {
  font-family: var(--display);
  font-size: clamp(2.9rem, 6.5vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.72;
  text-transform: uppercase;
}

.archive-row small {
  text-align: right;
}

/* About */
.about {
  min-height: 110svh;
  padding: 0 var(--page-gutter) clamp(7rem, 12vw, 12rem);
  background: var(--ink);
}

.about > header {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}

.about > header p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--page-gutter);
  padding-top: clamp(6rem, 12vw, 12rem);
}

.about-grid h2 {
  grid-column: 1 / 10;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.2rem, 11.5vw, 12.5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.69;
  text-transform: uppercase;
}

.about-grid h2 em {
  color: var(--signal);
  font-family: var(--serif);
  font-size: 0.53em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.about-copy {
  display: grid;
  grid-column: 6 / 12;
  grid-template-columns: 1fr 1fr;
  gap: var(--page-gutter);
  margin-top: clamp(4rem, 8vw, 8rem);
}

.about-copy p {
  margin: 0;
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  line-height: 1.75;
}

.services {
  grid-column: 1 / 13;
  margin: clamp(5rem, 9vw, 9rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.services li {
  display: grid;
  grid-template-columns: 1fr 11fr;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
}

.services span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.services strong {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-transform: uppercase;
}

/* Contact */
.contact {
  display: flex;
  min-height: 110svh;
  flex-direction: column;
  padding: clamp(6rem, 10vw, 10rem) var(--page-gutter) 2rem;
  background: var(--signal);
  color: var(--ink);
}

.contact h2 {
  margin: 6vh 0 8vh;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.58;
  text-transform: uppercase;
}

.contact h2 em {
  display: inline-block;
  margin-left: 0.35em;
  font-family: var(--serif);
  font-size: 0.49em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 1.1rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
}

.contact-link i {
  font-family: var(--display);
  font-size: 1.2em;
  font-style: normal;
  transition: transform 350ms var(--ease-out);
}

.contact-link:hover i,
.contact-link:focus-visible i {
  transform: translate(0.15em, -0.15em);
}

.contact-foot {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-top: 2rem;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.contact-foot p {
  margin: 0;
}

.contact-foot p:first-child {
  grid-column: 1 / 4;
}

.contact-foot p:nth-child(2) {
  grid-column: 6 / 8;
}

.contact-foot a {
  grid-column: 10 / 13;
  justify-self: end;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px var(--page-gutter);
  background: var(--ink);
  color: var(--bone);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

/* Tablet */
@media (max-width: 1000px) {
  .header-status {
    display: none;
  }

  .header-place {
    grid-column: 4 / 7;
  }

  .header-nav {
    grid-column: 7 / 13;
  }

  .chapter-rail {
    display: none;
  }

  .index-side-note {
    display: none;
  }

  .index-list {
    grid-column: 1 / 9;
  }

  .index-preview {
    grid-column: 9 / 13;
  }

  .cover-image {
    left: 25%;
  }

  .chrome-copy {
    grid-column: 1 / 6;
  }

  .chrome-figure {
    grid-column: 6 / 12;
  }

  .second-title-wrap {
    grid-column: 1 / 9;
  }

  .second-figure {
    grid-column: 7 / 13;
  }

  .second-copy {
    grid-column: 1 / 7;
  }

  .after-figure {
    width: 90%;
  }
}

/* Mobile is a separate, intentional composition. */
@media (max-width: 720px) {
  :root {
    --page-gutter: 14px;
  }

  body {
    font-size: 13px;
  }

  .story {
    padding-top: 52px;
  }

  .grain {
    opacity: 0.04;
  }

  .cursor {
    display: none;
  }

  .site-header {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 14px;
  }

  .wordmark {
    grid-column: 1 / 2;
    font-size: 20px;
  }

  .header-place,
  .header-nav > a {
    display: none;
  }

  .header-nav {
    grid-column: 3 / 5;
  }

  .index-trigger {
    font-size: 9px !important;
  }

  .index-dialog[open] {
    overflow-y: auto;
  }

  .index-body {
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .index-list h2 {
    margin-bottom: 2.25rem;
    font-size: clamp(5.5rem, 28vw, 9rem);
  }

  .index-row {
    grid-template-columns: 30px 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .index-row strong {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .index-row em {
    display: none;
  }

  .index-preview {
    display: none;
  }

  .cover {
    min-height: 100svh;
  }

  .cover-image {
    inset: 0;
  }

  .cover-image img {
    object-position: 55% 42%;
  }

  .cover-shade {
    background:
      linear-gradient(180deg, rgba(11, 11, 10, 0.72) 0%, transparent 30%),
      linear-gradient(0deg, rgba(11, 11, 10, 0.92) 0%, transparent 52%),
      linear-gradient(90deg, rgba(11, 11, 10, 0.58) 0%, transparent 58%);
  }

  .cover-kicker {
    top: 14vh;
  }

  .cover-title {
    top: auto;
    bottom: 26vh;
    line-height: 0.72;
  }

  .title-line-a {
    font-size: clamp(6.1rem, 29vw, 9rem);
  }

  .title-line-b {
    margin-left: 0;
    font-size: clamp(4.8rem, 23vw, 7.5rem);
  }

  .title-line em {
    display: block;
    margin: 0 0 -0.08em 0.35em;
    font-size: 0.38em;
    vertical-align: 0;
  }

  .cover-meta {
    right: var(--page-gutter);
    bottom: 17px;
    justify-content: space-between;
    gap: 1rem;
  }

  .cover-meta p:last-child {
    text-align: right;
  }

  .cover-note,
  .scroll-cue {
    display: none;
  }

  .work-intro {
    min-height: 92svh;
    padding-top: 7rem;
  }

  .work-intro h2 {
    margin: auto 0;
    font-size: clamp(4.1rem, 19vw, 7rem);
    line-height: 0.74;
  }

  .work-intro h2 em {
    margin-top: 0.18em;
    font-size: 0.48em;
  }

  .work-intro-foot {
    display: block;
  }

  .work-intro-foot > p:first-child {
    max-width: 33ch;
    margin-left: auto;
  }

  .issue-mark {
    margin-top: 2rem;
  }

  .story-head p:last-child {
    text-align: right;
  }

  .editorial-figure figcaption {
    font-size: 7px;
  }

  .story-chrome {
    min-height: 0;
    padding-bottom: 7rem;
  }

  .chrome-grid {
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
  }

  .chrome-copy {
    position: relative;
    top: auto;
    order: 1;
    padding: 0;
  }

  .chrome-copy h2 {
    font-size: clamp(5.2rem, 25vw, 9rem);
  }

  .chrome-copy h2 em {
    margin-left: 0.9em;
  }

  .story-description {
    margin: 2.5rem 0 3rem auto;
  }

  .chrome-figure {
    order: 2;
    width: 88%;
    margin-left: auto;
  }

  .vertical-note {
    display: none;
  }

  .story-second {
    display: block;
    min-height: 0;
    padding-bottom: 8rem;
  }

  .second-title-wrap {
    position: relative;
    top: auto;
    margin-top: 5rem;
  }

  .second-title-wrap h2 {
    font-size: clamp(6.4rem, 31vw, 10rem);
  }

  .second-figure {
    width: 85%;
    margin: -1rem 0 0 auto;
  }

  .second-copy {
    display: block;
    margin: 4rem 0 0;
  }

  .second-copy p:first-child {
    max-width: 12ch;
    font-size: 2rem;
  }

  .second-copy p:last-child {
    max-width: 33ch;
    margin: 2.5rem 0 0 auto;
  }

  .second-word {
    font-size: 52vw;
  }

  .manifesto {
    min-height: 100svh;
    padding-top: 6rem;
  }

  .manifesto h2 {
    font-size: clamp(5rem, 24vw, 8rem);
    line-height: 0.66;
  }

  .manifesto h2 em {
    margin: 0.2em 0 0 0.45em;
    font-size: 0.48em;
  }

  .manifesto-footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .manifesto-footer p:first-child,
  .manifesto-footer p:last-child {
    grid-column: auto;
  }

  .manifesto-footer span {
    display: none;
  }

  .story-saint {
    min-height: 0;
    padding-bottom: 7rem;
  }

  .saint-title-wrap {
    display: block;
    padding-top: 5rem;
  }

  .saint-title-wrap h2 {
    font-size: clamp(7.4rem, 35vw, 11rem);
    text-align: left;
  }

  .saint-title-wrap h2 em {
    display: block;
    margin-left: 0.42em;
  }

  .saint-figure {
    width: calc(100% + 2 * var(--page-gutter));
    margin-top: 2rem;
  }

  .saint-figure img {
    aspect-ratio: 1 / 1.08;
    object-position: 35% center;
  }

  .saint-copy {
    display: block;
    padding-top: 4rem;
  }

  .saint-copy .large-copy {
    max-width: 13ch;
    font-size: 2.3rem;
  }

  .saint-copy p:last-child {
    max-width: 31ch;
    margin: 3rem 0 0 auto;
  }

  .story-after {
    min-height: 0;
    padding-bottom: 7rem;
  }

  .after-title-wrap {
    padding-top: 5rem;
  }

  .after-title-wrap h2 {
    font-size: clamp(7.7rem, 37vw, 12rem);
  }

  .after-title-wrap h2 em {
    margin-left: 0.2em;
  }

  .after-figure {
    width: calc(100% + 2 * var(--page-gutter));
    margin-top: 2rem;
    margin-left: calc(-1 * var(--page-gutter));
  }

  .after-figure img {
    aspect-ratio: 1 / 1.05;
    object-position: 68% center;
  }

  .after-figure figcaption {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .after-caption {
    margin-right: 0;
  }

  .archive {
    min-height: 0;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .archive > header {
    display: block;
    margin-bottom: 4rem;
  }

  .archive > header h2 {
    margin-top: 3rem;
    font-size: clamp(6rem, 28vw, 9rem);
  }

  .archive > header > p:last-child {
    margin-top: 1rem;
    text-align: left;
  }

  .archive-row {
    grid-template-columns: 28px 1fr auto;
    gap: 0.5rem;
  }

  .archive-row strong {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .archive-row em {
    display: none;
  }

  .about {
    min-height: 0;
    padding-bottom: 7rem;
  }

  .about-grid {
    display: block;
    padding-top: 6rem;
  }

  .about-grid h2 {
    font-size: clamp(4.4rem, 20vw, 7rem);
  }

  .about-copy {
    display: block;
    margin: 4rem 0 0 18%;
  }

  .about-copy p + p {
    margin-top: 2rem;
  }

  .services li {
    grid-template-columns: 36px 1fr;
  }

  .contact {
    min-height: 100svh;
    padding-top: 6rem;
  }

  .contact h2 {
    margin-top: auto;
    margin-bottom: auto;
    font-size: clamp(6rem, 28vw, 9rem);
  }

  .contact h2 em {
    margin-left: 0.1em;
  }

  .contact-link {
    overflow-wrap: anywhere;
    font-size: clamp(1.7rem, 7.4vw, 2.8rem);
  }

  .contact-foot {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .contact-foot p:first-child,
  .contact-foot p:nth-child(2),
  .contact-foot a {
    grid-column: auto;
  }

  .contact-foot a {
    justify-self: start;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:nth-child(2) {
    text-align: right;
  }

  .site-footer p:last-child {
    grid-column: 1 / 3;
    margin-top: 0.5rem;
  }
}

@media (max-width: 380px) {
  .title-line-a {
    font-size: 27vw;
  }

  .title-line-b {
    font-size: 21vw;
  }

  .cover-meta {
    font-size: 7px;
  }

  .work-intro h2,
  .chrome-copy h2 {
    font-size: 21vw;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cover-image img,
  html.js .media-reveal img {
    transform: none !important;
  }

  html.js .media-reveal::after {
    display: none;
  }
}
