@font-face {
  font-family: Roobert;
  src: url("fonts/e717f2176a60f97a-s.p.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: Roobert;
  src: url("fonts/42e56e732b93629f-s.p.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: Acorn;
  src: url("fonts/fdcd9431117e12f7-s.p.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: Acorn;
  src: url("fonts/458ab8be65b41e6e-s.p.otf") format("opentype");
  font-weight: 700;
}

:root {
  --sans: Roobert, Arial, sans-serif;
  --cream: #f9f4ed;
  --paper: rgba(255, 255, 255, 0.78);
  --ink: #293447;
  --muted: #5f6a7a;
  --green: #057363;
  --green-soft: #4d8f85;
  --orange: #ffd7aa;
  --lavender: #d9d3fb;
  --blue: #add9f6;
  --line: #eee7dd;
  --shadow: 0 22px 80px rgba(35, 30, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Roobert, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 32px 5vw 112px;
}

body[data-page="play"],
body[data-page="about"],
body[data-page="talks"] {
  padding-bottom: 72px;
}

body.intro-locked {
  overflow: hidden;
}

body.intro-ready > :not(.intro-overlay):not(.custom-cursor) {
  opacity: 0;
}

body.intro-leaving > :not(.intro-overlay):not(.custom-cursor),
body.intro-done > :not(.intro-overlay):not(.custom-cursor) {
  opacity: 1;
  transition: opacity 220ms ease;
}

.app-shell.pre-enter {
  opacity: 0;
}

.app-shell.entered {
  opacity: 1;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: #f9f4ed;
  background: #102c28;
  font-family: var(--sans);
  cursor: none;
  clip-path: circle(150% at var(--intro-x) var(--intro-y));
}

.intro-overlay.leaving {
  pointer-events: none;
  clip-path: circle(0% at var(--intro-x) var(--intro-y));
  transition: clip-path 850ms cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at 28% 22%, rgba(249, 244, 237, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 65%, rgba(249, 244, 237, 0.04) 0 1px, transparent 1px);
  background-size: 22px 24px, 34px 31px;
  mix-blend-mode: soft-light;
}

.intro-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.intro-stage.shaking {
  animation: introShake 400ms ease-out both;
}

.intro-letter {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: #ffd7aa;
  font-family: Acorn, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transform-origin: center;
  opacity: 0;
  will-change: transform, opacity;
  user-select: none;
  text-shadow:
    0 10px 32px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(255, 215, 170, 0.2);
}

.intro-dot {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 3;
  border-radius: 999px;
  background: #ffd7aa;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity, box-shadow;
}

.intro-dot.glowing {
  box-shadow:
    0 0 30px 12px rgba(255, 215, 170, 0.64),
    0 0 72px 28px rgba(5, 115, 99, 0.35);
  transition: box-shadow 600ms ease-out;
}

.intro-flash {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 215, 170, 0.82) 0%, rgba(255, 215, 170, 0.42) 28%, rgba(5, 115, 99, 0.26) 54%, transparent 72%);
  pointer-events: none;
  animation: flashBurst 500ms ease-out forwards;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%));
  background: #050505;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, background 180ms ease;
  will-change: transform;
}

.custom-cursor.intro-cursor {
  width: 22px;
  height: 22px;
  background: #f9f4ed;
  box-shadow:
    0 0 22px rgba(255, 215, 170, 0.68),
    0 0 42px rgba(5, 115, 99, 0.32);
}

@keyframes flashBurst {
  0% {
    opacity: 1;
    transform: scale(0);
  }

  to {
    opacity: 0;
    transform: scale(40);
  }
}

@keyframes introShake {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  20% {
    transform: translate3d(-4px, 2px, 0) rotate(-0.28deg);
  }

  42% {
    transform: translate3d(5px, -3px, 0) rotate(0.3deg);
  }

  64% {
    transform: translate3d(-3px, -1px, 0) rotate(-0.16deg);
  }

  82% {
    transform: translate3d(2px, 1px, 0) rotate(0.12deg);
  }
}

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }

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

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: Acorn, Georgia, serif;
  letter-spacing: 0;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto 40px;
  max-width: 1200px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 800;
  font-size: 23px;
  color: #050505;
}

.brand img {
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.main-nav,
.mobile-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  display: flex;
  justify-self: center;
  padding: 8px;
  position: relative;
}

.main-nav a,
.mobile-nav a {
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  padding: 13px 18px;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
  z-index: 1;
}

.nav-indicator {
  background: rgba(5, 115, 99, 0.1);
  border-radius: 999px;
  bottom: 8px;
  left: var(--nav-left, 8px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 8px;
  transform: translateZ(0);
  transition:
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 160ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  width: var(--nav-width, 0px);
}

.nav-indicator.is-active {
  background: var(--green);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18), 0 8px 24px rgba(5, 115, 99, 0.16);
  opacity: 1;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

body[data-page="home"] [data-nav="home"],
body[data-page="play"] [data-nav="play"],
body[data-page="about"] [data-nav="about"],
body[data-page="talks"] [data-nav="talks"] {
  color: var(--green);
}

.main-nav a.is-indicator-active,
.mobile-nav a.is-indicator-active {
  color: white;
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.button,
.icon-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.icon-button:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.button.dark,
.icon-button {
  background: #030303;
  color: white;
}

.button.teal {
  background: var(--green);
  color: white;
}

.button.ghost {
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
}

.button.small {
  font-size: 14px;
  min-height: 38px;
  padding: 9px 14px;
}

.icon-button {
  height: 44px;
  padding: 0;
  width: 44px;
}

.icon {
  font-size: 14px;
}

main,
.site-footer {
  margin: 0 auto;
  max-width: 1200px;
}

main {
  display: grid;
  gap: 48px;
}

.reveal-ready {
  filter: blur(6px);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-ready.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.surface,
.hero {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.panel-dots {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(41, 52, 71, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero {
  min-height: 790px;
  overflow: hidden;
  padding: 72px 40px 48px;
  position: relative;
}

.hero-cursor {
  height: auto;
  position: absolute;
  right: 74px;
  top: 18px;
  transform: rotate(-2deg);
  width: 168px;
  z-index: 3;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--green);
  font-size: 86px;
  line-height: 0.95;
  margin: 0;
}

.hero-copy p {
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.34;
  margin: 36px 0 0;
}

.mini-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 6px;
  margin: 0 4px;
  padding: 5px 10px;
  vertical-align: 3px;
  white-space: nowrap;
}

.mini-preview-host {
  position: relative;
}

.mini-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 6px;
  left: 50%;
  opacity: 0;
  padding: 8px 8px 11px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translate(-50%, 8px) scale(0.96);
  transition: opacity 200ms ease, transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 276px;
  z-index: 40;
}

.mini-preview video {
  aspect-ratio: 16 / 9;
  background: #050505;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.mini-preview strong,
.mini-preview small {
  color: #111;
  display: block;
  font-family: Roobert, Arial, sans-serif;
  line-height: 1;
  padding: 0 4px;
}

.mini-preview strong {
  font-size: 13px;
}

.mini-preview small {
  color: #7b8290;
  font-size: 11px;
  font-weight: 600;
}

.mini-preview-dark {
  background: #111;
}

.mini-preview-dark strong {
  color: white;
}

.mini-preview-dark small {
  color: rgba(255, 255, 255, 0.55);
}

.mini-preview-host:hover .mini-preview,
.mini-preview-host:focus-visible .mini-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.mini-pill img {
  height: 18px;
  width: 18px;
}

.mini-pill.light {
  background: white;
  box-shadow: 0 5px 18px rgba(20, 20, 20, 0.08);
}

.dark-pill {
  background: #0b0b0b;
  color: white;
}

.hero-ctas {
  display: none;
  gap: 12px;
  margin-top: 28px;
}

.hero-card-deck {
  height: 390px;
  left: -42px;
  perspective: 1200px;
  position: absolute;
  right: -42px;
  top: 470px;
}

.tilt-card {
  --hover-x: 0px;
  --hover-y: 0px;
  --hover-scale: 1;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  overflow: visible;
  padding: 42px;
  position: absolute;
  transform:
    translate3d(var(--hover-x), var(--hover-y), 0)
    rotate(var(--hover-rotate, var(--base-rotate)))
    scale(var(--hover-scale))
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x));
  transform-origin: center;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    filter 260ms ease;
  will-change: transform;
}

button.tilt-card {
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
}

.tilt-card::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.tilt-card > * {
  position: relative;
  z-index: 1;
}

.tilt-card.is-hovered {
  --hover-y: -6px;
  --hover-scale: 1.04;
  box-shadow: 0 28px 58px rgba(2, 89, 78, 0.18);
}

.tilt-card h2 {
  font-size: 52px;
  line-height: 1;
  margin: 0 0 24px;
}

.tilt-card p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.card-work {
  --base-rotate: 4deg;
  background: var(--orange);
  left: 0;
  top: 45px;
  width: 390px;
  z-index: 4;
}

.card-video {
  --base-rotate: -4deg;
  background: #0c0c0c;
  left: 300px;
  padding: 0;
  top: 34px;
  width: 450px;
  z-index: 3;
}

.card-video video {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: filter 240ms ease, opacity 240ms ease, transform 420ms ease;
  width: 100%;
}

.video-label {
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 24px;
  color: white;
  display: flex;
  font-weight: 800;
  inset: auto 34px 34px auto;
  padding: 16px 22px;
  position: absolute;
}

.video-play {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--green);
  display: flex;
  height: 58px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -42%) scale(0.72);
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 58px;
}

.card-video.is-hovered video {
  filter: blur(2px) brightness(0.72);
  opacity: 0.96;
  transform: scale(1.035);
}

.card-video.is-hovered .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-apps {
  --base-rotate: 3deg;
  background: var(--lavender);
  left: 650px;
  top: 42px;
  width: 430px;
  z-index: 2;
}

.card-talks {
  --base-rotate: -4deg;
  background: var(--blue);
  left: 1005px;
  top: 34px;
  width: 430px;
  z-index: 1;
}

.hero-card-deck[data-hover="work"] .card-work,
.hero-card-deck[data-hover="center"] .card-video,
.hero-card-deck[data-hover="fun"] .card-apps {
  --hover-rotate: 0.8deg;
  z-index: 10;
}

.hero-card-deck[data-hover="talks"] .card-talks {
  --hover-rotate: -1deg;
  --hover-x: -120px;
  z-index: 10;
}

.hero-card-deck[data-hover="work"] .card-video { --hover-x: 168px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="work"] .card-apps { --hover-x: 196px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="work"] .card-talks { --hover-x: 224px; --hover-scale: 0.93; }

.hero-card-deck[data-hover="center"] .card-work { --hover-x: -168px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="center"] .card-apps { --hover-x: 168px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="center"] .card-talks { --hover-x: 196px; --hover-scale: 0.93; }

.hero-card-deck[data-hover="fun"] .card-work { --hover-x: -196px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="fun"] .card-video { --hover-x: -168px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="fun"] .card-talks { --hover-x: 168px; --hover-scale: 0.93; }

.hero-card-deck[data-hover="talks"] .card-work { --hover-x: -224px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="talks"] .card-video { --hover-x: -196px; --hover-scale: 0.93; }
.hero-card-deck[data-hover="talks"] .card-apps { --hover-x: -168px; --hover-scale: 0.93; }

.tilt-card.is-hovered .button {
  transform: translateX(4px);
}

.hero-preview,
.hero-video-hint {
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 18px) scale(0.66);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 20;
}

.hero-preview {
  bottom: calc(100% - 16px);
  height: 116px;
  width: 300px;
}

.hero-video-hint {
  align-items: center;
  bottom: calc(100% + 8px);
  color: var(--green);
  display: flex;
  font-family: Acorn, Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  white-space: nowrap;
}

.tilt-card.is-hovered .hero-preview,
.tilt-card.is-hovered .hero-video-hint {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.hero-preview img {
  background: white;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  object-fit: cover;
  position: absolute;
  top: 26px;
}

.preview-work img,
.preview-talks img {
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 8px;
  height: 78px;
  width: 118px;
}

.preview-work img:nth-of-type(1),
.preview-talks img:nth-of-type(1) {
  background: #d9ecff;
  left: 24px;
  transform: rotate(-16deg);
}

.preview-work img:nth-of-type(2),
.preview-talks img:nth-of-type(2) {
  background: #f7f3ec;
  left: 91px;
  top: 14px;
  transform: rotate(3deg);
  z-index: 2;
}

.preview-work img:nth-of-type(3),
.preview-talks img:nth-of-type(3) {
  background: #fbe7f2;
  left: 158px;
  transform: rotate(16deg);
}

.preview-fun img {
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 16px;
  height: 62px;
  object-fit: contain;
  padding: 8px;
  width: 62px;
}

.preview-fun img:nth-of-type(1) {
  background: #f8e9d3;
  left: 42px;
  transform: rotate(-22deg);
}

.preview-fun img:nth-of-type(2) {
  background: #f2e8fb;
  left: 92px;
  top: 16px;
  transform: rotate(-7deg);
  z-index: 2;
}

.preview-fun img:nth-of-type(3) {
  background: #e3f0ec;
  left: 142px;
  top: 18px;
  transform: rotate(8deg);
  z-index: 3;
}

.preview-fun img:nth-of-type(4) {
  background: #e8f4ea;
  left: 192px;
  transform: rotate(22deg);
}

.confetti-pop {
  animation: confetti-burst 760ms ease-out both;
  background: #f59e0b;
  border-radius: 3px;
  height: 8px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 58px;
  transform: translate(-50%, -50%);
  width: 8px;
  z-index: 3;
}

.confetti-pop::before,
.confetti-pop::after {
  background: #ec4899;
  border-radius: 3px;
  content: "";
  height: 8px;
  position: absolute;
  width: 8px;
}

.confetti-pop::before {
  box-shadow:
    -54px -32px 0 #06b6d4,
    -32px -54px 0 #8b5cf6,
    22px -48px 0 #10b981,
    54px -28px 0 #f97316,
    -70px 4px 0 #f59e0b,
    72px 8px 0 #ec4899;
}

.confetti-pop::after {
  background: #10b981;
  box-shadow:
    -38px 34px 0 #f97316,
    -8px 50px 0 #06b6d4,
    34px 42px 0 #8b5cf6,
    66px 26px 0 #f59e0b,
    -72px 28px 0 #ec4899;
}

.tilt-card.is-hovered .confetti-pop {
  opacity: 1;
}

@keyframes confetti-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(26deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12) rotate(42deg);
  }
}

.about-strip {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 270px 1.1fr;
  padding: 40px;
}

.eyebrow {
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
}

.about-strip h2,
.section-heading h2,
.side-intro h2,
.creative-grid h2,
.collab h2,
.page-hero h1 {
  color: var(--green);
  font-size: 56px;
  line-height: 0.98;
  margin: 0;
}

.about-strip > img {
  border: 8px solid #ede7de;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  width: 270px;
}

.about-strip p,
.work-body p,
.side-intro p,
.collab p,
.page-hero p,
.page-copy p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.work-section,
.project-carousel,
.writing-card,
.talks-card {
  padding: 40px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 0;
}

.work-list {
  display: grid;
  gap: 0;
  padding-bottom: 52px;
  position: relative;
  --work-progress: 0%;
}

.work-list::before,
.work-list::after {
  border-radius: 999px;
  content: "";
  display: block;
  left: 12px;
  position: absolute;
  top: 0;
  width: 2px;
}

.work-list::before {
  background: linear-gradient(to bottom, transparent 0%, rgba(209, 213, 219, 0.85) 12%, rgba(209, 213, 219, 0.85) 86%, transparent 100%);
  bottom: 0;
}

.work-list::after {
  background: linear-gradient(to bottom, var(--green), rgba(5, 115, 99, 0.4), transparent);
  height: var(--work-progress);
  opacity: 0.9;
}

.work-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 132px 1fr;
  padding: 46px 0 32px;
  position: relative;
}

.work-year {
  color: rgba(41, 52, 71, 0.28);
  font-family: Acorn, Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 30px 0 48px;
  position: sticky;
  top: 116px;
  z-index: 2;
}

.work-year::before {
  background: white;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #f2ede6;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 24px;
}

.work-body {
  border-radius: 18px;
  cursor: pointer;
  margin: -12px -18px 0;
  padding: 24px 24px 28px;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-body:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.work-body h3 {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
  margin: 0;
}

.work-body video {
  background: #050505;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  margin: 20px 0 14px;
  object-fit: fill;
  width: 100%;
}

.work-card:nth-child(1) .work-body video { aspect-ratio: 1812 / 1080; }
.work-card:nth-child(2) .work-body video { aspect-ratio: 1618 / 962; }
.work-card:nth-child(3) .work-body video { aspect-ratio: 1948 / 1080; }
.work-card:nth-child(4) .work-body video { aspect-ratio: 1952 / 1080; }

.tag {
  background: white;
  border: 1px solid rgba(5, 115, 99, 0.45);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 10px;
}

.case-tooltip {
  background: #101828;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.22);
  color: white;
  font-size: 12px;
  font-weight: 800;
  left: 0;
  line-height: 1;
  opacity: 0;
  padding: 10px 12px;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(16px, -12px) scale(0.88);
  transition: opacity 140ms ease, transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  z-index: 120;
}

.case-tooltip::after {
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
}

.case-tooltip.is-visible {
  opacity: 1;
  transform: translate(16px, -16px) scale(1);
}

.profile-chat {
  align-items: flex-end;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  position: fixed;
  right: 28px;
  z-index: 180;
}

.profile-chat-trigger {
  align-items: flex-end;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 0;
  pointer-events: auto;
}

.profile-chat-prompt {
  background: #101827;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(16, 24, 39, 0.16);
  color: white;
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: min(326px, calc(100vw - 132px));
  padding: 11px 16px 12px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.profile-chat-prompt::after {
  border-left: 11px solid transparent;
  border-right: 0 solid transparent;
  border-top: 11px solid #101827;
  bottom: -10px;
  content: "";
  height: 0;
  position: absolute;
  right: 20px;
  width: 0;
}

.profile-chat-avatar {
  align-items: center;
  background: #fff4df;
  border: 1px solid rgba(76, 103, 99, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(16, 24, 39, 0.12);
  display: flex;
  height: 92px;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
  width: 92px;
}

.profile-chat-avatar img {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-chat-trigger:hover .profile-chat-prompt,
.profile-chat-trigger:focus-visible .profile-chat-prompt {
  box-shadow: 0 22px 48px rgba(16, 24, 39, 0.2);
  transform: translateY(-2px);
}

.profile-chat-trigger:hover .profile-chat-avatar,
.profile-chat-trigger:focus-visible .profile-chat-avatar {
  box-shadow: 0 22px 42px rgba(16, 24, 39, 0.16);
  transform: translateY(-3px) scale(1.03);
}

.profile-chat-panel {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(76, 103, 99, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.18);
  max-width: calc(100vw - 56px);
  overflow: hidden;
  pointer-events: auto;
  width: 360px;
}

.profile-chat-panel[hidden] {
  display: none;
}

.profile-chat-header {
  align-items: center;
  background: #101827;
  color: white;
  display: flex;
  gap: 10px;
  padding: 14px;
}

.profile-chat-header img {
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.profile-chat-header strong,
.profile-chat-header span {
  display: block;
}

.profile-chat-header strong {
  font-size: 15px;
  line-height: 1.1;
}

.profile-chat-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.profile-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 330px;
  overflow: auto;
  padding: 14px;
}

.profile-chat-message {
  animation: profile-chat-pop 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
  margin: 0;
  max-width: 86%;
  padding: 10px 12px;
}

.profile-chat-message.is-user {
  align-self: flex-end;
  background: #101827;
  color: white;
}

.profile-chat-message.is-bot {
  align-self: flex-start;
  background: #f0e7db;
  color: var(--ink);
}

@keyframes profile-chat-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.side-projects {
  display: grid;
  gap: 34px;
}

.side-intro {
  max-width: 780px;
  padding: 0 8px;
}

.project-carousel h3 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
  margin: 0 0 34px;
}

.project-stage {
  background: #050505;
  border-radius: 26px;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 320px;
  min-height: 520px;
  overflow: hidden;
}

.project-media {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
}

.project-media video,
.project-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-summary {
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.project-summary img {
  border-radius: 18px;
  height: 74px;
  object-fit: contain;
  width: 74px;
}

.project-summary p {
  color: var(--muted);
  font-weight: 700;
  margin: 18px 0 0;
}

.project-summary h4 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  margin: 6px 0 0;
}

.project-tabs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(54px, 1fr));
  margin-top: 28px;
}

.project-tab {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 2px solid transparent;
  border-radius: 16px;
  display: flex;
  height: 72px;
  justify-content: center;
  padding: 12px;
}

.project-tab.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(5, 115, 99, 0.12);
}

.project-tab img {
  height: 40px;
  object-fit: contain;
  width: 40px;
}

.creative-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
}

.writing-card,
.talks-card {
  overflow: hidden;
  position: relative;
}

.writing-visual,
.talk-visual {
  height: 270px;
  margin: 26px 0 8px;
  position: relative;
}

.writing-visual img,
.talk-visual img {
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(30, 41, 59, 0.12);
  position: absolute;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.writing-card:hover .writing-visual img,
.talks-card:hover .talk-visual img {
  filter: saturate(1.04);
}

.writing-visual img:nth-child(1) {
  left: 0;
  top: 24px;
  transform: rotate(-2deg);
  width: 70%;
}

.writing-visual img:nth-child(2) {
  right: 10px;
  top: 0;
  transform: rotate(7deg);
  width: 48%;
}

.writing-visual img:nth-child(3) {
  bottom: 12px;
  left: 26%;
  transform: rotate(-7deg);
  width: 52%;
}

.writing-visual img:nth-child(4) {
  bottom: 0;
  right: 2%;
  transform: rotate(3deg);
  width: 40%;
}

.writing-card:hover .writing-visual img:nth-child(1) { transform: translateY(-5px) rotate(-4deg); }
.writing-card:hover .writing-visual img:nth-child(2) { transform: translateY(-10px) rotate(9deg); }
.writing-card:hover .writing-visual img:nth-child(3) { transform: translateY(6px) rotate(-9deg); }
.writing-card:hover .writing-visual img:nth-child(4) { transform: translateY(-4px) rotate(5deg); }

.talk-visual img:nth-child(1) {
  left: 2%;
  top: 8px;
  transform: rotate(-8deg);
  width: 54%;
}

.talk-visual img:nth-child(2) {
  left: 7%;
  top: 24px;
  transform: rotate(-6deg);
  width: 48%;
}

.talk-visual img:nth-child(3) {
  right: 0;
  top: 36px;
  transform: rotate(5deg);
  width: 62%;
}

.talk-visual img:nth-child(4) {
  right: 8%;
  top: 62px;
  transform: rotate(6deg);
  width: 52%;
}

.talk-visual img:nth-child(5) {
  bottom: 8px;
  left: 19%;
  transform: rotate(-2deg);
  width: 72%;
}

.talks-card:hover .talk-visual img:nth-child(1) { transform: translateY(-8px) rotate(-10deg); }
.talks-card:hover .talk-visual img:nth-child(2) { transform: translateY(-12px) rotate(-8deg); }
.talks-card:hover .talk-visual img:nth-child(3) { transform: translateY(-6px) rotate(7deg); }
.talks-card:hover .talk-visual img:nth-child(4) { transform: translateY(-8px) rotate(8deg); }
.talks-card:hover .talk-visual img:nth-child(5) { transform: translateY(6px) rotate(-4deg); }

.writing-list,
.talk-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.writing-list a,
.talk-list a {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.writing-list span,
.talk-list span {
  color: var(--green);
  font-weight: 800;
}

.writing-list strong,
.talk-list strong {
  font-size: 20px;
}

.writing-list small,
.talk-list small {
  color: var(--muted);
  font-weight: 700;
}

.testimonials {
  contain: paint;
  justify-self: start;
  margin-left: calc((100% - min(1360px, calc(100vw - 10vw))) / 2);
  overflow: hidden;
  padding: 54px 42px 64px;
  width: min(1360px, calc(100vw - 10vw));
}

.testimonial-heading {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.testimonial-heading h2 {
  color: var(--green);
  font-size: 64px;
  line-height: 0.98;
  margin: 0;
}

.testimonial-heading p {
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  margin: 24px 0 0;
}

.testimonial-collage {
  height: 660px;
  margin-top: 40px;
  position: relative;
}

.testimonial-piece {
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  position: absolute;
  transition: transform 300ms ease, filter 300ms ease;
  width: fit-content;
}

.testimonial-piece:hover,
.testimonial-piece:focus-visible {
  filter: drop-shadow(0 18px 28px rgba(31, 41, 55, 0.12));
  outline: none;
  transform: translateY(-4px) rotate(var(--hover-rotate, 0deg)) scale(1.025);
  z-index: 20;
}

.testimonial-piece img {
  display: block;
  height: auto;
  width: 100%;
}

.testimonial-christine {
  --hover-rotate: -1deg;
  cursor: zoom-in;
  left: 38px;
  top: 24px;
  transform: rotate(4.56deg);
  width: 48%;
  z-index: 4;
}

.testimonial-ben {
  --hover-rotate: -7deg;
  left: 50%;
  top: 18px;
  transform: translateX(-50%) rotate(-9.91deg);
  width: 44%;
  z-index: 6;
}

.testimonial-ben:hover,
.testimonial-ben:focus-visible {
  transform: translateX(-50%) translateY(-4px) rotate(var(--hover-rotate, 0deg)) scale(1.025);
}

.testimonial-red {
  left: 64%;
  top: 24px;
  transform: rotate(6.63deg);
  width: 32%;
  z-index: 5;
}

.testimonial-blue-left {
  left: 20px;
  top: 44%;
  transform: rotate(-10.69deg);
  width: 24%;
  z-index: 2;
}

.testimonial-nic {
  --hover-rotate: 2deg;
  cursor: zoom-in;
  left: 22%;
  top: 62%;
  transform: rotate(6.04deg);
  width: 40%;
  z-index: 6;
}

.testimonial-blue-right {
  left: 62%;
  top: 54%;
  transform: rotate(14.99deg);
  width: 20%;
  z-index: 1;
}

.testimonial-inga {
  --hover-rotate: -4deg;
  cursor: zoom-in;
  left: 76%;
  top: 68%;
  transform: rotate(-8deg);
  width: 32%;
  z-index: 7;
}

.testimonial-modal[hidden] {
  display: none;
}

.testimonial-modal,
.video-modal,
.letter-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 120;
}

.video-modal[hidden],
.letter-modal[hidden] {
  display: none;
}

.testimonial-modal-panel {
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  max-width: min(92vw, 980px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonial-modal-panel img {
  display: block;
  max-height: 88vh;
  width: 100%;
}

.video-modal-panel {
  background: #050505;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  max-width: min(92vw, 760px);
  overflow: hidden;
  position: relative;
  transform: translateY(0) scale(1);
  z-index: 1;
}

.video-modal-panel video {
  background: #050505;
  display: block;
  width: 100%;
}

.letter-modal-panel {
  max-width: min(94vw, 920px);
  position: relative;
  width: 920px;
  z-index: 1;
}

.letter-modal-panel .letter {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  cursor: default;
  min-height: 520px;
  transform: none;
}

.letter-modal-panel .letter:hover {
  transform: none;
}

.large-letter .letter-copy {
  font-size: 27px;
  gap: 20px;
  line-height: 1.28;
  padding: 48px 220px 128px 48px;
}

.large-letter .flower {
  height: 150px;
  right: 24px;
  top: 28px;
  width: 150px;
}

.large-letter .nice-day {
  bottom: 34px;
  height: 110px;
  right: 24px;
  width: 190px;
}

.collab {
  display: grid;
  gap: 28px;
}

.collab-heading {
  display: grid;
  gap: 14px;
}

.collab-heading > div {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collab-heading p {
  margin: 0;
}

.collab-surface {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 680px) 1fr;
  grid-template-rows: auto auto 1fr;
  min-height: 720px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.letter {
  background: #fbc600;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: zoom-in;
  display: block;
  font-weight: 800;
  line-height: 1.18;
  min-height: 492px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  transform: rotate(1.5deg);
  transition: box-shadow 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.letter:hover,
.letter:focus-visible {
  box-shadow: 0 30px 78px rgba(56, 43, 0, 0.16);
  outline: none;
  transform: translateY(-8px) rotate(0.4deg) scale(1.015);
}

.letter-paper {
  background: white;
  border-radius: 12px;
  bottom: 10px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 0;
}

.letter-stamp {
  border: 3px solid #fbc600;
  height: 82px;
  opacity: 0.3;
  position: absolute;
  right: 47px;
  top: 40px;
  width: 82px;
  z-index: 0;
}

.letter-copy {
  display: grid;
  font-size: 20px;
  gap: 18px;
  padding: 36px 176px 36px 36px;
  position: relative;
  z-index: 1;
}

.letter-copy span {
  display: block;
}

.flower {
  height: 120px;
  position: absolute;
  right: 20px;
  top: 24px;
  width: 120px;
  z-index: 1;
}

.nice-day {
  bottom: 25px;
  height: 80px;
  position: absolute;
  right: 30px;
  width: 140px;
  z-index: 2;
}

.letter-pointer {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 120px 0 0 4px;
  position: relative;
}

.letter-pointer img:first-child {
  height: 56px;
  opacity: 0.8;
  transform: rotate(180deg) scaleY(-1);
  width: auto;
}

.letter-pointer span {
  color: var(--ink);
  display: inline-block;
  font-family: Acorn, Georgia, serif;
  font-size: 32px;
  line-height: 1;
  transform: rotate(6deg);
  white-space: nowrap;
}

.letter-pointer img:last-child {
  height: 64px;
  position: absolute;
  right: 105px;
  top: 18px;
  width: 64px;
}

.connect {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
}

.connect h3 {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
  margin: 0 0 18px;
}

.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.connect .button {
  margin: 0;
}

.connect p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 14px;
}

.yay {
  bottom: 80px;
  height: 120px;
  object-fit: contain;
  position: absolute;
  right: 80px;
  width: 160px;
}

.site-footer {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 1fr) 190px 190px;
  margin-top: 48px;
  padding: 34px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  margin: 0 0 18px;
}

.site-footer iframe {
  background: #2a2e36;
  border: 0;
  border-radius: 12px;
  max-width: 760px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.mobile-nav {
  bottom: 16px;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.14);
  display: none;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 50;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 100;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.55);
  inset: 0;
  position: absolute;
}

.modal-panel {
  background: white;
  border-radius: 22px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 360px;
  max-width: 1080px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  width: min(94vw, 1080px);
  z-index: 1;
}

.modal-panel video,
.modal-panel img {
  background: #050505;
  border-radius: 16px;
  height: 460px;
  object-fit: cover;
  width: 100%;
}

.modal-panel h2 {
  color: var(--green);
  font-size: 48px;
  line-height: 1;
  margin: 8px 0 14px;
}

.modal-panel p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  align-items: center;
  background: #050505;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 26px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  z-index: 2;
}

.page-hero {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 420px;
  overflow: hidden;
  padding: 56px;
}

.page-hero h1 {
  font-size: 80px;
}

.page-hero p {
  max-width: 740px;
}

.page-hero img,
.page-hero video {
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  display: grid;
  gap: 16px;
  padding: 26px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.project-card img {
  height: 70px;
  object-fit: contain;
  width: 70px;
}

.project-card span {
  color: var(--muted);
  font-weight: 800;
}

.project-card h2 {
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
  margin: 0;
}

.project-card p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.page-copy,
.timeline,
.values,
.talk-page-list {
  display: grid;
  gap: 22px;
}

.page-copy.surface,
.timeline.surface,
.values.surface,
.talk-page-list.surface {
  padding: 40px;
}

.timeline-item,
.value-item,
.talk-page-item {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 22px;
}

.timeline-item h2,
.value-item h2,
.talk-page-item h2 {
  color: var(--green);
  font-size: 34px;
  margin: 0 0 8px;
}

.timeline-item p,
.value-item p,
.talk-page-item p {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1080px) {
  body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 44px 24px 28px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy p {
    font-size: 22px;
  }

  .hero-ctas {
    display: grid;
  }

  .hero-card-deck {
    display: grid;
    gap: 14px;
    height: auto;
    left: auto;
    margin-top: 36px;
    position: relative;
    right: auto;
    top: auto;
  }

  .tilt-card {
    min-height: 220px;
    padding: 28px;
    position: relative;
    transform: none;
    width: auto;
  }

  .hero-preview,
  .hero-video-hint,
  .video-play {
    display: none;
  }

  .mini-preview {
    display: none;
  }

  .card-video {
    height: 260px;
    left: auto;
    top: auto;
  }

  .card-apps,
  .card-talks,
  .card-work {
    left: auto;
    top: auto;
  }

  .about-strip,
  .creative-grid,
  .collab,
  .collab-surface,
  .site-footer,
  .page-hero,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .collab-surface {
    min-height: auto;
  }

  .letter-pointer,
  .yay {
    display: none;
  }

  .connect {
    grid-column: auto;
    grid-row: auto;
  }

  .about-strip > img {
    height: 240px;
    width: 100%;
  }

  .project-stage {
    grid-template-columns: 1fr;
  }

  .project-summary {
    min-height: 260px;
  }

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

  .writing-visual,
  .talk-visual {
    height: 230px;
  }

  .testimonials {
    padding: 36px 24px;
  }

  .testimonial-heading h2 {
    font-size: 48px;
  }

  .testimonial-heading p {
    font-size: 21px;
  }

  .testimonial-collage {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
  }

  .testimonial-piece,
  .testimonial-piece:hover,
  .testimonial-piece:focus-visible {
    left: auto;
    max-width: 620px;
    position: relative;
    top: auto;
    transform: rotate(var(--mobile-rotate, 0deg));
    width: 100%;
  }

  .testimonial-red,
  .testimonial-blue-left,
  .testimonial-blue-right {
    display: none;
  }

  .testimonial-christine {
    --mobile-rotate: 1.5deg;
  }

  .testimonial-ben {
    --mobile-rotate: -4deg;
    animation: testimonial-mobile-float 4.8s ease-in-out infinite;
    max-width: 520px;
    order: 2;
    z-index: 6;
  }

  .testimonial-ben:hover,
  .testimonial-ben:focus-visible {
    animation: none;
    transform: translateY(-4px) rotate(var(--mobile-rotate, 0deg)) scale(1.02);
  }

  .testimonial-nic {
    --mobile-rotate: -1.2deg;
    order: 3;
  }

  .testimonial-inga {
    --mobile-rotate: 1deg;
    order: 4;
  }

  .testimonial-piece:hover,
  .testimonial-piece:focus-visible {
    filter: drop-shadow(0 16px 24px rgba(31, 41, 55, 0.12));
    transform: translateY(-4px) rotate(var(--mobile-rotate, 0deg)) scale(1.02);
  }
}

@keyframes testimonial-mobile-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--mobile-rotate, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(calc(var(--mobile-rotate, 0deg) + 1.2deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-ben {
    animation: none;
  }
}

@media (max-width: 620px) {
  body {
    padding: 32px 20px 104px;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    height: 42px;
    width: 42px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .button {
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

  .hero-cursor {
    left: 24px;
    right: auto;
    top: 28px;
    width: 138px;
  }

  .hero-copy {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .tilt-card h2,
  .about-strip h2,
  .section-heading h2,
  .side-intro h2,
  .creative-grid h2,
  .collab h2,
  .page-hero h1 {
    font-size: 40px;
  }

  .tilt-card p,
  .about-strip p,
  .work-body p,
  .side-intro p,
  .collab p,
  .page-hero p,
  .page-copy p {
    font-size: 19px;
  }

  .work-section,
  .project-carousel,
  .writing-card,
  .talks-card,
  .collab,
  .page-copy.surface,
  .timeline.surface,
  .values.surface,
  .talk-page-list.surface {
    padding: 24px;
  }

  .work-card {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .work-year {
    font-size: 28px;
    padding: 0;
    position: relative;
    top: auto;
  }

  .work-year::before,
  .work-list::before,
  .work-list::after {
    display: none;
  }

  .work-body {
    margin: 0;
    padding: 0;
  }

  .work-body h3 {
    font-size: 34px;
  }

  .project-media,
  .project-stage {
    min-height: 360px;
  }

  .project-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-tab {
    height: 58px;
  }

  .writing-visual,
  .talk-visual {
    height: 190px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .letter {
    min-height: 540px;
    transform: none;
  }

  .letter-copy {
    font-size: 17px;
    gap: 14px;
    padding: 28px 74px 120px 26px;
  }

  .letter-stamp {
    height: 46px;
    right: 18px;
    top: 22px;
    width: 46px;
  }

  .flower {
    height: 76px;
    opacity: 0.2;
    right: 4px;
    top: 16px;
    width: 76px;
  }

  .nice-day {
    bottom: 18px;
    right: 20px;
  }

  .collab-surface {
    padding: 24px;
  }

  .connect-actions {
    display: grid;
  }

  .large-letter .letter-copy {
    font-size: 18px;
    padding: 34px 86px 128px 28px;
  }

  .large-letter .flower {
    height: 98px;
    width: 98px;
  }

  .large-letter .nice-day {
    height: 74px;
    width: 130px;
  }

  .profile-chat {
    bottom: 92px;
    right: 16px;
  }

  .profile-chat-trigger {
    gap: 8px;
  }

  .profile-chat-prompt {
    font-size: 13px;
    margin-bottom: 24px;
    max-width: calc(100vw - 118px);
    padding: 10px 12px;
  }

  .profile-chat-avatar {
    height: 72px;
    width: 72px;
  }

  .profile-chat-panel {
    width: min(340px, calc(100vw - 32px));
  }

  .profile-chat-thread {
    max-height: 300px;
  }

  .mobile-nav {
    max-width: calc(100vw - 24px);
  }

  .mobile-nav a {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
