:root {
  --ink: #16212a;
  --muted: #5a6874;
  --line: #d9e0e6;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --charcoal: #111820;
  --red: #a61f2a;
  --red-dark: #821722;
  --teal: #0c6f72;
  --gold: #c9962d;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  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;
}

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

:focus-visible {
  outline: 3px solid rgba(198, 150, 45, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 20;
  padding: 0.6rem 0.85rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(217, 224, 230, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/banner.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 22, 30, 0.58);
}

.hero-content {
  display: flex;
  min-height: 74svh;
  flex-direction: column;
  justify-content: center;
  padding: 92px 0 76px;
}

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

.hero .eyebrow {
  color: #f0b24d;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: 6rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ops-strip {
  background: var(--charcoal);
  color: var(--paper);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ops-grid div {
  min-height: 112px;
  padding: 1.4rem 1.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ops-grid strong,
.ops-grid span {
  display: block;
}

.ops-grid strong {
  margin-bottom: 0.35rem;
  color: #f0b24d;
  font-size: 1.05rem;
}

.ops-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.intro,
.process {
  background: var(--soft);
}

.split-layout,
.coverage-layout,
.about-layout,
.contact-layout {
  display: grid;
  align-items: center;
  gap: 48px;
}

.split-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
}

.copy-block {
  max-width: 700px;
}

.copy-block p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.section-heading.compact {
  max-width: 640px;
}

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

.service-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(17, 24, 32, 0.08);
}

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

.service-content {
  padding: 1.35rem;
}

.service-number {
  margin-bottom: 0.45rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

.service-card ul,
.credential-grid ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.credential-grid li {
  position: relative;
  margin-top: 0.65rem;
  padding-left: 1.15rem;
  color: var(--ink);
}

.service-card li::before,
.credential-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.coverage {
  background: var(--paper);
}

.coverage-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.coverage-list div {
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.coverage-list strong,
.coverage-list span {
  display: block;
}

.coverage-list strong {
  margin-bottom: 0.55rem;
  color: var(--ink);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-grid div {
  padding-top: 1rem;
  border-top: 3px solid var(--red);
}

.process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.about-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 1.5rem;
}

.credential-grid h3 {
  font-size: 1rem;
}

.contact {
  background: var(--charcoal);
  color: var(--paper);
}

.contact .eyebrow {
  color: #f0b24d;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 1.6rem;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-methods strong {
  color: #f0b24d;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-methods span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.88);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.request-form label {
  display: grid;
  gap: 0.45rem;
}

.request-form span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
}

.request-form input,
.request-form select {
  min-height: 46px;
  padding: 0 0.85rem;
}

.request-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 0.8rem 0.85rem;
}

.full {
  grid-column: 1 / -1;
}

.request-form .button-primary {
  width: 100%;
  border: 0;
}

.site-footer {
  padding: 34px 0;
  background: #0c1117;
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-layout img {
  width: 240px;
  filter: brightness(0) invert(1);
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: #f0b24d;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 20px 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .section-pad {
    padding: 68px 0;
  }

  .ops-grid,
  .service-grid,
  .process-grid,
  .split-layout,
  .coverage-layout,
  .about-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .ops-grid div,
  .ops-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .coverage-list,
  .credential-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand img {
    width: min(240px, 66vw);
  }

  .site-nav {
    top: 66px;
    padding-inline: 14px;
  }

  .hero,
  .hero-content {
    min-height: 68svh;
  }

  .hero-content {
    padding: 70px 0 54px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .image-panel img {
    min-height: 270px;
  }

  .request-form {
    grid-template-columns: 1fr;
  }
}
