:root {
  --blue: #001ec8;
  --blue-deep: #06116f;
  --blue-soft: #e9f0ff;
  --red: #f41222;
  --red-deep: #a90e19;
  --ink: #111524;
  --muted: #596075;
  --line: #d9deec;
  --paper: #ffffff;
  --shadow: 0 24px 80px rgba(0, 23, 90, 0.18);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(0, 30, 200, 0.95), rgba(255, 255, 255, 0.9) 72%),
    radial-gradient(circle at 12% 8%, rgba(244, 18, 34, 0.2), transparent 24%),
    #f8fbff;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  min-height: 66px;
  background: rgba(1, 12, 81, 0.94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  color: var(--red);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 13s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 120, 0.9), rgba(0, 24, 170, 0.56) 42%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(4, 5, 20, 0.74), rgba(4, 5, 20, 0.04) 55%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(46px, 8vw, 86px) clamp(18px, 7vw, 92px);
  padding-top: calc(var(--header-height) + 36px);
}

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

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 10ch;
  font-size: clamp(4rem, 13vw, 10.6rem);
  line-height: 0.78;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
}

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

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(244, 18, 34, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-deep);
}

.button-secondary {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
  color: var(--blue);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.intro h2 {
  color: var(--ink);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.services {
  color: #fff;
  background:
    linear-gradient(135deg, #001ec8, #050b62 55%, #111524),
    var(--blue);
}

.services .eyebrow,
.proof .eyebrow {
  color: #ffb3b8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-item {
  min-height: 265px;
  padding: clamp(24px, 4vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: #ffb3b8;
  font-size: 0.83rem;
  font-weight: 900;
}

.service-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.photo-story {
  background: #f7f9ff;
}

.photo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.photo-copy p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.image-panel {
  margin: 0;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.proof {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(244, 18, 34, 0.14), transparent 34%),
    linear-gradient(135deg, #001ec8, #07116f 62%, #111524);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 56px);
}

.proof-copy {
  max-width: 980px;
  color: #fff;
}

.proof-copy .eyebrow {
  color: #ffb3b8;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list div {
  padding: clamp(22px, 4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list div:last-child {
  border-right: 0;
}

.proof-list dt {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 950;
}

.proof-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.locations {
  background:
    linear-gradient(90deg, rgba(0, 30, 200, 0.08), transparent 34%),
    #fff;
}

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

.location-panel,
.contact-panel {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 8px solid var(--blue);
  background: #fff;
}

.contact-panel {
  border-top-color: var(--red);
  color: #fff;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
}

.location-panel h3,
.contact-panel h3 {
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.contact-panel h3 {
  color: #fff;
}

address {
  margin-bottom: 14px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.location-panel > a:not(.button),
.contact-panel > a:not(.button) {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.contact-panel > a:not(.button) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-panel dl {
  width: 100%;
  margin: 28px 0;
}

.location-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.location-panel dt {
  font-weight: 900;
}

.location-panel dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.location-note,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.location-panel .button,
.contact-panel .button {
  margin-top: auto;
  color: var(--blue);
}

.location-panel .button:hover,
.location-panel .button:focus-visible {
  background: var(--blue);
  color: #fff;
}

.contact-panel .button {
  color: #fff;
}

.site-footer {
  background: linear-gradient(90deg, var(--blue), rgba(0, 30, 200, 0.78), #fff);
  color: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  font-weight: 800;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.2%, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(1, 12, 81, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .split,
  .photo-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .location-grid,
  .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    max-width: 124px;
    line-height: 1.05;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 38px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11.5vw, 3.05rem);
    line-height: 0.86;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions,
  .mini-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .location-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 220px;
  }

  .proof-list div,
  .proof-list div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-list div:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}
