:root {
  --ink: #10120f;
  --paper: #f1f0ea;
  --lime: #c9ff4d;
  --lime-dark: #a7d43b;
  --orange: #f76937;
  --line: rgba(16, 18, 15, 0.18);
  --muted: #666961;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --serif: "Playfair Display", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(241, 240, 234, 0.88);
  backdrop-filter: blur(14px);
}
.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.1em;
}
.wordmark span {
  font-family: var(--mono);
  font-size: 9px;
  vertical-align: top;
  margin-left: 2px;
  letter-spacing: 0;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 90px;
}
.desktop-nav a,
.header-cta,
.text-link {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.desktop-nav a {
  color: var(--muted);
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--ink);
}
.header-cta {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.header-cta span,
.text-link span {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}
.menu-button,
.mobile-nav {
  display: none;
}
.section-shell {
  padding-left: clamp(24px, 8vw, 128px);
  padding-right: clamp(24px, 8vw, 128px);
}
.hero {
  min-height: calc(100vh - 76px);
  padding-top: clamp(60px, 11vh, 140px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: 45px;
  overflow: hidden;
}
.eyebrow,
.section-kicker,
.project-type {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #41443e;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lime-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(169, 212, 59, 0.2);
}
h1 {
  font-size: clamp(52px, 7.1vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  margin: 24px 0 29px;
  max-width: 790px;
  font-weight: 700;
}
em {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.08em;
}
.hero-intro {
  max-width: 480px;
  color: #565a52;
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 15px 17px;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button-primary {
  background: var(--ink);
  color: var(--paper);
}
.button-primary:hover {
  background: var(--orange);
  transform: translateY(-3px);
}
.button span {
  font-size: 18px;
}
.text-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.hero-video {
  align-self: start;
  /* min-height: 0; */
  min-height: 490px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65));
  pointer-events: none;
}
.hero-video video {
  width: 100%;
   height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-caption {
  min-height: 48px;
  padding: 0 18px;
   position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(241, 240, 234, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid rgba(241, 240, 234, 0.2);
}
.hero-foot {
  grid-column: 1/-1;
  align-self: end;
  padding: 40px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  color: #6e716a;
  letter-spacing: 0.06em;
}
.scroll-line {
  height: 1px;
  background: var(--line);
}
.about,
.work,
.journey,
.toolkit,
.contact {
  padding-top: 150px;
}
.section-kicker {
  display: flex;
  gap: 17px;
  color: var(--muted);
  align-items: center;
}
.section-kicker span {
  color: var(--orange);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: clamp(40px, 10vw, 180px);
  margin-top: 33px;
}
.display-heading,
.contact-heading {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.065em;
  margin: 0;
}
.about-content {
  max-width: 470px;
  padding-top: 9px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #50544c;
  margin: 0 0 20px;
}
.about-content .text-link {
  display: inline-block;
  margin-top: 18px;
}
.stats-grid {
  margin-top: 95px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid div {
  padding: 24px 15px 0 0;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.stats-grid div + div {
  padding-left: 20px;
}
.stats-grid div:last-child {
  border: 0;
}
.stats-grid strong {
  font-size: clamp(35px, 4.3vw, 61px);
  letter-spacing: -0.09em;
  line-height: 0.8;
}
.stats-grid span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  padding-bottom: 2px;
}
.work {
  background: var(--ink);
  color: var(--paper);
  margin-top: 150px;
  padding-bottom: 145px;
}
.work .section-kicker {
  color: #aaada4;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading p {
  margin: 0;
  color: #aaada4;
  font-size: 14px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-top: 1px solid rgba(241, 240, 234, 0.24);
  padding-top: 18px;
}
.project-number {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--lime);
  margin-bottom: 20px;
}
.project-card-art {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.baklol-art {
  display: grid;
  place-items: center;
  background: #f8f0cd;
}
.baklol-art img {
  width: min(58%, 250px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}
.d2c-art {
  display: grid;
  align-items: center;
  justify-content: center;
  background: #f4f1e8;
}
.d2c-art img {
  width: min(64%, 285px);
  max-height: 48%;
  object-fit: contain;
}
.project-type {
  color: var(--lime);
  margin: 0 0 13px;
}
.project-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 23px;
}
.project-card-content h3,
.timeline-item h3 {
  font-size: clamp(29px, 3.15vw, 49px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0;
}
.project-card-content > p:not(.project-type),
.timeline-item div > p:last-child {
  color: #b4b7ad;
  font-size: 14px;
  line-height: 1.65;
  max-width: 470px;
  margin: 20px 0;
}
.tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags li {
  border: 1px solid rgba(241, 240, 234, 0.3);
  font-family: var(--mono);
  color: #c9ccc3;
  font-size: 10px;
  padding: 6px 8px;
}
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.project-links a {
  color: var(--lime);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.aero-art {
  background: var(--orange);
}
.aero-art span {
  position: absolute;
  top: 23px;
  left: 20px;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.12em;
}
.aero-art i {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
  width: 170px;
  height: 50px;
  transform: rotate(-38deg);
}
.aero-art i:nth-child(1) {
  top: 115px;
  left: -60px;
}
.aero-art i:nth-child(2) {
  top: 145px;
  left: 20px;
}
.aero-art i:nth-child(3) {
  top: 175px;
  left: 100px;
}
.github-art {
  background: var(--lime);
  color: var(--ink);
  display: grid;
  align-items: center;
  justify-content: center;
}
.github-art svg {
  width: 116px;
  height: 116px;
}
.github-art small {
  position: absolute;
  right: 13px;
  top: 13px;
  font-family: var(--mono);
  border: 1px solid var(--ink);
  padding: 4px 6px;
}
.journey {
  padding-bottom: 40px;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 110px);
}
.journey-title {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 23% 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-date {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
}
.timeline-item h3 {
  font-size: 31px;
}
.timeline-item h3 small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.timeline-item h3 span {
  color: var(--lime-dark);
  font-size: 15px;
  vertical-align: middle;
}
.timeline-item .project-type {
  color: var(--orange);
}
.timeline-item div > p:last-child {
  color: #62655e;
  margin: 12px 0 0;
}
.toolkit {
  padding-bottom: 145px;
}
.toolkit-list {
  margin-top: 37px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.toolkit-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: clamp(14px, 1.65vw, 22px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 13px 17px;
}
.toolkit-list img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.toolkit-list span:nth-child(6) img,
.toolkit-list span:nth-child(10) img {
  filter: invert(1);
}
.toolkit-list span:nth-child(3n + 2) {
  background: var(--lime);
  border-color: var(--lime);
}
.toolkit-list span:nth-child(3n) {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--paper);
}
.contact {
  padding-top: 105px;
  padding-bottom: 54px;
  color: var(--paper);
  background: var(--ink);
}
.contact .eyebrow {
  color: var(--lime);
}
.contact-heading {
  font-size: clamp(64px, 10vw, 145px);
  margin: 22px 0 24px;
}
.contact-icons {
  display: flex;
  gap: 12px;
}
.contact-icons a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 240, 234, 0.35);
  border-radius: 50%;
  color: var(--paper);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.contact-icons a:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-4px);
}
.contact-icons svg {
  width: 21px;
  height: 21px;
}
.contact-bottom {
  border-top: 1px solid rgba(241, 240, 234, 0.25);
  margin-top: 100px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: #aeb1a7;
}
.contact-bottom p {
  margin: 0;
}
.contact-bottom div {
  display: flex;
  gap: 24px;
}
.contact-bottom a:hover {
  color: var(--lime);
}
footer {
  background: var(--ink);
  color: #93978e;
  border-top: 1px solid rgba(241, 240, 234, 0.18);
  padding: 18px clamp(24px, 8vw, 128px);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
footer a {
  color: var(--paper);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .site-header {
    height: 64px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-button {
    border: 0;
    background: none;
    display: grid;
    gap: 5px;
    padding: 7px 0;
  }
  .menu-button span {
    width: 25px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s;
  }
  .menu-button.open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-button.open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .mobile-nav {
    background: var(--ink);
    color: var(--paper);
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 20px 24px 25px;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .mobile-nav.open {
    display: flex;
    transform: translateY(0);
  }
  .mobile-nav a {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }
  .hero-video {
    min-height: 0;
  }
  .hero-foot {
    padding: 28px 0;
  }
  .about,
  .work,
  .journey,
  .toolkit {
    padding-top: 90px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-grid {
    margin-top: 65px;
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid div {
    border-bottom: 1px solid var(--line);
    padding: 18px 8px 18px 0;
  }
  .stats-grid div + div {
    padding-left: 14px;
  }
  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }
  .work {
    margin-top: 90px;
    padding-bottom: 85px;
  }
  .section-heading {
    display: block;
  }
  .section-heading p {
    margin-top: 13px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-card-art {
    min-height: 220px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .journey-title {
    margin-bottom: 8px;
  }
  .project-links {
    margin-top: 16px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .toolkit {
    padding-bottom: 90px;
  }
  .contact {
    padding-top: 82px;
  }
  .contact-icons {
    margin-top: 30px;
  }
  .contact-bottom {
    margin-top: 65px;
    display: block;
  }
  footer {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}