:root {
  --ink: #17212a;
  --muted: #5f6b75;
  --blue: #006ca8;
  --blue-dark: #004f7f;
  --aqua: #22a6cf;
  --night: #0b2538;
  --steel: #8b939b;
  --line: #d9e2e8;
  --paper: #f7fafc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(18, 44, 62, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 108, 168, 0.1), transparent 25rem),
    linear-gradient(180deg, #f4f8fb, var(--paper) 38rem);
  font-family: Avenir Next, Aptos, Segoe UI, Helvetica Neue, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 78px;
  margin: 0 auto;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 226, 232, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 24vw, 292px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 11% -7% auto auto;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(135deg, rgba(0, 108, 168, 0.12) 0 2px, transparent 2px 14px);
  clip-path: polygon(24% 0, 100% 19%, 78% 100%, 0 74%);
  z-index: -1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 1.25rem;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
}

.button:hover,
.button:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 108, 168, 0.16);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(223, 239, 247, 0.9));
  border: 1px solid rgba(217, 226, 232, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-image {
  display: block;
  width: calc(100% + clamp(2.5rem, 6vw, 4.4rem));
  max-width: none;
  height: clamp(220px, 31vw, 360px);
  margin: calc(clamp(1.25rem, 3vw, 2.2rem) * -1) calc(clamp(1.25rem, 3vw, 2.2rem) * -1) 1.5rem;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: 45%;
  aspect-ratio: 1;
  border: 20px solid rgba(0, 108, 168, 0.1);
  transform: rotate(18deg);
}

.hero-logo {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin: 0 auto 2rem;
}

.signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.signal-grid span {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 108, 168, 0.16);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 900;
}

.section,
.delivery,
.contact,
.visual-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.intro > p,
.delivery-copy p,
.contact p,
.visual-band-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.visual-band img,
.delivery-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(0.9) contrast(1.03);
}

.visual-band-copy {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

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

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

.service-card {
  min-height: 240px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--steel);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.delivery {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(260px, 0.72fr) minmax(260px, 0.78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-image {
  margin: 0;
}

.delivery-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.metrics {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.metrics div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.metrics dt {
  color: var(--blue);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.metrics dd {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-card strong {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 92px;
  padding: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

  .hero,
  .intro,
  .visual-band,
  .delivery,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero::before {
    inset: 8rem -0.25rem auto auto;
    width: 160px;
  }

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

  .service-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: unset;
  }

  .service-number {
    margin-bottom: 1.5rem;
  }

  .metrics div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
