:root {
  --ink: #0c0c0c;
  --paper: #f2efe8;
  --muted: #aca89f;
  --acid: #d8ff37;
  --orange: #ff5c35;
  --line-dark: rgba(255, 255, 255, .16);
  --line-light: rgba(12, 12, 12, .18);
  --pad: clamp(20px, 4.3vw, 72px);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
button, a { color: inherit; font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }
em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: -.03em; line-height: .88; }
.brand-name small { display: block; margin-top: 6px; font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 50px); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-header nav a, .share-link { position: relative; padding: 8px 0; border: 0; background: transparent; }
.site-header nav a::after, .share-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-header nav a:hover::after, .share-link:hover::after { transform: scaleX(1); transform-origin: left; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  min-height: 790px;
  height: min(900px, 100vh);
  padding: 160px var(--pad) 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  right: -200px;
  bottom: -390px;
  border: 1px solid rgba(216, 255, 55, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(216, 255, 55, .025), 0 0 0 180px rgba(216, 255, 55, .02);
}
.hero-copy { z-index: 2; align-self: center; min-width: 0; padding-right: 5vw; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 1px; background: var(--acid); }
.eyebrow.dark span { background: var(--ink); }
.hero h1, .section-heading h2, .motion-copy h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(72px, 8.5vw, 142px);
  font-weight: 900;
  line-height: .76;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero h1 em { display: inline-block; color: var(--acid); text-transform: lowercase; transform: translateX(.05em); }
.hero-lede { max-width: 520px; margin: 48px 0 0; color: #c8c5bd; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.48; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 35px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 185px;
  gap: 24px;
  padding: 17px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button.primary { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.button.primary:hover { background: var(--paper); border-color: var(--paper); }
.text-link { border-bottom: 1px solid currentColor; padding: 7px 0; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.hero-collage { position: relative; min-width: 0; height: 100%; }
.hero-card { position: absolute; margin: 0; overflow: hidden; background: #1a1a1a; box-shadow: 0 22px 60px rgba(0,0,0,.34); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main { z-index: 3; top: 1%; left: 17%; width: 46%; height: 82%; transform: rotate(-2.5deg); }
.hero-card-top { z-index: 2; top: -2%; right: 1%; width: 39%; height: 53%; transform: rotate(5deg); }
.hero-card-bottom { z-index: 4; right: 2%; bottom: -4%; width: 36%; height: 54%; transform: rotate(3deg); }
.hero-card-top img { object-position: center; }
.hero-sticker {
  position: absolute;
  z-index: 6;
  display: grid;
  place-content: center;
  left: 5%;
  bottom: 7%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: .6;
  text-align: center;
  transform: rotate(-10deg);
}
.hero-sticker small { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }

.ticker { overflow: hidden; background: var(--acid); color: var(--ink); border-block: 1px solid var(--ink); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 24px; padding: 17px 0; animation: ticker 26s linear infinite; }
.ticker span { font-size: 14px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.ticker i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.work-section { padding: 110px var(--pad) 120px; background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; padding-bottom: 75px; }
.section-heading h2 { font-size: clamp(58px, 7vw, 116px); }
.section-heading h2 em { color: var(--orange); text-transform: lowercase; }
.section-heading > p { max-width: 460px; margin: 0 0 5px; font-size: clamp(15px, 1.3vw, 19px); line-height: 1.55; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; padding: 18px 0 50px; border-top: 1px solid var(--line-light); }
.filter {
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  padding: 10px 15px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
}
.filter:hover, .filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter sup { margin-left: 3px; opacity: .6; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 4vw, 70px) clamp(16px, 2.4vw, 40px); align-items: start; }
.work-card { grid-column: span 6; min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.work-card.span-7 { grid-column: span 7; }
.work-card.span-6 { grid-column: span 6; }
.work-card.span-5 { grid-column: span 5; }
.work-card.span-4 { grid-column: span 4; }
.work-card.offset { margin-top: 90px; }
.work-card[hidden] { display: none; }
.visual-button { display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #ddd7cd; text-align: left; }
.visual-button img { width: 100%; height: auto; object-fit: contain; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.visual-button.landscape img { aspect-ratio: auto; }
.visual-button:hover img { transform: scale(1.025); filter: saturate(1.08); }
.card-meta { display: flex; justify-content: space-between; gap: 18px; padding: 15px 2px 0; border-top: 1px solid var(--ink); margin-top: 8px; }
.card-meta h3, .card-meta p { margin: 0; }
.card-meta h3 { font-size: clamp(15px, 1.4vw, 22px); font-weight: 800; letter-spacing: -.03em; }
.card-meta p { padding-top: 3px; color: #67635d; font-size: 9px; font-weight: 700; text-align: right; text-transform: uppercase; letter-spacing: .08em; }

.archive { margin-top: 90px; border-top: 1px solid var(--ink); }
.archive summary { display: flex; align-items: center; justify-content: space-between; padding: 24px 2px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.archive summary::-webkit-details-marker { display: none; }
.archive summary span { font-size: 24px; font-weight: 300; transition: transform .25s ease; }
.archive[open] summary span { transform: rotate(45deg); }
.archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-top: 10px; }
.archive-grid img { width: 100%; height: auto; object-fit: contain; cursor: zoom-in; transition: filter .25s ease, transform .25s ease; }
.archive-grid img:hover { filter: saturate(1.08); transform: translateY(-3px); }

.motion-section { padding: 120px var(--pad); overflow: hidden; }
.motion-header { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.motion-copy h2 { font-size: clamp(52px, 6.1vw, 104px); }
.motion-copy h2 em { color: var(--acid); text-transform: lowercase; }
.motion-intro { max-width: 520px; margin: 0 0 5px; color: #b9b6ae; font-size: 17px; line-height: 1.55; }
.video-gallery { columns: 2 420px; column-gap: clamp(18px, 2.5vw, 40px); margin-top: 75px; }
.video-card { display: inline-block; width: 100%; margin: 0 0 clamp(24px, 2.5vw, 40px); break-inside: avoid; vertical-align: top; }
.video-media { display: grid; place-items: center; overflow: hidden; background: #050505; border: 1px solid var(--line-dark); }
.video-media video { width: 100%; height: auto; max-height: 780px; object-fit: contain; background: #050505; }
.video-media.vertical video { width: min(100%, 560px); }
.video-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 15px 2px 0; border-top: 1px solid rgba(255,255,255,.5); margin-top: 8px; }
.video-meta h3, .video-meta span { margin: 0; }
.video-meta h3 { font-size: clamp(16px, 1.4vw, 22px); letter-spacing: -.03em; }
.video-meta span { color: #88847d; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }

.profile-section { padding: 100px var(--pad); background: var(--acid); color: var(--ink); }
.profile-label { padding-bottom: 24px; border-bottom: 1px solid rgba(12,12,12,.35); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.profile-main { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; padding-top: 65px; }
.profile-statement { max-width: 970px; margin: 0; font-size: clamp(40px, 5.2vw, 86px); font-weight: 900; line-height: .92; letter-spacing: -.065em; text-transform: uppercase; }
.profile-statement em { text-transform: lowercase; }
.profile-details > p { margin: 0 0 45px; font-size: 16px; line-height: 1.55; }
.profile-details ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(12,12,12,.35); }
.profile-details li { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(12,12,12,.35); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.profile-details li span { opacity: .45; }

.cv-section { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(50px, 9vw, 150px); align-items: center; padding: 120px var(--pad); background: #171717; overflow: hidden; }
.cv-copy { min-width: 0; }
.cv-copy h2 { margin: 0; font-size: clamp(56px, 6.4vw, 106px); font-weight: 900; line-height: .8; letter-spacing: -.075em; text-transform: uppercase; }
.cv-copy h2 em { color: var(--acid); text-transform: lowercase; }
.cv-intro { max-width: 650px; margin: 42px 0; color: #bbb7af; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; }
.cv-highlights { margin: 0; border-top: 1px solid var(--line-dark); }
.cv-highlights div { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.cv-highlights dt { color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cv-highlights dd { margin: 0; font-size: 13px; font-weight: 700; line-height: 1.35; }
.cv-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.cv-preview { position: relative; width: min(520px, 100%); justify-self: end; padding: 0; border: 0; background: #fff; box-shadow: 0 30px 75px rgba(0,0,0,.42); transform: rotate(1.2deg); transition: transform .3s ease; }
.cv-preview:hover { transform: rotate(0deg) translateY(-5px); }
.cv-preview img { width: 100%; height: auto; }
.cv-preview span { position: absolute; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 15px; padding: 12px 15px; border-radius: 999px; background: var(--acid); color: var(--ink); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cv-preview span b { font-size: 14px; }

.contact-section { padding: 120px var(--pad) 100px; text-align: center; }
.contact-section .eyebrow { justify-content: center; }
.contact-section h2 { font-size: clamp(54px, 8.4vw, 140px); }
.contact-section h2 em { color: var(--orange); text-transform: lowercase; }
.contact-note { margin: 40px auto 28px; color: #aaa69e; font-size: 16px; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 30px; }
.button.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button.light:hover { background: var(--acid); border-color: var(--acid); }
.light-link { color: var(--paper); }
.share-bottom { margin: 0 auto; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px var(--pad); border-top: 1px solid var(--line-dark); color: #97938c; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand { color: var(--paper); }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 18px; }
.footer-brand .brand-name { font-size: 14px; }
footer > a:last-child { border-bottom: 1px solid currentColor; padding-bottom: 4px; }

.lightbox {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  padding: 30px;
  border: 0;
  background: rgba(6,6,6,.95);
  color: white;
}
.lightbox[open] { display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.lightbox::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.lightbox figure { display: grid; place-items: center; gap: 14px; height: calc(100vh - 60px); margin: 0; min-width: 0; }
.lightbox img { width: auto; height: auto; max-width: 100%; max-height: calc(100vh - 105px); object-fit: contain; }
.lightbox figcaption { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lightbox button { border: 0; background: transparent; color: white; }
.lightbox-close { position: fixed; z-index: 2; top: 20px; right: 25px; font-size: 36px; }
.lightbox-nav { padding: 30px 10px; font-size: 30px; }

.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; padding: 13px 17px; border-radius: 4px; background: var(--acid); color: var(--ink); font-size: 11px; font-weight: 800; transform: translateY(150%); transition: transform .3s ease; }
.toast.show { transform: none; }

@media (max-width: 900px) {
  .site-header nav a { display: none; }
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; padding-top: 135px; }
  .hero-copy { padding-right: 0; }
  .hero h1 { font-size: clamp(67px, 19vw, 130px); }
  .hero-collage { height: 610px; margin-top: 65px; }
  .hero-card-main { left: 8%; width: 52%; }
  .hero-card-top { right: 0; width: 42%; }
  .hero-card-bottom { right: 3%; }
  .section-heading { grid-template-columns: 1fr; gap: 35px; }
  .section-heading > p { max-width: 600px; }
  .work-card.span-7, .work-card.span-6, .work-card.span-5, .work-card.span-4 { grid-column: span 6; }
  .work-card.offset { margin-top: 0; }
  .motion-header { grid-template-columns: 1fr; gap: 35px; }
  .profile-main { grid-template-columns: 1fr; }
  .cv-section { grid-template-columns: 1fr 1fr; gap: 55px; }
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  :root { --pad: 18px; }
  .site-header { padding-top: 18px; padding-bottom: 18px; }
  .brand-name { max-width: 118px; font-size: 14px; line-height: .95; }
  .brand-name small { font-size: 7px; }
  .site-header nav { gap: 12px; }
  .share-link { padding: 10px 13px; border: 1px solid var(--line-dark); border-radius: 999px; font-size: 9px; }
  .share-link::after { display: none; }
  .hero { padding-top: 118px; padding-bottom: 32px; }
  .eyebrow { gap: 8px; font-size: 9px; letter-spacing: .1em; }
  .eyebrow span { width: 22px; flex: 0 0 22px; }
  .hero h1 { font-size: clamp(60px, 20vw, 88px); }
  .hero-lede { margin-top: 32px; font-size: 16px; }
  .hero-lede { max-width: 100%; overflow-wrap: anywhere; }
  .hero-actions { gap: 18px; }
  .hero-actions .text-link { display: none; }
  .hero-collage { height: 455px; margin-top: 46px; }
  .hero-card-main { left: 2%; width: 61%; height: 80%; }
  .hero-card-top { right: -7%; width: 48%; height: 49%; }
  .hero-card-bottom { right: -2%; bottom: 0; width: 41%; height: 53%; }
  .hero-sticker { left: 1%; bottom: 0; width: 80px; height: 80px; font-size: 24px; }
  .work-section { padding-top: 78px; padding-bottom: 80px; }
  .section-heading { padding-bottom: 45px; }
  .section-heading h2 { font-size: clamp(50px, 15vw, 64px); }
  .filters { flex-wrap: nowrap; margin-inline: -18px; padding-inline: 18px; overflow-x: auto; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { white-space: nowrap; }
  .work-grid { grid-template-columns: 1fr; gap: 48px; }
  .work-card.span-7, .work-card.span-6, .work-card.span-5, .work-card.span-4 { grid-column: 1 / -1; }
  .visual-button { background: #e8e3da; }
  .visual-button img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .card-meta { display: block; }
  .card-meta h3 { font-size: 18px; }
  .card-meta p { margin-top: 6px; text-align: left; font-size: 9px; }
  .archive { margin-top: 60px; }
  .archive-grid { grid-template-columns: 1fr; gap: 28px; }
  .archive-grid img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .motion-section { padding-top: 85px; padding-bottom: 85px; }
  .motion-copy h2 { font-size: 55px; }
  .motion-intro { font-size: 16px; }
  .video-gallery { columns: 1; margin-top: 52px; }
  .video-card { margin-bottom: 42px; }
  .video-meta { display: block; }
  .video-meta h3 { font-size: 18px; }
  .video-meta span { display: block; margin-top: 6px; text-align: left; }
  .profile-section { padding-top: 75px; padding-bottom: 75px; }
  .profile-main { padding-top: 42px; }
  .profile-statement { font-size: 39px; }
  .cv-section { grid-template-columns: 1fr; gap: 55px; padding-top: 82px; padding-bottom: 82px; }
  .cv-copy h2 { font-size: clamp(50px, 15vw, 64px); }
  .cv-intro { margin: 32px 0; font-size: 16px; }
  .cv-highlights div { grid-template-columns: 92px 1fr; gap: 14px; }
  .cv-highlights dd { font-size: 12px; }
  .cv-actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .cv-actions .button { width: 100%; }
  .cv-actions .text-link { align-self: flex-start; }
  .cv-preview { width: 100%; justify-self: stretch; transform: none; }
  .contact-section { padding-top: 85px; padding-bottom: 75px; }
  .contact-section h2 { font-size: 58px; }
  .contact-actions { flex-direction: column; }
  footer { flex-wrap: wrap; }
  footer > p { order: 3; width: 100%; }
  .lightbox { padding: 20px 12px; }
  .lightbox[open] { grid-template-columns: 38px 1fr 38px; }
  .lightbox figure { height: calc(100vh - 40px); }
  .lightbox img { max-height: calc(100vh - 95px); }
  .lightbox-nav { padding-inline: 0; }
}

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