:root {
  --ink: #141414;
  --paper: #eef0f2;
  --white: #fff;
  --accent: #b70014;
  --accent-deep: #6d0514;
  --steel: #6b7078;
  --line: rgba(20, 20, 20, .16);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  background: var(--accent);
  color: var(--white);
  padding: .75rem 1rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.brand {
  display: inline-block;
  padding: .38rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: none;
  line-height: 1;
}
.brand-logo {
  width: clamp(13.5rem, 18vw, 16rem);
  height: auto;
}
nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
nav a {
  text-decoration: none;
  font-size: .89rem;
  font-weight: 600;
  letter-spacing: .02em;
}
nav > a:not(.nav-call):hover { color: #ef3349; }
.nav-call {
  padding: .72rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .48);
}
.nav-call:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 47rem;
  height: 93vh;
  max-height: 62rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 11, .94) 0%, rgba(9, 10, 11, .72) 43%, rgba(9, 10, 11, .16) 76%),
    linear-gradient(0deg, rgba(9, 10, 11, .72) 0%, transparent 37%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(91%, 84rem);
  margin: 3rem auto 6rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.15rem;
  color: #ef3349;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 2.2rem; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--accent); }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: .94; text-transform: uppercase; }
h1 {
  max-width: 54rem;
  font-size: clamp(4rem, 8.3vw, 8.1rem);
  letter-spacing: -.026em;
}
h1 em { color: #ef3349; font-style: normal; }
.hero-copy {
  max-width: 41rem;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button {
  min-height: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.3rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}
.button span { font-size: 1.25rem; transition: transform .2s ease; }
.button:hover span { transform: translateX(.25rem); }
.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover { background: #d10a20; }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .5); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.hero-rail {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(9, 10, 11, .64);
  backdrop-filter: blur(12px);
}
.hero-rail div {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  min-height: 5rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, .15);
}
.hero-rail strong {
  font-family: var(--display);
  font-size: 1.65rem;
  color: #ef3349;
  text-transform: uppercase;
}
.hero-rail span { color: rgba(255, 255, 255, .69); font-size: .8rem; }

.section-pad { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 5.2rem); }
.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  column-gap: 5vw;
}
.section-heading h2, .work h2, .company h2 {
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  letter-spacing: -.02em;
}
.intro-copy { max-width: 43rem; align-self: end; }
.intro-copy p {
  margin: 0 0 .4rem;
  color: #3f454b;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.service-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 31rem;
  padding: 2rem 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { z-index: 1; transform: translateY(-.45rem); box-shadow: 0 1.5rem 3rem rgba(17, 19, 21, .13); }
.service-card.featured { color: var(--white); background: var(--accent); }
.service-number { color: var(--steel); font-family: var(--display); font-weight: 700; }
.featured .service-number { color: rgba(255, 255, 255, .62); }
.service-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 3.7rem 0 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.55rem;
}
.service-card h3 { font-size: clamp(1.65rem, 2vw, 2.25rem); line-height: 1.03; }
.service-card p { min-height: 7.5rem; color: #555c62; font-size: .92rem; line-height: 1.65; }
.featured p { color: rgba(255, 255, 255, .78); }
.featured .service-icon,
.featured ul { border-color: rgba(255, 255, 255, .35); }
.service-card ul {
  margin: 1.2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: .82rem;
  font-weight: 600;
}
.service-card li { padding: .22rem 0; }
.service-card li::before { content: "—"; margin-right: .45rem; color: var(--accent); }
.service-card.featured li::before { color: var(--white); }

.work { color: var(--white); background: var(--ink); }
.work-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 4rem;
  align-items: end;
  width: min(100%, 88rem);
  margin: 0 auto 4.5rem;
}
.work-heading > p {
  max-width: 31rem;
  margin: 0 0 .5rem;
  color: rgba(255, 255, 255, .62);
}
.project-list { width: min(100%, 88rem); margin: auto; display: grid; gap: 5.5rem; }
.project {
  display: grid;
  grid-template-columns: minmax(14rem, .38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.project.reverse { grid-template-columns: minmax(0, 1fr) minmax(14rem, .38fr); }
.project.reverse .project-copy { order: 2; }
.project-copy > span {
  color: #ef3349;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-copy h3 { margin-top: .75rem; font-size: clamp(2.1rem, 4vw, 3.9rem); }
.project-copy p { color: rgba(255, 255, 255, .58); font-size: .92rem; line-height: 1.7; }
.comparison {
  --split: 50%;
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  background: #24282b;
  cursor: ew-resize;
  touch-action: none;
}
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.comparison-before { position: absolute; inset: 0; width: var(--split); overflow: hidden; }
.comparison-before img { max-width: none; }
.comparison-handle {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  padding: 0;
  border: 0;
  background: var(--accent);
  transform: translateX(-50%);
  cursor: ew-resize;
}
.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.comparison-handle span::before { content: "↔"; font-size: 1.15rem; font-weight: 800; }
.label {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  padding: .38rem .6rem;
  color: var(--white);
  background: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.label-before { left: 1rem; }
.label-after { right: 1rem; }

.company { background: #d7dade; }
.company-brand {
  width: min(24rem, 82%);
  margin-bottom: 1.8rem;
}
.company-brand img { width: 100%; height: auto; }
.company-panel {
  width: min(100%, 88rem);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr minmax(20rem, .48fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.company-copy > p:not(.eyebrow) { max-width: 46rem; color: rgba(17, 19, 21, .72); }
.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 42rem;
  margin-top: 2.8rem;
  border-top: 1px solid rgba(17, 19, 21, .25);
}
.credentials div { display: grid; gap: .15rem; padding: 1.2rem 1.2rem 0 0; }
.credentials strong { font-family: var(--display); font-size: 2rem; }
.credentials span { font-size: .72rem; font-weight: 600; }
.contact-card { padding: clamp(1.8rem, 4vw, 3rem); color: var(--white); background: var(--ink); }
.contact-card > p { margin: 0 0 .65rem; color: #ef3349; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-card h3 { margin-bottom: 2.2rem; font-size: clamp(2rem, 3.2vw, 3.3rem); }
.contact-link {
  display: grid;
  gap: .18rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-decoration: none;
}
.contact-link small, .address small { color: rgba(255, 255, 255, .5); font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
.contact-link strong { font-family: var(--display); font-size: 1.6rem; line-height: 1.15; }
.contact-link.email strong { font-family: var(--body); font-size: .88rem; text-transform: none; }
.address { padding: 1rem 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.address address { margin-top: .2rem; font-style: normal; font-size: .88rem; line-height: 1.5; }
.button-dark { width: 100%; margin-top: 1.3rem; color: var(--white); background: var(--accent); }
.button-dark:hover { background: #d10a20; }

.sms-opt-in { background: var(--paper); }
.sms-layout {
  width: min(100%, 88rem);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(18rem, .78fr) minmax(28rem, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.sms-copy h2 { font-size: clamp(3rem, 5.5vw, 5.7rem); letter-spacing: -.02em; }
.sms-copy > p:not(.eyebrow) { max-width: 40rem; color: #4f565d; font-size: 1.05rem; }
.sms-program-details { margin-top: 2rem; border-top: 1px solid var(--line); }
.sms-program-details div { display: grid; gap: .1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.sms-program-details strong { font-size: .9rem; }
.sms-program-details span { color: var(--steel); font-size: .78rem; }
.sms-form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-top: .35rem solid var(--accent);
  background: var(--white);
  box-shadow: 0 1.25rem 3.5rem rgba(17, 19, 21, .1);
}
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.form-grid label { color: var(--ink); font-size: .83rem; font-weight: 700; }
.form-grid input {
  width: 100%;
  min-height: 3.2rem;
  margin-top: .45rem;
  padding: .75rem .85rem;
  border: 1px solid #bdc2c7;
  border-radius: 0;
  background: #fafafa;
  color: var(--ink);
  font: inherit;
}
.form-grid input:focus { outline: 3px solid rgba(183, 0, 20, .2); border-color: var(--accent); }
.consent-check {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid #d6d9dc;
  color: #41474d;
  font-size: .86rem;
  line-height: 1.55;
}
.consent-check input { width: 1.25rem; height: 1.25rem; flex: 0 0 1.25rem; margin: .15rem 0 0; accent-color: var(--accent); }
.form-legal { margin: .85rem 0 0; color: #626971; font-size: .76rem; }
.form-legal a { color: var(--accent); font-weight: 700; }
.sms-submit { margin-top: 1.25rem; border: 0; color: var(--white); background: var(--accent); cursor: pointer; }
.sms-submit:hover { background: #d10a20; }
.employee-consent-page { min-height: calc(100vh - 16rem); }
.employee-consent-page .sms-copy h1 { margin: 0 0 1.2rem; font: 800 clamp(3rem, 5.5vw, 5.7rem)/.92 var(--display); letter-spacing: -.02em; text-transform: uppercase; }

footer {
  min-height: 10rem;
  display: grid;
  grid-template-columns: .8fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem clamp(1.25rem, 5vw, 5.2rem);
  color: var(--white);
  background: #090a0b;
}
footer p { color: rgba(255, 255, 255, .46); font-size: .77rem; }
.footer-meta { display: grid; gap: .3rem; justify-items: end; }
.footer-meta p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-end; }
.footer-links a:hover { color: var(--white); }
.footer-brand { width: max-content; }
.footer-brand .brand-logo { width: 15rem; }
.copyright { text-align: right; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.policy-page { background: #f4f5f6; }
.policy-header { min-height: 6.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem clamp(1.25rem, 4vw, 4.5rem); background: var(--ink); }
.policy-home { color: var(--white); font-size: .9rem; font-weight: 700; text-decoration: none; }
.policy-home:hover { color: #ef3349; }
.policy-wrap { width: min(91%, 52rem); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) 0; }
.policy-wrap h1 { margin: 0; font: 800 clamp(3rem, 8vw, 5.5rem)/.9 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.policy-date { margin: 1rem 0 3rem; color: var(--steel); font-size: .9rem; }
.policy-wrap section { padding: 1.65rem 0; border-top: 1px solid var(--line); }
.policy-wrap h2 { margin: 0 0 .6rem; font: 700 1.65rem/1 var(--display); text-transform: uppercase; }
.policy-wrap p { margin: .6rem 0; }
.policy-wrap a { color: var(--accent-deep); font-weight: 700; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 28rem; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { margin-top: 2rem; }
  .company-panel { grid-template-columns: 1fr; }
  .contact-card { max-width: 38rem; }
  .sms-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 5rem; }
  .brand { padding: .3rem .48rem; }
  .brand-logo { width: 12.5rem; }
  .menu-toggle {
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-content: center;
    gap: .28rem;
    border: 1px solid rgba(255,255,255,.35);
    background: transparent;
  }
  .menu-toggle > span:not(.sr-only) { width: 1.25rem; height: 2px; background: var(--white); }
  nav {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.25rem 1.25rem;
    background: rgba(9, 10, 11, .98);
  }
  nav.open { display: grid; }
  nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-call { margin-top: .75rem; padding: .85rem 1rem; text-align: center; border: 1px solid var(--accent); }
  .hero { min-height: 68rem; height: auto; max-height: none; align-items: start; }
  .hero-media img { object-position: 66% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(9,10,11,.98) 0%, rgba(9,10,11,.7) 57%, rgba(9,10,11,.2) 100%); }
  .hero-content { margin: 9rem auto 12.5rem; }
  h1 { font-size: clamp(3.4rem, 15vw, 5.1rem); }
  .hero-copy { font-size: 1rem; }
  .hero-rail { margin-left: 0; grid-template-columns: repeat(3, 1fr); }
  .hero-rail div { min-height: 4.5rem; display: grid; gap: 0; padding: .8rem .7rem; }
  .hero-rail strong { font-size: 1.2rem; }
  .hero-rail span { font-size: .63rem; line-height: 1.25; }
  .section-pad { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .section-heading h2, .work h2, .company h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .service-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .service-card { min-height: auto; }
  .service-icon { margin-top: 2.4rem; }
  .service-card p { min-height: 0; }
  .work-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .project, .project.reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .project.reverse .project-copy { order: 0; }
  .comparison { min-height: 23rem; }
  .project-list { gap: 4.5rem; }
  .credentials { grid-template-columns: 1fr; }
  .credentials div + div { margin-top: .8rem; border-top: 1px solid rgba(17,19,21,.18); }
  .form-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: .45rem; }
  .copyright { text-align: left; }
  .footer-meta { justify-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
