:root {
  --ink: #101417;
  --ink-2: #25313a;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #dfe5e2;
  --muted: #66736f;
  --teal: #244f57;
  --teal-light: #dbe9e8;
  --red: #c5362f;
  --yellow: #f6c344;
  --shadow: 0 18px 50px rgba(16, 20, 23, 0.14);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(24px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: rgba(16, 20, 23, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(16, 20, 23, 0.94);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: 218px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

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

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(16, 20, 23, 0.94) 0%,
      rgba(16, 20, 23, 0.68) 42%,
      rgba(16, 20, 23, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(16, 20, 23, 0.92) 0%, rgba(16, 20, 23, 0.04) 48%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 5.4rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero-actions,
.quick-strip-inner,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

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

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 52px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metrics div {
  min-height: 118px;
  padding: 22px;
  background: rgba(16, 20, 23, 0.68);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.quick-strip {
  background: var(--teal);
  color: var(--white);
}

.quick-strip-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  justify-content: space-between;
  min-height: 96px;
  padding: 22px 0;
}

.quick-strip p {
  max-width: 820px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
}

.quick-strip a {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--paper);
}

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

.section-accent {
  background: var(--teal-light);
}

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

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

.split,
.finishing-layout,
.contact-layout,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.contact-layout p,
.proof-points p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-contact p,
.section-contact .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.capability-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.capability-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.capability-list strong {
  color: var(--ink);
}

.capability-list span {
  color: var(--muted);
}

.image-panel {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.image-panel figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
  max-width: 680px;
}

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

.service-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.finish-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.finish-stack div {
  padding: 26px;
  background: var(--white);
}

.finish-stack span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: 900;
}

.finish-stack strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.finish-stack p {
  margin: 0;
  color: var(--muted);
}

.media-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.media-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 20, 23, 0.92),
    rgba(16, 20, 23, 0.3)
  );
}

.media-band-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.media-band-copy h2 {
  max-width: 730px;
  margin: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  display: grid;
  gap: 28px;
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid {
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-points p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(16, 20, 23, 0.18);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-style: normal;
  box-shadow: var(--shadow);
}

.contact-card a:not(.button) {
  font-size: 1.08rem;
  font-weight: 900;
}

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

.contact-card .button {
  margin-top: 12px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 116px;
  margin: 0 auto;
  padding: 28px 0;
}

.footer-inner nav {
  justify-content: center;
}

.footer-inner nav a {
  color: var(--white);
  font-weight: 800;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .brand {
    width: 184px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    width: min(100% - 36px, var(--max));
    padding-top: 118px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .hero-metrics,
  .service-grid,
  .process-list,
  .split,
  .finishing-layout,
  .contact-layout,
  .proof-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-inner,
  .quick-strip-inner,
  .media-band-copy,
  .footer-inner {
    width: min(100% - 36px, var(--max));
  }

  .section-heading {
    display: block;
  }

  .capability-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-inner nav {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 158px;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.7rem;
  }

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

  .hero-metrics div,
  .process-list li,
  .finish-stack div {
    min-height: auto;
    padding: 20px;
  }

  .media-band {
    min-height: 460px;
  }
}
