:root {
  --paper: #f4f2ea;
  --ink: #11110f;
  --blue: #2345ff;
  --acid: #d8ff3e;
  --coral: #ff5b3d;
  --white: #fffef9;
  --line: rgba(17, 17, 15, 0.24);
  font-family: "Archivo", "Arial Narrow", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 12px clamp(18px, 3.3vw, 52px);
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 242, 234, 0.94);
  backdrop-filter: blur(14px);
}
.brand { font-size: 1rem; font-weight: 800; text-decoration: none; }
.site-header > p,
.site-header nav a,
.overline,
.section-label,
.credit-role,
.voice-label,
footer {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}
.site-header > p { margin: 0; }
.site-header nav { display: flex; justify-content: flex-end; gap: clamp(15px, 2.3vw, 36px); }
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  grid-template-rows: auto auto;
  min-height: calc(100svh - 62px);
  border-bottom: 1px solid var(--ink);
}
.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  padding: clamp(55px, 8vw, 120px) clamp(24px, 5vw, 78px);
  border-right: 1px solid var(--ink);
}
.overline { margin-bottom: clamp(32px, 5vw, 65px); }
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(5rem, 10.5vw, 10.5rem);
  font-weight: 900;
  font-variation-settings: "wdth" 78;
  line-height: 0.76;
  text-transform: uppercase;
}
.role {
  width: max-content;
  margin: 0 0 25px;
  padding: 5px 11px 8px;
  color: var(--white);
  background: var(--blue);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  line-height: 0.92;
}
.positioning {
  max-width: 36ch;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 550;
  line-height: 1.35;
}

.hero-voice {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 4vw, 58px);
  color: var(--ink);
  background: var(--acid);
}
.hero-voice p {
  margin: 0;
  padding: 13px 0 9px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.5rem, 2.75vw, 3.2rem);
  font-weight: 750;
  font-variation-settings: "wdth" 85;
  line-height: 0.94;
}
.hero-voice .voice-label {
  margin-bottom: auto;
  padding: 0;
  border: 0;
  font-size: 0.7rem;
}
.hero-voice .voice-copy {
  max-width: none;
  margin: auto 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
  font-weight: 720;
  line-height: 1.03;
}
.hero-voice .voice-copy span {
  display: block;
  padding: 14px 0 11px;
  border-bottom: 1px solid var(--ink);
}
.hero-proof {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.75fr 1.4fr auto;
  gap: 30px;
  align-items: center;
  padding: 20px clamp(24px, 3.3vw, 52px);
  color: var(--white);
  background: var(--ink);
}
.hero-proof p { margin: 0; line-height: 1.25; }
.hero-proof p span { display: block; margin-bottom: 4px; color: rgba(255,255,255,0.6); font-family: "DM Mono", monospace; font-size: 0.63rem; text-transform: uppercase; }
.hero-proof strong { font-size: clamp(0.9rem, 1.2vw, 1.08rem); }
.hero-proof a { font-family: "DM Mono", monospace; font-size: 0.7rem; text-transform: uppercase; text-underline-offset: 5px; }

.work,
.about { padding: clamp(85px, 10vw, 150px) clamp(18px, 4vw, 64px); }
.work { color: var(--white); background: var(--blue); }
.section-header {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 34px;
  align-items: end;
  margin-bottom: clamp(65px, 8vw, 120px);
}
.section-header p { margin-bottom: 0; line-height: 1.4; }
.section-header > p:last-child { max-width: 34ch; font-size: 0.95rem; }
.work .section-header { grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr); }
h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 800;
  font-variation-settings: "wdth" 80;
  line-height: 0.9;
}

.featured-credit {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--acid);
  text-decoration: none;
}
.credit-number { align-self: start; font-family: "DM Mono", monospace; font-size: 0.72rem; }
.credit-role { margin-bottom: 12px; }
.featured-credit h3 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7.5vw, 8.4rem);
  font-weight: 900;
  font-variation-settings: "wdth" 78;
  line-height: 0.84;
  transition: transform 180ms ease;
}
.featured-credit:hover h3,
.featured-credit:focus-visible h3 { transform: translateX(8px); }
.credit-company { margin: 0; font-size: 0.95rem; text-align: right; }

.credit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid rgba(255,255,255,0.5); }
.credit-grid > a {
  color: inherit;
  min-height: 180px;
  padding: 25px 28px;
  border-right: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background-color 180ms ease;
}
.credit-grid > a:hover,
.credit-grid > a:focus-visible { background: rgba(216,255,62,0.14); }
.credit-grid .wide-credit { grid-column: 1 / -1; }
.credit-grid .credit-role { color: rgba(255,255,255,0.64); }
.credit-grid .credit-role { display: flex; justify-content: space-between; gap: 16px; }
.credit-grid h3 {
  max-width: 18ch;
  margin: 34px 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  line-height: 1.02;
}
.credit-grid > a > p:last-child { margin: 0; color: rgba(255,255,255,0.68); font-size: 0.85rem; }
.development-strip {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 34px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 3px solid var(--acid);
}
.development-strip p { margin: 0; }
.development-strip > p:last-child { max-width: 700px; font-size: clamp(1.3rem, 2.2vw, 2.1rem); font-weight: 600; line-height: 1.2; }

.about { background: var(--paper); }
.about-header { grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr); }
.about-header h2 { color: var(--blue); }
.about-body {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: start;
  padding: clamp(45px, 6vw, 85px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.about-lead { margin: 0; font-size: clamp(1.6rem, 3vw, 3rem); font-weight: 650; font-variation-settings: "wdth" 90; line-height: 1.08; }
.about-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.about-columns p { margin: 0; font-size: 1rem; line-height: 1.55; }
.recognition { display: grid; grid-template-columns: repeat(2, 1fr); }
.recognition article { min-height: 280px; padding: 32px 0; }
.recognition article + article { padding-left: 40px; border-left: 1px solid var(--ink); }
.recognition article:first-child { padding-right: 40px; }
.recognition h3 { margin: 42px 0 15px; font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 750; font-variation-settings: "wdth" 85; line-height: 0.95; }
.recognition article > p:last-child { max-width: 36ch; margin: 0; line-height: 1.45; }

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  padding: clamp(75px, 9vw, 130px) clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: var(--coral);
}
.contact h2 { margin-top: 40px; font-size: clamp(3.6rem, 8vw, 9rem); }
.contact-intro { max-width: 36ch; margin: 35px 0 0; font-size: 1rem; font-weight: 550; line-height: 1.45; }
.agent { padding: 30px 0 0; border-top: 1px solid var(--ink); }
.agent p { margin-bottom: 5px; }
.agent .agent-name { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 750; }
.agent a { display: block; width: max-content; margin-top: 20px; font-weight: 650; text-underline-offset: 5px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 18px clamp(18px, 3.3vw, 52px);
  color: var(--white);
  background: var(--ink);
}
footer p { margin: 0; }
footer div { display: flex; gap: 28px; }
footer > a { justify-self: end; }

.hero-main > *, .hero-voice > * { animation: enter 600ms cubic-bezier(.2,.7,.2,1) both; }
.hero-main > *:nth-child(2) { animation-delay: 80ms; }
.hero-main > *:nth-child(3) { animation-delay: 140ms; }
.hero-main > *:nth-child(4) { animation-delay: 200ms; }
@keyframes enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 56px; padding: 10px 16px; }
  .site-header > p { display: none; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 0.62rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-main { min-height: 0; padding: 64px 16px 50px; border-right: 0; }
  .overline { margin-bottom: 34px; font-size: 0.62rem; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(4rem, 18vw, 5.4rem); line-height: 0.8; }
  .role { margin-bottom: 20px; font-size: clamp(2rem, 10vw, 3rem); }
  .positioning { max-width: 31ch; font-size: 0.96rem; }
  .positioning span { display: block; }
  .hero-voice { min-height: 350px; padding: 26px 16px; }
  .hero-voice .voice-copy { max-width: none; font-size: clamp(1.55rem, 7vw, 2.25rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; padding: 22px 16px; }
  .section-header,
  .about-header { grid-template-columns: 1fr; gap: 30px; }
  .section-header { margin-bottom: 55px; }
  .section-header > p:last-child { max-width: 40ch; }
  h2 { font-size: clamp(2.7rem, 12vw, 4.3rem); line-height: 0.94; }
  .featured-credit { grid-template-columns: 45px 1fr; padding: 24px 16px; }
  .featured-credit h3 { font-size: clamp(3rem, 13vw, 4.4rem); line-height: 0.88; }
  .credit-company { grid-column: 2; text-align: left; }
  .credit-grid { grid-template-columns: 1fr; }
  .credit-grid > a { min-height: 120px; padding: 19px 16px; }
  .credit-grid .wide-credit { grid-column: auto; }
  .credit-grid h3 { margin-top: 20px; font-size: clamp(1.55rem, 6.4vw, 2.2rem); }
  .development-strip { grid-template-columns: 1fr; gap: 20px; }
  .about-body { grid-template-columns: 1fr; gap: 45px; }
  .about-lead { font-size: clamp(1.45rem, 6.8vw, 2.1rem); }
  .about-columns { grid-template-columns: 1fr; gap: 20px; }
  .recognition { grid-template-columns: 1fr; }
  .recognition article { min-height: auto; padding: 34px 0; }
  .recognition article + article { padding-left: 0; border-top: 1px solid var(--ink); border-left: 0; }
  .recognition article:first-child { padding-right: 0; }
  .recognition h3 { margin-top: 28px; }
  .contact { grid-template-columns: 1fr; gap: 65px; }
  .contact h2 { font-size: clamp(3.2rem, 13vw, 4.6rem); }
  footer { grid-template-columns: 1fr auto; }
  footer div { display: none; }
}

@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .site-header { position: static; }
  .hero { min-height: 0; }
  .hero-main { min-height: 520px; }
  .work, .contact, .featured-credit, .credit-grid > a, .recognition article { break-inside: avoid; }
  .about { padding-top: 58px; padding-bottom: 40px; }
  .about .section-header { margin-bottom: 40px; }
  .about-body { padding: 32px 0; }
  .recognition article { min-height: 205px; padding-top: 24px; padding-bottom: 20px; }
  .recognition h3 { margin-top: 25px; }
}

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