:root {
  color-scheme: dark;
  --background: #10100f;
  --surface: #1d1d1b;
  --hover: #2b2b28;
  --ink: #eeeee8;
  --muted: #adada5;
  --accent: #c88359;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
}
body.blue { --accent: #899fad; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, .links:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 6px;
}
.page { max-width: 1440px; margin: auto; padding: 26px 52px 0; }
header { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.identity { font-size: 16px; line-height: 1.5; }
.identity span { display: block; color: var(--muted); font-size: 13px; }
.intro { padding-top: 45px; }
.lettering {
  position: relative;
  perspective: 1000px;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
}
.lettering:disabled { cursor: default; }
.word-art {
  display: flex;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 300ms cubic-bezier(.2,.65,.3,1);
}
.word { display: block; width: 50%; height: auto; flex-shrink: 0; overflow: visible; }
.depth { fill: none; stroke: var(--accent); stroke-width: 1.1; }
.depth use { transition: transform 450ms cubic-bezier(.2,.65,.3,1); }
.letter-face { fill: var(--ink); }
.lettering.shifted .depth use:nth-child(1) { transform: translate(-20px, 28px); }
.lettering.shifted .depth use:nth-child(2) { transform: translate(-15px, 21px); }
.lettering.shifted .depth use:nth-child(3) { transform: translate(-10px, 14px); }
.lettering.shifted .depth use:nth-child(4) { transform: translate(-5px, 7px); }
.intro-caption { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding: 12px 0 34px; }
.intro-caption p { margin: 0; font-size: 23px; line-height: 1.25; letter-spacing: -.5px; }
.links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.destination {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 27px 54px 28px 24px;
  min-height: 133px;
  background: var(--surface);
  transition: background 180ms;
}
.destination:hover, .destination:focus-visible { background: var(--hover); }
.link-name { font-size: clamp(20px, 2.2vw, 30px); font-weight: 500; line-height: 1.15; letter-spacing: -.6px; }
.link-detail { font-size: 14px; color: var(--muted); line-height: 1.4; overflow-wrap: anywhere; }
.destination svg { position: absolute; top: 29px; right: 23px; width: 23px; height: 23px; transition: transform 180ms; }
.destination:hover svg { transform: translate(2px,-2px); }
.studio { background: #292922; }
footer { display: flex; gap: 25px; padding: 31px 0; color: var(--muted); font-size: 13px; }
footer span:last-child { margin-left: auto; }
.svg-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: absolute; top: 8px; left: 8px; z-index: 10; padding: 14px; background: var(--ink); color: var(--background); }
@media (max-width: 1000px) {
  .page { padding: 24px 32px 0; }
  .links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .page { padding: 19px 22px 0; }
  header { gap: 12px; }
  .identity { font-size: 14px; }
  .identity span { font-size: 12px; }
  .intro { padding-top: 27px; }
  .word-art { display: block; }
  .word { width: 100%; }
  .word + .word { margin-top: -34px; }
  .intro-caption { padding: 15px 0 25px; }
  .intro-caption p { font-size: 20px; }
  .links { grid-template-columns: 1fr; gap: 8px; }
  .destination { min-height: 99px; padding: 22px 52px 22px 20px; gap: 8px; }
  .link-name { font-size: 23px; }
  .link-detail { font-size: 14px; }
  .destination svg { top: 24px; right: 20px; }
  footer { font-size: 12px; gap: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .word-art { transform: none; }
}
@media (forced-colors: active) {
  .letter-face { fill: CanvasText; }
  .depth { stroke: LinkText; }
  .destination { border: 1px solid LinkText; }
}
