:root {
  --navy: #0a3157;
  --navy-2: #062441;
  --steel: #637081;
  --graphite: #1f2933;
  --line: #d7dde4;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --teal: #087b83;
  --amber: #c58a2a;
  --amber-soft: #f7ead7;
  --shadow: 0 18px 45px rgba(21, 38, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(215, 221, 228, 0.85);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  width: 95px;
  max-width: none;
  top: -10px;
  left: -25px;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 6px;
  color: #334452;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  color: var(--navy);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 132px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.87) 42%, rgba(255, 255, 255, 0.2) 72%),
    url("assets/hero-interview.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--navy);
  z-index: -1;
}

.hero-copy {
  width: min(680px, 100%);
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy-2);
  font-size: 58px;
  line-height: 1.02;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: #3e4c59;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
}

.button.primary {
  background: var(--navy);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
}

.button:hover,
.button:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 123, 131, 0.18);
  outline: none;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-panel div {
  min-height: 92px;
  background: #ffffff;
  padding: 18px clamp(18px, 4vw, 44px);
}

.quick-panel span {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-panel strong {
  display: block;
  color: var(--navy-2);
  font-size: 16px;
}

.section {
  padding: 72px clamp(20px, 5vw, 76px);
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 12px;
  color: var(--navy-2);
  font-size: 34px;
  line-height: 1.14;
}

.section-heading p,
.contact-copy p {
  color: #4b5c6b;
}

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

.service-card,
.job-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(21, 38, 56, 0.06);
}

.service-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3,
.job-card h3,
.process-step h3 {
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 19px;
}

.service-card p,
.job-card p,
.process-step p {
  margin-bottom: 0;
  color: #4b5c6b;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.photo-band figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band-copy {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.photo-band-copy h3 {
  margin-bottom: 10px;
  color: var(--navy-2);
  font-size: 24px;
  line-height: 1.14;
}

.photo-band-copy p:last-child {
  margin-bottom: 0;
  color: #4b5c6b;
}

.job-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid #b7c2cc;
  border-radius: 6px;
  background: #ffffff;
  color: #334452;
  cursor: pointer;
  font-weight: 800;
  padding: 8px 12px;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
  outline: none;
}

.job-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-meta span {
  border: 1px solid #cdd6de;
  border-radius: 999px;
  background: #ffffff;
  color: #405362;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.job-card .button {
  justify-self: start;
  min-height: 38px;
  padding: 8px 12px;
}

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

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: #8a560b;
  font-weight: 900;
}

.compliance-section {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.compliance-grid div {
  border-left: 4px solid var(--amber);
  background: var(--mist);
  border-radius: 0 8px 8px 0;
  padding: 18px;
}

.compliance-grid h3 {
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 18px;
}

.compliance-grid p {
  margin-bottom: 0;
  color: #4b5c6b;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 36px;
  align-items: start;
  background: #101922;
  color: #ffffff;
}

.contact-copy h2,
.contact-copy p,
.contact-copy .eyebrow {
  color: #ffffff;
}

.contact-copy p {
  color: #d4dde5;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.contact-list div {
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}

.contact-list dt {
  color: #aeb9c4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 2px 0 0;
  color: #ffffff;
  font-weight: 800;
}

.contact-list a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--graphite);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label.full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form span {
  color: #344655;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #b9c4cf;
  border-radius: 6px;
  background: #ffffff;
  color: var(--graphite);
  padding: 10px 11px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 123, 131, 0.14);
  outline: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #4b5c6b;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 76px);
  background: #07182b;
  color: #ffffff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: #b9c4cf;
  font-size: 13px;
}

.site-footer a {
  align-self: start;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }

  .quick-panel,
  .service-grid,
  .job-grid,
  .process-list,
  .contact-section,
  .photo-band,
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    padding: 8px 16px 14px;
  }

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

  .site-nav a {
    padding: 11px 8px;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 56px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.72) 100%),
      url("assets/hero-interview.jpg") 56% center / cover no-repeat;
  }

  .section {
    padding: 54px 18px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .photo-band figure {
    min-height: 210px;
  }

  .site-footer {
    display: grid;
  }
}
