:root {
  font-synthesis: none;
}

@font-face {
  font-family: "La Belle Aurore";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/la-belle-aurore-400-normal.ttf") format("truetype");
}

@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/uncut-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/uncut-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/uncut-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/geist-mono-latin-variable.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Symbola";
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url("/fonts/symbola.ttf") format("truetype");
}

:root {
  color: #5e584a;
  background: #f1efec;
  font-family: "Uncut Sans", sans-serif;
  text-rendering: geometricPrecision;
  --paper: #f1efec;
  --ink: #5e584a;
  --muted: #aaa8a6;
  --brown: #9a7f5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--paper);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

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

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

.page {
  min-height: 100vh;
}

.stage-shell {
  position: relative;
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow: visible;
}

.stage {
  position: relative;
  width: 1280px;
  height: 2718px;
  overflow: visible;
  transform-origin: top left;
  background: #f1efec;
  contain: layout style;
}

.header--home-layer + .stage {
  pointer-events: none;
  background: transparent;
}

.header--home-layer + .stage .postcard--about,
.header--home-layer + .stage .stamp,
.header--home-layer + .stage .footer a {
  pointer-events: auto;
}

.header--home-layer ~ .projects-section {
  visibility: hidden;
  pointer-events: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 1280px;
  height: 100px;
  isolation: isolate;
  pointer-events: none;
  transform: scale(var(--header-scale));
  transform-origin: top left;
}

.header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 1280px;
  height: var(--header-blur-height, 220px);
  content: "";
  pointer-events: none;
  background: rgb(241 239 236 / 30%);
  -webkit-backdrop-filter: blur(var(--header-blur-radius, 20px)) saturate(1.06) brightness(1.01);
  backdrop-filter: blur(var(--header-blur-radius, 20px)) saturate(1.06) brightness(1.01);
  backface-visibility: hidden;
  opacity: 0;
  transform: translateZ(0);
  transition:
    opacity 180ms ease,
    box-shadow 280ms ease;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0 24%,
    rgb(0 0 0 / 72%) 48%,
    rgb(0 0 0 / 28%) 76%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0 24%,
    rgb(0 0 0 / 72%) 48%,
    rgb(0 0 0 / 28%) 76%,
    transparent 100%
  );
}

.header::after {
  content: none;
}

.header--scrolled::before {
  opacity: 1;
  box-shadow: 0 18px 42px rgb(94 88 74 / 3%);
}

.header::before,
.header::after,
.about-header::before,
.about-header::after {
  content: none;
}

.progressive-header-blur {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 1280px;
  height: 190px;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease;
  will-change: opacity;
}

.header--scrolled > .progressive-header-blur,
.about-header--scrolled > .progressive-header-blur {
  opacity: 1;
}

.progressive-header-blur__filter,
.progressive-header-blur__tint {
  position: absolute;
  inset: -32px 0 -32px;
  display: block;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: backdrop-filter;
}

.progressive-header-blur__filter--1 {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 42%, transparent 82%);
  mask-image: linear-gradient(to bottom, #000 0 42%, transparent 82%);
}

.progressive-header-blur__filter--2 {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 35%, transparent 76%);
  mask-image: linear-gradient(to bottom, #000 0 35%, transparent 76%);
}

.progressive-header-blur__filter--3 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 28%, transparent 70%);
  mask-image: linear-gradient(to bottom, #000 0 28%, transparent 70%);
}

.progressive-header-blur__filter--4 {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 20%, transparent 62%);
  mask-image: linear-gradient(to bottom, #000 0 20%, transparent 62%);
}

.progressive-header-blur__filter--5 {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 12%, transparent 54%);
  mask-image: linear-gradient(to bottom, #000 0 12%, transparent 54%);
}

.progressive-header-blur__filter--6 {
  -webkit-backdrop-filter: blur(18px) saturate(1.08) brightness(1.02);
  backdrop-filter: blur(18px) saturate(1.08) brightness(1.02);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 4%, transparent 45%);
  mask-image: linear-gradient(to bottom, #000 0 4%, transparent 45%);
}

.progressive-header-blur__tint {
  inset: 0;
  background: rgb(241 239 236 / 58%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 24%, transparent 94%);
  mask-image: linear-gradient(to bottom, #000 0 24%, transparent 94%);
}

/* Home glass lives outside the scaled canvas so its fade is viewport-sized. */
.home-progressive-header-blur {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transform: none;
  opacity: 0;
}

.home-progressive-header-blur--scrolled {
  opacity: 1;
}

/* Feathered, overlapping blur bands create a genuinely progressive fade. */
.home-progressive-header-blur .progressive-header-blur__filter {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 350px;
  display: block;
  transform: none;
}

.home-progressive-header-blur .progressive-header-blur__filter--1 {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 62%,
    rgb(0 0 0 / 28%) 74%,
    rgb(0 0 0 / 52%) 87%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 62%,
    rgb(0 0 0 / 28%) 74%,
    rgb(0 0 0 / 52%) 87%,
    transparent 100%
  );
}

.home-progressive-header-blur .progressive-header-blur__filter--2 {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 46%,
    rgb(0 0 0 / 30%) 59%,
    rgb(0 0 0 / 66%) 73%,
    rgb(0 0 0 / 28%) 86%,
    transparent 98%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 46%,
    rgb(0 0 0 / 30%) 59%,
    rgb(0 0 0 / 66%) 73%,
    rgb(0 0 0 / 28%) 86%,
    transparent 98%
  );
}

.home-progressive-header-blur .progressive-header-blur__filter--3 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 31%,
    rgb(0 0 0 / 34%) 45%,
    rgb(0 0 0 / 76%) 59%,
    rgb(0 0 0 / 34%) 73%,
    transparent 88%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 31%,
    rgb(0 0 0 / 34%) 45%,
    rgb(0 0 0 / 76%) 59%,
    rgb(0 0 0 / 34%) 73%,
    transparent 88%
  );
}

.home-progressive-header-blur .progressive-header-blur__filter--4 {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 17%,
    rgb(0 0 0 / 38%) 31%,
    rgb(0 0 0 / 84%) 46%,
    rgb(0 0 0 / 38%) 61%,
    transparent 77%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 17%,
    rgb(0 0 0 / 38%) 31%,
    rgb(0 0 0 / 84%) 46%,
    rgb(0 0 0 / 38%) 61%,
    transparent 77%
  );
}

.home-progressive-header-blur .progressive-header-blur__filter--5 {
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 3%,
    rgb(0 0 0 / 46%) 17%,
    rgb(0 0 0 / 92%) 32%,
    rgb(0 0 0 / 44%) 48%,
    transparent 65%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 3%,
    rgb(0 0 0 / 46%) 17%,
    rgb(0 0 0 / 92%) 32%,
    rgb(0 0 0 / 44%) 48%,
    transparent 65%
  );
}

.home-progressive-header-blur .progressive-header-blur__filter--6 {
  -webkit-backdrop-filter: blur(21px) saturate(1.08) brightness(1.02);
  backdrop-filter: blur(21px) saturate(1.08) brightness(1.02);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0,
    rgb(0 0 0 / 88%) 16%,
    rgb(0 0 0 / 48%) 34%,
    transparent 56%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0,
    rgb(0 0 0 / 88%) 16%,
    rgb(0 0 0 / 48%) 34%,
    transparent 56%
  );
}

.home-progressive-header-blur .progressive-header-blur__tint {
  inset: 0 auto auto 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(
    to bottom,
    rgb(241 239 236 / 22%) 0,
    rgb(241 239 236 / 16%) 26%,
    rgb(241 239 236 / 7%) 58%,
    transparent 94%
  );
  -webkit-mask-image: none;
  mask-image: none;
}

.brand,
.nav {
  z-index: 2;
  pointer-events: auto;
}

.brand {
  position: absolute;
  top: 33px;
  left: 105px;
  width: 119px;
  height: 53px;
  font-family: "Arial Unicode MS", "Arial Unicode", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  word-break: break-word;
}

.brand__figma-trail,
.brand__figma-star-anchor,
.brand__figma-flower-line,
.brand__figma-right-star {
  position: absolute;
  display: block;
  margin: 0;
  white-space: nowrap;
}

.brand__figma-trail {
  top: 5px;
  left: 0;
  width: 49px;
  height: 27px;
  color: #aaa;
  font-size: 20px;
  line-height: normal;
}

.brand__figma-star-anchor {
  z-index: 0;
  top: 14px;
  left: 52px;
  width: 20px;
  height: 20px;
}

.brand__figma-star-spinner {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform-origin: 50% 50%;
  will-change: transform;
}

.brand__figma-star-glyph {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--brown);
  font-size: 20px;
  line-height: 20px;
  text-align: center;
}

.brand__figma-flower-line {
  z-index: 1;
  top: 2px;
  left: 52px;
  width: 53px;
  height: 32px;
  color: #000;
  font-size: 0;
  line-height: 0;
  white-space: pre;
}

.brand__figma-leading-space {
  font-size: 20px;
  line-height: normal;
}

.brand__figma-flower,
.brand__figma-accents {
  font-size: 24px;
  line-height: normal;
}

.brand__figma-flower {
  color: #4e738a;
}

.brand__figma-accents,
.brand__figma-right-star {
  color: #aaa;
}

.brand__figma-right-star {
  top: 0;
  left: 105px;
  width: 14px;
  height: 32px;
  font-size: 24px;
  line-height: normal;
}

.brand:hover .brand__figma-star-glyph,
.brand__figma-star-anchor:hover .brand__figma-star-glyph {
  animation: spin-logo-star 1.2s linear infinite;
}

.nav {
  position: absolute;
  top: 40px;
  left: 834px;
  display: flex;
  align-items: flex-start;
  gap: 43px;
  width: 481px;
  height: 19px;
  color: #aaa8a6;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}

.nav a {
  position: relative;
  transition: color 320ms cubic-bezier(.22, .72, .2, 1);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(.22, .72, .2, 1);
}

.nav a:hover,
.nav .is-active {
  color: #74726f;
}

.nav a:hover::after,
.nav .is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: absolute;
  z-index: 35;
  inset: var(--hero-top-offset, 0px) 0 auto 0;
  height: 850px;
}

.hero--intro-complete {
  z-index: 5;
}

.hero__collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 850px;
  transform: scale(.96);
  transform-origin: 50% 0;
}

.hero-intro-wash {
  position: absolute;
  z-index: 18;
  top: 0;
  left: 0;
  width: 1280px;
  height: var(--stage-height);
  pointer-events: none;
  background: #f1efec;
}

.hero--intro-complete .hero-intro-wash {
  display: none;
}

.postcard {
  position: absolute;
  margin: 0;
  overflow: hidden;
  transform-origin: 0 0;
}

.postcard--constellation > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postcard--about {
  z-index: 8;
  top: 143px;
  left: 42px;
  width: 667.769px;
  height: 445.365px;
  overflow: visible;
  perspective: 1600px;
  transform: rotate(-4.8213341251deg);
}

.postcard__flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(.2,.72,.2,1);
  will-change: transform;
}

.postcard--about.is-flipped .postcard__flipper {
  transform: rotateY(180deg);
}

.postcard__face {
  position: absolute;
  inset: 0;
  /* Stamps can overhang the paper. Keep the complete face (including that
     overhang) together for backface hiding without clipping its contents. */
  overflow: visible;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: flat;
}

.postcard__face--back > img {
  position: absolute;
  top: 0.297px;
  left: 0;
  width: 667.769px;
  height: 445.068px;
  object-fit: cover;
}

.postcard__face--front {
  transform: rotateY(180deg);
}

.postcard__face--front > img {
  position: absolute;
  top: 0;
  left: 4.432px;
  width: 659.813px;
  height: 439.766px;
  object-fit: cover;
}

.postcard--about.is-flipped .postcard__face--back {
  pointer-events: none;
}

.postcard--about:focus-visible {
  outline: none;
}

.postcard__hover-target {
  position: absolute;
  z-index: 20;
  top: 34.25px;
  left: 43.75px;
  width: 576.9px;
  height: 371.2px;
  pointer-events: auto;
}

.postcard__copy {
  position: absolute;
  z-index: 3;
  top: 127.671px;
  left: 98.618px;
  width: 420px;
  color: #48443b;
  font-size: 10.8px;
  font-family: "Uncut Sans", Arial, sans-serif;
  font-weight: 500;
  font-kerning: normal;
  line-height: 12.25px;
  text-rendering: optimizeLegibility;
  transform: rotate(-0.414deg);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

.postcard__copy p {
  margin: 0 0 9.5px;
}

.postcard__stamp-target {
  position: absolute;
  z-index: 4;
  top: 36px;
  left: 514px;
  width: 106px;
  height: 138px;
  pointer-events: none;
}

.postcard__placed-stamps {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  transform: translateZ(1px);
  transform-style: preserve-3d;
}

.postcard__placed-stamp {
  position: absolute;
  display: block;
  overflow: hidden;
  transform-origin: 0 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.postcard--constellation {
  z-index: 7;
  top: 210px;
  left: 570.536px;
  width: 667.77px;
  height: 445.069px;
  transform: rotate(4.321278461deg);
}

.stamp {
  position: absolute;
  z-index: var(--stamp-z);
  top: var(--y);
  left: var(--x);
  width: var(--w);
  height: var(--h);
  padding: 0;
  border: 0;
  margin: 0;
  overflow: visible;
  appearance: none;
  background: transparent;
  touch-action: none;
  user-select: none;
  transform:
    translate3d(0, 0, 0)
    rotate(var(--rotation));
  transform-origin: 0 0;
  opacity: 1;
  transition: opacity 100ms linear 380ms;
}

.hero--intro .stamp {
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.stamp:focus-visible {
  outline: none;
}

.stamp.is-active {
  z-index: 60;
  transition: none;
  will-change: transform;
}

.stamp.is-on-postcard {
  opacity: 0;
  transition: none;
}

.stamp.is-on-postcard.is-on-hidden-face {
  pointer-events: none;
}

.stamp__flip {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  transform: rotateY(0);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(.2, .72, .2, 1);
}

.stamp.is-active .stamp__flip {
  transition: none;
}

.crop-image {
  position: absolute;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.dot-art {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.dot-art--left {
  top: 108px;
  left: 28.444px;
  width: 350.355px;
  height: 273px;
}

.dot-art--right {
  top: 461px;
  left: 952px;
  width: 309px;
  height: 286px;
}

.dot-art__source-text,
.dot-art__trail-text {
  position: absolute;
  inset: 0;
  width: max-content;
  min-width: 100%;
  height: max-content;
  min-height: 100%;
  margin: 0;
  overflow: visible;
  color: var(--dot-art-base, #a8a8a8);
  font-family: "Inter", "Symbola", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0;
  white-space: pre;
}

.dot-art__blank-cells {
  display: inline-block;
}

.dot-art__trail-text {
  z-index: 1;
  color: var(--dot-art-glint, #6a6457);
  opacity: 0;
  text-shadow: none;
  mask-image: linear-gradient(transparent, transparent);
  mask-repeat: no-repeat;
  mask-composite: add;
  -webkit-mask-image: linear-gradient(transparent, transparent);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-over;
  transition: opacity 70ms linear;
  will-change: mask-image, -webkit-mask-image;
}

.projects-section {
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  /* Let the footer stay interactive after the envelope has scrolled away. */
  pointer-events: none;
}

.projects-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: visible;
  isolation: isolate;
}

.envelope-motion {
  position: absolute;
  left: 50%;
  isolation: isolate;
  margin: 0;
  backface-visibility: hidden;
  transform: translateX(-50%);
}

.envelope-scale {
  width: 913.9px;
  height: 843.3px;
  backface-visibility: hidden;
  transform-origin: top left;
}

.envelope-path {
  width: 913.9px;
  height: 843.3px;
  backface-visibility: hidden;
  contain: layout style;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.envelope-scene {
  position: relative;
  width: 1235px;
  height: 1139.558px;
  overflow: visible;
  backface-visibility: hidden;
  transform: translateZ(0) scale(.82);
  transform-origin: top left;
}

.envelope-part {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  backface-visibility: hidden;
}

.envelope-back {
  z-index: 1;
  top: 0;
  left: 20.698px;
  width: 1132.658px;
  height: 1139.558px;
}

.envelope-front {
  z-index: 5;
  top: 426.794px;
  left: 38.756px;
  width: 1119.932px;
  height: 651.329px;
}

.envelope-front .crop-image {
  transform: none;
}

.project-letter {
  --project-paper-tail: 220px;
  position: absolute;
  z-index: 3;
  top: 302.426px;
  left: 133.389px;
  width: 923.503px;
  height: 724.441px;
  padding: 0;
  border: 0;
  background: transparent;
  backface-visibility: hidden;
  box-shadow: none;
  color: #5e584a;
  transform-origin: 50% 78%;
  will-change: transform;
}

.project-letter-corner-overlay {
  --project-paper-tail: 220px;
  position: absolute;
  z-index: 6;
  top: 302.426px;
  left: 133.389px;
  width: 923.503px;
  height: calc(724.441px + var(--project-paper-tail));
  pointer-events: none;
  backface-visibility: hidden;
  transform-origin: 50% 78%;
  will-change: transform;
}

.project-letter__paper {
  position: absolute;
  top: 3.45px;
  left: 0;
  width: 923.375px;
  height: calc(720.992px + var(--project-paper-tail));
  background: rgb(255 253 246);
}

.project-letter__corner {
  position: absolute;
  z-index: 2;
  overflow: hidden;
}

.project-letter__corner--tl {
  top: 0;
  left: 4.436px;
  width: 146.249px;
  height: 160.046px;
}

.project-letter__corner--tr {
  top: 0;
  left: 780.411px;
  width: 139.27px;
  height: 152.408px;
  transform: scaleX(-1);
}

.project-letter__corner--bl {
  top: calc(571.504px + var(--project-paper-tail));
  left: 0;
  width: 139.267px;
  height: 152.405px;
  transform: scaleY(-1);
  display: block;
}

.project-letter__corner--br {
  top: calc(571.504px + var(--project-paper-tail));
  left: 784.236px;
  width: 139.267px;
  height: 152.405px;
  transform: scale(-1);
  display: block;
}

.project-letter__heading {
  position: absolute;
  z-index: 2;
  top: 20.101px;
  left: 351.648px;
  width: 249.53px;
  height: 60px;
}

.project-letter__title-art {
  position: absolute;
  top: 0;
  left: 8.927px;
  width: 202.269px;
  height: 43.826px;
  overflow: hidden;
}

.project-letter__heading p {
  position: absolute;
  top: 50.043px;
  left: .223px;
  width: 249.53px;
  margin: 0;
  color: #7b6f62;
  font-family: "Geist Mono Variable", monospace;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}

.project-letter__dot-art {
  z-index: 1;
  top: 88.54px;
  left: 372.57px;
  width: 484.11px;
  height: 581.85px;
  opacity: 1;
}

.project-letter__dot-art .dot-art__source-text,
.project-letter__dot-art .dot-art__trail-text {
  color: var(--dot-art-base, #a8a8a8);
  font-family: "Uncut Sans", "Symbola", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 11px;
}

.project-letter__dot-art .dot-art__trail-text {
  color: var(--dot-art-glint, #6a6457);
}

.project-content {
  position: absolute;
  z-index: 2;
  top: 195.484px;
  left: 116.141px;
  width: 688.794px;
  height: 303.575px;
}

.project-row {
  position: absolute;
  left: 125.34px;
  display: block;
  pointer-events: auto;
  height: 12px;
  color: #4e493f;
  font-family: "Uncut Sans", Arial, sans-serif;
  font-size: 14.24px;
  font-weight: 500;
  line-height: 15.62px;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.project-row__status {
  font-weight: 400;
}

.project-row:hover {
  color: #9a7f5f;
  transform: translateX(4px);
}

.project-divider {
  position: absolute;
  left: 125.34px;
  width: 563.454px;
  height: .5px;
  background: rgb(78 73 63 / 68%);
}

.project-year {
  position: absolute;
  overflow: hidden;
}

.project-year--2026 {
  top: 51.746px;
  left: 0;
  width: 55.29px;
  height: 20.73px;
}

.project-year--2025 {
  top: 195.625px;
  left: 2.3px;
  width: 52.29px;
  height: 20.12px;
}

.project-year--2024 {
  top: 278.277px;
  left: 1.15px;
  width: 53.89px;
  height: 23.25px;
}

.footer-shell {
  position: relative;
  width: 100%;
  overflow: clip;
  background: #05070c;
}

.footer-canvas {
  position: relative;
  transform-origin: top left;
}

.footer {
  position: absolute;
  top: var(--footer-top);
  left: -8px;
  width: 1310px;
  height: var(--footer-height);
  background: #05070c url("/footer/background.png") center / cover no-repeat;
  color: #eeece6;
}

/* Keep the supplied artwork proportional and bottom-aligned. The matching
   texture underneath fills wide footers without enlarging or cropping flowers. */
.footer::before {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  aspect-ratio: 16 / 9;
  content: "";
  pointer-events: none;
  background: url("/footer/background-flowers.png") right bottom / contain no-repeat;
  mask-image: linear-gradient(to right, transparent, #000 25%);
}

.footer__stamps {
  position: absolute;
  bottom: 70px;
  left: 106px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(530px, calc((var(--footer-height) - 80px) * 1.35));
  transform: rotate(-4deg);
}

.footer__reset {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: "Geist Mono Variable", monospace;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  opacity: .6;
  cursor: pointer;
  transform: rotate(4deg);
  transform-origin: left center;
  transition: opacity 160ms ease;
}

.footer__reset-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  /* The symbol font draws this glyph above its line-box center. */
  transform: translateY(3px);
}

.footer__reset:hover,
.footer__reset:focus-visible {
  opacity: 1;
}

.footer__reset:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.footer__stamp {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 643 / 861;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  appearance: none;
  background: transparent;
  pointer-events: auto;
  touch-action: none;
  cursor: grab;
  user-select: none;
  transform: translate(var(--stamp-offset-x, 0%), var(--stamp-offset, 0%))
    rotate(var(--stamp-angle, 0deg));
}

.footer__stamp.is-dragging {
  cursor: grabbing;
}

.footer__stamp.is-dragging,
.footer__stamp.is-settling {
  will-change: translate;
}

.footer__stamp:focus,
.footer__stamp:focus-visible {
  outline: none;
}

.footer__stamp:focus-visible:not([data-pointer-focus]) {
  /* A paper-colored glow follows the perforations, without a rectangular border. */
  filter: brightness(1.08) drop-shadow(0 0 4px rgb(238 236 230 / 40%));
}

/* Each supplied PNG has a transparent canvas. Frame its paper stamp without
   changing the original artwork or its perforated edges. */
.footer__stamp img {
  position: absolute;
  width: calc(4000 / 643 * 100%);
  max-width: none;
  height: auto;
  pointer-events: none;
}

.footer__stamp--1 {
  --stamp-offset-x: -9%;
  --stamp-offset: -7%;
  --stamp-angle: -5deg;
}

.footer__stamp--7 {
  --stamp-offset-x: 3%;
  --stamp-offset: 5%;
  --stamp-angle: -5deg;
}

.footer__stamp--8 {
  --stamp-offset-x: 9%;
  --stamp-offset: 17%;
  --stamp-angle: 2deg;
}

.footer__contact {
  position: absolute;
  z-index: 20;
  top: calc(max(35%, 120px) + 12px);
  left: 760px;
  width: 360px;
  transform: translateY(-50%);
}

.footer__thanks {
  margin: 0;
  color: #fff;
  font-family: "La Belle Aurore", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.footer__thanks span {
  font-family: "Uncut Sans", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}

.footer__invitation {
  margin: 10px 0 12px;
  color: #fff;
  font-family: "Uncut Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__note {
  margin: 14px 0 0;
  color: #fff;
  font-family: "Uncut Sans", sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  line-height: 1.5;
}

.footer__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Geist Mono Variable", monospace;
  font-size: 9px;
  font-weight: 600;
}

.footer nav a {
  display: flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  opacity: 0.62;
  transition: opacity 160ms ease, color 160ms ease;
}

.footer nav a:hover,
.footer nav a:focus-visible {
  opacity: 1;
  color: #fff;
}

.footer nav a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.anchor-target {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}

#thoughts { top: var(--thoughts-top); }
#inspiration { top: var(--inspiration-top); }

.custom-cursor {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 1;
  transform:
    translate3d(calc(var(--cursor-x, -50px) - 14px), calc(var(--cursor-y, -50px) - 14px), 0)
    scale(1);
  contain: layout style;
  isolation: isolate;
  transition: opacity 100ms ease;
  will-change: transform;
}

.custom-cursor__morph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  overflow: visible;
  border: 1px solid rgb(255 255 255 / 0%);
  border-radius: 999px;
  background: rgb(40 41 38 / 0%);
  box-shadow: 0 0 0 rgb(30 29 27 / 0%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: 0 50%;
  backface-visibility: hidden;
  contain: layout style;
  transition:
    width 240ms cubic-bezier(.22, .6, .36, 1),
    height 240ms cubic-bezier(.22, .6, .36, 1),
    transform 240ms cubic-bezier(.22, .6, .36, 1),
    background-color 210ms ease,
    border-color 210ms ease,
    box-shadow 210ms ease;
  will-change: width, height, transform;
}

.custom-cursor__symbol {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #adada4;
  font-family: "Arial Unicode MS", "Symbola", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 0 5px rgb(173 173 164 / 14%);
  transform-origin: 50% 50%;
  transition:
    opacity 120ms ease,
    color 180ms ease,
    transform 180ms cubic-bezier(.2, .78, .25, 1);
}

.custom-cursor__hint {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 100%;
  padding: 0 14px;
  box-sizing: border-box;
  color: #f5f4ef;
  font-family: "Geist Mono Variable", monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translate3d(-5px, 0, 0) scale(.82);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(.22, .6, .36, 1);
}

.custom-cursor.has-hint .custom-cursor__morph {
  width: var(--cursor-hint-width, 132px);
  height: 26px;
  border-color: transparent;
  background: rgb(55 55 51 / 34%);
  box-shadow: 0 8px 24px rgb(30 29 27 / 10%);
  -webkit-backdrop-filter: blur(9px) saturate(.9);
  backdrop-filter: blur(9px) saturate(.9);
  transform: translate3d(10px, -50%, 0);
}

.custom-cursor.has-hint .custom-cursor__hint {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.custom-cursor.is-interactive .custom-cursor__symbol {
  transform: rotate(18deg) scale(1.14);
}

.custom-cursor.has-hint .custom-cursor__symbol {
  opacity: 0;
  transform: rotate(82deg) scale(.42);
}

.custom-cursor.is-pressed {
  transform:
    translate3d(calc(var(--cursor-x, -50px) - 14px), calc(var(--cursor-y, -50px) - 14px), 0)
    scale(0.84);
}

.custom-cursor.is-hidden {
  opacity: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes spin-star {
  to { transform: rotate(1turn); }
}

@keyframes spin-logo-star {
  0% {
    transform: rotate(0turn) scale(1);
  }

  50% {
    transform: rotate(.5turn) scale(1.12);
  }

  100% {
    transform: rotate(1turn) scale(1);
  }
}

@media (pointer: fine) {
  html,
  body,
  a,
  button {
    cursor: none !important;
  }
}

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

@media (max-width: 1024px) {
  .stage {
    width: 100%;
    overflow: visible;
    transform: none;
  }

  .header {
    width: 100%;
    height: 86px;
    transform: none !important;
  }

  .header::before,
  .header::after {
    width: 100%;
  }

  .header::before {
    height: 142px;
    -webkit-backdrop-filter: blur(20px) saturate(1.06);
    backdrop-filter: blur(20px) saturate(1.06);
  }

  .progressive-header-blur {
    width: 100%;
    height: 148px;
  }

  .brand {
    top: 18px;
    left: 16px;
    transform: scale(.72);
    transform-origin: top left;
  }

  .nav {
    top: 27px;
    right: 14px;
    left: auto;
    gap: clamp(10px, 3vw, 22px);
    width: auto;
    height: 18px;
    font-size: clamp(8.5px, 2.65vw, 11px);
    line-height: 12px;
    white-space: nowrap;
  }

  .nav a::after {
    bottom: -4px;
  }

  .stage--compact .hero {
    width: 100%;
    height: 1120px;
  }

  .stage--compact .hero__collage {
    width: 100%;
    height: 1120px;
    transform: scale(.96);
    transform-origin: 50% 0;
  }

  .stage--compact .hero--intro .hero-intro-wash {
    display: block;
    width: 100%;
    height: 1120px;
  }

  .stage--compact .hero--intro-complete .hero-intro-wash {
    display: none;
  }

  .stage--compact .postcard--about,
  .stage--compact .postcard--constellation {
    left: var(--compact-card-left);
    width: 667.769px;
    height: 445.365px;
    transform-origin: top left;
  }

  .stage--compact .postcard--about {
    top: 226px;
    transform:
      rotate(-4.8213341251deg)
      scale(var(--compact-card-scale));
  }

  .stage--compact .postcard--constellation {
    top: 580px;
    transform:
      rotate(4.321278461deg)
      scale(var(--compact-card-scale));
  }

  .stage--compact .postcard__copy {
    font-size: 13px;
    line-height: 14.5px;
  }

  .stage--compact .postcard__copy p {
    margin-bottom: 10.5px;
  }

  .stage--compact .stamp {
    pointer-events: none;
    transform:
      translate3d(0, 0, 0)
      rotate(var(--rotation))
      scale(.62);
  }

  .stage--compact .stamp--garden {
    top: 128px;
    left: 18%;
  }

  .stage--compact .stamp--tea {
    top: 140px;
    left: 58%;
  }

  .stage--compact .stamp--moon {
    top: 122px;
    left: 78%;
  }

  .stage--compact .stamp--horse {
    top: 882px;
    left: 11%;
  }

  .stage--compact .stamp--flowers {
    top: 918px;
    left: 42%;
  }

  .stage--compact .stamp--song {
    top: 886px;
    left: 70%;
  }

  .stage--compact .dot-art--left {
    top: 142px;
    left: -16px;
    transform: scale(.68);
    transform-origin: top left;
  }

  .stage--compact .dot-art--right {
    top: 842px;
    right: -40px;
    left: auto;
    transform: scale(.68);
    transform-origin: top right;
  }

  .stage--compact .dot-art__source-text,
  .stage--compact .dot-art__trail-text {
    font-size: 10px;
    line-height: 12px;
  }

  .projects-pin {
    overflow: hidden;
  }

  .stage--compact .footer {
    left: 0;
    width: 100%;
  }

  .stage--compact .footer::before {
    height: 150px;
    mask-image:
      linear-gradient(to right, transparent, #000 25%),
      linear-gradient(to bottom, transparent, #000 30%);
    mask-composite: intersect;
  }

  .stage--compact .footer__stamps {
    top: 88px;
    bottom: auto;
    left: 50%;
    width: min(380px, calc(80% - 42px));
    transform: translateX(-50%) rotate(-4deg);
  }

  .stage--compact .footer__reset {
    top: calc(100% + 8px);
    font-size: 9px;
  }

  .stage--compact .footer__contact {
    top: auto;
    right: 44px;
    bottom: 12px;
    left: 4px;
    width: auto;
    text-align: center;
    transform: none;
  }

  .stage--compact .footer__thanks {
    font-size: 23px;
  }

  .stage--compact .footer__invitation {
    margin: 8px 0 10px;
    font-size: 9.5px;
  }

  .stage--compact .footer__note {
    margin-top: 12px;
  }

  .stage--compact .footer nav {
    flex-direction: row;
    justify-content: center;
    gap: clamp(10px, 2vw, 18px);
    font-size: 8.5px;
  }

  .stage--compact .footer nav a {
    min-height: 44px;
  }
}

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

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

/* About page */
.about-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 1280px;
  height: 100px;
  pointer-events: none;
  isolation: isolate;
  transform: scale(var(--header-scale));
  transform-origin: top left;
}

.about-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 1280px;
  height: var(--header-blur-height, 220px);
  content: "";
  pointer-events: none;
  background: rgb(241 239 236 / 30%);
  -webkit-backdrop-filter: blur(var(--header-blur-radius, 20px)) saturate(1.06) brightness(1.01);
  backdrop-filter: blur(var(--header-blur-radius, 20px)) saturate(1.06) brightness(1.01);
  opacity: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0 24%,
    rgb(0 0 0 / 72%) 48%,
    rgb(0 0 0 / 28%) 76%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0 24%,
    rgb(0 0 0 / 72%) 48%,
    rgb(0 0 0 / 28%) 76%,
    transparent 100%
  );
  transition: opacity 180ms ease;
}

.about-header::after {
  content: none;
}

.about-header--scrolled::before {
  opacity: 1;
}

.about-header .brand,
.about-header .nav {
  pointer-events: auto;
}

.about-header .brand {
  top: 23px;
}

.about-header .nav {
  top: 30px;
}

.about-page {
  position: relative;
  width: min(100%, 1920px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(108px, 7.5vw, 144px) clamp(64px, 6.7vw, 128px) clamp(118px, 8vw, 154px);
  overflow: visible;
  background: var(--paper);
  font-family: "Uncut Sans", Arial, sans-serif;
  font-weight: 500;
}

.about-intro {
  position: relative;
  width: 100%;
  max-width: 1536px;
  min-height: clamp(700px, 42vw, 805px);
  margin: 0 auto;
  isolation: isolate;
}

.about-portraits {
  position: absolute;
  z-index: 3;
  top: clamp(48px, 3.6vw, 69px);
  left: 7.5%;
  width: 29%;
  aspect-ratio: .82;
  isolation: isolate;
}

.about-portrait {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 83%;
  height: auto;
  aspect-ratio: .82;
  margin: 0;
  padding: 0;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: clamp(12px, 1vw, 19px);
  background: #24231f;
  cursor: pointer;
  box-shadow: 0 14px 20px rgb(57 51 42 / 17%);
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  transition: transform 800ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease;
  will-change: transform;
}

.about-portraits:has(.about-portrait--shuffling) .about-portrait {
  pointer-events: none;
}

.about-portrait > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.about-portrait:focus {
  outline: none;
}

.about-portrait:focus-visible {
  outline: none;
}

.about-portrait--back {
  z-index: 1;
  transform: translate3d(16%, 5%, 0) rotate(3deg);
}

.about-portrait--middle {
  z-index: 2;
  transform: translate3d(8%, 2.5%, 0) rotate(1.3deg);
}

.about-portrait--front {
  z-index: 3;
  transform: translate3d(0, 0, 0) rotate(-.6deg);
}

.about-portrait--shuffling {
  z-index: 5;
  animation: about-card-deck-swap 1100ms both;
}

@keyframes about-card-deck-swap {
  0% {
    z-index: var(--shuffle-start-z);
    transform: var(--shuffle-start-transform);
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
  }

  24% {
    z-index: 5;
    animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  }

  62% {
    z-index: 5;
    transform: translate3d(3%, -3.5%, 0) rotate(.1deg) scale(1.012);
    animation-timing-function: cubic-bezier(.2, .78, .28, 1);
  }

  86%,
  100% {
    z-index: 5;
    transform: translate3d(0, 0, 0) rotate(-.6deg) scale(1);
  }
}

@media (hover: hover) {
  .about-portrait:hover {
    box-shadow: 0 18px 24px rgb(57 51 42 / 21%);
  }

  .about-portraits:not(:has(.about-portrait--shuffling)) .about-portrait--back:hover {
    transform: translate3d(16%, 2%, 0) rotate(3deg) scale(1.008);
  }

  .about-portraits:not(:has(.about-portrait--shuffling)) .about-portrait--middle:hover {
    transform: translate3d(8%, -.5%, 0) rotate(1.3deg) scale(1.008);
  }
}

.about-copy {
  position: relative;
  z-index: 4;
  width: clamp(452px, 35.3125vw, 678px);
  max-width: 51%;
  margin-left: 43.5%;
  padding-top: clamp(48px, 3.6vw, 69px);
}

.about-copy__title {
  width: clamp(220px, 15.2vw, 274px);
  height: auto;
}

.about-copy__eyebrow,
.about-copy__eyebrow--scramble {
  min-height: 1.2em;
  white-space: nowrap;
  cursor: default;

  font-family: "Geist Mono Variable", monospace;
  font-size: clamp(10.5px, .75vw, 12px);
  font-weight: 500;
  letter-spacing: .01em;
}
.about-experience__heading p,
.about-beyond__heading p {
  margin: clamp(8px, .625vw, 10px) 0 clamp(30px, 2.34vw, 37px);
  color: #7b6f62;
  font-family: "Geist Mono Variable", monospace;
  font-size: clamp(10.5px, .75vw, 12px);
  font-weight: 500;
  letter-spacing: .01em;
}

.about-copy__body {
  width: clamp(452px, 35.3125vw, 678px);
  max-width: 100%;
  color: #5e5b55;
  font-family: "Uncut Sans", sans-serif;
  font-size: clamp(12px, .9375vw, 18px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-copy__body p {
  margin: 0 0 clamp(11px, .86vw, 14px);
}

.about-dot-art {
  z-index: 2;
  overflow: visible;
  user-select: none;
}

.about-dot-art--portrait {
  top: 22px;
  left: 66%;
  width: 432px;
  min-width: 0;
  height: 520px;
  min-height: 0;
  opacity: 1;
  overflow: hidden;
  transform: none;
}

.about-dot-art--portrait .dot-art__source-text,
.about-dot-art--portrait .dot-art__trail-text {
  position: absolute;
  inset: 0;
  width: 432px;
  min-width: 0;
  height: 520px;
  min-height: 0;
  overflow: hidden;
}

.about-experience {
  position: relative;
  display: grid;
  grid-template-columns: 29.9% 1fr;
  min-height: clamp(520px, 32vw, 610px);
  padding-top: clamp(58px, 4.2vw, 80px);
  overflow: visible;
}

.about-experience__heading {
  position: relative;
  z-index: 3;
  width: 82%;
  margin: clamp(88px, 6vw, 112px) 0 0 8%;
}

.about-experience__heading img {
  width: 100%;
  height: auto;
}

.about-experience__heading p {
  margin: clamp(7px, .55vw, 10px) 0 0;
}

.about-dot-art--food {
  top: 2%;
  left: 0;
  width: 432px;
  height: 520px;
  opacity: 1;
  transform: none;
}

.about-experience__list {
  position: relative;
  z-index: 4;
  padding-top: clamp(8px, .8vw, 14px);
}

.about-experience__row {
  display: grid;
  grid-template-columns: 25% 1fr;
  min-height: clamp(72px, 5.1vw, 82px);
  padding: clamp(15px, 1.05vw, 17px) 0 clamp(13px, .94vw, 15px);
  border-bottom: 1px solid rgb(94 88 74 / 22%);
}

.about-experience__row:last-child {
  border-bottom: 0;
}

.about-experience__year {
  padding-top: 2px;
  color: #796e60;
  font-family: "Geist Mono Variable", monospace;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 500;
}

.about-experience__detail h3 {
  margin: 0 0 clamp(5px, .39vw, 6px);
  color: #5f5b53;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 500;
}

.about-experience__detail h3 span {
  color: #a09c96;
  font-weight: 400;
}

.about-experience__detail p {
  max-width: min(92%, 615px);
  margin: 0;
  color: #9b9994;
  font-size: clamp(9px, .58vw, 11px);
  line-height: 1.42;
}

.about-experience__row {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms cubic-bezier(.22, 1, .36, 1),
    transform 760ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.about-experience__row--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-experience__row {
  transition-delay: calc(90ms + var(--reveal-index) * 55ms);
}

@media (min-width: 1025px) {
  .about-page {
    width: 1280px;
    max-width: none;
    padding: 144px 86px 118px;
    zoom: calc(100vw / 1280px);
  }

  .about-intro {
    top: -38px;
    max-width: none;
    min-height: 590px;
    margin-bottom: -38px;
  }

  .about-portraits {
    top: 50px;
  }

  .about-copy {
    width: 452px;
    padding-top: 50px;
  }

  .about-copy__title {
    width: 220px;
  }

  .about-copy__eyebrow,
  .about-experience__heading p,
  .about-beyond__heading p {
    margin-top: 8px;
    font-size: 10.5px;
  }

  .about-copy__eyebrow {
    margin-bottom: 30px;
  }

  .about-copy__body {
    width: 452px;
    font-size: 12px;
  }

  .about-copy__body p {
    margin-bottom: 11px;
  }

  .about-dot-art--portrait {
    top: -18px;
    left: 63%;
    width: 432px;
    min-width: 0;
    height: 520px;
    min-height: 0;
    opacity: 1;
  }

  .about-experience {
    grid-template-columns: 35.5% 1fr;
    min-height: 548px;
    padding-top: 42px;
  }

  .about-experience__heading {
    width: 274px;
    margin: 88px 0 0;
  }

  .about-experience__heading p {
    margin: 7px 0 0;
  }

  .about-experience__list {
    padding-top: 8px;
  }

  .about-experience__row {
    grid-template-columns: 35% 1fr;
    min-height: 76px;
    padding: 15px 0 13px;
  }

  .about-experience__year,
  .about-experience__detail h3 {
    font-size: 13.5px;
  }

  .about-experience__detail h3 {
    margin-bottom: 6px;
  }

  .about-experience__detail p {
    max-width: 650px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .about-footer {
    width: 1280px;
    zoom: calc(100vw / 1280px);
  }
}

.about-beyond {
  position: relative;
  padding-top: clamp(112px, 7vw, 136px);
  overflow: visible;
}

.about-beyond__heading {
  position: relative;
  z-index: 3;
  width: clamp(420px, 30.7vw, 492px);
  margin: 0 auto clamp(42px, 3vw, 48px);
  text-align: center;
}

.about-beyond__heading img {
  width: 87%;
  height: auto;
  margin: 0 auto;
}

.about-beyond__heading p {
  width: 93.5%;
  margin: 9px auto 0;
  text-align: center;
}

.about-dot-art--cat {
  top: 4%;
  left: 57%;
  width: 432px;
  height: 520px;
  opacity: 1;
  transform: none;
}

.about-envelope-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, clamp(330px, 25vw, 400px));
  justify-content: center;
  gap: clamp(54px, 3.8vw, 72px) clamp(52px, 3.6vw, 68px);
}

.about-envelope-reveal {
  width: clamp(330px, 25vw, 400px);
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 680ms cubic-bezier(.22, 1, .36, 1),
    transform 760ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(100ms + var(--reveal-index) * 75ms);
  will-change: opacity, transform;
}

.about-envelope-reveal--olive {
  z-index: 6;
}

.about-beyond__heading,
.about-beyond > .about-dot-art--cat {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 680ms cubic-bezier(.22, 1, .36, 1),
    transform 760ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.about-beyond > .about-dot-art--cat {
  transform: translate3d(0, 30px, 0);
  transition-delay: 55ms;
}

.about-beyond__heading.about-beyond__item--visible,
.about-envelope-reveal.about-beyond__item--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-beyond > .about-dot-art--cat.about-beyond__item--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-envelope {
  position: relative;
  width: clamp(330px, 25vw, 400px);
  aspect-ratio: 1200 / 1195;
  transform-origin: 50% 56%;
  transition: transform 420ms cubic-bezier(.22, .72, .2, 1);
}

.about-envelope--blue { transform: rotate(-1.3deg); }
.about-envelope--green { transform: rotate(1.1deg); }
.about-envelope--olive { transform: rotate(-1.3deg); }
.about-envelope--gray { transform: rotate(1.1deg); }

.about-envelope--gallery-trigger {
  cursor: pointer;
}

.about-envelope--gallery-trigger:focus-visible {
  outline: 2px dashed #776b54;
  outline-offset: 9px;
}

.about-envelope__shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.about-envelope__shell--front {
  z-index: 3;
}

.about-envelope__artworks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.about-envelope__artwork {
  position: absolute;
  display: block;
  box-sizing: content-box;
  height: auto;
  box-shadow:
    0 8px 16px rgb(34 39 46 / 22%),
    0 2px 5px rgb(34 39 46 / 16%);
  transform-origin: 50% 84%;
  transition: transform 620ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.about-envelope__artwork--framed {
  border: 7px solid #f9f9f9;
  background: #e5e5e5;
}

.about-envelope--blue .about-envelope__artwork {
  border: 7px solid #f9f9f9;
  background: #e5e5e5;
}

.about-envelope__artwork--aggg-poster {
  z-index: 1;
  top: 37%;
  left: 10.5%;
  width: 34%;
  transform: rotate(-10deg);
}

.about-envelope__artwork--ice-cream {
  z-index: 2;
  top: 29%;
  left: 14%;
  width: 43%;
  transform: rotate(-5.5deg);
}

.about-envelope__artwork--rude-113 {
  z-index: 3;
  top: 23%;
  right: 9%;
  width: 40%;
  transform: rotate(6deg);
}

.about-envelope__artwork--photo-booth {
  z-index: 4;
  top: 40%;
  left: 25%;
  width: 54%;
  transform: rotate(.5deg);
}

.about-envelope__artwork--bmjh {
  z-index: 1;
  top: 25.5%;
  left: 3.5%;
  width: 44%;
  transform: rotate(-4deg);
}
.footer-face {
  font-size: 0.6em;
  display: inline-block;
  vertical-align: 0.08em;
}
.about-envelope__artwork--love-island {
  z-index: 2;
  top: 17.5%;
  left: 43%;
  width: 50.5%;
  transform: rotate(7deg);
}

.about-envelope__artwork--bpr {
  z-index: 3;
  top: 44%;
  right: 3%;
  width: 28%;
  border-radius: 10px;
  transform: rotate(7deg);
}

.about-envelope__artwork--brat {
  z-index: 4;
  top: 44.5%;
  left: 30.5%;
  width: 35%;
  transform: rotate(-1deg);
}

.about-envelope__artwork--cs-dug {
  z-index: 5;
  top: 51%;
  right: 20%;
  width: 29%;
  border-radius: 50%;
  box-shadow: none;
  filter:
    drop-shadow(0 8px 12px rgb(34 39 46 / 20%))
    drop-shadow(0 2px 4px rgb(34 39 46 / 14%));
  transform: rotate(5deg);
}

.about-envelope__artwork--cafe-light {
  z-index: 1;
  top: 7%;
  left: 15%;
  width: 39%;
  transform: rotate(-3deg);
}

.about-envelope--olive .about-envelope__artwork {
  box-shadow: none;
}

.about-envelope__artwork--cafe-dark {
  z-index: 2;
  top: 3%;
  right: 13%;
  width: 40%;
  transform: rotate(7deg);
}

.about-envelope__artwork--lakeside {
  z-index: 1;
  top: 28%;
  left: 7%;
  width: 38%;
  transform: rotate(-8deg);
}

.about-envelope__artwork--city-sky {
  z-index: 2;
  top: 20%;
  left: 31%;
  width: 38%;
  transform: rotate(-1deg);
}

.about-envelope__artwork--trees-sunset {
  z-index: 3;
  top: 27%;
  right: 7%;
  width: 38%;
  transform: rotate(8deg);
}

.about-envelope__stamp {
  position: absolute;
  z-index: 5;
  top: 54%;
  left: -25%;
  width: 40%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translate3d(
    var(--stamp-drag-x, 0),
    var(--stamp-drag-y, 0),
    0
  ) rotate(10deg);
  transform-origin: 50% 50%;
  will-change: transform;
}

.about-envelope__stamp.is-dragging {
  z-index: 8;
  cursor: grabbing;
}

.about-envelope__stamp:focus-visible {
  outline: 2px dashed #7f5e3c;
  outline-offset: 4px;
}

.about-envelope__stamp img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .about-envelope--blue:hover .about-envelope__artwork--aggg-poster {
    transform: translate3d(-1%, -38%, 0) rotate(-11deg);
  }

  .about-envelope--blue:hover .about-envelope__artwork--ice-cream {
    transform: translate3d(-5%, -38%, 0) rotate(-8deg);
  }

  .about-envelope--blue:hover .about-envelope__artwork--rude-113 {
    transform: translate3d(4%, -43%, 0) rotate(9deg);
  }

  .about-envelope--blue:hover .about-envelope__artwork--photo-booth {
    transform: translate3d(0, -33%, 0) rotate(.5deg);
  }

  .about-envelope--green:hover .about-envelope__artwork--bmjh {
    transform: translate3d(-4%, -37%, 0) rotate(-7deg);
  }

  .about-envelope--green:hover .about-envelope__artwork--love-island {
    transform: translate3d(4%, -42%, 0) rotate(9deg);
  }

  .about-envelope--green:hover .about-envelope__artwork--bpr {
    transform: translate3d(0, -30%, 0) rotate(9deg);
  }

  .about-envelope--green:hover .about-envelope__artwork--brat {
    transform: translate3d(-3%, -33%, 0) rotate(-2deg);
  }

  .about-envelope--green:hover .about-envelope__artwork--cs-dug {
    transform: translate3d(5%, -31%, 0) rotate(7deg);
  }

  .about-envelope--olive:hover:not(:has(.about-envelope__stamp:hover)) .about-envelope__artwork--cafe-light {
    transform: translate3d(-3%, -30%, 0) rotate(-5deg);
  }

  .about-envelope--olive:hover:not(:has(.about-envelope__stamp:hover)) .about-envelope__artwork--cafe-dark {
    transform: translate3d(3%, -31%, 0) rotate(9deg);
  }

  .about-envelope--gray:hover .about-envelope__artwork--lakeside {
    transform: translate3d(-5%, -37%, 0) rotate(-11deg);
  }

  .about-envelope--gray:hover .about-envelope__artwork--city-sky {
    transform: translate3d(0, -42%, 0) rotate(-1deg);
  }

  .about-envelope--gray:hover .about-envelope__artwork--trees-sunset {
    transform: translate3d(5%, -37%, 0) rotate(11deg);
  }
}

.about-envelope__copy {
  position: absolute;
  z-index: 4;
  right: 10.5%;
  bottom: 8.5%;
  left: 10.5%;
  color: rgb(255 255 255 / 88%);
  font-family: "Geist Mono Variable", monospace;
  text-align: center;
  text-shadow: none;
}

.about-envelope--gray .about-envelope__copy {
  color: #383838;
}

.about-envelope--green .about-envelope__copy {
  color: #fff5a8;
}

.about-envelope__copy h3 {
  max-width: 88%;
  margin: 0 auto clamp(8px, .55vw, 10px);
  font-size: clamp(11px, .75vw, 14px);
  font-weight: 500;
  line-height: 1.08;
}

.about-envelope--green .about-envelope__copy h3 {
  max-width: 70%;
}

.about-envelope--olive .about-envelope__copy h3 {
  max-width: 64%;
}

.about-envelope--gray .about-envelope__copy h3 {
  max-width: 54%;
}

.about-envelope__copy p,
.about-envelope__copy a {
  display: block;
  margin: 0 auto clamp(3px, .24vw, 4px);
  max-width: 94%;
  font-family: "Uncut Sans", sans-serif;
  font-size: 7.25px;
  font-weight: 500;
  line-height: 9.25px;
  letter-spacing: 0;
}

.about-envelope__copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-coffee-gallery {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: rgb(0 0 0 / 82%);
  animation: about-gallery-fade-in 260ms ease-out both;
}

.about-coffee-gallery::before {
  position: fixed;
  z-index: 1;
  top: 0;
  left: -48px;
  width: calc(100% + 96px);
  height: clamp(170px, 19vw, 250px);
  content: "";
  pointer-events: none;
  background: rgb(0 0 0 / 32%);
  -webkit-backdrop-filter: blur(36px) saturate(1.02) brightness(.7);
  backdrop-filter: blur(36px) saturate(1.02) brightness(.7);
  backface-visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 260ms ease;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0 18%,
    rgb(0 0 0 / 88%) 36%,
    rgb(0 0 0 / 64%) 55%,
    rgb(0 0 0 / 38%) 72%,
    rgb(0 0 0 / 14%) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0 18%,
    rgb(0 0 0 / 88%) 36%,
    rgb(0 0 0 / 64%) 55%,
    rgb(0 0 0 / 38%) 72%,
    rgb(0 0 0 / 14%) 88%,
    transparent 100%
  );
}

.about-coffee-gallery--scrolled::before {
  opacity: 1;
}

.about-coffee-gallery__back {
  position: fixed;
  top: clamp(22px, 3.6vw, 48px);
  left: clamp(22px, 4vw, 58px);
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: "Uncut Sans", Arial, sans-serif;
  font-size: clamp(11px, .9375vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.about-coffee-gallery__back span {
  position: relative;
  display: block;
  width: 24px;
  height: 1px;
  overflow: visible;
  color: transparent;
  background: #fff;
  transition: transform 180ms ease;
}

.about-coffee-gallery__back span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transform-origin: 50% 50%;
}

.about-coffee-gallery__back:hover span {
  transform: translateX(-4px);
}

.about-coffee-gallery__back:focus-visible {
  outline: 1px dashed #fff;
  outline-offset: 6px;
}

.about-coffee-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(15px, 1.55vw, 24px);
  width: min(58vw, 780px);
  margin: 0 auto;
  padding: clamp(110px, 12vh, 150px) 0 clamp(72px, 9vh, 120px);
}

.about-coffee-gallery__column {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 1.55vw, 24px);
  min-width: 0;
  margin: 0;
  padding-top: 0;
}

.about-coffee-gallery__item {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  outline: none;
}

.about-coffee-gallery__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgb(255 255 255 / 8%);
}

.about-coffee-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: clamp(54px, 6vw, 86px) clamp(14px, 1.4vw, 20px) clamp(13px, 1.25vw, 18px);
  color: #fff;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 68%) 0%,
    rgb(0 0 0 / 34%) 48%,
    transparent 100%
  );
  font-family: "Uncut Sans", Arial, sans-serif;
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 7px, 0);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.22, .72, .2, 1);
}

.about-coffee-gallery__item:hover .about-coffee-gallery__caption,
.about-coffee-gallery__item:focus-visible .about-coffee-gallery__caption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-coffee-gallery__item:focus-visible {
  outline: 1px dashed rgb(255 255 255 / 86%);
  outline-offset: 4px;
}

html:has(.about-coffee-gallery) .custom-cursor {
  z-index: 10001;
}

html:has(.about-coffee-gallery) .custom-cursor__symbol {
  color: #fff;
  text-shadow: 0 0 6px rgb(255 255 255 / 18%);
}

.about-nature-gallery {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
  overscroll-behavior: none;
  color: #fff;
  background: rgb(0 0 0 / 91%);
  touch-action: none;
  user-select: none;
  animation: about-gallery-fade-in 260ms ease-out both;
}

.about-nature-gallery::before {
  position: fixed;
  z-index: 2;
  top: 0;
  left: -48px;
  width: calc(100% + 96px);
  height: clamp(150px, 17vw, 230px);
  content: "";
  pointer-events: none;
  background: rgb(0 0 0 / 40%);
  -webkit-backdrop-filter: blur(34px) saturate(.9) brightness(.6);
  backdrop-filter: blur(34px) saturate(.9) brightness(.6);
  opacity: 0;
  transition: opacity 260ms ease;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 16%, rgb(0 0 0 / 74%) 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0 16%, rgb(0 0 0 / 74%) 50%, transparent 100%);
}

.about-nature-gallery--moved::before {
  opacity: 1;
}

.about-nature-gallery__back {
  position: fixed;
  z-index: 4;
  top: clamp(22px, 3.6vw, 48px);
  left: clamp(22px, 4vw, 58px);
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.about-nature-gallery__back span {
  position: relative;
  display: block;
  width: 24px;
  height: 1px;
  overflow: visible;
  color: transparent;
  background: #fff;
  transition: transform 180ms ease;
}

.about-nature-gallery__back span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.about-nature-gallery__back:hover span {
  transform: translateX(-4px);
}

.about-nature-gallery__back:focus-visible {
  outline: 1px dashed rgb(255 255 255 / 88%);
  outline-offset: 5px;
}

.about-nature-gallery__hint {
  position: fixed;
  z-index: 3;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(20px, 3vw, 42px);
  margin: 0;
  color: rgb(255 255 255 / 56%);
  font-family: "Geist Mono Variable", monospace;
  font-size: clamp(8px, .7vw, 10px);
  letter-spacing: .04em;
  pointer-events: none;
}

.about-nature-gallery__scene {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  will-change: transform;
}

.about-nature-gallery__hover-plane {
  position: absolute;
  inset: 0;
}

.about-nature-gallery__item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #111;
  isolation: isolate;
  line-height: 0;
  outline: none;
}

.about-nature-gallery__item::after {
  position: absolute;
  z-index: 2;
  /* Slight overscan prevents transformed image subpixels from exposing a seam. */
  inset: -4px;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 70%) 0%,
    rgb(0 0 0 / 24%) 48%,
    rgb(0 0 0 / 5%) 100%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.about-nature-gallery__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Keep a small permanent overscan so no clipped edge flashes as hover begins. */
  transform: scale(1.012);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(.2, .72, .22, 1);
}

.about-nature-gallery__caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: clamp(11px, 1vw, 16px) clamp(12px, 1.2vw, 18px);
  color: #fff;
  font-family: "Uncut Sans", Arial, sans-serif;
  font-size: clamp(11px, .88vw, 14px);
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 7px, 0);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.22, .72, .2, 1);
}

.about-nature-gallery__item:hover .about-nature-gallery__caption,
.about-nature-gallery__item:focus-visible .about-nature-gallery__caption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-nature-gallery__item:hover::after,
.about-nature-gallery__item:focus-visible::after {
  opacity: 1;
}

.about-nature-gallery__item:hover .about-nature-gallery__photo,
.about-nature-gallery__item:focus-visible .about-nature-gallery__photo {
  transform: scale(1.047);
}

.about-nature-gallery__item--cutout {
  background: transparent;
}

.about-nature-gallery__item--cutout::after {
  inset: 0;
  -webkit-mask: var(--gallery-image-mask) center / contain no-repeat;
  mask: var(--gallery-image-mask) center / contain no-repeat;
  transform: scale(1.012);
  transform-origin: center;
  transition: opacity 220ms ease, transform 520ms cubic-bezier(.2, .72, .22, 1);
}

.about-nature-gallery__item--cutout:hover::after,
.about-nature-gallery__item--cutout:focus-visible::after {
  transform: scale(1.047);
}

.about-nature-gallery__item--sticker {
  overflow: visible;
  background: transparent;
  transform: scale(1);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.2, .72, .22, 1);
}

.about-nature-gallery__item--sticker::after {
  -webkit-mask: url("/about/design-gallery/design-music-app-sticker.webp") center / contain no-repeat;
  mask: url("/about/design-gallery/design-music-app-sticker.webp") center / contain no-repeat;
}

.about-nature-gallery__item--sticker::before {
  content: none;
}

.about-nature-gallery__item--sticker::after {
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(10 14 32 / 64%) 0%,
    rgb(25 32 64 / 18%) 46%,
    transparent 78%
  );
  transition: opacity 220ms ease;
}

.about-nature-gallery__item--sticker .about-nature-gallery__photo {
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: none;
  transform: scale(1);
  transition: none;
}

.about-nature-gallery__item--sticker:hover,
.about-nature-gallery__item--sticker:focus-visible {
  z-index: 10;
  transform: scale(1.16);
}

.about-nature-gallery__item--sticker:hover .about-nature-gallery__photo,
.about-nature-gallery__item--sticker:focus-visible .about-nature-gallery__photo {
  filter: none;
  transform: scale(1);
}

.about-nature-gallery.is-dragging .about-nature-gallery__item {
  pointer-events: none;
}

html:has(.about-nature-gallery) .custom-cursor {
  z-index: 10001;
}

html:has(.about-nature-gallery) .custom-cursor__symbol {
  color: #fff;
  text-shadow: 0 0 6px rgb(255 255 255 / 18%);
}

@keyframes about-gallery-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .about-coffee-gallery,
  .about-nature-gallery {
    animation: none;
  }

  .about-coffee-gallery__back span,
  .about-nature-gallery__back span,
  .about-nature-gallery__photo {
    transition: none;
  }

}

@media (hover: none) {
  .about-coffee-gallery__caption,
  .about-nature-gallery__caption {
    opacity: 1;
    transform: none;
  }
}

.about-footer {
  position: relative;
  min-height: 440px;
  padding: 74px max(72px, calc((100vw - 1136px) / 2));
  color: rgb(245 241 233 / 84%);
  background: #353535;
  font-family: "Geist Mono Variable", monospace;
}

.about-footer > p {
  max-width: 360px;
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.about-footer nav {
  position: absolute;
  top: 74px;
  right: max(72px, calc((100vw - 1136px) / 2));
  display: flex;
  gap: 28px;
  font-size: 11px;
}

.about-footer strong {
  position: absolute;
  right: max(72px, calc((100vw - 1136px) / 2));
  bottom: 70px;
  left: max(72px, calc((100vw - 1136px) / 2));
  font-family: "Uncut Sans", sans-serif;
  font-size: 34px;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 1024px) {
  .about-header {
    width: 100%;
    height: 86px;
    transform: none !important;
  }

  .about-header::before,
  .about-header::after {
    width: 100%;
  }

  .about-header::before {
    height: 122px;
    -webkit-backdrop-filter: blur(20px) saturate(1.06);
    backdrop-filter: blur(20px) saturate(1.06);
  }

  .about-header .brand {
    top: 10px;
    left: 16px;
    transform: scale(.72);
    transform-origin: top left;
  }

  .about-header .nav {
    top: 19px;
    right: 14px;
    gap: clamp(10px, 3vw, 22px);
    width: auto;
    font-size: clamp(8.5px, 2.65vw, 11px);
    white-space: nowrap;
  }

  .about-page {
    padding: 132px clamp(18px, 5vw, 46px) 92px;
  }

  .about-intro {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .about-portraits {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: min(82vw, 400px);
    height: min(102vw, 500px);
    margin: 42px auto 0;
  }

  .about-portrait {
    width: 80%;
    height: auto;
    aspect-ratio: .82;
  }

  .about-copy {
    width: min(100%, 620px);
    max-width: none;
    margin: 0 auto;
    padding-top: 30px;
  }

  .about-copy__title {
    width: min(205px, 56vw);
  }

  .about-copy__body {
    width: 100%;
    font-size: clamp(11px, 2.8vw, 14px);
    line-height: 1.48;
  }

  .about-dot-art--portrait {
    top: 64px;
    right: clamp(-24px, -2vw, 0px);
    left: auto;
    width: 432px;
    height: 520px;
    opacity: 0.58;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .about-experience {
    display: block;
    min-height: 0;
    padding-top: 100px;
  }

  .about-experience__heading {
    width: min(330px, 80vw);
    margin: 0 0 28px;
  }

  .about-experience__heading img {
    width: 100%;
  }

  .about-experience__list {
    padding-top: 0;
  }

  .about-experience__row {
    grid-template-columns: minmax(72px, 20vw) 1fr;
    min-height: 0;
    padding: 19px 0;
  }

  .about-experience__year,
  .about-experience__detail h3 {
    font-size: clamp(10px, 2.8vw, 13px);
  }

  .about-experience__detail p {
    font-size: clamp(8px, 2.25vw, 11px);
  }

  .about-dot-art--food {
    top: 28px;
    left: 0;
    opacity: 1;
  }


  .about-beyond {
    padding-top: 110px;
  }

  .about-beyond__heading {
    width: min(100%, 440px);
    margin-bottom: 52px;
  }

  .about-beyond__heading img {
    width: min(92%, 375px);
  }

  .about-dot-art--cat {
    top: 32px;
    right: 0;
    left: auto;
    opacity: 1;
  }

  .about-envelope-grid {
    grid-template-columns: repeat(2, minmax(0, min(40vw, 340px)));
    justify-content: center;
    gap: 7vw 5vw;
  }

  .about-envelope-reveal {
    width: min(40vw, 340px);
  }

  .about-envelope {
    width: min(40vw, 340px);
  }

  .about-envelope__copy h3 {
    font-size: clamp(7px, 1.8vw, 11px);
  }

  .about-envelope__copy p,
  .about-envelope__copy a {
    font-size: clamp(5.5px, 1.28vw, 8.25px);
    line-height: 1.32;
  }

  .about-beyond > .about-dot-art--cat.about-beyond__item--visible {
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .about-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-copy {
    padding-top: 52px;
  }

  .about-dot-art--portrait {
    top: 76px;
    right: -18px;
    opacity: 0.5;
    transform: scale(0.58);
  }

  .about-copy__eyebrow,
  .about-experience__heading p,
  .about-beyond__heading p {
    font-size: 8px;
  }

  .about-envelope-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-envelope {
    width: min(78vw, 300px);
    margin: 0 auto;
  }

  .about-envelope-reveal {
    width: min(78vw, 300px);
    margin: 0 auto;
  }

  .about-envelope__copy h3 {
    font-size: 11px;
  }

  .about-envelope__copy p,
  .about-envelope__copy a {
    font-size: 7.75px;
    line-height: 1.32;
  }

  .about-coffee-gallery__back {
    position: absolute;
  }

  .about-coffee-gallery__grid {
    grid-template-columns: 1fr;
    width: min(78vw, 420px);
    padding-top: 92px;
  }

  .about-coffee-gallery__column,
  .about-coffee-gallery__column:nth-child(2) {
    gap: 16px;
    padding-top: 0;
  }

  .about-footer {
    min-height: 340px;
    padding: 56px 24px;
  }

  .about-footer > p {
    max-width: 50%;
    font-size: 7px;
  }

  .about-footer nav {
    top: 56px;
    right: 24px;
    gap: 12px;
    font-size: 9px;
  }

  .about-footer strong {
    right: 24px;
    bottom: 48px;
    left: 24px;
    font-size: 25px;
  }
}

/* Restore the original single, soft glass layer. */
.header::before,
.about-header::before {
  content: "" !important;
}

.header::after,
.about-header::after,
.progressive-header-blur {
  display: none !important;
  content: none !important;
}

html:has(.about-page),
body:has(.about-page) {
  overflow-x: clip;
}
