:root {
  --ink: #11110f;
  --paper: #f5f1e8;
  --bone: #fffaf0;
  --acid: #d8ff35;
  --green: #113f2b;
  --coral: #ff6148;
  --blue: #2458ff;
  --line: rgba(17, 17, 15, 0.18);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-loading {
  overflow: hidden;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink);
  color: var(--bone);
  transition: opacity 620ms ease, visibility 620ms ease;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  pointer-events: none;
}

.preloader::after {
  inset: auto 24px 24px;
  height: 8px;
  background: var(--acid);
  border: 0;
  transform-origin: left center;
  animation: preloader-line 1300ms cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.preloader-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-size: 12pt;
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.preloader-mark span {
  display: inline-block;
  animation: preloader-bounce 860ms cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  animation-delay: calc(var(--i) * 54ms);
}

.preloader-mark .preloader-gap {
  width: 0.32em;
  animation: none;
}

body.is-loaded .preloader {
  visibility: hidden;
  opacity: 0;
}

.cursor {
  position: fixed;
  z-index: 1000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--acid);
  border: 1px solid rgba(17, 17, 15, 0.7);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  color: var(--bone);
}

.brand {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.45);
  background: rgba(17, 17, 15, 0.32);
  backdrop-filter: blur(18px);
  font-size: 14px;
  font-weight: 900;
}

.brand img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

nav {
  justify-self: center;
  display: flex;
  max-width: 100%;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(17, 17, 15, 0.36);
  backdrop-filter: blur(18px);
}

nav a,
.availability {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-availability {
  display: none;
}

nav a:hover,
nav a:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.availability:hover,
.availability:focus-visible,
.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.order-link:hover,
.order-link:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.availability {
  gap: 10px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: var(--acid);
  color: var(--ink);
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-mobile-image {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.18), rgba(17, 17, 15, 0.35) 42%, rgba(17, 17, 15, 0.84)),
    linear-gradient(90deg, rgba(17, 17, 15, 0.7), rgba(17, 17, 15, 0.14) 48%, rgba(17, 17, 15, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 148px 0 40px;
  color: var(--bone);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--acid);
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: var(--acid);
  color: var(--ink);
}

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

h1 {
  max-width: 1180px;
  margin-bottom: 26px;
  font-size: clamp(64px, 11vw, 178px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.accent-word {
  color: var(--acid);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 540px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  border-top: 1px solid rgba(255, 250, 240, 0.35);
  padding-top: 24px;
}

.hero-lower p {
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--bone);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--acid);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.intro h2,
.section-heading h2,
.manifesto h2,
.proof h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 6.4vw, 104px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 1240px;
}

.intro {
  display: grid;
  gap: 28px;
}

.intro .section-kicker {
  margin-bottom: -10px;
}

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

.intro-proof p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.25;
}

.intro-proof div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.intro-proof span,
.manifesto-notes span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

[data-scroll-headline] {
  overflow: hidden;
}

.scroll-headline-line {
  display: block;
  will-change: transform;
  transform: translate3d(var(--line-shift, 0px), 0, 0);
  transition: transform 120ms linear;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  margin-bottom: 32px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
  overflow: hidden;
}

.work-card p,
.service-item span {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.work-card h3,
.service-item h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card span,
.service-item p,
.proof-panel,
footer {
  font-size: 17px;
  line-height: 1.4;
}

.feature-card {
  grid-column: span 2;
  background: var(--green);
  color: var(--bone);
}

.project-card {
  aspect-ratio: 1;
  min-height: auto;
  padding: 0;
  color: var(--bone);
  background: var(--ink);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease, filter 600ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.18) 36%, rgba(17, 17, 15, 0.86)),
    linear-gradient(90deg, rgba(17, 17, 15, 0.38), rgba(17, 17, 15, 0.04));
}

.project-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.project-copy {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.project-copy p {
  color: var(--acid);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.project-copy h3,
.project-copy span {
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.62);
}

.project-copy span {
  font-size: 15px;
  line-height: 1.36;
}

.acid {
  background: var(--acid);
}

.dark {
  background: var(--ink);
  color: var(--bone);
}

.coral {
  background: var(--coral);
}

.manifesto {
  background: var(--ink);
  color: var(--bone);
}

.manifesto-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 132px 0;
}

.manifesto p {
  margin-bottom: 18px;
  color: var(--acid);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 400;
  font-style: italic;
}

.manifesto-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.manifesto-notes span {
  color: var(--bone);
}

.prints {
  display: grid;
  gap: 36px;
}

.prints-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 32px;
  align-items: stretch;
}

.prints-polaroid {
  align-self: stretch;
  max-height: 520px;
  min-height: 320px;
  margin: 0;
  display: grid;
  align-items: end;
  justify-items: start;
  overflow: visible;
}

.prints-polaroid img {
  display: block;
  width: min(84%, 340px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(28px 34px 28px rgba(0, 0, 0, 0.55));
  transform: scale(0.82);
  transform-origin: center center;
}

.prints-heading-copy {
  display: grid;
  gap: 18px;
  align-content: end;
}

.prints-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6.4vw, 104px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prints-heading-copy p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.print-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 620px;
  background: var(--bone);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.print-card figure {
  min-height: 0;
  margin: 0;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0)),
    var(--paper);
}

.print-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bone);
  transition: transform 600ms ease, filter 600ms ease;
}

.print-card:hover img {
  transform: scale(0.98);
  filter: contrast(1.03) saturate(1.04);
}

.print-copy {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.print-copy p,
.print-copy h3,
.print-copy span {
  margin: 0;
}

.print-copy p {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.print-copy h3 {
  font-size: clamp(28px, 2.7vw, 48px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.print-copy span {
  font-size: 16px;
  line-height: 1.3;
}

.order-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 0 18px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr minmax(260px, 440px);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-item p {
  margin: 0;
}

.proof {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: stretch;
}

.proof-panel {
  align-self: start;
  padding: 28px;
  background: var(--blue);
  color: var(--bone);
}

.proof-panel p {
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proof-panel li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.contact {
  min-height: 70vh;
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 92px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: var(--bone);
}

.contact .section-kicker {
  color: var(--ink);
}

.contact-link {
  justify-self: start;
  max-width: 100%;
  padding: 0.06em 0.1em 0.1em;
  background: var(--acid);
  color: var(--ink);
  font-size: clamp(28px, 7vw, 112px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--bone);
}

footer p {
  margin: 0;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.32);
  color: var(--bone);
  font-size: 15px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-social-link svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: var(--acid);
  color: var(--bone);
  outline: 0;
  transform: translateY(-3px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes preloader-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  48% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes preloader-line {
  0% {
    transform: scaleX(0);
  }
  55% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}

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

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

  .cursor {
    display: none;
  }

  .preloader,
  .preloader::after,
  .preloader-mark,
  .preloader-mark span {
    animation: none !important;
  }

  [data-scroll-headline] {
    overflow: visible;
  }

  .scroll-headline-line {
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    grid-column: 4;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 250, 240, 0.28);
    background: rgba(17, 17, 15, 0.36);
    backdrop-filter: blur(18px);
    color: var(--bone);
    cursor: pointer;
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  body.nav-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.nav-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  nav {
    position: fixed;
    top: 62px;
    right: 0;
    left: 0;
    z-index: 21;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 250, 240, 0.28);
    background: rgba(17, 17, 15, 0.88);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  nav a {
    min-height: 52px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
    font-size: 13px;
  }

  nav a:last-child {
    border-bottom: 0;
  }

  .nav-availability {
    display: inline-flex;
  }

  .hero-lower,
  .section-heading,
  .intro-proof,
  .prints-heading,
  .proof {
    grid-template-columns: 1fr;
  }

  .intro-proof div {
    justify-content: flex-start;
  }

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

  .prints-polaroid {
    min-height: 280px;
    max-height: 420px;
  }

  .prints-polaroid img {
    width: min(72%, 300px);
    transform: scale(0.78);
  }

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

  .service-item {
    grid-template-columns: 56px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 8px;
  }

  .brand {
    width: 44px;
    height: 44px;
  }

  .availability {
    grid-column: 3;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-media {
    display: none;
  }

  .hero-mobile-image {
    display: block;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .hero-lower {
    gap: 22px;
  }

  .button {
    width: 100%;
  }

  .ticker span {
    padding: 14px 18px;
    font-size: 14px;
  }

  .section {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  .intro {
    gap: 22px;
  }

  .intro-proof {
    gap: 18px;
  }

  .intro-proof p {
    font-size: 17px;
  }

  .intro h2,
  .section-heading h2,
  .prints-heading h2,
  .manifesto h2,
  .proof h2,
  .contact h2 {
    font-size: clamp(34px, 12vw, 62px);
  }

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

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

  .print-card {
    min-height: auto;
  }

  .prints-polaroid {
    min-height: 240px;
    max-height: 340px;
  }

  .prints-polaroid img {
    width: min(76%, 260px);
    transform: scale(0.7);
  }

  .feature-card {
    grid-column: span 1;
  }

  .work-card {
    min-height: 320px;
    padding: 20px;
  }

  .project-card {
    min-height: auto;
    padding: 0;
  }

  .project-copy {
    padding: 20px;
  }

  .manifesto-inner {
    width: calc(100% - 24px);
    padding: 90px 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-item p {
    grid-column: auto;
  }

  .proof-panel {
    padding: 22px;
  }

  .contact {
    min-height: 64vh;
    padding: 72px 12px;
  }

  footer {
    display: grid;
    padding-inline: 12px;
  }

  .footer-social-links {
    justify-content: start;
  }
}

@media (max-width: 420px) {
  .availability {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .availability span {
    width: 10px;
    height: 10px;
  }

  .menu-toggle {
    width: 42px;
  }
}
