:root {
  --white: #ffffff;
  --black: #050505;
  --red: #e50914;
  --ink: #0a0a0a;
  --muted: #626262;
  --line: #e6e6e6;
  --soft: #f6f6f6;
  --red-soft: #fff0f1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max: 1180px;
  --wide: 1320px;
  --header: 72px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
}

.nav-shell {
  width: min(100%, var(--wide));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 820;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  box-shadow: inset -8px 0 0 var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #4c4c4c;
  font-size: 14px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--black);
  background: var(--soft);
  outline: 0;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-weight: 740;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  outline: 0;
}

.page-hero {
  position: relative;
  min-height: clamp(560px, 72svh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--black);
  background: #f3f3f3;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.48) 75%, rgba(255, 255, 255, 0.22) 100%),
    var(--hero-image) center right / cover;
  filter: grayscale(100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
}

.page-hero-inner {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 118px) 28px 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(229, 9, 20, 0.12);
}

.page-hero h1 {
  max-width: 920px;
  margin: 22px 0 0;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.92;
  font-weight: 860;
}

.page-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #424242;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease, background 180ms ease;
}

.button.black {
  color: var(--white);
  background: var(--black);
}

.button.red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(229, 9, 20, 0.22);
}

.button.white {
  color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 0, 0, 0.12);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  outline: 0;
}

.section {
  padding: clamp(84px, 11vw, 142px) 28px;
}

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

.section.soft {
  background: var(--soft);
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.wide-wrap {
  width: min(100%, var(--wide));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.98;
  font-weight: 850;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.section.black .section-head p {
  color: #c9c9c9;
}

.red-text {
  color: var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.image-panel {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111111;
  position: relative;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.72));
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
}

.image-caption strong {
  display: block;
  max-width: 520px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.image-caption span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 14px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: var(--shadow);
}

.info-card.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: #101010;
}

.info-card.red {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.info-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.info-card.dark span,
.info-card.red span {
  color: rgba(255, 255, 255, 0.78);
}

.info-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.02;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.info-card.dark p {
  color: #d2d2d2;
}

.info-card.red p {
  color: rgba(255, 255, 255, 0.88);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card strong {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.talent-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.talent-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: var(--shadow);
}

.talent-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--black);
}

.talent-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 350ms ease;
}

.talent-card:hover .talent-image img {
  transform: scale(1.04);
}

.talent-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
}

.talent-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 780;
}

.talent-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.talent-body h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.talent-body p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.talent-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.talent-metrics div {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--soft);
}

.talent-metrics strong {
  font-size: 17px;
  line-height: 1;
}

.talent-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline-step {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 24px;
  background: var(--white);
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
}

.timeline-step:nth-child(2n) .step-number {
  background: var(--red);
}

.timeline-step h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.06;
}

.timeline-step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.case-card img {
  height: 340px;
  object-fit: cover;
  filter: grayscale(100%);
}

.case-card-body {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.case-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
}

.case-card p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.52;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mini-metrics div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #101010;
}

.mini-metrics strong {
  font-size: 22px;
}

.mini-metrics span {
  color: #b8b8b8;
  font-size: 11px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: space-between;
  min-height: 540px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.contact-copy h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  font-weight: 850;
}

.contact-copy p {
  max-width: 560px;
  color: #d0d0d0;
  line-height: 1.55;
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  padding: 0 13px;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  min-height: 128px;
  padding-top: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.08);
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1060px) {
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.four,
  .metric-strip,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .talent-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 64px;
  }

  .nav-shell {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .page-hero-inner,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero {
    min-height: 74svh;
  }

  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 62%, rgba(255, 255, 255, 0.48) 100%),
      var(--hero-image) center / cover;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .card-grid,
  .card-grid.four,
  .metric-strip,
  .talent-grid,
  .timeline,
  .case-grid,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .talent-image {
    height: 310px;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}
