:root {
  color-scheme: dark;
  --ink: #0b0d12;
  --ink-soft: #141620;
  --paper: #f0ece4;
  --paper-warm: #e8dfd2;
  --white: #f8f6f1;
  --warm: #dba677;
  --gold: #c89749;
  --rose: #bd797d;
  --coral: #c86f59;
  --violet: #655879;
  --acid: #c6e39f;
  --dark-line: rgba(12, 14, 19, 0.16);
  --light-line: rgba(255, 255, 255, 0.2);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --section-pad: clamp(5rem, 10vw, 10rem);
  --page-pad: clamp(1rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 18rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--ink);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 0.3rem;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-200%);
  transition: transform 200ms ease;
}

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

.progress-rail {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: 3px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.progress-rail span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(var(--warm), var(--rose), var(--violet));
  transform: scaleY(var(--page-progress, 0));
  transform-origin: top;
}

.cursor-glow {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(219, 166, 119, 0.12), transparent 68%);
  transform: translate3d(calc(var(--cursor-x, -20rem) - 50%), calc(var(--cursor-y, -20rem) - 50%), 0);
  transition: opacity 300ms ease;
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.site-nav {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem var(--page-pad);
  border-bottom: 1px solid var(--light-line);
  transition: padding 350ms var(--ease), background 350ms var(--ease), backdrop-filter 350ms var(--ease);
}

.site-nav.is-scrolled {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-copy,
.nav-status,
.nav-menu a {
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
}

.nav-menu a {
  position: relative;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 250ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

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

.nav-status {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.nav-status span {
  width: 0.45rem;
  height: 0.45rem;
  display: inline-block;
  margin-right: 0.55rem;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 1rem rgba(198, 227, 159, 0.7);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(8rem, 15vh, 11rem) var(--page-pad) clamp(7rem, 13vh, 10rem);
}

.hero-media,
.hero-media::after,
.hero-wash,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: #171a20;
}

.hero-media img {
  width: 100%;
  height: 112%;
  display: block;
  object-fit: cover;
  object-position: 55% 48%;
  scale: 1.05;
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -1), 0);
  animation: slow-push 20s var(--ease) both;
  will-change: transform;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.95) 0%, rgba(5, 7, 11, 0.65) 36%, rgba(5, 7, 11, 0.08) 75%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.82), transparent 58%);
}

.hero-wash {
  background:
    radial-gradient(circle at 76% 61%, rgba(219, 166, 119, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(101, 88, 121, 0.24), transparent 46%);
  mix-blend-mode: screen;
}

.hero-grain {
  opacity: 0.3;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.5px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-copy {
  width: min(100%, 88rem);
  padding-top: 4rem;
}

.kicker {
  margin: 0 0 clamp(1.5rem, 4vh, 3rem);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.65rem, 0.8vw, 0.76rem);
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker span {
  color: var(--warm);
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(4.35rem, 12.8vw, 12rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.075em;
}

h1 span {
  display: block;
}

h1 span:last-child {
  margin-left: clamp(1rem, 7vw, 7rem);
  font-style: italic;
}

.hero-intro {
  width: min(100%, 38rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin: clamp(2rem, 5vh, 4rem) 0 0 clamp(1rem, 7vw, 7rem);
}

.hero-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

.round-link {
  width: 5.2rem;
  height: 5.2rem;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
}

.round-link span:last-child {
  align-self: end;
  font-size: 1rem;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: rotate(5deg) scale(1.04);
}

.hero-index,
.hero-caption {
  position: absolute;
  right: var(--page-pad);
  margin: 0;
  font-size: 0.59rem;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-index {
  top: 7rem;
}

.hero-caption {
  bottom: 5.3rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--light-line);
  white-space: nowrap;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-style: italic;
}

.ticker-track i {
  color: var(--warm);
  font-size: 0.65rem;
  font-style: normal;
}

.section-label,
.section-number {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-topline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--dark-line);
}

.section-number {
  color: rgba(12, 14, 19, 0.5);
}

.story-section {
  min-height: 100vh;
  padding: var(--section-pad) var(--page-pad);
  color: #18191e;
  background: var(--paper);
}

.story-heading {
  display: grid;
  grid-template-columns: 1.25fr minmax(16rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.story-heading h2,
.work-heading h2,
.resume-heading h2,
.future-copy h2,
.contact-section h2,
.reel-heading h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7.9vw, 8.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.story-heading h2 em,
.work-heading h2 em,
.resume-heading h2 em,
.future-copy h2 em,
.contact-section h2 em,
.reel-heading h2 em {
  color: var(--rose);
  font-weight: 400;
}

.story-lede {
  margin: 0;
  color: rgba(24, 25, 30, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.story-grid article {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1rem, 2.5vw, 2.5rem) 2.5rem;
}

.story-grid article + article {
  border-left: 1px solid var(--dark-line);
}

.story-grid article > span {
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.story-grid h3 {
  margin: auto 0 1.2rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.story-grid p {
  max-width: 28rem;
  margin: 0;
  color: rgba(24, 25, 30, 0.67);
  font-size: 0.94rem;
  line-height: 1.6;
}

.chapter-break {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: var(--page-pad);
}

.chapter-image,
.chapter-overlay {
  position: absolute;
  inset: 0;
}

.chapter-image {
  z-index: -2;
  overflow: hidden;
}

.chapter-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.72) contrast(1.06);
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -1), 0) scale(1.06);
  will-change: transform;
}

.chapter-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.5), rgba(8, 10, 15, 0.32) 45%, rgba(8, 10, 15, 0.78)),
    radial-gradient(circle at 50% 50%, transparent, rgba(5, 7, 10, 0.35));
}

.chapter-kicker {
  margin: 0 0 1.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chapter-display {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 16rem);
  line-height: 0.68;
  letter-spacing: -0.08em;
}

.chapter-display span,
.chapter-display em {
  display: block;
}

.chapter-display em {
  margin-left: 0.2em;
  color: var(--warm);
  font-weight: 400;
}

.chapter-meta {
  position: absolute;
  right: var(--page-pad);
  bottom: var(--page-pad);
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.17em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding: var(--section-pad) var(--page-pad);
  background:
    radial-gradient(circle at 5% 12%, rgba(101, 88, 121, 0.28), transparent 28rem),
    var(--ink);
}

.timeline-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.timeline-intro h2 {
  margin: 2.2rem 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.timeline-intro h2 em {
  color: var(--warm);
  font-weight: 400;
}

.timeline-intro > p:not(.section-label) {
  max-width: 29rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1rem;
  line-height: 1.65;
}

.timeline-key {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-key span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
}

.timeline-key i {
  width: 0.52rem;
  height: 0.52rem;
  display: block;
  border-radius: 50%;
}

.past-dot {
  background: var(--warm);
}

.future-dot {
  border: 1px solid var(--rose);
}

.year-list {
  min-width: 0;
}

.year-card {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(2rem, 5vw, 4.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 400ms ease, border-color 400ms ease;
}

.year-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.has-js .year-card:not(.is-active) {
  opacity: 0.58;
}

.year-card.is-active {
  opacity: 1;
  border-top-color: rgba(219, 166, 119, 0.75);
}

.year-card.current {
  margin: 1rem 0;
  padding-right: clamp(1rem, 3vw, 3rem);
  padding-left: clamp(1rem, 3vw, 3rem);
  border: 1px solid rgba(219, 166, 119, 0.42);
  background: linear-gradient(135deg, rgba(219, 166, 119, 0.12), rgba(189, 121, 125, 0.05));
}

.year-count {
  color: var(--warm);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 1;
}

.future .year-count {
  color: var(--rose);
}

.year-label {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.year-copy h3 {
  margin: 0 0 1.2rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.year-copy > p:not(.year-label) {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.68;
}

.year-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.year-fields span {
  padding: 0.52rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100vw;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--ink);
  background: var(--warm);
}

.timeline-shift span {
  padding: 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-shift span:last-child {
  text-align: right;
}

.timeline-shift strong {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.motion-reel {
  overflow: hidden;
  padding: var(--section-pad) 0;
  color: #191a1f;
  background: var(--paper-warm);
}

.reel-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.5fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 0 var(--page-pad) clamp(4rem, 8vw, 8rem);
}

.reel-heading h2 {
  font-size: clamp(3.5rem, 7vw, 8rem);
}

.reel-heading h2 em {
  color: var(--violet);
}

.reel-heading > p:last-child {
  margin: 0;
  color: rgba(25, 26, 31, 0.68);
  font-size: 0.95rem;
  line-height: 1.62;
}

.reel-window {
  overflow: hidden;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.reel-track {
  width: max-content;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  animation: reel 38s linear infinite;
}

.reel-window:hover .reel-track {
  animation-play-state: paused;
}

.reel-frame {
  width: clamp(18rem, 31vw, 34rem);
  margin: 0;
  flex: 0 0 auto;
}

.reel-frame > div {
  position: relative;
  height: clamp(25rem, 50vw, 42rem);
  overflow: hidden;
  background-image: linear-gradient(rgba(16, 17, 22, 0.06), rgba(16, 17, 22, 0.34)), url("/assets/journey-hero.jpg");
  background-size: auto 118%;
  filter: saturate(0.68);
  transition: filter 500ms ease, background-size 1s var(--ease);
}

.reel-frame:hover > div {
  background-size: auto 124%;
  filter: saturate(0.95);
}

.frame-one > div {
  background-position: 8% center;
}

.frame-two > div {
  background-position: 38% center;
}

.frame-three > div {
  background-position: 72% center;
}

.frame-four > div {
  background-position: 96% center;
}

.reel-frame figcaption {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-frame figcaption span {
  color: var(--rose);
}

.work-section {
  padding: var(--section-pad) var(--page-pad);
  color: #18191e;
  background: var(--paper);
}

.dark-line {
  border-color: var(--dark-line);
}

.work-heading {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 0.4fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.work-heading > p {
  margin: 0;
  color: rgba(24, 25, 30, 0.67);
  font-size: 1rem;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem) 1rem;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--dark-line);
}

.work-card:nth-child(1) {
  grid-column: 1 / span 7;
}

.work-card:nth-child(2) {
  grid-column: 8 / span 5;
  margin-top: 10rem;
}

.work-card:nth-child(3) {
  grid-column: 3 / span 7;
}

.work-visual {
  position: relative;
  min-height: clamp(22rem, 48vw, 45rem);
  overflow: hidden;
  color: var(--white);
  background: var(--coral);
}

.card-violet .work-visual {
  background: var(--violet);
}

.card-gold .work-visual {
  color: var(--ink);
  background: var(--gold);
}

.work-visual > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 4rem;
}

.work-visual b {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.59rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.work-visual i,
.work-visual::before,
.work-visual::after {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.48;
  transition: transform 800ms var(--ease);
}

.work-visual i {
  top: 18%;
  left: 18%;
  width: 64%;
  aspect-ratio: 1;
}

.work-visual::before {
  top: 29%;
  left: 29%;
  width: 42%;
  aspect-ratio: 1;
}

.work-visual::after {
  top: 41%;
  left: 41%;
  width: 18%;
  aspect-ratio: 1;
  background: currentColor;
}

.work-card:hover .work-visual i {
  transform: scale(1.14) rotate(8deg);
}

.work-card:hover .work-visual::before {
  transform: scale(0.84) rotate(-10deg);
}

.work-card:hover .work-visual::after {
  transform: scale(1.24);
}

.visual-two i {
  border-radius: 10% 50% 42% 18%;
  transform: rotate(24deg);
}

.visual-three::after {
  border-radius: 0;
  transform: rotate(45deg);
}

.work-copy {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.work-copy > p:first-child {
  margin: 0 0 3rem;
  color: rgba(24, 25, 30, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin: 0 0 1.2rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.work-copy > p:not(:first-child) {
  max-width: 37rem;
  margin: 0;
  color: rgba(24, 25, 30, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.card-action {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-line);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-action i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 300ms var(--ease);
}

.work-card:hover .card-action i {
  transform: translate(0.2rem, -0.2rem);
}

.statement-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--page-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(189, 121, 125, 0.23), transparent 34rem),
    radial-gradient(circle at 15% 80%, rgba(101, 88, 121, 0.3), transparent 36rem),
    var(--ink);
}

.statement-section > p {
  margin: -0.06em 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(5rem, 17vw, 17rem);
  line-height: 0.73;
  letter-spacing: -0.08em;
}

.statement-section > p:nth-child(2) {
  align-self: center;
}

.statement-section > p:nth-child(3) {
  align-self: end;
}

.statement-section em {
  color: var(--warm);
  font-weight: 400;
}

.statement-section > span {
  align-self: end;
  max-width: 20rem;
  margin-top: 5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.resume-section {
  padding: var(--section-pad) var(--page-pad);
  color: #18191e;
  background: var(--paper-warm);
}

.resume-heading {
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 0.42fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.resume-heading .section-label {
  margin-bottom: 2rem;
}

.resume-heading h2 em {
  color: var(--violet);
}

.resume-heading > p {
  margin: 0;
  color: rgba(24, 25, 30, 0.68);
  font-size: 0.96rem;
  line-height: 1.65;
}

.resume-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.36fr);
  color: #17181d;
  background: #f8f5ef;
  box-shadow: 0 2rem 6rem rgba(32, 25, 23, 0.15);
}

.resume-sheet-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--dark-line);
}

.resume-sheet-head p {
  margin: 0 0 0.4rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  letter-spacing: -0.055em;
}

.resume-sheet-head > div span {
  color: rgba(23, 24, 29, 0.58);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.resume-badge {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--rose);
  border-radius: 100vw;
  color: var(--rose);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resume-column,
.resume-sidebar {
  padding: clamp(1.5rem, 4vw, 4rem);
}

.resume-sidebar {
  border-left: 1px solid var(--dark-line);
  background: rgba(101, 88, 121, 0.06);
}

.resume-column section + section,
.resume-sidebar section + section {
  margin-top: 3.5rem;
}

.resume-sheet h3 {
  margin: 0 0 1.5rem;
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.resume-entry {
  padding: 1.2rem 0;
  border-top: 1px solid var(--dark-line);
}

.resume-entry:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.resume-entry > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.resume-entry strong {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 400;
}

.resume-entry span {
  color: rgba(23, 24, 29, 0.48);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resume-entry p,
.resume-sidebar p,
.resume-sidebar li {
  margin: 0.7rem 0 0;
  color: rgba(23, 24, 29, 0.65);
  font-size: 0.88rem;
  line-height: 1.58;
}

.future-entry {
  background: linear-gradient(90deg, rgba(189, 121, 125, 0.08), transparent);
}

.resume-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resume-sidebar li {
  padding-bottom: 0.6rem;
}

.future-section {
  position: relative;
  min-height: 120vh;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
  overflow: hidden;
  padding: var(--section-pad) var(--page-pad);
  color: var(--ink);
  background: var(--warm);
}

.future-orbit {
  position: relative;
  aspect-ratio: 1;
}

.future-orbit > span {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(11, 13, 18, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.future-orbit > span:nth-child(1) {
  width: 35%;
  height: 35%;
}

.future-orbit > span:nth-child(2) {
  width: 66%;
  height: 66%;
}

.future-orbit > span:nth-child(3) {
  width: 96%;
  height: 96%;
}

.future-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4rem rgba(11, 13, 18, 0.25);
}

.future-orbit i {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  color: var(--warm);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.future-orbit i:nth-of-type(1) {
  top: 29%;
  left: 31%;
}

.future-orbit i:nth-of-type(2) {
  top: 13%;
  right: 25%;
}

.future-orbit i:nth-of-type(3) {
  right: 5%;
  bottom: 27%;
}

.future-orbit i:nth-of-type(4) {
  bottom: 4%;
  left: 22%;
}

.future-copy {
  position: relative;
  z-index: 2;
}

.future-copy h2 {
  margin: 2.2rem 0 2rem;
}

.future-copy h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.future-copy > p:last-child {
  max-width: 37rem;
  margin: 0;
  color: rgba(11, 13, 18, 0.68);
  font-size: 1rem;
  line-height: 1.66;
}

.future-years {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(11, 13, 18, 0.3);
}

.future-years article {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
}

.future-years article + article {
  border-left: 1px solid rgba(11, 13, 18, 0.3);
}

.future-years article > span {
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.future-years p {
  margin: 0 0 0.8rem;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-years h3 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.contact-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--page-pad);
  background:
    radial-gradient(circle at 80% 30%, rgba(189, 121, 125, 0.2), transparent 32rem),
    var(--ink);
}

.contact-section h2 {
  margin: 2rem 0 5rem;
  font-size: clamp(4rem, 10vw, 11rem);
}

.contact-section h2 em {
  color: var(--warm);
}

.contact-row {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.contact-row p {
  width: min(100%, 36rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.66;
}

.light-link {
  border-color: var(--warm);
  color: var(--warm);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--light-line);
  background: var(--ink);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer p:last-child {
  justify-self: end;
  text-align: right;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 2.2rem, 0);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes slow-push {
  from { scale: 1.05; }
  to { scale: 1.13; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes reel {
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

@media (max-width: 68rem) {
  .site-nav {
    grid-template-columns: auto 1fr;
  }

  .nav-menu {
    justify-self: end;
  }

  .nav-status {
    display: none;
  }

  .story-heading,
  .work-heading,
  .resume-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story-lede,
  .work-heading > p,
  .resume-heading > p {
    max-width: 40rem;
  }

  .reel-heading {
    grid-template-columns: 0.35fr 1fr;
  }

  .reel-heading > p:last-child {
    grid-column: 2;
  }

  .timeline-section {
    grid-template-columns: 1fr;
  }

  .timeline-intro {
    position: static;
    max-width: 42rem;
  }

  .future-section {
    grid-template-columns: 0.7fr 1fr;
  }
}

@media (max-width: 52rem) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .brand-copy {
    display: none;
  }

  .nav-menu a {
    display: none;
  }

  .nav-menu a:nth-last-child(2) {
    display: block;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-intro {
    margin-left: 0;
  }

  .hero-index,
  .hero-caption {
    display: none;
  }

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

  .story-grid article {
    min-height: 16rem;
  }

  .story-grid article + article {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .reel-heading {
    grid-template-columns: 1fr;
  }

  .reel-heading > p:last-child {
    grid-column: auto;
  }

  .work-card:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .resume-sheet {
    grid-template-columns: 1fr;
  }

  .resume-sidebar {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .future-section {
    grid-template-columns: 1fr;
  }

  .future-orbit {
    width: min(100%, 34rem);
    justify-self: center;
  }

  .future-years {
    grid-template-columns: 1fr 1fr;
  }

  .future-years article:nth-child(3) {
    border-left: 0;
  }

  .future-years article:nth-child(n + 3) {
    border-top: 1px solid rgba(11, 13, 18, 0.3);
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer p:first-of-type {
    display: none;
  }
}

@media (max-width: 36rem) {
  .hero {
    padding-top: 7rem;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6.5rem);
    line-height: 0.79;
  }

  h1 span:last-child {
    margin-left: 0.25rem;
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .round-link {
    width: 4.7rem;
    height: 4.7rem;
  }

  .section-topline {
    align-items: start;
  }

  .section-number {
    text-align: right;
  }

  .story-heading h2,
  .work-heading h2,
  .resume-heading h2,
  .future-copy h2,
  .contact-section h2,
  .reel-heading h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .chapter-display {
    font-size: clamp(4.4rem, 24vw, 7.5rem);
  }

  .year-card {
    grid-template-columns: 3.2rem 1fr;
  }

  .year-count {
    font-size: 2.2rem;
  }

  .year-copy h3 {
    font-size: 2.8rem;
  }

  .timeline-shift {
    grid-template-columns: 1fr auto;
  }

  .timeline-shift span:last-child {
    display: none;
  }

  .work-visual {
    min-height: 26rem;
  }

  .statement-section > p {
    font-size: clamp(4.2rem, 23vw, 7.2rem);
  }

  .resume-sheet-head {
    align-items: start;
  }

  .resume-badge {
    max-width: 6rem;
    border-radius: 0;
    text-align: center;
  }

  .resume-entry > div {
    flex-direction: column;
    gap: 0.25rem;
  }

  .future-years {
    grid-template-columns: 1fr;
  }

  .future-years article:nth-child(n) {
    min-height: 14rem;
    border-top: 1px solid rgba(11, 13, 18, 0.3);
    border-left: 0;
  }

  .contact-row {
    flex-direction: column;
    align-items: start;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

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

  .hero-media img,
  .chapter-image img {
    transform: none;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-nav,
  .hero,
  .story-section,
  .chapter-break,
  .timeline-section,
  .motion-reel,
  .work-section,
  .statement-section,
  .future-section,
  .contact-section,
  footer,
  .progress-rail,
  .cursor-glow {
    display: none !important;
  }

  .resume-section {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .resume-heading {
    display: none;
  }

  .resume-sheet {
    box-shadow: none;
  }
}
