:root {
  --ink: #111111;
  --paper: #f7f5ef;
  --paper-soft: #fffdf8;
  --orange: #ff5a2e;
  --cobalt: #2457ff;
  --teal: #00a88f;
  --lime: #d8ff3f;
  --coral: #ff7f68;
  --muted: #6d6a63;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(17, 17, 17, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 64%, rgba(17, 17, 17, 0.14) 0 1px, transparent 1px);
  background-size: 18px 18px, 23px 23px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  width: min(920px, calc(100% - 32px));
  min-height: 76px;
  padding: 14px 16px 14px 22px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 42px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand-mark,
.desktop-nav,
.nav-cta,
.menu-toggle {
  position: relative;
  z-index: 2;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 28px;
}

.brand-mark img {
  display: block;
  width: auto;
  max-width: min(260px, 48vw);
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 2px;
  background: var(--paper-soft);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  background: rgba(247, 245, 239, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.mobile-menu a {
  font-size: clamp(2.4rem, 12vw, 5rem);
  font-weight: 900;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  padding: 150px clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0) 74%, var(--paper) 100%),
    var(--orange);
  overflow: hidden;
}

.hero-copy {
  max-width: 700px;
  padding-bottom: clamp(26px, 7vw, 80px);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.about h2 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.88;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero-copy > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: clamp(500px, 70vw, 760px);
}

.poster {
  position: absolute;
  border: 10px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-one {
  right: 8%;
  bottom: -18px;
  width: min(430px, 72vw);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 30px 30px;
}

.poster-one::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 24% -8% auto auto;
  width: 52%;
  aspect-ratio: 1;
  border: clamp(18px, 3.5vw, 28px) solid var(--cobalt);
  border-radius: 50%;
}

.poster-one strong {
  position: relative;
  z-index: 2;
  max-width: 7ch;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.82;
  font-weight: 900;
}

.poster-one small,
.poster-kicker {
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.poster-two {
  left: 0;
  top: 8%;
  z-index: 3;
  width: min(260px, 42vw);
  aspect-ratio: 0.78;
  display: grid;
  gap: 16px;
  place-items: center;
  padding: 22px;
  background: var(--lime);
  transform: rotate(-7deg);
}

.poster-two span {
  justify-self: start;
  font-weight: 900;
}

.poster-two svg {
  width: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 11;
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 2%;
  top: 22%;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  gap: 8px;
  max-width: 260px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.12);
  transform: rotate(4deg);
}

.floating-note strong {
  font-size: 2.4rem;
  line-height: 1;
}

.floating-note span {
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  padding: 30px 0;
  background: var(--ink);
  color: var(--paper-soft);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: clamp(1.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  white-space: nowrap;
}

.marquee span:nth-child(3n) {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.statement {
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: clamp(80px, 12vw, 160px) clamp(18px, 5vw, 72px);
  background: var(--paper-soft);
}

.statement p {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(2.6rem, 7.6vw, 8.8rem);
  line-height: 0.98;
  font-weight: 900;
}

.statement .word {
  color: rgba(17, 17, 17, 0.11);
  transition: color 280ms ease;
}

.statement .word.is-visible {
  color: var(--ink);
}

.work-section,
.process,
.about,
.contact {
  padding: clamp(80px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.process-intro h2,
.about h2 {
  font-size: clamp(2.6rem, 7vw, 7.2rem);
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.work-art {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  color: var(--paper-soft);
  overflow: hidden;
}

.work-art span,
.work-art strong {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.work-art strong {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.8;
}

.work-art i {
  position: absolute;
  inset: auto -18% 12% auto;
  width: 72%;
  aspect-ratio: 1;
  border: 34px solid currentColor;
  border-radius: 8px;
  transform: rotate(14deg);
}

.cobalt .work-art {
  background: var(--cobalt);
}

.lime .work-art {
  background: var(--lime);
  color: var(--ink);
}

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

.work-meta {
  min-height: 158px;
  padding: 22px;
}

.work-meta h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.work-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 94px);
  background: var(--ink);
  color: var(--paper-soft);
}

.process .eyebrow {
  color: rgba(255, 253, 248, 0.58);
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 58px 0.42fr 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.process-list span {
  color: var(--lime);
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  font-size: 1.5rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 18px;
  background: var(--paper-soft);
}

.about-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-panel p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  font-weight: 600;
}

.about-stats {
  display: grid;
  gap: 12px;
}

.about-stats div {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--paper-soft);
}

.about-stats div:nth-child(2) {
  background: var(--lime);
  color: var(--ink);
}

.about-stats div:nth-child(3) {
  background: var(--ink);
}

.about-stats strong {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
}

.about-stats span {
  font-weight: 900;
}

.contact {
  min-height: 72svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 30px;
  text-align: center;
  background: var(--orange);
}

.contact p {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  font-weight: 900;
}

.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--paper-soft);
  font-weight: 900;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .poster-one {
    right: 0;
  }

  .section-heading,
  .process,
  .about {
    grid-template-columns: 1fr;
  }

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

  .work-art {
    min-height: 360px;
  }

  .process-list article {
    grid-template-columns: 48px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px 10px 10px 16px;
  }

  .brand-mark {
    height: 42px;
  }

  .brand-mark img {
    max-width: 205px;
    height: 42px;
  }

  .hero {
    padding: 112px 14px 24px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 5.8rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .poster {
    border-width: 8px;
  }

  .poster-one {
    width: min(360px, 86vw);
  }

  .poster-two {
    top: 0;
    width: min(200px, 52vw);
  }

  .poster-kicker {
    display: none;
  }

  .floating-note {
    top: 30%;
    right: 0;
  }

  .statement,
  .work-section,
  .process,
  .about,
  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .statement {
    min-height: 70svh;
  }

  .work-art {
    min-height: 310px;
  }

  .about-panel {
    padding: 22px;
  }
}

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