:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5f6872;
  --line: #dfe3e7;
  --steel: #6d7884;
  --safety: #f47b20;
  --yellow: #f5b72e;
  --green: #1f6f5b;
  --paper: #f7f5f1;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 20, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 20, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--safety);
  color: var(--ink);
  font-family: Archivo, sans-serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Archivo, sans-serif;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
}

nav a,
.header-call {
  color: rgba(255, 255, 255, 0.88);
}

.header-call {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

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

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-motion {
  display: block;
}

.hero-overlay {
  background-image:
    linear-gradient(90deg, rgba(17, 20, 24, 0.9) 0%, rgba(17, 20, 24, 0.56) 52%, rgba(17, 20, 24, 0.2) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(17, 20, 24, 0.74), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 126px 0 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

h1,
h2,
h3 {
  font-family: Archivo, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(50px, 8.4vw, 106px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--safety);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(244, 123, 32, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 980px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.trust-strip div {
  padding: 20px;
  background: rgba(17, 20, 24, 0.62);
}

.trust-strip dt {
  font-family: Archivo, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.intro > p,
.split-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--safety);
  font-weight: 900;
}

.service-grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.split-copy {
  padding: 44px;
  background: var(--ink);
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
}

.stat-board {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.stat-board div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 30px;
  background: var(--white);
}

.stat-board strong {
  font-family: Archivo, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.stat-board span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

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

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

figure:first-child {
  grid-row: span 2;
}

.gallery figure img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-wall figure img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(17, 20, 24, 0.78);
  color: var(--white);
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.video-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.video-grid img,
.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 500ms ease, opacity 500ms ease;
}

.video-grid a:hover img,
.video-grid a:hover video {
  transform: scale(1.04);
  opacity: 0.95;
}

.video-grid video {
  pointer-events: none;
}

.play {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--safety);
  color: var(--ink);
  font-weight: 900;
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--ink);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 88px;
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-copy p {
  margin-top: 22px;
}

.quote-copy a {
  color: var(--green);
  font-weight: 800;
}

.contact-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  margin-top: 34px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.quote-form label:nth-last-of-type(1),
.quote-form label:nth-last-of-type(2),
.quote-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbf9;
  color: var(--ink);
  font: inherit;
  padding: 14px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 123, 32, 0.22);
  border-color: var(--safety);
}

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

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

footer strong {
  font-family: Archivo, sans-serif;
  font-size: 22px;
}

footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-weight: 800;
}

.media-credit {
  grid-column: 1 / -1;
  font-size: 13px;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav,
  .header-call {
    display: none;
  }

  .trust-strip,
  .intro,
  .service-grid,
  .split-panel,
  .gallery,
  .media-wall,
  .quote-section,
  footer {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .gallery figure:first-child {
    grid-row: auto;
  }

  .quote-section {
    padding: 28px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-bottom: 26px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .hero-actions,
  .video-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .trust-strip {
    margin-top: 34px;
  }

  .section {
    padding: 64px 0;
  }

  .split-copy {
    padding: 30px;
  }

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

  .quote-form label:nth-last-of-type(1),
  .quote-form label:nth-last-of-type(2),
  .quote-form button,
  .form-note {
    grid-column: auto;
  }
}
