:root {
  --ink: #10273f;
  --ink-soft: #4f6273;
  --teal: #0b8fa1;
  --teal-dark: #076979;
  --gold: #e0a02b;
  --mist: #edf6f6;
  --paper: #ffffff;
  --surface: #f5f8fa;
  --line: #d7e1e7;
  --danger: #b43b32;
  --shadow: 0 18px 46px rgb(16 39 63 / 12%);
  --content: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.06; }
h1 { font-size: clamp(3.4rem, 7vw, 6.2rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
h3 { font-size: 1.22rem; }
:where(a, button):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 88px;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 28%);
  transition: min-height .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  background: rgb(9 25 40 / 96%);
  border-bottom-color: rgb(255 255 255 / 12%);
  box-shadow: 0 12px 30px rgb(9 25 40 / 22%);
  backdrop-filter: blur(14px);
}
.site-brand { display: block; width: 218px; padding: 6px 10px; background: #fff; }
.site-nav { display: flex; justify-content: flex-end; gap: 26px; }
.site-nav[hidden] { display: flex; }
.site-nav a { text-decoration: none; font-size: .9rem; font-weight: 750; }
.site-nav a:hover { color: #85e5ea; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}
.menu-button { display: none; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button svg { width: 19px; }
.button--primary { color: #fff; background: var(--teal); }
.button--primary:hover { background: var(--teal-dark); }
.button--light { color: var(--ink); background: #fff; }
.button--outline { color: var(--ink); background: transparent; border-color: var(--line); }
.header-call { min-height: 42px; padding: 8px 14px; background: rgb(11 143 161 / 92%); }
main :where(section, div)[id] { scroll-margin-top: 96px; }

.hero {
  position: relative;
  min-height: min(840px, 92vh);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero-media, .hero-slide, .hero-shade { position: absolute; inset: 0; }
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { background: rgb(9 25 40 / 61%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  min-height: min(840px, 92vh);
  margin: 0 auto;
  padding: 168px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero .eyebrow { color: #88e9ef; }
.hero h1 { max-width: 940px; margin-bottom: 22px; }
.hero-copy { max-width: 720px; margin-bottom: 30px; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  border-top: 1px solid rgb(255 255 255 / 35%);
}
.hero-facts span { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 700; }
.hero-facts svg { width: 18px; color: #88e9ef; }

.trust-rail {
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust-rail__inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-rail__item {
  min-width: 0;
  min-height: 116px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.trust-rail__item:first-child { border-left: 1px solid var(--line); }
.trust-rail__item > svg { flex: 0 0 auto; width: 24px; color: var(--teal-dark); }
.trust-rail__item:first-child > svg { color: var(--gold); fill: rgb(224 160 43 / 18%); }
.trust-rail__item span, .trust-rail__item strong, .trust-rail__item small { display: block; }
.trust-rail__item strong { line-height: 1.2; }
.trust-rail__item small { margin-top: 5px; color: var(--ink-soft); }
.trust-rail__item--link { text-decoration: none; }
.trust-rail__item--link:hover strong { color: var(--teal-dark); }
.trust-rail__cta { justify-content: space-between; }

.section { width: var(--content); margin: 0 auto; padding: 116px 0; }
.section-heading { max-width: 780px; margin-bottom: 64px; }
.section-heading h2 { margin-bottom: 22px; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid article {
  min-height: 260px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-grid article > svg { width: 32px; height: 32px; margin-bottom: 52px; color: var(--teal); }
.service-grid h3 { margin-bottom: 12px; }
.service-grid p { color: var(--ink-soft); }

.pricing-band {
  padding: 104px max(20px, calc((100vw - 1180px) / 2));
  background: #eef4f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing-inner { margin: 0 auto; }
.pricing-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  column-gap: 72px;
  align-items: end;
}
.pricing-heading .eyebrow { grid-column: 1 / -1; }
.pricing-heading h2 { max-width: 620px; }
.pricing-heading > p:last-child { color: var(--ink-soft); font-size: 1.04rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.pricing-grid article {
  min-width: 0;
  min-height: 410px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.pricing-grid article:last-child { border-right: 0; }
.pricing-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-dark);
}
.pricing-icon svg { width: 25px; height: 25px; }
.pricing-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-grid h3 { margin-bottom: 14px; }
.pricing-grid article > p:not(.pricing-kicker) { color: var(--ink-soft); }
.pricing-value {
  margin-top: auto;
  padding-top: 26px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  border-top: 1px solid var(--line);
}
.pricing-value small {
  font-size: .9rem;
  font-weight: 750;
}
.pricing-value span {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
}
.pricing-note {
  max-width: 900px;
  margin: 24px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .88rem;
}
.pricing-note svg { flex: 0 0 auto; width: 18px; margin-top: 2px; color: var(--teal-dark); }

.process-band {
  padding: 82px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  color: #fff;
  background: var(--ink);
}
.process-copy h2 { margin-bottom: 20px; }
.process-copy p:last-child { color: #c6d4df; }
.process-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-left: 1px solid rgb(255 255 255 / 22%); }
.process-steps li { min-height: 190px; padding: 8px 24px; display: flex; flex-direction: column; border-right: 1px solid rgb(255 255 255 / 22%); }
.process-steps span { color: #83dfe4; font-weight: 900; }
.process-steps strong { margin-top: auto; font-size: 1.25rem; }
.process-steps small { color: #c6d4df; }

.projects-heading { max-width: none; display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 360px; gap: 10px; }
.project {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  cursor: zoom-in;
  text-align: left;
}
.project--wide { grid-column: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.project:nth-child(1) img { object-position: 50% 58%; }
.project:hover img { transform: scale(1.035); }
.project > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 20px 18px;
  background: rgb(9 25 40 / 72%);
}
.project strong, .project small { display: block; }
.project strong { font-size: 1.02rem; }
.project small { color: #dce8ee; }

.coverage { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; background: var(--surface); }
.coverage-image { min-height: 660px; overflow: hidden; }
.coverage-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transition: transform .8s ease; }
.coverage-image.is-visible img { transform: scale(1.015); }
.coverage-copy { padding: 90px max(40px, calc((100vw - 1180px) / 2)) 90px 70px; align-self: center; }
.coverage-copy h2 { margin-bottom: 24px; }
.coverage-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.coverage dl { margin: 38px 0; border-top: 1px solid var(--line); }
.coverage dl div { padding: 14px 0; display: grid; grid-template-columns: 145px 1fr; border-bottom: 1px solid var(--line); }
.coverage dt { font-weight: 850; }
.coverage dd { margin: 0; color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-weight: 850; text-decoration: none; }
.text-link svg { width: 18px; }
.coverage-links { display: flex; flex-wrap: wrap; gap: 18px 28px; }

.request { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; align-items: start; }
.request-copy { position: sticky; top: 30px; }
.request-copy h2 { margin-bottom: 20px; }
.request-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.direct-contact { margin-top: 34px; display: grid; gap: 8px; }
.direct-contact a { padding: 16px 0; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); text-decoration: none; }
.direct-contact svg { color: var(--teal); }
.direct-contact span, .direct-contact small, .direct-contact strong { display: block; }
.direct-contact small { color: var(--ink-soft); }
.request-form { padding: 34px; background: var(--surface); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
label { display: grid; gap: 7px; font-size: .82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfcdd6;
  border-radius: 3px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgb(11 143 161 / 18%); border-color: var(--teal); }
.form-wide { grid-column: 1 / -1; }
.form-error { margin: 18px 0 0; color: var(--danger); font-weight: 750; }
.form-submit { width: 100%; margin-top: 24px; }

.site-footer {
  padding: 54px max(20px, calc((100vw - 1180px) / 2)) 34px;
  color: #d9e5eb;
  background: #0a1d2e;
}
.site-footer img { width: 205px; margin-bottom: 22px; padding: 8px 10px; background: #fff; }
.site-footer div { margin: 24px 0; display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer a { color: #fff; }
.site-footer small { color: #91a5b4; }
.mobile-actions { display: none; }

.lightbox {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #071622;
  border: 0;
}
.lightbox::backdrop { background: rgb(3 12 19 / 88%); }
.lightbox img { width: 100%; max-height: calc(100vh - 105px); object-fit: contain; }
.lightbox p { margin: 0; padding: 14px 18px; }
.lightbox .icon-button { position: absolute; z-index: 2; top: 10px; right: 10px; color: #fff; background: rgb(7 22 34 / 78%); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .78rem; }
  .header-call { display: none; }
  .trust-rail__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-rail__item:nth-child(2) { border-right: 1px solid var(--line); }
  .trust-rail__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .trust-rail__item:nth-child(3) { border-left: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-heading { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pricing-grid article:last-child { border-bottom: 0; }
  .pricing-value { margin-top: 34px; }
  .process-band, .request { grid-template-columns: 1fr; }
  .process-band { gap: 42px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: .85fr 1.15fr; }
  .coverage-copy { padding: 60px 40px; }
  .request-copy { position: static; }
}

@media (max-width: 780px) {
  body { padding-bottom: 64px; }
  h1 { font-size: clamp(2.8rem, 14vw, 3.9rem); }
  h2 { font-size: 2.45rem; }
  .site-header {
    min-height: 74px;
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
    background: rgb(9 25 40 / 94%);
    box-shadow: 0 10px 24px rgb(9 25 40 / 18%);
  }
  .site-header.is-scrolled { min-height: 74px; }
  .site-brand { width: 185px; }
  .menu-button { display: grid; color: #fff; }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    padding: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav[hidden] { display: none; }
  .site-nav a { padding: 12px; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .hero, .hero-content { min-height: 720px; }
  .hero-content { padding: 120px 0 44px; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-facts { margin-top: 30px; display: grid; gap: 10px; }
  .trust-rail__item { min-height: 104px; padding: 18px 14px; align-items: flex-start; }
  .trust-rail__item > svg { width: 21px; margin-top: 1px; }
  .trust-rail__item strong { font-size: .94rem; }
  .trust-rail__item small { font-size: .76rem; line-height: 1.35; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 220px; }
  .service-grid article > svg { margin-bottom: 38px; }
  .pricing-band { padding-top: 76px; padding-bottom: 76px; }
  .pricing-heading { margin-bottom: 36px; }
  .pricing-grid article { padding: 28px 22px; }
  .pricing-icon { margin-bottom: 28px; }
  .process-band { padding-top: 64px; padding-bottom: 64px; }
  .process-steps { grid-template-columns: 1fr; border-top: 1px solid rgb(255 255 255 / 22%); }
  .process-steps li { min-height: 130px; padding: 18px; border-bottom: 1px solid rgb(255 255 255 / 22%); }
  .projects-heading { display: block; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; }
  .project--wide { grid-column: auto; }
  .coverage { grid-template-columns: 1fr; }
  .coverage-image { min-height: 520px; }
  .coverage-copy { padding: 64px 20px; }
  .coverage dl div { grid-template-columns: 1fr; gap: 4px; }
  .request { gap: 42px; }
  .request-form { padding: 22px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .mobile-actions {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--ink); text-decoration: none; font-weight: 850; }
  .mobile-actions a:last-child { color: #fff; background: var(--teal-dark); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
