:root {
  color-scheme: light;
  --beige: #f5f5f0;
  --paper: #fffffa;
  --ink: #2d2926;
  --slate: #4a4e4d;
  --muted: #6f7571;
  --sage: #8c9a8e;
  --clay: #b98f6f;
  --line: rgba(74, 78, 77, 0.18);
  --line-strong: rgba(45, 41, 38, 0.28);
  --section: rgba(255, 255, 250, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--beige);
  color: var(--slate);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

::selection {
  background: rgba(140, 154, 142, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 240, 0.78);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 245, 240, 0.94);
}

.nav,
main {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--ink);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 160ms ease;
}

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

.hero {
  min-height: calc(100svh - 120px);
  padding: 96px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 64px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 18px;
  color: #657466;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 7.3rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--slate);
  font-size: 1.22rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero__actions a,
.work-card__heading a,
.cta {
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.hero__actions a::after,
.work-card__heading a::after,
.cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.hero__actions a:hover::after,
.hero__actions a:focus-visible::after,
.work-card__heading a:hover::after,
.work-card__heading a:focus-visible::after,
.cta:hover::after,
.cta:focus-visible::after {
  transform: scaleX(1);
}

.hero__profile {
  align-self: end;
}

.hero__portrait {
  margin: 0 0 28px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line-strong);
}

.hero__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.9) contrast(0.98);
}

.hero__portrait figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero__notes {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--line-strong);
}

.hero__notes p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.hero__notes p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2,
.footer h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.journey {
  border-bottom: 1px solid var(--line);
}

.journey-list {
  position: relative;
}

.journey-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 214px;
  width: 1px;
  background: var(--line);
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 54px;
  padding: 0 0 58px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 208px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--beige);
  background: var(--sage);
}

.journey-item time {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.5;
}

.journey-copy {
  max-width: 760px;
}

.journey-copy h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.role {
  margin-bottom: 18px;
  color: #657466;
  font-weight: 700;
}

.journey-copy p:not(.role) {
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.72;
}

.journey-copy p:last-child {
  margin-bottom: 0;
}

.works {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.work-card {
  min-width: 0;
  padding: 0;
}

.preview {
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.work-card:hover .preview img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.work-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.work-card__heading > div {
  min-width: 0;
}

.work-card p.work-card__status {
  margin-bottom: 6px;
  color: #657466;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.work-card p.work-card__status--ended {
  color: #9a7459;
}

.work-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.work-card__heading a {
  flex: 0 0 auto;
  color: #657466;
  font-size: 0.92rem;
}

.work-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.7;
}

.work-card--archive {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  margin-top: 10px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.work-card--archive .preview {
  margin-bottom: 0;
  filter: saturate(0.65) contrast(0.94);
}

.work-card--archive .work-card__body {
  max-width: 560px;
}

.repertoire {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.repertoire__copy h2 {
  max-width: 700px;
  margin-bottom: 44px;
}

.skill-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.skill-group h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.98rem;
}

.skill-group p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.72;
}

.focus-panel {
  padding: 38px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--beige);
}

.focus-panel .eyebrow {
  color: #c8d4c6;
}

.focus-panel p:last-child {
  margin-bottom: 0;
  color: rgba(245, 245, 240, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.45;
}

.footer {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
}

.footer h2 {
  margin-bottom: 26px;
}

.cta {
  display: inline-block;
  margin-bottom: 52px;
  font-size: 1.05rem;
}

.fine-print {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 980px) {
  .hero,
  .repertoire {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: 0;
    padding-top: 78px;
  }

  .hero__profile {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .hero__portrait {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    padding: 0;
    border-top: 0;
    border-left: 0;
  }

  .hero__notes p {
    margin-bottom: 0;
  }

  .journey-list::before {
    left: 156px;
  }

  .journey-item {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 48px;
  }

  .journey-item::before {
    left: 150px;
  }
}

@media (max-width: 760px) {
  .nav,
  main {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .hero {
    padding: 62px 0 58px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero__lead {
    font-size: 1.04rem;
  }

  .hero__notes,
  .hero__profile,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card--archive {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .work-card--archive .preview {
    margin-bottom: 22px;
  }

  .hero__profile {
    gap: 24px;
  }

  .hero__portrait {
    max-width: 320px;
  }

  .section {
    padding: 74px 0;
  }

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

  .section h2,
  .footer h2 {
    font-size: 2.35rem;
  }

  .journey-list::before {
    left: 6px;
  }

  .journey-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 32px;
    padding-bottom: 46px;
  }

  .journey-item::before {
    left: 0;
  }

  .journey-copy h3 {
    font-size: 1.45rem;
  }

  .focus-panel {
    padding: 28px;
  }

  .focus-panel p:last-child {
    font-size: 1.28rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.65rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .work-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
