:root {
  --paper: #f6f1ea;
  --ink: #111111;
  --muted: #625f58;
  --line: #d9d0c3;
  --olive: #586d5c;
  --rose: #a23f72;
  --blue: #6f9fba;
  --white: #fffaf4;
  --max: 1240px;
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transition: opacity 700ms ease;
}

body.is-loaded {
  opacity: 1;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--olive), var(--rose));
  transform-origin: left;
}

.action-toast {
  position: fixed;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 95;
  max-width: min(340px, calc(100% - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.92);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.action-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (pointer: fine) {
  body,
  a,
  button,
  [data-lightbox] {
    cursor: none;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 180ms ease,
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.cursor-ring {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.58);
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.cursor-ring span {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  background: rgba(255, 250, 244, 0.12);
}

body.cursor-label .cursor-ring {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 250, 244, 0.72);
}

body.cursor-label .cursor-ring span {
  opacity: 1;
  transform: scale(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(18px);
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

body.has-scrolled .site-header {
  min-height: 64px;
  padding-block: 12px;
  background: rgba(246, 241, 234, 0.96);
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.06);
}

.brand {
  display: grid;
  gap: 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

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

.site-nav a::after,
address a::after,
.inline-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
address a:hover::after,
address a:focus-visible::after,
.inline-actions a:hover::after,
.inline-actions a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 240ms ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(42deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-42deg);
}

.section-panel,
.section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  min-height: calc(100svh - 76px);
  padding: clamp(46px, 6vw, 84px) 0 44px;
  perspective: 1200px;
}

.hero-copy {
  padding-bottom: clamp(24px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(64px, 7.2vw, 96px);
  line-height: 0.83;
  text-transform: uppercase;
}

h1 span {
  display: block;
  transform: translateY(110%);
  animation: title-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

h1 span:nth-child(2) {
  animation-delay: 110ms;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.9;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.94;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.17;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 250, 244, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button.is-pressed {
  transform: translateY(1px) scale(0.985);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.62;
  pointer-events: none;
}

.hero-media {
  position: relative;
  height: min(76svh, 760px);
  min-height: 470px;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.18);
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(1.035);
  animation: image-settle 1100ms 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.hero-media img {
  transform: scale(1.05);
  animation: editorial-drift 9s ease-in-out 1.2s infinite alternate;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.intro-strip p {
  margin: 0;
  padding: 18px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  animation: strip-pulse 5.5s ease-in-out infinite;
  animation-delay: calc(var(--strip-index, 0) * 180ms);
  transition: color 220ms ease, transform 220ms ease;
}

.intro-strip p:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.intro-strip p:last-child {
  border-right: 0;
}

.section {
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading h2 {
  transform-origin: left bottom;
}

.section-heading.is-visible h2 {
  animation: heading-settle 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.talent-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  clip-path: inset(0 0 0 0);
}

.talent-row.is-visible {
  animation: board-lock 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.talent-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.talent-image img,
.gallery-grid img,
.digital-grid img,
.profile-image-stack img {
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 300ms ease;
}

.talent-image:hover {
  transform: rotate(-0.6deg) scale(0.992);
}

.talent-image:hover img,
.gallery-grid figure:hover img,
.digital-grid figure:hover img {
  transform: scale(1.055);
}

.talent-details p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.talent-number,
.talent-meta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inline-actions a {
  position: relative;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile {
  position: relative;
  width: 100%;
  background: #151515;
  color: var(--white);
  overflow: hidden;
}

.profile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(111, 159, 186, 0.2), transparent 270px),
    linear-gradient(120deg, rgba(162, 63, 114, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.profile.is-spotlit::before {
  opacity: 1;
}

.profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 112px)));
  margin-inline: auto;
}

.profile-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 250, 244, 0.74);
  font-size: 18px;
  line-height: 1.6;
}

.profile-copy .button {
  border-color: var(--white);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin: 34px 0;
  background: rgba(255, 250, 244, 0.2);
}

.stats-list div {
  padding: 18px;
  background: #151515;
  opacity: 0;
  transform: translateY(18px);
}

.profile-copy.is-visible .stats-list div {
  animation: stat-rise 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.profile-copy.is-visible .stats-list div:nth-child(2) {
  animation-delay: 90ms;
}

.profile-copy.is-visible .stats-list div:nth-child(3) {
  animation-delay: 180ms;
}

.profile-copy.is-visible .stats-list div:nth-child(4) {
  animation-delay: 270ms;
}

.stats-list dt {
  margin-bottom: 9px;
  color: rgba(255, 250, 244, 0.5);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-list dd {
  margin: 0;
  font-size: 16px;
}

.profile-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}

.profile-image-stack img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
}

.profile-image-stack img:first-child {
  transform: translateY(var(--parallax-y, 0px));
}

.profile-image-stack img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(calc(34px + var(--parallax-y, 0px)));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure,
.digital-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--line);
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}

.gallery-grid figure.is-visible {
  animation: image-card-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.digital-grid figure.is-visible {
  animation: contact-sheet-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-grid figure::after,
.digital-grid figure::after,
.talent-image::after,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 241, 234, 0.72);
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-media::after {
  transition-delay: 380ms;
}

.gallery-grid figure.is-visible::after,
.digital-grid figure.is-visible::after,
.talent-image.is-visible::after,
body.is-loaded .hero-media::after {
  transform: translateY(-102%);
}

.gallery-grid:hover figure:not(:hover) img {
  filter: saturate(0.58) contrast(0.92);
}

.gallery-grid figure {
  aspect-ratio: 3 / 4;
}

.gallery-grid .tall {
  aspect-ratio: 3 / 5;
}

.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.digital-grid figure {
  position: relative;
  aspect-ratio: 4 / 5;
}

.digital-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 240ms ease, background 240ms ease;
}

.digital-grid figure:hover figcaption {
  transform: translateY(-3px);
  background: rgba(17, 17, 17, 0.9);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-copy h2 {
  font-size: clamp(39px, 5vw, 72px);
}

.split-copy p:not(.eyebrow),
.apply-section > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact-form.is-visible label {
  animation: field-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--field-delay, 0ms);
}

.contact-form label:focus-within {
  color: var(--ink);
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(88, 109, 92, 0.12);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.apply-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr auto;
  gap: 28px;
  align-items: center;
  border-block: 1px solid var(--line);
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

address {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

address a {
  position: relative;
}

address a:hover,
address a:focus-visible {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.stats-list div,
.contact-form label,
.digital-grid figure,
.gallery-grid figure {
  transition-delay: var(--reveal-delay, 0ms);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 18px;
  padding: clamp(20px, 4vw, 48px);
  background: rgba(17, 17, 17, 0.92);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 260ms ease, transform 260ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.lightbox.is-open img {
  animation: lightbox-image-in 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 82svh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  max-width: 720px;
  color: rgba(255, 250, 244, 0.7);
  font-size: 13px;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgba(255, 250, 244, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  top: clamp(20px, 4vw, 48px);
  min-height: 42px;
  padding: 0 18px;
}

.lightbox-nav {
  min-height: 54px;
  align-self: center;
}

@keyframes title-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes image-settle {
  to {
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  }
}

@keyframes editorial-drift {
  from {
    transform: scale(1.05) translate3d(-1.2%, -0.6%, 0);
  }

  to {
    transform: scale(1.11) translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes strip-pulse {
  0%,
  100% {
    background: transparent;
    color: var(--muted);
  }

  45% {
    background: rgba(88, 109, 92, 0.08);
    color: var(--ink);
  }
}

@keyframes heading-settle {
  from {
    opacity: 0;
    transform: translateY(22px) scaleY(1.08);
  }

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

@keyframes board-lock {
  from {
    filter: blur(10px);
    transform: translateY(34px) rotate(-0.5deg);
  }

  to {
    filter: blur(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes stat-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-card-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--parallax-y, 0px) + 42px)) rotate(-1.4deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(var(--parallax-y, 0px)) rotate(0) scale(1);
  }
}

@keyframes contact-sheet-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--parallax-y, 0px) + 28px)) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(var(--parallax-y, 0px)) scale(1);
  }
}

@keyframes field-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      color 180ms ease;
  }

  body.nav-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .site-nav a:nth-child(2) {
    transition-delay: 40ms;
  }

  body.nav-open .site-nav a:nth-child(3) {
    transition-delay: 80ms;
  }

  body.nav-open .site-nav a:nth-child(4) {
    transition-delay: 120ms;
  }

  body.nav-open .site-nav a:nth-child(5) {
    transition-delay: 160ms;
  }

  .hero,
  .talent-row,
  .profile-grid,
  .split-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .intro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip p {
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid,
  .digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-nav {
    grid-row: 2;
  }

  .contact-section {
    display: grid;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .section-panel,
  .section,
  .profile-grid {
    width: min(100% - 32px, var(--max));
  }

  .hero-actions,
  .inline-actions {
    display: grid;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 0.92;
  }

  .lede {
    max-width: 320px;
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: grid;
  }

  .profile-image-stack,
  .stats-list,
  .contact-form,
  .gallery-grid,
  .digital-grid {
    grid-template-columns: 1fr;
  }

  .profile-image-stack img:last-child {
    transform: none;
  }

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

  .lightbox {
    padding-top: 82px;
  }
}

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

  body {
    opacity: 1;
  }

  [data-reveal],
  h1 span,
  .hero-media {
    opacity: 1;
    transform: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
