:root {
  --ink: #15171a;
  --muted: #626a73;
  --line: #dde1e6;
  --paper: #f7f8f7;
  --white: #ffffff;
  --accent: #c9222b;
  --accent-dark: #911821;
  --steel: #23313d;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 160px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--steel);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 18, 22, 0.84), rgba(15, 18, 22, 0.34) 58%, rgba(15, 18, 22, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 92px;
}

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

.hero .eyebrow {
  color: #ff6971;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero p {
  max-width: 680px;
  font-size: 19px;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: var(--white);
  background: var(--accent);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
}

.copy p,
.section > p,
.split p,
.services-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.media-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.media-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid div {
  padding: 24px;
}

.media-grid p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse div {
  order: 2;
}

.split img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.services-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 52px;
  padding: 86px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--steel);
}

.services-band .eyebrow,
.services-band h2 {
  color: var(--white);
}

.services-band p {
  color: #d6dde3;
}

.services-band ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.services-band li {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.clients {
  text-align: center;
}

.clients h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 32px 0 22px;
}

.logo-strip img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f4f5;
}

.client-copy {
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
}

.videos .section-heading {
  max-width: 760px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--steel);
  text-decoration: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
  z-index: 1;
}

.video-card::after {
  content: "Play";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.04);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: start;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
  font-weight: 700;
}

address a {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd1d7;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbfb;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(201, 34, 43, 0.18);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer img {
  width: 132px;
}

footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 840px) {
  .site-header,
  .intro,
  .split,
  .split.reverse,
  .services-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    justify-items: center;
  }

  nav {
    justify-content: center;
  }

  .hero-content {
    padding: 92px 0 72px;
  }

  .media-grid,
  .video-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .split.reverse div {
    order: 0;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  .hero p,
  .copy p,
  .section > p,
  .split p,
  .services-band p,
  .contact-copy p {
    font-size: 16px;
  }

  .contact-form {
    padding: 22px;
  }
}
