:root {
  --orange: #f04b1a;
  --orange-dark: #c93812;
  --charcoal: #3f4349;
  --ink: #1f2933;
  --muted: #667085;
  --line: #d9e4e5;
  --teal: #168f9a;
  --mist: #edf7f7;
  --surface: #ffffff;
  --soft: #f6f7f7;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: rgb(255 255 255 / 92%);
  border-bottom: 1px solid rgb(217 228 229 / 70%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(142px, 18vw, 206px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--orange);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--orange);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 90px) 24px clamp(32px, 6vw, 70px);
}

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

.hero-brand-mark {
  width: 58px;
  height: auto;
  margin-bottom: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 34px;
  max-width: 360px;
  padding: 28px;
  color: #fff;
  background: var(--orange);
}

.hero-note img {
  width: 44px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.3rem;
  line-height: 1;
}

.hero-note span {
  display: block;
  font-weight: 650;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 74px;
  gap: 1px;
}

.trust-band div {
  padding: 24px;
  background: var(--mist);
  border-top: 3px solid var(--teal);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 24px;
}

.intro-section {
  border-top: 1px solid var(--line);
}

.intro-title img {
  width: 72px;
  height: auto;
  margin-bottom: 22px;
  opacity: 0.22;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  min-height: 600px;
  background: var(--charcoal);
  color: #fff;
}

.coverage-media {
  min-height: 480px;
  overflow: hidden;
}

.coverage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 78px);
}

.coverage-copy h2,
.coverage-copy p {
  color: #fff;
}

.coverage-copy p {
  max-width: 64ch;
  color: rgb(255 255 255 / 78%);
  font-size: 1.05rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgb(255 255 255 / 16%);
}

.metrics div {
  padding: 22px;
  background: rgb(255 255 255 / 8%);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  color: rgb(255 255 255 / 74%);
  font-weight: 650;
}

.split,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.prose,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

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

.feature-card p,
.service-item p,
.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  max-width: none;
  background: var(--soft);
}

.services > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.service-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item div {
  padding: 24px;
}

.clients {
  text-align: left;
}

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

.client-summary div {
  padding: 26px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.client-summary strong,
.client-summary span {
  display: block;
}

.client-summary strong {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.client-summary span {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  min-height: 620px;
}

.contact > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  background: var(--orange);
  color: #fff;
}

.contact-logo {
  width: min(260px, 68vw);
  height: auto;
  margin-bottom: 42px;
}

.contact-panel .section-kicker,
.contact-panel h2,
.contact-panel p {
  color: #fff;
}

address {
  margin-top: 26px;
  color: rgb(255 255 255 / 86%);
  font-style: normal;
}

.contact-phone {
  margin-top: 18px;
  color: rgb(255 255 255 / 86%);
}

.contact-panel .button.primary {
  color: var(--orange);
  background: #fff;
}

.contact-panel .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgb(255 255 255 / 55%);
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .section-heading,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .trust-band,
  .feature-grid,
  .service-list,
  .client-summary,
  .metrics {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .contact > img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 136px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 20px;
  }

  .trust-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-card {
    grid-template-rows: 200px 1fr;
  }

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

  .service-item img {
    height: 210px;
  }

  .contact-panel {
    padding: 42px 18px;
  }
}
