:root {
  --black: #050505;
  --soft-black: #0d0d0d;
  --white: #f4efe7;
  --muted: rgba(244, 239, 231, .64);
  --faint: rgba(244, 239, 231, .12);
  --accent: #f3c84b;
  --accent-soft: rgba(243, 200, 75, .16);
  --max: 1480px;
  --pad: clamp(20px, 4vw, 64px);
  --display: 'Archivo Black', Impact, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' 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='.38'/%3E%3C/svg%3E");
}

a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  mix-blend-mode: difference;
}

.brand {
  font-family: var(--display);
  text-decoration: none;
  letter-spacing: -.05em;
  font-size: clamp(24px, 2.2vw, 36px);
}

.nav { display: flex; gap: clamp(16px, 2vw, 34px); }
.nav a,
.menu-button {
  font: 700 12px/1 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.menu-button {
  display: none;
  color: var(--white);
  background: none;
  border: 0;
}

.section {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(84px, 12vw, 180px) 0;
}
.section.compact { padding: clamp(64px, 9vw, 120px) 0; }

.hero {
  width: 100%;
  min-height: 100svh;
  padding: 0 var(--pad) clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background:
    radial-gradient(circle at 75% 20%, var(--accent-soft), transparent 28vw),
    linear-gradient(180deg, #070707 0%, #020202 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto var(--pad) 0 var(--pad);
  height: 1px;
  background: var(--faint);
}

.hero-logo {
  font-family: var(--display);
  line-height: .78;
  letter-spacing: -.085em;
  font-size: clamp(82px, 23vw, 360px);
  text-transform: uppercase;
  margin-bottom: clamp(20px, 4vw, 52px);
}
.hero-logo span { display: block; }
.hero-logo span:first-child { color: var(--accent); }

.hero-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 700;
}
.scroll-cue { text-decoration: none; color: var(--white); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.06em;
  line-height: .92;
}
h1 { font-size: clamp(42px, 8vw, 132px); max-width: 1240px; }
h2 { font-size: clamp(42px, 7vw, 112px); max-width: 1120px; }
h3 { font-size: clamp(28px, 4vw, 64px); }

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 90px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}
.work-card {
  position: relative;
  min-height: clamp(300px, 34vw, 560px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft-black);
}
.work-card.large { grid-row: span 2; min-height: clamp(540px, 66vw, 900px); }
.work-card.wide { grid-column: 2; }
.work-media {
  position: absolute;
  inset: 0;
  transition: transform .7s ease, filter .7s ease;
}
.work-card:hover .work-media { transform: scale(1.04); filter: saturate(1.25) contrast(1.08); }
.gradient-one { background: linear-gradient(135deg, #29110b, #090909 48%, #604814); }
.gradient-two { background: linear-gradient(135deg, #061124, #101010 52%, #2a5c7a); }
.gradient-three { background: linear-gradient(135deg, #1f0a24, #090909 52%, #a13c56); }
.gradient-four { background: linear-gradient(135deg, #211f08, #090909 52%, #b48b22); }
.work-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(22px, 4vw, 50px);
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
}
.work-copy p {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.work-copy h3 {
  margin-bottom: 0;
  font-family: var(--display);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 7vw, 110px);
}
.text-block {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  padding-top: .6em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  margin-top: clamp(48px, 8vw, 120px);
}
.stats div { padding: 28px; border-right: 1px solid var(--faint); }
.stats div:last-child { border-right: 0; }
.stats strong {
  display: block;
  font-family: var(--display);
  color: var(--accent);
  font-size: clamp(44px, 7vw, 110px);
  letter-spacing: -.06em;
  line-height: .85;
}
.stats span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.service-list { border-top: 1px solid var(--faint); }
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr minmax(120px, auto);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--faint);
  text-decoration: none;
}
.service-row span,
.service-row b { color: var(--accent); }
.service-row h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9;
  margin: 0;
}
.service-row p { color: var(--muted); margin: 0; line-height: 1.55; }
.service-row b { text-align: right; white-space: nowrap; }
.service-row:hover h3 { color: var(--accent); }
.pricing-note { color: var(--muted); max-width: 720px; margin-top: 28px; line-height: 1.6; }

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--faint);
}
.client-strip span {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border-right: 1px solid var(--faint);
  font-weight: 800;
  letter-spacing: .08em;
}
.client-strip span:last-child { border-right: 0; }

.contact {
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact h2 { max-width: 1200px; }
.contact-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.big-link {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 82px);
  letter-spacing: -.06em;
  text-decoration: none;
  color: var(--accent);
}
.button {
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}
.button:hover { background: var(--white); color: var(--black); }

.footer {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--faint);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

@media (max-width: 860px) {
  .menu-button { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: none;
    place-content: center;
    text-align: center;
  }
  .nav.is-open { display: grid; }
  .nav a { font-family: var(--display); font-size: clamp(42px, 14vw, 86px); letter-spacing: -.06em; }

  .hero { min-height: 100svh; }
  .hero-footer { grid-template-columns: 1fr; align-items: start; }
  .section-head,
  .split,
  .work-grid,
  .stats,
  .service-row,
  .client-strip { grid-template-columns: 1fr; }
  .work-card.large,
  .work-card.wide { grid-column: auto; grid-row: auto; min-height: 360px; }
  .stats div,
  .client-strip span { border-right: 0; border-bottom: 1px solid var(--faint); }
  .stats div:last-child,
  .client-strip span:last-child { border-bottom: 0; }
  .service-row b { text-align: left; }
  .footer { flex-direction: column; gap: 8px; }
}
