@font-face {
  font-family: "Inter Display";
  src: url("../fonts/inter-display-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Libertine Display";
  src: url("../fonts/libertine-display.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --black: #090909;
  --soft-black: #11100f;
  --paper: #eeeae0;
  --white: #faf9f5;
  --ink-muted: #625f59;
  --light-muted: #aaa49a;
  --line-dark: rgb(9 9 9 / 22%);
  --line-light: rgb(250 249 245 / 24%);
  --page-gutter: clamp(1rem, 2.4vw, 2.75rem);
  --font-display: "Libertine Display", "Iowan Old Style", "Times New Roman", serif;
  --font-sans: "Inter Display", Arial, Helvetica, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", 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(--black);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.viewer-open,
body.menu-open {
  overflow: hidden;
}

body.viewer-open {
  padding-right: var(--viewer-scrollbar, 0);
}

body.viewer-open .site-header {
  padding-right: calc(var(--page-gutter) + var(--viewer-scrollbar, 0px));
}

button,
a {
  color: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
}

a {
  text-decoration: none;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

section[id] {
  scroll-margin-top: 3.75rem;
}

::selection {
  background: var(--paper);
  color: var(--black);
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 11000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.72rem 0.92rem;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--black);
  font: 0.68rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.micro-label {
  font: 400 clamp(0.625rem, 0.63vw, 0.69rem)/1.4 var(--font-mono);
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.no-js .loader {
  display: none;
}

.loader {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  transition:
    visibility 0s linear 550ms,
    transform 550ms var(--ease-in-out);
}

.loader.is-hidden {
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-101%);
}

.loader__mark {
  display: flex;
  width: min(78vw, 32rem);
  align-items: baseline;
  justify-content: space-between;
  font: 400 0.64rem/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader__count {
  color: var(--light-muted);
}

.loader__line {
  position: absolute;
  top: calc(50% + 2rem);
  left: 11vw;
  width: 78vw;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 14%);
}

.loader__line::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
  animation: loader-line 520ms var(--ease-in-out) 80ms forwards;
}

@keyframes loader-line {
  to { transform: scaleX(1); }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding:
    calc(0.4rem + env(safe-area-inset-top, 0px))
    max(var(--page-gutter), env(safe-area-inset-right, 0px))
    0.4rem
    max(var(--page-gutter), env(safe-area-inset-left, 0px));
  color: var(--white);
  transition:
    color 350ms ease,
    background-color 350ms ease,
    backdrop-filter 350ms ease;
}

body[data-site-theme="paper"] .site-header {
  color: var(--black);
}

.site-header.is-scrolled {
  background: rgb(9 9 9 / 72%);
  backdrop-filter: blur(12px);
}

body[data-site-theme="paper"] .site-header.is-scrolled {
  background: rgb(238 234 224 / 82%);
}

.site-header.is-over-image {
  background: transparent;
  color: var(--white);
  backdrop-filter: none;
  text-shadow: 0 1px 0.75rem rgb(0 0 0 / 72%);
}

.site-header__brand {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-self: start;
  font: 400 0.73rem/1 var(--font-sans);
  letter-spacing: 0.14em;
}

.site-header__nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.5rem);
  font: 400 0.625rem/1 var(--font-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header__nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: 0.4rem;
}

.site-header__menu-toggle {
  display: none;
}

.site-header__nav-meta {
  display: none;
}

.site-header__nav a,
.site-header__brand,
.site-header__index {
  transition: opacity 180ms ease;
}

.site-header__nav a:hover,
.site-header__brand:hover {
  opacity: 0.52;
}

.site-header__index {
  justify-self: end;
  font: 400 0.58rem/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--soft-black);
  cursor: zoom-in;
}

.media-button:focus-visible {
  outline: 0;
}

.media-button::after {
  position: absolute;
  z-index: 2;
  inset: 0.4rem;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgb(9 9 9 / 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.media-button:focus-visible::after {
  opacity: 1;
}

.media-button picture,
.media-button img,
.frame__button picture,
.frame__button img {
  width: 100%;
  height: 100%;
}

.media-button img,
.frame__button img {
  object-fit: cover;
  object-position: var(--frame-position, 50% 50%);
  transform: scale(1);
  transition: transform 1050ms var(--ease-out);
}

.frame--landscape > .frame__button {
  aspect-ratio: 3 / 2;
}

.frame--portrait > .frame__button {
  aspect-ratio: 2 / 3;
}

.frame-meta {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.72rem;
  color: var(--ink-muted);
}

.frame-meta span:last-child {
  letter-spacing: 0.075em;
  text-transform: none;
}

.hero {
  position: relative;
  height: 160svh;
  background: var(--black);
  color: var(--white);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero__meta {
  position: absolute;
  z-index: 6;
  top: 11.5vh;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  color: rgb(250 249 245 / 78%);
  text-shadow: 0 1px 0.8rem rgb(0 0 0 / 66%);
}

.hero__meta a:hover {
  color: var(--white);
}

.hero__meta a,
.hero__scroll {
  min-height: 2.75rem;
  align-items: center;
}

.hero__name {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font: 400 clamp(5.5rem, 16.8vw, 18.5rem)/0.73 var(--font-display);
  letter-spacing: -0.062em;
  text-transform: uppercase;
}

.hero__word {
  position: absolute;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__word--back {
  z-index: 1;
  top: 20%;
  color: var(--paper);
  transform: translateX(calc(-50% - var(--hero-shift, 0vw)));
}

.hero__word--front {
  z-index: 4;
  bottom: 10.5%;
  color: transparent;
  -webkit-text-stroke: 1px rgb(250 249 245 / 90%);
  transform: translateX(calc(-50% + var(--hero-shift, 0vw)));
}

.hero__frame-slot {
  display: contents;
}

.hero__figure {
  --hero-inset: 10%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(46vw, 44svh);
  aspect-ratio: 2 / 3;
  transform: translate(-50%, -50%);
}

.hero__figure > .hero__media {
  height: 100%;
  aspect-ratio: auto;
  clip-path: inset(0 var(--hero-inset));
  will-change: clip-path;
}

.hero__figure .hero__media img {
  transform: scale(var(--hero-scale, 1.045));
  will-change: transform;
}

.hero__figure .frame-meta {
  position: absolute;
  right: 0;
  bottom: -2.45rem;
  width: max-content;
  margin: 0;
  color: rgb(250 249 245 / 72%);
  text-align: right;
  text-shadow: 0 1px 0.8rem rgb(0 0 0 / 72%);
}

.hero__scroll {
  position: absolute;
  z-index: 6;
  bottom: 2.5rem;
  left: var(--page-gutter);
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgb(250 249 245 / 74%);
  text-shadow: 0 1px 0.8rem rgb(0 0 0 / 68%);
}

.hero__scroll span:last-child {
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  50% { transform: translateY(0.35rem); }
}

.selected {
  position: relative;
  background: var(--paper);
  color: var(--black);
}

.section-heading {
  position: relative;
  display: grid;
  min-height: 78svh;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 12vh var(--page-gutter) 8vh;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading > .micro-label:first-child {
  position: absolute;
  top: 11vh;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  color: var(--ink-muted);
}

.section-heading h2 {
  grid-column: 1 / -1;
  font: 400 clamp(6.3rem, 18vw, 20rem)/0.68 var(--font-display);
  letter-spacing: -0.068em;
  text-transform: uppercase;
}

.section-heading h2 span {
  display: block;
}

.section-heading h2 span:last-child {
  margin-left: 16vw;
  font-style: italic;
}

.section-heading__index {
  position: absolute;
  right: var(--page-gutter);
  bottom: 2.5rem;
  color: var(--ink-muted);
}

.selected__sequence {
  padding: 4vh var(--page-gutter) 10vh;
}

.composition {
  position: relative;
  display: grid;
  width: 100%;
  align-items: center;
}

.composition__index {
  color: var(--ink-muted);
}

.composition--portrait-right {
  min-height: 95svh;
  grid-template-columns: 1fr minmax(20rem, 35vw);
  gap: 8vw;
}

.composition--portrait-right .composition__frame {
  grid-column: 2;
}

.composition--portrait-right .composition__index {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: end;
}

.composition--wide-left {
  min-height: 85svh;
  grid-template-columns: minmax(0, 4fr) minmax(10rem, 1fr);
  gap: 4vw;
}

.composition--wide-left .composition__frame {
  grid-column: 1;
}

.composition--wide-left .composition__index {
  grid-row: 1;
  grid-column: 2;
  align-self: end;
  padding-bottom: 10vh;
}

.composition--pair {
  min-height: 110svh;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  align-items: start;
  padding-top: 12vh;
}

.composition--pair .composition__frame:first-of-type {
  width: 74%;
  margin-top: 29vh;
  justify-self: end;
}

.composition--pair .composition__frame:last-of-type {
  width: 100%;
}

.composition--pair .composition__index {
  position: absolute;
  top: 5vh;
  left: 0;
}

.composition--small-center {
  min-height: 78svh;
  place-items: center;
}

.composition--small-center .composition__frame {
  width: min(30vw, 29rem);
}

.composition--small-center .composition__index {
  position: absolute;
  right: 5vw;
  bottom: 11vh;
}

.composition--wide-right {
  min-height: 85svh;
  grid-template-columns: minmax(9rem, 1fr) minmax(0, 4.2fr);
  gap: 4vw;
}

.composition--wide-right .composition__frame {
  grid-column: 2;
}

.composition--wide-right .composition__index {
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  padding-bottom: 10vh;
}

.story {
  position: relative;
  padding-bottom: 8vh;
  background: var(--black);
  color: var(--white);
}

.story .frame-meta,
.full-bleed .frame-meta {
  color: var(--light-muted);
}

.story__heading {
  position: relative;
  display: grid;
  min-height: 68svh;
  align-content: center;
  padding: 11vh var(--page-gutter) 8vh;
  border-bottom: 1px solid var(--line-light);
}

.story__heading > p:first-child {
  position: absolute;
  top: 10vh;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  color: var(--light-muted);
}

.story__heading > p:last-child {
  position: absolute;
  right: var(--page-gutter);
  bottom: 2.4rem;
  color: var(--light-muted);
}

.story__heading h2 {
  font: 400 clamp(6rem, 17vw, 18rem)/0.69 var(--font-display);
  letter-spacing: -0.066em;
  text-transform: uppercase;
}

.story__heading h2 span {
  display: block;
}

.story__heading h2 span:last-child {
  margin-left: 18vw;
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px rgb(250 249 245 / 86%);
}

.story__sequence {
  padding: 4vh var(--page-gutter) 6vh;
}

.story-item {
  position: relative;
  display: grid;
  width: 100%;
}

.story-item__index {
  color: var(--light-muted);
}

.story-item--portrait-left {
  min-height: 110svh;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.story-item--portrait-left .story-frame {
  width: min(34vw, 34rem);
  grid-column: 1;
  justify-self: center;
}

.story-item--portrait-left .story-item__index {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

.story-item--pair {
  min-height: 110svh;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8vw;
  align-items: start;
  padding-top: 12vh;
}

.story-item--pair .story-frame:first-of-type {
  width: 100%;
}

.story-item--pair .story-frame:last-of-type {
  width: 85%;
  margin-top: 30vh;
}

.story-item--pair .story-item__index {
  position: absolute;
  top: 4vh;
  right: 0;
}

.story-item--portrait-right {
  min-height: 95svh;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.story-item--portrait-right .story-frame {
  width: min(31vw, 31rem);
  grid-column: 2;
  justify-self: center;
}

.story-item--portrait-right .story-item__index {
  grid-row: 1;
  grid-column: 1;
  justify-self: center;
}

.full-bleed {
  height: 98svh;
  background: var(--black);
  color: var(--white);
}

#full-bleed-frame,
.full-bleed__figure {
  height: 100%;
}

.full-bleed__figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.full-bleed__figure > .full-bleed__media {
  height: 100%;
  aspect-ratio: auto;
}

.full-bleed__figure .frame-meta {
  display: flex;
  min-height: 3.6rem;
  margin: 0;
  padding: 0.8rem var(--page-gutter);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
}

.contact-sheet {
  padding: 11vh var(--page-gutter) 14vh;
  background: var(--paper);
  color: var(--black);
}

.contact-sheet__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 9vh;
}

.contact-sheet__heading > p:first-child {
  grid-column: 1 / -1;
  margin-bottom: 3.5rem;
  color: var(--ink-muted);
}

.contact-sheet__heading h2 {
  font: 400 clamp(4rem, 9vw, 10rem)/0.8 var(--font-display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.contact-sheet__heading > p:last-child {
  color: var(--ink-muted);
  text-align: right;
}

.contact-sheet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2.6rem);
  align-items: start;
}

.contact-cell:nth-child(even) {
  margin-top: 7vh;
}

.about {
  position: relative;
  display: grid;
  min-height: 82svh;
  grid-template-columns: 1fr minmax(15rem, 0.75fr);
  grid-template-rows: auto 1fr;
  gap: 0 5vw;
  align-items: center;
  padding: 10vh var(--page-gutter) 11vh;
  border-top: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--black);
}

.about__index {
  position: absolute;
  top: 2rem;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink-muted);
}

.about__type {
  grid-row: 2;
  grid-column: 1 / -1;
}

.about__type h2 {
  font: 400 clamp(6rem, 15.5vw, 17rem)/0.7 var(--font-display);
  letter-spacing: -0.066em;
  text-transform: uppercase;
}

.about__type span {
  display: block;
}

.about__type span:last-child {
  margin-left: 10vw;
  font-style: italic;
}

.about__details {
  position: absolute;
  right: var(--page-gutter);
  bottom: 9vh;
  display: grid;
  width: min(25rem, 30vw);
  gap: 1.6rem;
}

.about__copy {
  max-width: 35ch;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.text-link {
  display: flex;
  padding: 0.75rem 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--black);
  font: 400 clamp(1rem, 1.6vw, 1.35rem)/1 var(--font-sans);
  letter-spacing: -0.02em;
}

.text-link span:last-child {
  transition: transform 300ms var(--ease-out);
}

.text-link:hover span:last-child {
  transform: translate(0.35rem, -0.35rem);
}

.contact {
  position: relative;
  display: flex;
  min-height: 96svh;
  flex-direction: column;
  justify-content: center;
  padding: 16vh var(--page-gutter) 12vh;
  background: var(--black);
  color: var(--white);
}

.contact__top {
  position: absolute;
  top: 11vh;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  color: var(--light-muted);
}

.contact__title {
  font: 400 clamp(6.5rem, 17vw, 19rem)/0.68 var(--font-display);
  letter-spacing: -0.067em;
  text-transform: uppercase;
}

.contact__title span {
  display: block;
}

.contact__title span:last-child {
  margin-left: 13vw;
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px rgb(250 249 245 / 86%);
}

.contact__link {
  display: flex;
  margin-top: 8vh;
  padding: 1.2rem 0;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font: 400 clamp(1.5rem, 3vw, 3.6rem)/1 var(--font-sans);
  letter-spacing: -0.025em;
}

.contact__arrow {
  transition: transform 350ms var(--ease-out);
}

.contact__link:hover .contact__arrow {
  transform: translate(0.5rem, -0.5rem);
}

.contact__note {
  position: absolute;
  right: var(--page-gutter);
  bottom: 4.5vh;
  color: var(--light-muted);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.25rem var(--page-gutter);
  border-top: 1px solid var(--line-light);
  background: var(--black);
  color: var(--light-muted);
  font: 400 0.625rem/1 var(--font-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer > *:nth-child(2),
.site-footer > *:nth-child(3) {
  justify-self: center;
}

.site-footer > *:last-child {
  justify-self: end;
}

.viewer {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #070707;
  color: var(--white);
}

.viewer::backdrop {
  background: #070707;
  transition: background-color 260ms ease;
}

.viewer[open] {
  animation: viewer-in 340ms var(--ease-out) both;
}

.viewer[open].is-closing {
  opacity: 0;
  animation: none;
  transition: opacity 260ms ease;
}

.viewer[open].is-closing::backdrop {
  background: transparent;
}

@keyframes viewer-in {
  from { opacity: 0; }
}

.viewer__shell {
  position: relative;
  display: flex;
  width: 100%;
  height: 100dvh;
  padding: max(1.25rem, env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-right, 0px)) max(1.25rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
  align-items: center;
  justify-content: center;
}

.viewer__header,
.viewer__footer {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(250 249 245 / 72%);
  font: 400 0.6rem/1.3 var(--font-mono);
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.viewer__header {
  position: absolute;
  z-index: 5;
  top: max(1.25rem, env(safe-area-inset-top, 0px));
  right: max(clamp(1.25rem, 2vw, 2rem), env(safe-area-inset-right, 0px));
  left: max(clamp(1.25rem, 2vw, 2rem), env(safe-area-inset-left, 0px));
}

.viewer__header p {
  display: flex;
  gap: clamp(1.5rem, 5vw, 6rem);
}

.viewer__close {
  display: flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.viewer__close span:last-child {
  font: 400 1.45rem/0.6 var(--font-sans);
}

.viewer__content {
  display: flex;
  width: min(84vw, 100rem);
  max-height: calc(100dvh - 5rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.viewer__stage {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  transition: opacity 260ms ease;
}

.viewer__stage.is-switching {
  opacity: 0.18;
}

.viewer__stage picture {
  display: contents;
}

.viewer__stage img {
  width: auto;
  max-width: min(84vw, 100rem);
  height: auto;
  max-height: 74dvh;
  object-fit: contain;
  animation: viewer-image-in 340ms var(--ease-out) both;
}

@keyframes viewer-image-in {
  from {
    opacity: 0;
    transform: scale(0.988);
  }
}

.viewer__nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  transform: translateY(-50%);
  color: rgb(250 249 245 / 78%);
  cursor: pointer;
  font: 400 1.15rem/1 var(--font-sans);
  transition: color 180ms ease, transform 220ms var(--ease-out);
}

.viewer__nav:hover {
  color: var(--white);
}

.viewer__nav--prev {
  left: var(--page-gutter);
}

.viewer__nav--next {
  right: var(--page-gutter);
}

.viewer__nav--prev:hover {
  transform: translate(-0.25rem, -50%);
}

.viewer__nav--next:hover {
  transform: translate(0.25rem, -50%);
}

.viewer__footer p {
  text-transform: none;
  letter-spacing: 0.045em;
}

.viewer__footer {
  display: grid;
  width: 100%;
  min-height: 2.75rem;
  grid-template-columns: 1fr auto 1fr;
  margin-top: clamp(1rem, 2vh, 1.35rem);
}

.viewer__footer p {
  grid-column: 2;
  text-align: center;
}

.viewer__footer > a {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
}

.reveal {
  transition:
    opacity 680ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 760ms var(--ease-out) var(--reveal-delay, 0ms),
    clip-path 980ms var(--ease-in-out) var(--reveal-delay, 0ms);
}

.frame-meta.reveal {
  transition-delay: var(--caption-delay, 110ms);
}

.js.is-app-ready .reveal:not(.is-visible) {
  opacity: 0;
}

.js.is-app-ready .reveal--line:not(.is-visible) {
  transform: translateY(1.65rem);
}

.js.is-app-ready .reveal--mask:not(.is-visible) {
  clip-path: inset(0 0 100% 0);
  transform: translateY(1.35rem);
}

.js.is-app-ready .reveal--image:not(.is-visible) {
  clip-path: inset(0 100% 0 0);
}

.js.is-app-ready .reveal--image[data-reveal-origin="right"]:not(.is-visible) {
  clip-path: inset(0 0 0 100%);
}

.js.is-app-ready .reveal--image[data-reveal-origin="up"]:not(.is-visible) {
  clip-path: inset(100% 0 0 0);
}

.js.is-app-ready .reveal--image:not(.is-visible) img {
  transform: scale(1.06);
}

.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .media-button:not(.hero__media):hover img {
    transform: scale(1.014);
  }
}

@media (min-width: 1101px) {
  .composition--portrait-right {
    grid-template-columns: 1fr minmax(20rem, 30.5vw);
  }

  .composition--wide-left .composition__frame,
  .composition--wide-right .composition__frame {
    width: 88%;
  }

  .composition--wide-right .composition__frame {
    justify-self: end;
  }

  .composition--pair .composition__frame:first-of-type {
    width: 65%;
  }

  .composition--pair .composition__frame:last-of-type {
    width: 88%;
  }

  .composition--small-center .composition__frame {
    width: min(27vw, 26rem);
  }

  .story-item--portrait-left .story-frame {
    width: min(30vw, 30rem);
  }

  .story-item--pair .story-frame:first-of-type {
    width: 88%;
  }

  .story-item--pair .story-frame:last-of-type {
    width: 75%;
  }

  .story-item--portrait-right .story-frame {
    width: min(28vw, 28rem);
  }
}

@media (min-width: 1101px) and (max-width: 1536px) {
  .composition--portrait-right {
    min-height: 78svh;
    grid-template-columns: 1fr minmax(18rem, 28.5vw);
  }

  .composition--wide-left,
  .composition--wide-right {
    min-height: 78svh;
  }

  .composition--wide-left .composition__frame,
  .composition--wide-right .composition__frame,
  .composition--pair .composition__frame:last-of-type,
  .story-item--pair .story-frame:first-of-type {
    width: 84%;
  }

  .composition--pair,
  .story-item--pair {
    min-height: 96svh;
  }

  .composition--pair .composition__frame:first-of-type {
    width: 62%;
  }

  .composition--small-center {
    min-height: 68svh;
  }

  .composition--small-center .composition__frame {
    width: min(25.5vw, 24rem);
  }

  .story-item--portrait-left,
  .story-item--portrait-right {
    min-height: 84svh;
  }

  .story-item--portrait-left .story-frame {
    width: min(28vw, 27rem);
  }

  .story-item--pair .story-frame:last-of-type {
    width: 72%;
  }

  .story-item--portrait-right .story-frame {
    width: min(26.5vw, 26rem);
  }
}

@media (max-width: 1024px) {
  .hero__name {
    font-size: clamp(5rem, 16.3vw, 10rem);
  }

  .composition--portrait-right {
    grid-template-columns: 1fr minmax(18rem, 42vw);
  }

  .composition--pair,
  .story-item--pair {
    gap: 5vw;
  }

  .about__details {
    width: min(25rem, 36vw);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .section-heading,
  .story__heading {
    min-height: 64svh;
  }

  .composition--portrait-right,
  .composition--wide-left,
  .composition--wide-right {
    min-height: 76svh;
  }

  .composition--pair,
  .story-item--pair {
    min-height: 92svh;
  }

  .composition--small-center {
    min-height: 68svh;
  }

  .story-item--portrait-left,
  .story-item--portrait-right {
    min-height: 84svh;
  }

  .contact-sheet__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-cell:nth-child(even) {
    margin-top: 4vh;
  }

  .contact-cell:last-child {
    margin-top: -2vh;
    grid-column: 3;
  }

  .about {
    min-height: 72svh;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: clamp(1.125rem, 4.6vw, 1.25rem);
  }

  .micro-label {
    font-size: 0.65rem;
  }

  .site-header {
    min-height: calc(3.5rem + env(safe-area-inset-top, 0px));
    grid-template-columns: auto 1fr;
    padding-block: 0.35rem;
  }

  .is-menu-ready .site-header__menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-width: 3.6rem;
    min-height: 2.75rem;
    gap: 0.6rem;
    align-items: center;
    justify-self: end;
    color: inherit;
    cursor: pointer;
    font: 400 0.6rem/1 var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-header__menu-icon {
    position: relative;
    display: block;
    width: 1rem;
    height: 0.7rem;
  }

  .site-header__menu-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 300ms var(--ease-out), top 300ms var(--ease-out);
  }

  .site-header__menu-icon i:first-child {
    top: 0.15rem;
  }

  .site-header__menu-icon i:last-child {
    top: 0.55rem;
  }

  .site-header.is-menu-open .site-header__menu-icon i {
    top: 0.35rem;
  }

  .site-header.is-menu-open .site-header__menu-icon i:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .site-header__menu-icon i:last-child {
    transform: rotate(-45deg);
  }

  .site-header__nav {
    justify-self: end;
    gap: clamp(0.65rem, 2.8vw, 1.2rem);
    font-size: 0.6rem;
  }

  .is-menu-ready .site-header__nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    padding:
      max(6.5rem, calc(5rem + env(safe-area-inset-top, 0px)))
      max(var(--page-gutter), env(safe-area-inset-right, 0px))
      max(2rem, env(safe-area-inset-bottom, 0px))
      max(var(--page-gutter), env(safe-area-inset-left, 0px));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    overflow: auto;
    background: var(--black);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.5rem);
    transition:
      visibility 0s linear 360ms,
      opacity 260ms ease,
      transform 360ms var(--ease-out);
  }

  .is-menu-ready .site-header.is-menu-open .site-header__nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .is-menu-ready .site-header__nav a {
    min-height: 3.8rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--line-light);
    font: 400 clamp(2.6rem, 14vw, 5rem)/0.9 var(--font-display);
    letter-spacing: -0.045em;
  }

  .is-menu-ready .site-header__nav-meta {
    position: absolute;
    right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--light-muted);
  }

  .is-menu-ready .site-header__nav-meta a {
    min-height: 2.75rem;
    padding: 0;
    border: 0;
    align-items: center;
    color: var(--white);
    font: inherit;
    letter-spacing: inherit;
  }

  .is-menu-ready .site-header__brand,
  .is-menu-ready .site-header__menu-toggle {
    z-index: 2;
  }

  body.menu-open .site-header {
    color: var(--white);
    text-shadow: none;
  }

  body.menu-open .site-header.is-scrolled {
    background: transparent;
    backdrop-filter: none;
  }

  .site-header__index {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__sticky {
    position: relative;
    top: auto;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "label"
      "first-name"
      "photo"
      "last-name"
      "metadata"
      "instagram"
      "scroll";
    padding:
      calc(clamp(4.75rem, 10dvh, 5.25rem) + env(safe-area-inset-top, 0px))
      var(--page-gutter)
      calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow: visible;
  }

  .hero__meta {
    display: contents;
  }

  .hero__meta > span {
    grid-area: label;
    margin-bottom: 0.65rem;
    color: rgb(250 249 245 / 68%);
  }

  .hero__meta > a {
    min-height: 2.75rem;
    grid-area: instagram;
    display: inline-flex;
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
    align-items: center;
    justify-self: end;
    color: rgb(250 249 245 / 76%);
  }

  .hero__name {
    display: contents;
    font-size: initial;
  }

  .hero__word {
    position: static;
    left: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    white-space: nowrap;
  }

  .hero__word--back {
    grid-area: first-name;
    margin-bottom: 0.8rem;
    color: var(--paper);
    font: 400 clamp(3.2rem, 16.8vw, 4.75rem)/0.78 var(--font-display);
    text-align: left;
    text-shadow: none;
  }

  .hero__word--front {
    grid-area: last-name;
    margin-top: 0.55rem;
    margin-bottom: 0.85rem;
    color: transparent;
    font: 400 clamp(3.7rem, 18.7vw, 5.1rem)/0.76 var(--font-display);
    text-align: right;
    -webkit-text-stroke: 1px rgb(250 249 245 / 90%);
  }

  .hero__frame-slot,
  .hero__figure {
    display: contents;
  }

  .hero__figure > .hero__media {
    grid-area: photo;
    width: 92%;
    height: auto;
    aspect-ratio: 2 / 3;
    justify-self: center;
    clip-path: none;
    will-change: auto;
  }

  .hero__figure .hero__media img,
  .frame__button img {
    object-position: var(--frame-position-mobile, var(--frame-position, 50% 50%));
  }

  .hero__figure .hero__media img {
    will-change: auto;
  }

  .hero__figure .frame-meta {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    width: 100%;
    grid-area: metadata;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    margin: 0;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line-light);
    color: rgb(250 249 245 / 76%);
    font-size: 0.64rem;
    text-align: left;
  }

  .hero__figure .frame-meta span:last-child {
    justify-self: end;
    text-align: right;
  }

  .hero__scroll {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 2.75rem;
    grid-area: scroll;
    justify-content: space-between;
  }

  .is-intro-ready .site-header {
    animation: mobile-intro-line 520ms var(--ease-out) both;
  }

  .is-intro-ready .hero__meta > span {
    animation: mobile-intro-line 560ms var(--ease-out) 100ms both;
  }

  .is-intro-ready .hero__figure > .hero__media {
    animation: mobile-hero-photo 900ms var(--ease-in-out) 180ms both;
  }

  .is-intro-ready .hero__figure .hero__media img {
    animation: mobile-hero-image 1000ms var(--ease-out) 180ms both;
  }

  .is-intro-ready .hero__word--back {
    animation: mobile-title-in 680ms var(--ease-out) 520ms both;
  }

  .is-intro-ready .hero__word--front {
    animation: mobile-title-in 680ms var(--ease-out) 650ms both;
  }

  .is-intro-ready .hero__figure .frame-meta {
    animation: mobile-intro-line 540ms var(--ease-out) 790ms both;
  }

  .is-intro-ready .hero__meta > a {
    animation: mobile-intro-line 540ms var(--ease-out) 880ms both;
  }

  .is-intro-ready .hero__scroll {
    animation: mobile-intro-line 540ms var(--ease-out) 930ms both;
  }

  @keyframes mobile-intro-line {
    from {
      opacity: 0;
      transform: translateY(0.7rem);
    }
  }

  @keyframes mobile-hero-photo {
    from {
      opacity: 0;
      clip-path: inset(100% 0 0);
    }
    to {
      opacity: 1;
      clip-path: inset(0);
    }
  }

  @keyframes mobile-hero-image {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
  }

  @keyframes mobile-title-in {
    from {
      opacity: 0;
      transform: translateY(0.5rem);
      clip-path: inset(0 0 100%);
    }
    to {
      opacity: 1;
      clip-path: inset(0);
      transform: none;
    }
  }

  .section-heading {
    min-height: 62svh;
    padding-top: 11vh;
  }

  .section-heading > .micro-label:first-child {
    top: 11vh;
  }

  .section-heading h2 {
    font-size: clamp(4.2rem, 21vw, 7.2rem);
    line-height: 0.71;
  }

  .section-heading h2 span:last-child {
    margin-left: 7vw;
  }

  .section-heading__index {
    bottom: 1.8rem;
  }

  .selected__sequence {
    padding-top: clamp(3.5rem, 8vh, 5rem);
    padding-bottom: clamp(2.5rem, 6vh, 4rem);
  }

  .composition {
    min-height: 0;
    margin-bottom: clamp(3.5rem, 10vh, 5.5rem);
  }

  .composition--portrait-right {
    display: block;
  }

  .composition--portrait-right .composition__frame {
    width: 84%;
    margin-left: auto;
  }

  .composition--portrait-right .composition__index {
    position: absolute;
    top: 1rem;
    left: 0;
  }

  .composition--wide-left,
  .composition--wide-right {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .composition--wide-left .composition__frame,
  .composition--wide-right .composition__frame {
    grid-row: 1;
    grid-column: 1;
  }

  .composition--wide-left .composition__frame {
    width: 100%;
  }

  .composition--wide-right .composition__frame {
    width: 96%;
    margin-left: auto;
  }

  .composition--wide-left .composition__index,
  .composition--wide-right .composition__index {
    grid-row: 2;
    grid-column: 1;
    width: 64%;
    padding: 0;
  }

  .composition--pair {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: clamp(3.5rem, 8vh, 5rem);
    padding-top: 2rem;
  }

  .composition--pair .composition__frame:first-of-type {
    width: 84%;
    margin-top: 0;
    align-self: flex-start;
  }

  .composition--pair .composition__frame:last-of-type {
    width: 92%;
    align-self: flex-end;
  }

  .composition--pair .composition__index {
    top: 0;
    right: 0;
    left: auto;
  }

  .composition--small-center {
    display: block;
    min-height: 0;
    padding-block: clamp(1.5rem, 4vh, 2.5rem);
  }

  .composition--small-center .composition__frame {
    width: 76%;
    margin-inline: auto;
  }

  .composition--small-center .composition__index {
    right: 0.5rem;
    bottom: 0;
  }

  .story {
    padding-bottom: 3vh;
  }

  .story__heading {
    min-height: 62svh;
    padding-top: 11vh;
  }

  .story__heading > p:first-child {
    top: 10vh;
  }

  .story__heading h2 {
    font-size: clamp(4.6rem, 22vw, 7.4rem);
  }

  .story__heading h2 span:last-child {
    margin-left: 7vw;
  }

  .story__sequence {
    padding-top: clamp(3.5rem, 8vh, 5rem);
  }

  .story-item--portrait-left {
    display: block;
    min-height: 0;
    margin-bottom: clamp(4.5rem, 11vh, 6rem);
  }

  .story-item--portrait-left .story-frame {
    width: 82%;
  }

  .story-item--portrait-left .story-item__index {
    position: absolute;
    right: 0;
    bottom: 1rem;
  }

  .story-item--pair {
    display: flex;
    min-height: 0;
    margin-bottom: clamp(4.5rem, 11vh, 6rem);
    padding: 2rem 0 0;
    flex-direction: column;
    gap: clamp(3.5rem, 8vh, 5rem);
  }

  .story-item--pair .story-frame:first-of-type {
    width: 100%;
    align-self: flex-start;
  }

  .story-item--pair .story-frame:last-of-type {
    width: 88%;
    margin-top: 0;
    align-self: flex-end;
  }

  .story-item--pair .story-item__index {
    top: 3vh;
  }

  .story-item--portrait-right {
    display: block;
    min-height: 0;
    margin-bottom: clamp(3.5rem, 9vh, 5rem);
  }

  .story-item--portrait-right .story-frame {
    width: 82%;
    margin-left: auto;
  }

  .story-item--portrait-right .story-item__index {
    position: absolute;
    bottom: 1rem;
    left: 0;
  }

  .full-bleed {
    height: 72dvh;
  }

  .full-bleed__figure .frame-meta {
    min-height: 4rem;
    align-items: start;
    font-size: 0.6rem;
  }

  .contact-sheet {
    padding-top: clamp(4.5rem, 9vh, 6rem);
    padding-bottom: clamp(5rem, 10vh, 7rem);
  }

  .contact-sheet__heading {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-bottom: 7vh;
  }

  .contact-sheet__heading > p:first-child {
    margin-bottom: 1.2rem;
  }

  .contact-sheet__heading h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .contact-sheet__heading > p:last-child {
    display: none;
  }

  .contact-sheet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-cell:nth-child(even) {
    margin-top: clamp(3.5rem, 8vh, 5rem);
  }

  .contact-cell .frame-meta {
    font-size: 0.625rem;
    line-height: 1.45;
    letter-spacing: 0.055em;
  }

  .about {
    min-height: 72svh;
    grid-template-columns: 1fr;
    padding-top: 13vh;
    padding-bottom: 8vh;
  }

  .about__index {
    top: 1.5rem;
  }

  .about__index span:last-child {
    display: none;
  }

  .about__type h2 {
    font-size: clamp(4.35rem, 19vw, 7.25rem);
  }

  .about__type span:last-child {
    margin-left: 4vw;
  }

  .about__details {
    position: static;
    width: 76%;
    margin-top: clamp(3rem, 6vh, 4.5rem);
    margin-left: auto;
  }

  .contact {
    min-height: 84svh;
    padding-top: 13vh;
  }

  .contact__title {
    font-size: clamp(5.2rem, 24vw, 8.4rem);
  }

  .contact__title span:last-child {
    margin-left: 4vw;
  }

  .contact__link {
    margin-top: 6vh;
    font-size: clamp(1.25rem, 6.6vw, 2.2rem);
  }

  .contact__note {
    right: auto;
    left: var(--page-gutter);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    line-height: 1.3;
  }

  .site-footer > *:nth-child(2),
  .site-footer > *:nth-child(3) {
    justify-self: end;
  }

  .site-footer > *:nth-child(3) {
    grid-row: 2;
    grid-column: 1;
    justify-self: start;
  }

  .site-footer > *:last-child {
    grid-row: 2;
    grid-column: 2;
  }

  .viewer__shell {
    padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  .viewer__header {
    top: calc(0.85rem + env(safe-area-inset-top, 0px));
    right: var(--page-gutter);
    left: var(--page-gutter);
  }

  .viewer__content {
    width: 94vw;
    max-height: calc(100dvh - 4rem);
  }

  .viewer__header p span:first-child,
  .viewer__close span:first-child {
    display: none;
  }

  .viewer__stage img {
    max-width: 94vw;
    max-height: 72svh;
  }

  .viewer__nav {
    top: auto;
    bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
    width: 2.8rem;
    height: 2.8rem;
    transform: none;
  }

  .viewer__nav--prev {
    left: var(--page-gutter);
  }

  .viewer__nav--next {
    right: var(--page-gutter);
  }

  .viewer__nav--prev:hover,
  .viewer__nav--next:hover {
    transform: none;
  }

  .viewer__footer {
    min-height: 3.15rem;
    padding-inline: 3rem;
    justify-content: flex-start;
  }

  .viewer__footer > a {
    display: none;
  }

  .viewer__footer p {
    max-width: 100%;
    font-size: 0.625rem;
  }

  .reveal {
    transition-duration: 520ms, 620ms, 760ms;
  }

  .js.is-app-ready .reveal--image:not(.is-visible),
  .js.is-app-ready .reveal--image[data-reveal-origin="right"]:not(.is-visible),
  .js.is-app-ready .reveal--image[data-reveal-origin="up"]:not(.is-visible) {
    clip-path: inset(0 0 14%);
    transform: translateY(1rem);
  }

  .js.is-app-ready .reveal--image:not(.is-visible) img {
    transform: scale(1.04);
  }
}

@media (max-width: 380px) {
  .site-header__nav {
    gap: 0.5rem;
    font-size: 0.56rem;
  }

  .site-header__nav a {
    padding-inline: 0.08rem;
  }

  .about__type h2 {
    font-size: clamp(3.75rem, 18.5vw, 4.35rem);
  }

  .hero__meta {
    font-size: 0.625rem;
  }

  .frame-meta {
    font-size: 0.625rem;
  }
}

@media (max-width: 760px) and (max-height: 700px) and (orientation: portrait) {
  .hero {
    height: auto;
    min-height: 100svh;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 761px) {
  .hero {
    height: 135svh;
  }

  .hero__figure {
    width: min(30vw, 44svh);
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .hero__name {
    font-size: 13vw;
  }

  .hero__meta {
    top: 12vh;
  }

  .section-heading,
  .story__heading {
    min-height: 100svh;
  }

  .composition,
  .story-item,
  .about {
    min-height: 120svh;
  }

  .viewer__stage img {
    max-height: 70svh;
  }

  .viewer__nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .viewer__nav--prev:hover,
  .viewer__nav--next:hover {
    transform: translateY(-50%);
  }
}

@media (orientation: landscape) and (max-height: 600px) and (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__figure > .hero__media {
    width: min(30vw, 12rem);
    aspect-ratio: 2 / 3;
    justify-self: center;
  }

  .hero__word--back {
    font-size: clamp(3rem, 9vw, 4.3rem);
  }

  .hero__word--front {
    font-size: clamp(3.2rem, 10vw, 4.7rem);
  }

  .is-menu-ready .site-header__nav a {
    min-height: 2.8rem;
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .section-heading,
  .story__heading {
    min-height: max(100svh, 22rem);
  }

  .section-heading h2,
  .story__heading h2 {
    font-size: clamp(4rem, 13vw, 6rem);
  }
}

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

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

  .loader {
    display: none;
  }

  .hero {
    height: 100svh;
  }

  .hero__figure {
    --hero-inset: 0% !important;
  }

  .hero__figure > .hero__media {
    clip-path: none;
  }

  .hero__figure .hero__media img {
    --hero-scale: 1 !important;
  }

  .js.is-app-ready .reveal:not(.is-visible) {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .hero {
    height: auto;
    min-height: 100svh;
  }
}

@media (prefers-contrast: more) {
  .frame-meta,
  .micro-label,
  .site-footer,
  .viewer__header,
  .viewer__footer {
    color: currentColor;
  }

  .hero__word--front,
  .story__heading h2 span:last-child,
  .contact__title span:last-child {
    color: var(--white);
    -webkit-text-stroke: 0;
  }
}
