
@font-face {
  font-family: InterVariable;
  src: url('assets/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url('assets/fonts/SourceSerif4Variable.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f4f2ed;
  --surface: #fbfaf7;
  --ink: #161616;
  --muted: #686760;
  --quiet: #99978f;
  --line: #d8d5ce;
  --blue: #315ac8;
  --dark: #181a1c;
  --dark-2: #181a1c;
  --max: 1180px;
  --r-sm: 4px;
  --r-md: 4px;
  --r-lg: 4px;
  --sans: InterVariable, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
::selection { background: var(--ink); color: white; }

.skip { position: absolute; top: 0; left: 20px; z-index: 100; padding: 8px 12px; background: var(--ink); color: white; border-radius: var(--r-sm); transform: translateY(-200%); }
.skip:focus { transform: translateY(20px); }

.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); font-size: 13px; font-weight: 600; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 72px;
  align-items: end;
  padding: 92px 0 74px;
}
.eyebrow { margin: 0 0 22px; color: var(--quiet); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.6vw, 56px); font-weight: 550; letter-spacing: -.015em; line-height: 1.06; }
.hero-copy { max-width: 670px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.62; }
.hero-links { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: 30px; }
.hero-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hero-links a:hover { border-color: var(--blue); box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 6px 18px rgba(22,22,22,.06); }
.hero-image {
  align-self: end;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
  background: #ddd9d1;
  box-shadow: 0 1px 2px rgba(22,22,22,.04);
  transition: box-shadow .2s ease;
}
.hero-image:hover { box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 10px 30px rgba(22,22,22,.06); }
.hero-image picture { display: block; height: 100%; }
.hero-image img { height: 100%; object-fit: cover; object-position: 50% 30%; }

.proof {
  display: grid;
  grid-template-columns: 1.25fr .8fr .9fr 1.35fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof div { min-height: 96px; padding: 21px 20px 19px 0; }
.proof div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.proof span { display: block; margin-bottom: 6px; color: var(--quiet); font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .05em; }
.proof strong { font-size: 14px; font-weight: 600; line-height: 1.4; }

.clients { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: 48px; row-gap: 24px; margin: 48px auto 0; }
.clients img { height: 24px; width: auto; filter: grayscale(1); opacity: .75; mix-blend-mode: multiply; }
.clients .logo-bmw { height: 34px; }
.clients .logo-appletv { height: 28px; }
.clients .logo-nars { height: 20px; }
.clients .logo-prada { height: 19px; }
.clients .logo-mercedes { height: 20px; }
.clients .logo-cartier { height: 26px; }
.clients .logo-celtics { height: 28px; }

.section { padding: 76px 0; scroll-margin-top: 20px; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; margin-bottom: 36px; }
.section-kicker { margin: 0 0 10px; color: var(--quiet); font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .055em; }
.section h2 { margin: 0; font-size: 34px; font-weight: 560; letter-spacing: -.025em; line-height: 1.16; }
.section-intro { max-width: 500px; margin: 3px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 380px;
  background: var(--dark);
  color: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(22,22,22,.04);
  transition: box-shadow .2s ease;
}
.feature:hover { box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 10px 30px rgba(22,22,22,.06); }
.feature-visual { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; padding: 34px; border-right: 1px solid rgba(255,255,255,.14); }
.feature-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,20,.18) 0%, rgba(18,18,20,.72) 100%); z-index: 1; }
.feature-visual > span, .feature-visual > strong { position: relative; z-index: 2; }
.feature-visual span { color: rgba(255,255,255,.72); font-size: 12px; }
.feature-visual strong { max-width: 380px; font-size: 31px; font-weight: 520; letter-spacing: -.03em; line-height: 1.08; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 42px; }
.feature-copy h3 { margin: 0 0 14px; font-size: 22px; font-weight: 560; }
.feature-copy p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.meta { color: var(--quiet); font-size: 12px; }
.feature .meta { color: rgba(255,255,255,.5); }
.link-arrow { display: inline-block; margin-top: 24px; font-size: 13px; font-weight: 650; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 28px; }
.case { border-top: 1px solid var(--line); padding-top: 14px; }
.case-image {
  aspect-ratio: 16 / 10; margin: 0 0 18px; overflow: hidden;
  border-radius: var(--r-md); background: #ddd9d1;
  box-shadow: 0 1px 2px rgba(22,22,22,.04);
  transition: box-shadow .2s ease;
}
.case-image:hover { box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 10px 30px rgba(22,22,22,.06); }
.case-image img { height: 100%; object-fit: cover; }
.case h3 { margin: 0 0 7px; font-size: 18px; font-weight: 560; letter-spacing: -.015em; }
.case p { max-width: 500px; margin: 0 0 10px; color: var(--muted); }
.case .meta { display: block; }


.career-band {
  margin: 40px 0;
  padding: 54px;
  scroll-margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.career-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.career-copy { color: var(--muted); font-size: 16px; line-height: 1.7; }
.career-copy p { margin: 0 0 18px; }
.timeline { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 26px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.timeline-row span { color: var(--quiet); font-size: 12px; }
.timeline-row p { margin: 0; color: var(--muted); font-size: 14px; }
.archive-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 30px; }
.archive-label { color: var(--quiet); font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: .05em; }
.archive-row a { color: var(--muted); font-size: 13px; font-weight: 600; }
.archive-row a:hover { color: var(--blue); }

.academic {
  margin: 40px 0;
  padding: 54px;
  scroll-margin-top: 20px;
  background: var(--dark-2);
  color: white;
  border-radius: var(--r-lg);
}
.academic .section-kicker, .academic .section-intro { color: rgba(255,255,255,.55); }
.academic-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.evidence { padding: 28px 28px 8px 0; }
.evidence + .evidence { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.evidence h3 { margin: 0 0 16px; font-size: 16px; font-weight: 650; }
.evidence ul { margin: 0; padding: 0; list-style: none; }
.evidence li { margin: 0 0 18px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.5; }
.evidence a { color: white; border-bottom: 1px solid rgba(255,255,255,.3); }
.evidence time { display: block; margin-top: 4px; color: rgba(255,255,255,.38); font-size: 11px; }

.public-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.public-col h3 { margin: 0 0 18px; font-size: 16px; font-weight: 650; }
.link-list { border-top: 1px solid var(--line); }
.link-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.link-row strong { display: block; margin-bottom: 3px; font-size: 14px; font-weight: 620; }
.link-row span { color: var(--muted); font-size: 13px; }
.link-row time { color: var(--quiet); font-size: 11px; white-space: nowrap; }

.venture {
  display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 36px; align-items: center;
  padding: 28px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(22,22,22,.04);
  transition: box-shadow .2s ease;
}
.venture:hover { box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 10px 30px rgba(22,22,22,.06); }
.venture-logo { width: 160px; max-width: 160px; height: auto; }
.venture p { margin: 0; color: var(--muted); }
.venture a { font-size: 13px; font-weight: 650; white-space: nowrap; }

.newsletter {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  margin-top: 54px;
  padding: 40px 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(22,22,22,.04);
}
.newsletter h3 { margin: 0; font-size: 22px; font-weight: 620; letter-spacing: -.02em; }
.newsletter-lead { max-width: 560px; margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 12px 14px; }
.newsletter-form input[type="email"] { flex: 1; min-width: 240px; max-width: 360px; min-height: 44px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-family: var(--sans); font-size: 14px; color: var(--ink); }
.newsletter-form button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px; border: 1px solid var(--line); border-radius: 999px; background: none; font-family: var(--sans); font-size: 14px; font-weight: 620; color: var(--ink); cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease; }
.newsletter-form button:hover { border-color: var(--blue); box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 6px 18px rgba(22,22,22,.06); }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; padding-bottom: 64px; }
.contact h2 { max-width: 560px; font-size: 34px; }
.contact p { margin: 16px 0 0; color: var(--muted); }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.contact-links a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 620;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-links a:hover { border-color: var(--blue); box-shadow: 0 1px 2px rgba(22,22,22,.04), 0 6px 18px rgba(22,22,22,.06); }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); color: var(--quiet); font-size: 11px; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .case-image, .hero-image,
  .hero-links a, .contact-links a, .newsletter-form button { transition: none; }
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr); gap: 48px; }
  .proof { grid-template-columns: 1fr 1fr; }
  .proof div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof div:nth-child(4) { border-top: 1px solid var(--line); }
  .feature { grid-template-columns: 1fr 1fr; }
  .cases { grid-template-columns: 1fr 1fr; }
  .career-grid { gap: 56px; }
  .public-grid { gap: 48px; }
  .venture { gap: 24px; }
  .newsletter { gap: 28px; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .header { height: 68px; }
  .nav { gap: 16px; }
  .nav a { font-size: 12px; }
  .hero { grid-template-columns: 1fr; gap: 38px; padding: 64px 0 50px; }
  h1 { font-size: 38px; }
  .hero-copy { margin-top: 20px; font-size: 16px; }
  .proof { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; }
  .proof div { min-height: 82px; padding: 16px 14px 14px 0; }
  .proof div + div { padding-left: 16px; }
  .proof div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 52px 0; }
  .clients { column-gap: 28px; row-gap: 18px; }
  .clients img { height: 20px; }
  .clients .logo-bmw { height: 28px; }
  .clients .logo-appletv { height: 23px; }
  .clients .logo-nars { height: 17px; }
  .clients .logo-mercedes { height: 17px; }
  .clients .logo-cartier { height: 22px; }
  .clients .logo-celtics { height: 23px; }
  .clients .logo-prada { height: 16px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  .section h2 { font-size: 26px; }
  .feature { grid-template-columns: 1fr; min-height: 0; }
  .feature-visual { min-height: 260px; padding: 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .feature-visual strong { font-size: 26px; }
  .feature-copy { padding: 26px 24px; }
  .cases { grid-template-columns: 1fr; gap: 38px; }
  .career-band { margin: 32px 0; padding: 32px; }
  .career-grid { grid-template-columns: 1fr; gap: 44px; }
  .timeline-row { grid-template-columns: 92px minmax(0,1fr); gap: 16px; }
  .academic { margin: 32px 0; padding: 32px; }
  .academic-grid { grid-template-columns: 1fr; }
  .evidence { padding: 24px 0 8px; border-top: 1px solid rgba(255,255,255,.18); }
  .evidence + .evidence { padding-left: 0; border-left: 0; }
  .public-grid { grid-template-columns: 1fr; gap: 54px; }
  .venture { grid-template-columns: 1fr; gap: 14px; padding: 28px 24px; }
  .venture a { margin-top: 8px; }
  .newsletter { grid-template-columns: 1fr; gap: 22px; padding: 30px 24px; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input[type="email"] { max-width: none; }
  .contact { grid-template-columns: 1fr; gap: 40px; padding-bottom: 58px; }
  .contact h2 { font-size: 29px; }
}
