:root {
  --black: #050505;
  --ink: #111;
  --white: #f7f7f2;
  --muted: #a7a7a0;
  --lime: #dcff00;
  --line: rgba(255, 255, 255, .18);
  --dark-line: rgba(0, 0, 0, .12);
  --max: 1180px;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 118px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(18px);
}

.brand-mark img {
  width: 178px;
  height: auto;
  filter: invert(1);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-links a, .nav-cta { transition: color .2s ease; }
.nav-links a:hover { color: var(--lime); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 5, 5, .94);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu a {
  padding: 15px 16px;
  border-radius: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.mobile-menu a:hover {
  background: var(--lime);
  color: var(--black);
}
.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover {
  background: var(--black);
  color: var(--lime);
}

.section {
  padding: 108px 24px;
}

.section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--white); color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  align-items: end;
  gap: 30px;
  padding: 132px 24px 70px;
  overflow: hidden;
}

.hero > * { position: relative; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: -20% -8% auto auto;
  width: 58vw;
  height: 78vh;
  background: var(--lime);
  transform: skewX(-18deg) rotate(7deg);
  transform-origin: top;
}

.hero-copy, .hero-visual { max-width: none; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--ink); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(66px, 10vw, 148px);
  line-height: .82;
  font-weight: 1000;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 82px);
  line-height: .9;
  font-weight: 1000;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 14px;
  font-size: 28px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  color: #d8d8d2;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary { background: var(--lime); border-color: var(--lime); color: var(--black); }
.button-secondary { color: var(--white); }
.hero-visual {
  position: relative;
  align-self: center;
  min-height: 580px;
  max-width: 620px;
  width: 100%;
  perspective: 1100px;
}
.post-card,
.hero-stat {
  position: absolute;
  border: 1px solid rgba(5, 5, 5, .55);
  background: var(--black);
  box-shadow: -14px 14px 0 rgba(0, 0, 0, .9);
}
.post-card {
  overflow: hidden;
  top: 74px;
  left: 0;
  width: min(74%, 460px);
  opacity: 1;
  transition:
    top 1.25s cubic-bezier(.2, .82, .2, 1),
    left 1.25s cubic-bezier(.2, .82, .2, 1),
    width 1.25s cubic-bezier(.2, .82, .2, 1),
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(.2, .82, .2, 1);
  will-change: transform, top, left, width;
}
.post-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.post-card.is-front {
  z-index: 3;
  left: 26%;
  top: 74px;
  width: min(74%, 460px);
  transform: rotate(1.5deg);
  animation: heroFloat 7s ease-in-out infinite;
}
.post-card.is-middle {
  z-index: 2;
  left: 0;
  top: 18px;
  width: min(48%, 310px);
  opacity: .95;
  transform: rotate(-7deg) translateZ(-30px);
  animation: heroFloatAlt 8s ease-in-out infinite;
}
.post-card.is-back {
  z-index: 1;
  left: 43%;
  top: 34px;
  width: min(42%, 270px);
  opacity: .52;
  transform: rotate(7deg) translateZ(-80px) scale(.96);
  animation: none;
}
.hero-visual.is-cycling .post-card {
  animation: none;
}
.hero-stat {
  z-index: 5;
  left: 66px;
  top: 485px;
  padding: 14px 18px;
  background: var(--lime);
  color: var(--black);
  text-transform: uppercase;
  transform: rotate(2deg);
}
.hero-stat strong {
  display: block;
  font-size: 34px;
  line-height: .9;
}
.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 1000;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(1.5deg) translate3d(0, 0, 0); }
  50% { transform: rotate(3deg) translate3d(-8px, -12px, 0); }
}
@keyframes heroFloatAlt {
  0%, 100% { transform: rotate(-7deg) translate3d(0, 0, -30px); }
  50% { transform: rotate(-4deg) translate3d(12px, 10px, -30px); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--lime);
  color: var(--black);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 18s linear infinite;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
}
.ticker span {
  padding: 18px 34px;
  font-size: 20px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-33.333%); } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 30px; }
.copy-stack {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: #34342f;
}
.copy-stack p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
  min-height: 560px;
}
.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--dark-line);
  filter: grayscale(.08) contrast(1.04);
}
.about-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 320px;
  padding: 20px;
  background: var(--black);
  color: var(--white);
  box-shadow: -10px 10px 0 var(--lime);
}
.about-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}
.about-note p {
  margin: 0;
  line-height: 1.45;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2 { max-width: 820px; }
.section-head.compact { display: block; }
.services-head {
  max-width: 860px;
}
.services-head h2 {
  max-width: 760px;
}
.services-head p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: #383834;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

.metrics {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
.metrics::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 46%;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0 100%);
}
.metrics > * {
  position: relative;
  z-index: 1;
}
.metrics-head {
  align-items: start;
}
.metrics-head p:last-child {
  max-width: 390px;
  margin: 10px 0 0;
  color: #24241f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.metric-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .92);
  box-shadow: -10px 10px 0 var(--black);
}
.metric-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
  height: 6px;
  background: var(--lime);
  transform: rotate(-8deg);
}
.metric-card span, .metric-card small {
  display: block;
  color: #454540;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.metric-card strong {
  display: block;
  margin: 30px 0 22px;
  color: var(--black);
  font-size: clamp(42px, 6vw, 80px);
  line-height: .85;
  font-weight: 1000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 22px 24px 24px;
  border: 1px solid var(--dark-line);
  background:
    linear-gradient(135deg, rgba(220, 255, 0, .18) 0 18%, transparent 18% 100%),
    #fff;
  box-shadow: -6px 8px 0 rgba(5, 5, 5, .9);
}
.service-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 7px;
  background: var(--lime);
  transform: rotate(-8deg);
}
.service-grid article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--lime);
}
.service-grid span {
  display: inline-block;
  margin-bottom: 54px;
  font-size: 13px;
  font-weight: 1000;
  color: var(--lime);
  background: var(--black);
  padding: 8px 10px;
}
.service-grid h3 {
  margin-bottom: 16px;
}
.service-grid p { color: #42423d; line-height: 1.45; }
.service-grid p,
.contact-copy p,
.about-note p {
  font-weight: 500;
}

.brands {
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}
.brands-head {
  align-items: start;
}
.brands-head h2 {
  max-width: 760px;
  font-size: clamp(38px, 5.4vw, 74px);
}
.brands-head p:last-child {
  max-width: 390px;
  margin: 10px 0 0;
  color: #3a3a34;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}
.brand-memory {
  max-width: var(--max);
  margin-top: 18px;
  overflow: visible;
}
.brand-board {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 42vw, 620px);
  perspective: 1400px;
  background: transparent;
}
.brand-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(108px, 9vw, 148px);
  aspect-ratio: 1;
  perspective: 900px;
  transform:
    translate(-50%, -50%)
    rotate(var(--r))
    translateZ(var(--depth));
  filter: drop-shadow(-10px 14px 18px rgba(0, 0, 0, .2));
}
.brand-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.2, .82, .2, 1);
}
.brand-card.is-revealed .brand-card-inner {
  transform: rotateY(180deg);
}
.brand-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .16);
  backface-visibility: hidden;
}
.brand-card-front {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(220, 255, 0, .32) 45% 57%, transparent 57%),
    var(--black);
}
.brand-card-front img {
  width: 74%;
  height: auto;
  filter: invert(1);
  transform: rotate(-4deg);
}
.brand-card-back {
  padding: clamp(16px, 1.8vw, 28px);
  background: #fff;
  transform: rotateY(180deg);
}
.brand-card-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.talents-head {
  display: block;
}
.talents-head h2 {
  max-width: 1120px;
  font-size: clamp(44px, 7vw, 96px);
}
.talent-card {
  position: relative;
  background: #fff;
  color: var(--black);
}
.polaroid-card {
  padding: 12px 12px 18px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 6px;
  box-shadow:
    -8px 10px 0 rgba(0, 0, 0, .92),
    0 18px 38px rgba(0, 0, 0, .16);
  transform: rotate(var(--tilt, -1deg));
  transition: transform .25s ease, box-shadow .25s ease;
}
.polaroid-card:nth-child(2n) { --tilt: 1.2deg; }
.polaroid-card:nth-child(3n) { --tilt: -1.8deg; }
.polaroid-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    -9px 12px 0 var(--lime),
    0 22px 48px rgba(0, 0, 0, .18);
}
.polaroid-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--black);
  border-radius: 4px;
}
.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.01);
}
.polaroid-photo.is-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(220, 255, 0, .28) 44% 57%, transparent 57%),
    var(--black);
}
.polaroid-photo.is-placeholder img {
  height: auto;
  filter: invert(1);
  object-fit: contain;
}
.polaroid-info {
  min-height: 142px;
  padding: 16px 4px 0;
}
.polaroid-info h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: .92;
  text-transform: uppercase;
}
.polaroid-info p {
  min-height: 42px;
  margin-bottom: 14px;
  color: #373732;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
}
.talent-total {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--lime);
  color: var(--black);
  font-weight: 1000;
  font-size: 12px;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 18px 16px;
  font: inherit;
}

.contact {
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(660px, 1.18fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .94;
  margin-bottom: 28px;
}
.contact-copy p {
  max-width: 520px;
  color: #393934;
  font-size: 19px;
  line-height: 1.5;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}
.contact-list a:hover { color: #7d9000; }
.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: -10px 12px 0 var(--black);
  width: 100%;
}
.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.contact-form input {
  min-height: 58px;
}
.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}
.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: #393934;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.form-status.is-success { color: #5f7600; }
.form-status.is-error { color: #9b1717; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.contact-form .button { width: fit-content; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 24px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.footer img {
  width: 170px;
  filter: invert(1);
}
.footer div { display: flex; gap: 18px; color: var(--muted); font-size: 13px; text-transform: uppercase; }

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: min(430px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, .94);
  color: var(--white);
  box-shadow: -8px 10px 0 var(--lime);
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner p {
  margin: 0 0 14px;
  color: #e7e7df;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.cookie-banner a {
  color: var(--lime);
  font-weight: 900;
}
.cookie-banner button {
  min-height: 40px;
  padding: 11px 15px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--black);
  font: 900 12px/1 "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.legal-page {
  background: var(--white);
  color: var(--ink);
}
.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}
.legal-top img {
  width: 190px;
  filter: invert(1);
}
.legal-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 96px;
}
.legal-main h1 {
  max-width: 900px;
  color: var(--black);
  font-size: clamp(52px, 10vw, 118px);
}
.legal-main h2 {
  margin: 44px 0 14px;
  font-size: clamp(26px, 4vw, 42px);
}
.legal-main p,
.legal-main li {
  color: #30302b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.legal-main a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.legal-card {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: -8px 10px 0 var(--black);
}
.legal-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 148px; }
  .hero-bg { width: 82vw; height: 46vh; }
  .hero-visual {
    min-height: 540px;
    max-width: 620px;
    margin-inline: auto;
  }
  .metric-grid, .service-grid { grid-template-columns: 1fr; }
  .contact { gap: 42px; }
  .about-visual, .about-visual img { min-height: 430px; height: 430px; }
  .brand-board { min-height: 560px; }
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { inset: 10px 10px auto; }
  .brand-mark img { width: 132px; }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .nav-cta {
    padding: 9px 10px;
    font-size: 11px;
  }
  .section { padding: 78px 16px; }
  .hero {
    padding: 156px 16px 58px;
    gap: 42px;
  }
  h1 { font-size: clamp(56px, 18vw, 88px); }
  .hero-text, .copy-stack, .contact-copy p { font-size: 17px; }
  .hero-visual { min-height: 500px; }
  .post-card.is-front { left: 21%; width: 76%; top: 92px; }
  .post-card.is-middle { width: 56%; top: 24px; }
  .post-card.is-back { left: 48%; width: 44%; top: 52px; }
  .hero-stat { left: 24px; top: 368px; }
  .section-head { display: block; }
  .brands-head h2 { font-size: clamp(36px, 13vw, 56px); }
  .brand-board { min-height: 680px; }
  .talent-grid { grid-template-columns: 1fr; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer div,
  .legal-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
