:root {
  --ink: #17191d;
  --muted: #5d6572;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --red: #ec1c24;
  --red-dark: #b51218;
  --teal: #1c7770;
  --gold: #c99a37;
  --shadow: 0 18px 50px rgba(23, 25, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 234, 0.85);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(245px, 48vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #262a31;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red);
}

.nav-cta {
  padding: 10px 16px;
  color: #ffffff;
  background: var(--ink);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: clamp(570px, 78vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 18, 24, 0.82) 0%, rgba(13, 18, 24, 0.57) 42%, rgba(13, 18, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 18, 24, 0.18), rgba(13, 18, 24, 0.18));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 72px);
  padding: 86px 0 118px;
  color: #ffffff;
}

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

.hero .eyebrow {
  color: #ffffff;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  color: #ffffff;
  background: var(--red);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}

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

.section-band {
  background: var(--soft);
}

.intro {
  padding: clamp(52px, 7vw, 86px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.two-column p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.services,
.clients,
.inquiry {
  padding: clamp(64px, 8vw, 104px) 0;
}

.services > .section-inner > h2 {
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  min-height: 270px;
  padding: clamp(26px, 4vw, 38px);
  background: #ffffff;
}

.service-number {
  display: block;
  margin-bottom: 40px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-item p {
  color: var(--muted);
}

.clients {
  background: #f7f8f6;
}

.clients-heading {
  max-width: 760px;
}

.clients-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-logo-item {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 225px;
  padding: 26px 18px;
  text-align: center;
  background: #ffffff;
}

.client-logo-item img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 20px;
}

.client-logo-item h3 {
  max-width: 180px;
  margin-bottom: 0;
  font-size: 1rem;
}

.seal-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.approach {
  padding: clamp(64px, 8vw, 104px) 0;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.approach-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.approach-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.approach-copy h2 {
  max-width: 560px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 12px;
  background: var(--gold);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 110px;
}

.inquiry-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 4px solid var(--red);
}

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

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: #30343a;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd6de;
  border-radius: 4px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(236, 28, 36, 0.18);
  border-color: var(--red);
}

.form-button {
  width: fit-content;
  min-width: 172px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.86rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    width: min(680px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 96px;
  }

  .two-column,
  .approach-layout,
  .inquiry-layout,
  .service-grid,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-item {
    min-height: 190px;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 0;
  }

  .brand img {
    width: min(230px, 70vw);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero p,
  .two-column p:last-child {
    font-size: 1.02rem;
  }

  .inquiry-form {
    padding: 22px;
  }

  .form-button {
    width: 100%;
  }
}

.opportunities { padding: clamp(64px, 8vw, 104px) 0; }
.opportunities p:not(.eyebrow), .email-note { color: var(--muted); }
.email-note, #candidate-fields p { font-size: .9rem; margin-bottom: 0; }
#candidate-fields { margin: 0; padding: 16px; border: 1px solid var(--line); }
#candidate-fields .form-row { margin-bottom: 14px; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: 155px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
