@font-face {
  font-family: "Neue Plak";
  src: url("/assets/fonts/neue-plak-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak";
  src: url("/assets/fonts/neue-plak-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/space-mono-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0d0d0d;
  --ink-soft: #1b1b1b;
  --paper: #f5f0e8;
  --paper-bright: #fffaf2;
  --orange: #ff4c2f;
  --orange-dark: #d9341b;
  --purple: #aaa0df;
  --line-dark: rgba(13, 13, 13, 0.2);
  --line-light: rgba(245, 240, 232, 0.24);
  --content: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --focus: #ffe552;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Neue Plak", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  min-height: 44px;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-bright);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--content);
  min-height: 72px;
  padding: 0.75rem 0.85rem;
  transform: translateX(-50%);
  border: 1px solid rgba(13, 13, 13, 0.16);
  border-radius: 1rem;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 8px 28px rgba(13, 13, 13, 0.08);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.site-header--scrolled {
  transform: translateX(-50%) translateY(-0.25rem) scale(0.98);
  background: var(--paper-bright);
  box-shadow: 0 12px 32px rgba(13, 13, 13, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  min-width: 96px;
  min-height: 48px;
}

.brand__wordmark {
  font-family: "Space Mono", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand--header {
  min-width: 0;
  min-height: 44px;
}

.brand--header .brand__wordmark {
  font-family: "Neue Plak", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a,
.text-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
}

.site-header > .button.button--small {
  justify-self: end;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem 0.95rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 44px;
  padding: 0.65rem 0.85rem 0.75rem 1rem;
  font-size: 0.88rem;
}

.button--dark {
  min-width: min(100%, 220px);
  background: var(--ink);
  color: var(--paper-bright);
}

.button--light {
  border-color: var(--ink);
  background: var(--paper-bright);
}

.button--outline {
  border-color: var(--paper);
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  min-height: 760px;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  background: var(--orange);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(13, 13, 13, 0.11) 0.75px, transparent 0.75px);
  background-size: 5px 5px;
  opacity: 0.45;
}

.hero__copy,
.hero__art {
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 690px;
  margin-left: max(0px, calc((100vw - var(--content)) / 2));
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.75rem;
  font-size: clamp(4rem, 7.2vw, 7.6rem);
}

.hero__lede {
  max-width: min(100%, 410px);
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  gap: 0.6rem;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero__art {
  align-self: end;
  min-width: 680px;
  margin-left: -4rem;
}

.hero__art img {
  position: relative;
  z-index: 2;
  width: min(65vw, 880px);
  margin-left: auto;
  filter: drop-shadow(0 28px 22px rgba(0, 0, 0, 0.24));
}

.hero__orbit {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 94%;
  aspect-ratio: 1;
  border: 2px solid rgba(13, 13, 13, 0.23);
  border-radius: 50%;
}

.hero__orbit::before,
.hero__orbit::after {
  position: absolute;
  content: "";
  border: inherit;
  border-radius: inherit;
}

.hero__orbit::before {
  inset: 12%;
}

.hero__orbit::after {
  inset: 26%;
}

.hero__stamp {
  position: absolute;
  top: 7%;
  right: 4%;
  z-index: 3;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-bright);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.proof {
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content);
  margin: 0 auto;
}

.proof__item {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line-dark);
}

.proof__item:last-child {
  border-right: 1px solid var(--line-dark);
}

.proof__item dt {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.proof__item dd {
  margin: 0.65rem 0 0;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto,
.collections,
.story,
.final-cta,
.site-footer {
  padding-inline: var(--gutter);
}

.manifesto {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  background: var(--ink);
  color: var(--paper);
}

.section-heading,
.pillars,
.collection-grid,
.story,
.site-footer {
  max-width: var(--content);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.story h2,
.final-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.pillar {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.pillar--orange {
  background: var(--orange);
  color: var(--ink);
}

.pillar--cream {
  background: var(--paper);
  color: var(--ink);
}

.pillar__number {
  margin-bottom: auto;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
}

.pillar h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.pillar p {
  max-width: 32ch;
  margin-bottom: 1.5rem;
  color: inherit;
  opacity: 0.82;
}

.pillar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-top: 1px solid currentColor;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.collections {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  background: var(--paper);
}

.collections .section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 4rem;
}

.section-heading--split > p:last-child {
  max-width: 340px;
  color: rgba(13, 13, 13, 0.7);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 1.25rem;
  background: var(--paper-bright);
}

.collection-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--purple);
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) brightness(1.06);
}

.collection-card__content {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
}

.collection-card__content .eyebrow {
  margin-bottom: 0.75rem;
}

.collection-card h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.collection-card__cta {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: none;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: var(--ink);
  color: var(--paper);
}

.story__art {
  min-width: 0;
}

.story__art img {
  width: 100%;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.38));
}

.story__copy {
  max-width: 570px;
}

.story__copy > p:not(.eyebrow) {
  color: rgba(245, 240, 232, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.story__copy .button {
  margin-top: 1rem;
}

.final-cta {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--orange);
  text-align: center;
}

.final-cta h2 {
  max-width: 950px;
  margin-bottom: 1.25rem;
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: none;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--ink);
  color: var(--paper);
}

.brand--footer {
  min-width: 0;
}

.brand--footer .brand__wordmark {
  font-family: "Neue Plak", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.site-footer p {
  margin: 0;
  color: rgba(245, 240, 232, 0.7);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

@media (hover: hover) {
  .site-nav a::after,
  .footer-links a::after,
  .text-link::after {
    transition: transform 150ms ease-out;
  }

  .site-nav a:hover::after,
  .footer-links a:hover::after,
  .text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .button,
  .collection-card__cta,
  .pillar a span {
    transition: transform 100ms ease-out, background-color 100ms ease-out, color 100ms ease-out;
  }

  .button:hover,
  .collection-card:hover .collection-card__cta {
    transform: translateY(-2px);
  }

  .button--light:hover {
    background: var(--ink);
    color: var(--paper-bright);
  }

  .button--outline:hover {
    background: var(--paper);
    color: var(--ink);
  }

  .pillar a:hover span {
    transform: translate(3px, 3px);
  }

  .collection-card__image img {
    transition: transform 300ms ease-out, filter 150ms ease-out;
  }

  .collection-card:hover .collection-card__image img {
    transform: scale(1.025);
    filter: saturate(1.08) brightness(1.12);
  }

  .collection-card:hover .collection-card__cta {
    background: var(--ink);
    color: var(--paper-bright);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    transition: transform 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
  }
}

.button:active,
.collection-card:active .collection-card__cta {
  transform: translateY(1px);
}

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

  .site-nav {
    display: none;
  }

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

  .hero__copy {
    margin-left: 0;
  }

  .hero__art {
    min-width: 0;
    margin: 2.5rem -5vw -1rem auto;
  }

  .hero__art img {
    width: min(100%, 800px);
  }

  .hero__orbit {
    right: -10%;
    width: 90%;
  }

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

  .pillar {
    min-height: 320px;
  }

  .section-heading--split,
  .story {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 1.5rem;
  }

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

  .story__art {
    order: 2;
  }

  .story__copy {
    order: 1;
    max-width: 720px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    min-height: 64px;
    padding: 0.55rem 0.6rem;
    border-radius: 0.85rem;
  }

  .site-header--scrolled {
    transform: translateX(-50%) translateY(-0.15rem);
  }

  .site-header > .button {
    min-height: 42px;
    padding-inline: 0.85rem;
    font-size: 0.8rem;
  }

  .site-header > .button svg {
    display: none;
  }

  .brand--header .brand__wordmark {
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }

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

  .proof__item {
    min-height: 88px;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .proof__item:last-child {
    border-bottom: 0;
  }

  .proof__item dt {
    font-size: 2.25rem;
  }

  .proof__item dd {
    margin-top: 0;
    text-align: right;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__art {
    width: 110%;
    margin-top: 3rem;
  }

  .hero__stamp {
    top: -2rem;
    right: 0;
    width: 70px;
    height: 70px;
  }

  .section-heading h2,
  .story h2,
  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .pillar {
    min-height: 300px;
  }

  .collection-card__content {
    padding: 1.25rem;
  }

  .collection-card__cta {
    width: 44px;
    padding-inline: 0;
    justify-content: center;
    font-size: 0;
  }

  .collection-card__cta span {
    font-size: 1rem;
  }

  .story {
    gap: 3rem;
  }

  .story__art {
    margin-inline: -1.25rem;
  }

  .final-cta {
    min-height: 540px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
