:root {
  --ink: #151515;
  --paper: #f2f0ea;
  --acid: #e7ff5e;
  --muted: #77746d;
  --line: rgba(21, 21, 21, .22);
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }

.grain { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .06; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E"); }

.topbar { height: 76px; padding: 0 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.wordmark { font-size: 27px; font-weight: 600; letter-spacing: -.1em; }
.availability { margin: 0; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.availability span { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #87a400; }
.menu-button { display: none; }
.menu { justify-self: end; display: flex; gap: 28px; font: 12px var(--mono); text-transform: uppercase; }
.menu a, footer a, .contact-row a { position: relative; }
.menu a::after, footer a::after, .contact-row a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.menu a:hover::after, footer a:hover::after, .contact-row a:hover::after { transform: scaleX(1); transform-origin: left; }

.hero { min-height: calc(100vh - 76px); padding: 34px 24px 28px; display: flex; flex-direction: column; }
.eyebrow { margin: 0; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { margin: auto 0 8vh; font-size: clamp(58px, 12.7vw, 220px); line-height: .72; font-weight: 500; letter-spacing: -.09em; }
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: 7vw; font-weight: 400; }
.hero-bottom { display: grid; grid-template-columns: 1fr auto; align-items: end; border-top: 1px solid var(--line); padding-top: 20px; }
.intro { max-width: 465px; margin: 0; font-size: clamp(20px, 2vw, 34px); line-height: 1.15; letter-spacing: -.04em; }
.round-link { width: 98px; height: 98px; border-radius: 50%; background: var(--acid); display: grid; place-content: center; gap: 7px; text-align: center; font: 10px var(--mono); text-transform: uppercase; transition: transform .35s ease, background .35s ease; }
.round-link svg { width: 21px; justify-self: center; fill: none; stroke: currentColor; stroke-width: 1.2; }
.round-link:hover { transform: rotate(-8deg) scale(1.06); background: #ddff25; }

.work-section { padding: 110px 24px 140px; background: var(--ink); color: var(--paper); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(242,240,234,.25); }
.section-head h2 { margin: 0; font-size: clamp(42px, 6vw, 90px); font-weight: 400; letter-spacing: -.07em; }
.section-head p { margin: 0 0 8px; font: 10px var(--mono); text-transform: uppercase; }
.filters { display: flex; gap: 8px; margin: 22px 0 54px; }
.filter { padding: 9px 16px; border: 1px solid rgba(242,240,234,.35); border-radius: 100px; background: none; color: var(--paper); font: 10px var(--mono); text-transform: uppercase; cursor: pointer; }
.filter:hover, .filter.is-active { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; align-items: start; }
.project { margin: 0 0 55px; grid-column: span 5; transition: opacity .35s ease; }
.project:nth-child(3n+2) { grid-column: span 4; margin-top: 12vw; }
.project:nth-child(3n) { grid-column: span 3; margin-top: 4vw; }
.project:nth-child(6n+4) { grid-column: 2 / span 4; }
.project:nth-child(6n+5) { grid-column: span 6; }
.project:nth-child(6n+6) { grid-column: span 2; }
.project.is-hidden { display: none; }
.image-button { display: block; width: 100%; padding: 0; border: 0; background: #292929; overflow: hidden; cursor: zoom-in; }
.image-button img { aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.9); transition: transform .8s cubic-bezier(.2,.65,.2,1), filter .5s ease; }
.project--wide .image-button img { aspect-ratio: 4 / 3; }
.project--square .image-button img { aspect-ratio: 1 / 1; }
.image-button:hover img { transform: scale(1.025); filter: saturate(1.08); }
figcaption { display: flex; justify-content: space-between; gap: 12px; margin-top: 9px; font: 9px var(--mono); text-transform: uppercase; line-height: 1.35; }
figcaption span:last-child { color: #96938c; text-align: right; }

.about-section { padding: 120px 24px 150px; }
.about-grid { margin-top: 70px; display: grid; grid-template-columns: 1.25fr .75fr .45fr; gap: 6vw; }
.about-grid h2 { margin: 0; font-size: clamp(48px, 7vw, 112px); line-height: .9; font-weight: 400; letter-spacing: -.075em; }
.about-copy { max-width: 580px; font-size: clamp(17px, 1.5vw, 24px); line-height: 1.35; letter-spacing: -.025em; }
.about-copy p { margin: 0 0 1.2em; }
.services { font: 10px var(--mono); text-transform: uppercase; }
.services > p { color: var(--muted); }
.services ul { margin: 22px 0 0; padding: 0; list-style: none; }
.services li { padding: 9px 0; border-top: 1px solid var(--line); }

.contact-section { min-height: 82vh; padding: 56px 24px 28px; display: flex; flex-direction: column; background: var(--acid); }
.contact-section h2 { margin: auto 0; font-size: clamp(64px, 11vw, 185px); line-height: .79; font-weight: 500; letter-spacing: -.085em; }
.contact-section h2 em { font-family: Georgia, serif; font-weight: 400; }
.contact-row { padding-top: 21px; border-top: 1px solid rgba(21,21,21,.3); display: flex; justify-content: space-between; font: 11px var(--mono); text-transform: uppercase; }
footer { padding: 22px 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font: 9px var(--mono); text-transform: uppercase; }
footer p { margin: 0; }
footer p:nth-child(2) { justify-self: center; }
footer a { justify-self: end; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 38px 75px; border: 0; background: rgba(11,11,11,.97); color: white; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: #111; }
.lightbox img { max-width: 80vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; }
.lightbox-close, .lightbox-nav { position: fixed; border: 0; color: white; background: transparent; cursor: pointer; }
.lightbox-close { top: 20px; right: 25px; font-size: 38px; font-weight: 300; }
.lightbox-nav { top: 50%; font-size: 26px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption { position: fixed; left: 24px; bottom: 18px; margin: 0; font: 9px var(--mono); text-transform: uppercase; }

@media (max-width: 800px) {
  .topbar { height: 64px; padding: 0 16px; grid-template-columns: 1fr auto; }
  .availability { display: none; }
  .menu-button { display: block; justify-self: end; border: 0; padding: 8px 0; background: transparent; font: 10px var(--mono); text-transform: uppercase; }
  .menu { display: none; position: absolute; top: 64px; left: 0; right: 0; padding: 24px 16px 30px; flex-direction: column; gap: 18px; background: var(--paper); border-bottom: 1px solid var(--line); font-size: 18px; }
  .menu.is-open { display: flex; }
  .hero { min-height: calc(100svh - 64px); padding: 24px 16px 18px; }
  .hero h1 { margin: auto 0 11vh; font-size: 18.2vw; line-height: .78; }
  .hero h1 span:last-child { margin-left: 0; font-size: 15.2vw; overflow-wrap: anywhere; }
  .intro { max-width: 66%; font-size: 18px; }
  .round-link { width: 76px; height: 76px; }
  .work-section, .about-section { padding-left: 16px; padding-right: 16px; }
  .work-section { padding-top: 72px; padding-bottom: 75px; }
  .filters { margin-bottom: 32px; overflow-x: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .project, .project:nth-child(n) { grid-column: span 1; margin: 0 0 30px; }
  .project:nth-child(4n+1) { grid-column: span 2; }
  figcaption { display: block; font-size: 8px; }
  figcaption span { display: block; }
  figcaption span:last-child { text-align: left; margin-top: 2px; }
  .about-section { padding-top: 80px; padding-bottom: 90px; }
  .about-grid { margin-top: 44px; display: block; }
  .about-copy { margin-top: 45px; }
  .services { margin-top: 50px; }
  .contact-section { min-height: 70vh; padding: 36px 16px 20px; }
  .contact-section h2 { font-size: 17vw; }
  .contact-row { flex-direction: column; gap: 15px; }
  footer { padding: 20px 16px; grid-template-columns: 1fr auto; }
  footer p:nth-child(2) { display: none; }
  .lightbox { padding: 50px 12px; }
  .lightbox img { max-width: 94vw; max-height: 75vh; }
  .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox-caption { left: 50%; transform: translateX(-50%); width: 62%; text-align: center; }
}

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