:root {
  --red: #ef2b2d;
  --red-dark: #c9141f;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --paper: #f2f0ec;
  --white: #ffffff;
  --muted: #747474;
  --line: #d6d3ce;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  min-height: 94px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: #3f3f3f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  padding: 14px 18px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.header-call:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.header-call svg {
  width: 18px;
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  content: "";
  background: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .98;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  font-size: clamp(55px, 6.4vw, 94px);
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-intro {
  max-width: 540px;
  margin: 28px 0 0;
  color: #555;
  font-size: 18px;
  line-height: 1.65;
}

.service-area {
  display: flex;
  width: fit-content;
  margin: 22px 0 0;
  padding: 10px 14px;
  align-items: center;
  gap: 9px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-area svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.button svg {
  width: 18px;
  fill: currentColor;
  stroke: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-visual {
  position: relative;
  margin: 0;
  box-shadow: 20px 20px 0 rgba(239, 43, 45, .95);
}

.hero-visual::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 82px;
  height: 82px;
  border-top: 5px solid var(--red);
  border-right: 5px solid var(--red);
  content: "";
}

.hero-visual .hero-photo {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.88) contrast(1.05);
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48%, 245px);
  padding: 13px 16px;
  background: rgba(17, 17, 17, .94);
}

.hero-visual figcaption img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-number {
  position: absolute;
  bottom: -45px;
  left: max(24px, calc((100vw - var(--max)) / 2 - 70px));
  color: rgba(17, 17, 17, .035);
  font-family: Impact, sans-serif;
  font-size: 220px;
  line-height: 1;
}

.services {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.section-heading {
  display: flex;
  margin-bottom: 58px;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading .eyebrow {
  align-self: flex-start;
}

h2 {
  font-size: clamp(47px, 5.5vw, 76px);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  position: relative;
  min-height: 255px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.service-index {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card svg {
  display: block;
  width: 46px;
  height: 46px;
  margin: 42px 0 32px;
  color: var(--red);
}

.service-card h3 {
  max-width: 175px;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.examples {
  padding: 116px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.examples-heading {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 60px;
}

.examples h2 em {
  color: var(--red);
}

.examples-intro {
  margin: 0 0 6px;
  color: #b7b7b7;
  font-size: 17px;
  line-height: 1.65;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.example-card {
  margin: 0;
  border-bottom: 3px solid var(--red);
  background: #242424;
}

.example-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101010;
}

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

.example-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08);
  transition: filter .35s ease, transform .45s ease;
}

.example-card:hover .example-image img {
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.035);
}

.example-card-profile .example-image img {
  object-position: center 68%;
}

.example-image span {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 1;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 36px;
  letter-spacing: .04em;
}

.example-card figcaption {
  min-height: 190px;
  padding: 25px 26px 28px;
}

.example-card small {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.example-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.example-card p {
  margin: 12px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.55;
}

.examples-note {
  margin: 24px 0 0;
  color: #888;
  font-size: 12px;
  line-height: 1.55;
}

.contact {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact::before {
  position: absolute;
  top: -170px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(239, 43, 45, .08);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  font-size: clamp(55px, 7vw, 94px);
}

.contact-inner > p:not(.eyebrow) {
  margin: 24px 0 48px;
  color: #b5b5b5;
  font-size: 18px;
}

.contact-links {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid #373737;
}

.contact-links a {
  display: grid;
  padding: 20px 4px;
  align-items: center;
  border-bottom: 1px solid #373737;
  grid-template-columns: 52px 1fr 30px;
  gap: 18px;
  text-align: left;
  text-decoration: none;
  transition: padding .2s ease, background .2s ease;
}

.contact-links a:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: #1d1d1d;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--red);
}

.contact-icon svg {
  width: 22px;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  margin-bottom: 5px;
  color: #8d8d8d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2.2vw, 24px);
}

.arrow {
  color: var(--red);
  font-size: 24px;
}

footer {
  display: flex;
  min-height: 120px;
  padding: 24px max(24px, calc((100vw - var(--max)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #090909;
  color: #7d7d7d;
  font-size: 12px;
}

footer > a:not(.brand) {
  color: #aaa;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand img {
  width: 154px;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .hero::before {
    width: 18%;
  }

  .hero-grid {
    padding: 72px 0 92px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: calc(100% - 24px);
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:first-child {
    border-left: 0;
  }

  .service-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .examples-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .examples-intro {
    max-width: 620px;
  }

  .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .example-card-profile {
    grid-column: 1 / -1;
  }

  .example-card-profile .example-image {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 78px;
  }

  .header-call {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }

  .header-call span {
    display: none;
  }

  .hero-grid {
    width: calc(100% - 32px);
    padding: 58px 0 75px;
    gap: 46px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(47px, 13.2vw, 56px);
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .service-area {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: calc(100% - 12px);
    box-shadow: 12px 12px 0 var(--red);
  }

  .hero-visual .hero-photo {
    height: 295px;
    object-position: 60% center;
  }

  .hero-visual figcaption {
    width: min(58%, 205px);
    padding: 10px 12px;
  }

  .hero-visual::before {
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .hero-number {
    font-size: 150px;
  }

  .services {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  h2 {
    font-size: clamp(44px, 13vw, 61px);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(odd) {
    display: grid;
    min-height: 0;
    padding: 24px 18px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: 35px 52px 1fr;
    align-items: center;
    gap: 13px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card svg {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .service-card h3 {
    max-width: none;
    font-size: 17px;
  }

  .examples {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .examples-heading {
    margin-bottom: 38px;
  }

  .examples-heading > * {
    min-width: 0;
  }

  .examples h2 {
    font-size: clamp(38px, 10.5vw, 47px);
  }

  .examples-intro {
    font-size: 16px;
  }

  .example-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .example-card-profile {
    grid-column: auto;
  }

  .example-card-profile .example-image,
  .example-image {
    aspect-ratio: 4 / 3;
  }

  .example-card figcaption {
    min-height: 0;
    padding: 22px 22px 24px;
  }

  .example-card p {
    font-size: 13px;
  }

  .contact {
    padding: 90px 20px;
  }

  .contact h2 {
    font-size: clamp(44px, 12vw, 50px);
  }

  .contact-inner > p:not(.eyebrow) {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-links a {
    padding: 17px 0;
    grid-template-columns: 46px 1fr 20px;
    gap: 12px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-links strong {
    font-size: 15px;
  }

  footer {
    padding: 34px 24px;
    flex-direction: column;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    height: 66px;
    padding: 7px;
    grid-template-columns: .78fr 1.22fr;
    gap: 7px;
    background: rgba(9, 9, 9, .96);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, .2);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid #3b3b3b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    border-color: var(--red);
    background: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
