:root {
  --brand-blue: #3682c4;
  --brand-blue-deep: #245f96;
  --brand-grey: #8a877f;
  --brand-grey-deep: #6a6863;
  --mist: #edf2f5;
  --mist-strong: #d8e2ea;
  --surface: #ffffff;
  --surface-muted: #f7f9fb;
  --text: #182430;
  --text-muted: #4c6378;
  --border: rgba(18, 59, 99, 0.12);
  --shadow: 0 24px 60px rgba(18, 59, 99, 0.12);
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(54, 130, 196, 0.18), transparent 30%),
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 40%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

p,
li {
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(247, 249, 251, 0.72);
  box-shadow: 0 12px 30px rgba(18, 59, 99, 0.08);
}

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

.brand-logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

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

.site-nav a:not(.button) {
  color: var(--text-muted);
  font-family: "Barlow Semi Condensed", "Source Sans 3", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a[aria-current="page"] {
  color: var(--brand-blue-deep);
}

.nav-cta {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--brand-blue);
  color: var(--surface);
  box-shadow: 0 12px 30px rgba(31, 95, 148, 0.18);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand-blue-deep);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(18, 59, 99, 0.1);
}

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

.section {
  padding: 54px 0;
}

section[id] {
  scroll-margin-top: 120px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Semi Condensed", "Source Sans 3", sans-serif;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  letter-spacing: -0.03em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-heading p {
  max-width: 64ch;
  color: var(--text-muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 480px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(36, 95, 150, 0.96), rgba(54, 130, 196, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(15deg);
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-surface {
  position: absolute;
  inset: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-11deg);
}

.hero-surface-a {
  top: -28px;
  right: -18px;
  width: 180px;
  height: 200px;
}

.hero-surface-b {
  bottom: 38px;
  left: -38px;
  width: 220px;
  height: 140px;
  background: rgba(138, 135, 127, 0.16);
}

.hero-card-main {
  align-self: end;
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Barlow Semi Condensed", "Source Sans 3", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.hero-card p,
.hero-card-secondary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stat {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Barlow Semi Condensed", "Source Sans 3", sans-serif;
  font-size: 2.8rem;
}

.intro-strip {
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 35px rgba(18, 59, 99, 0.08);
}

.intro-strip p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.2rem;
}

.photo-band,
.content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(18, 59, 99, 0.06);
  overflow: hidden;
}

.photo-card img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  grid-column: span 8;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  min-height: 58vh;
}

.page-hero-media {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(18, 59, 99, 0.06);
  overflow: hidden;
}

.content-card {
  grid-column: span 6;
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(18, 59, 99, 0.06);
}

.content-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.section-direct {
  padding-top: 26px;
}

.section-grid,
.service-section,
.company-section,
.location-section {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
}

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

.category-card,
.service-grid article,
.contact-card,
.map-card,
.company-note,
.product-listing {
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(18, 59, 99, 0.06);
}

.category-card-featured {
  background: linear-gradient(180deg, rgba(31, 95, 148, 0.08), rgba(255, 255, 255, 0.92));
}

.category-card p,
.service-grid p,
.company-note li,
.product-listing li,
.contact-card p,
.map-note {
  color: var(--text-muted);
}

.product-listing h3 {
  margin-bottom: 14px;
}

.product-listing ul,
.company-note ul {
  margin: 0;
  padding-left: 20px;
}

.company-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.company-copy p:first-child {
  margin-top: 0;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.map-card {
  display: flex;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.legal-note {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.map-card iframe {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 28px 0 8px;
  color: var(--text-muted);
}

.footer-logo {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .hero,
  .page-hero,
  .company-layout,
  .contact-layout,
  .photo-band,
  .content-grid,
  .category-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  h1,
  h2 {
    max-width: none;
  }

  .hero-panel {
    min-height: 360px;
  }

  .photo-card-large {
    grid-column: span 1;
  }

  .photo-card,
  .content-card {
    grid-column: span 1;
  }

  .site-header {
    align-items: start;
  }

  .nav-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(18, 59, 99, 0.12);
  }

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

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100vw - 20px, 1180px);
  }

  .site-header {
    gap: 14px;
  }

  .site-header::before {
    inset: 6px -4px;
  }

  .brand-logo {
    width: 240px;
  }

  .page-hero-media {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .section {
    padding: 42px 0;
  }

  .hero-actions,
  .contact-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-strip {
    padding: 24px;
  }

  .intro-strip p {
    font-size: 1.08rem;
  }

  .category-card,
  .service-grid article,
  .contact-card,
  .map-card,
  .company-note,
  .product-listing {
    padding: 22px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}
