:root {
  --ink: #101419;
  --muted: #5f6873;
  --panel: #f4f2ee;
  --paper: #fbfaf7;
  --line: rgba(16, 20, 25, .13);
  --gunmetal: #1e262b;
  --gunmetal-2: #2f383d;
  --steel: #77838a;
  --accent: #436f8e;
  --accent-dark: #294f69;
  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 20, 25, .16);
  --radius: 8px;
  --wrap: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }
h1 { font-size: clamp(2.65rem, 7vw, 6.8rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4.2vw, 4.65rem); max-width: 920px; }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.65rem); }

.wrap { width: min(calc(100% - 40px), var(--wrap)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 720px; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.12rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-light { border-color: var(--line); background: #fff; color: var(--ink); }
.header-quote b { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-main {
  display: grid;
  grid-template-columns: minmax(210px, 360px) 1fr;
  gap: 1rem;
  align-items: center;
  padding: .75rem 0 .55rem;
}
.brand img { width: min(330px, 46vw); }
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
}
.phone-link {
  display: grid;
  gap: .05rem;
  padding: .55rem .8rem;
  border-left: 1px solid var(--line);
}
.phone-link span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.phone-link strong { font-size: 1.05rem; }
.nav-row {
  border-top: 1px solid var(--line);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 2vw, 2rem);
  min-height: 48px;
  font-size: .86rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.main-nav a { color: #293036; }
.main-nav a:hover, .main-nav a.active { color: var(--accent-dark); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  color: #fff;
  background: #0f1519;
  overflow: hidden;
}
.hero-reel {
  position: absolute;
  inset: 0;
}
.hero-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 20s infinite;
  filter: saturate(.92) contrast(1.05);
}
.hero-reel img:nth-child(2) { animation-delay: 5s; }
.hero-reel img:nth-child(3) { animation-delay: 10s; }
.hero-reel img:nth-child(4) { animation-delay: 15s; }
@keyframes heroFade {
  0%, 18% { opacity: 1; transform: scale(1.02); }
  25%, 100% { opacity: 0; transform: scale(1.08); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,17,21,.92) 0%, rgba(12,17,21,.62) 48%, rgba(12,17,21,.25) 100%),
    linear-gradient(0deg, rgba(12,17,21,.86) 0%, rgba(12,17,21,0) 48%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 130px);
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 5rem 0 3rem;
}
.hero-copy { max-width: 980px; }
.hero-copy .lead { color: rgba(255,255,255,.78); margin: 1.25rem 0 1.7rem; }
.hero-proof {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
  box-shadow: var(--shadow);
}
.proof-item {
  min-height: 156px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025)),
    rgba(12, 17, 20, .72);
  display: grid;
  align-content: center;
  gap: .38rem;
  position: relative;
  overflow: hidden;
}
.proof-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(214, 161, 74, .96), transparent);
}
.proof-item small { color: rgba(255,255,255,.62); font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.proof-item strong { font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.12; }
.proof-item p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
  line-height: 1.35;
}
.proof-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: .18rem;
  border-radius: 999px;
  color: #111;
  background:
    radial-gradient(circle at 35% 30%, #fff5c9, #d6a14a 58%, #a97324 100%);
  box-shadow: 0 12px 26px rgba(214, 161, 74, .22);
  font-weight: 900;
}
.proof-seal svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-logo {
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.03)),
    rgba(15, 20, 23, .78);
}
.proof-logo img { max-height: 72px; object-fit: contain; }
.proof-logo--white img { background: #fff; border-radius: 4px; padding: 5px; }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-tight { padding: clamp(2.8rem, 5vw, 4.6rem) 0; }
.dark { background: var(--gunmetal); color: #fff; }
.soft { background: var(--panel); }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-head .lead { margin-bottom: 0; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-tile {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: #fff;
}
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .84;
  transition: transform .45s ease;
}
.service-tile:hover img { transform: scale(1.05); }
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,12,14,.92), rgba(9,12,14,.2) 65%);
}
.service-tile-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.service-tile p { color: rgba(255,255,255,.78); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.media-wide {
  min-height: 540px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .7rem;
}
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  color: #303940;
}
.dark .check-list li { color: rgba(255,255,255,.82); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46rem;
  width: .68rem;
  height: .68rem;
  background: var(--accent);
}

.credential-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.credential-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.credential-logo {
  min-height: 164px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.credential-logo img { max-height: 90px; object-fit: contain; }
.credential-logo.white img { background: #fff; border-radius: 5px; padding: 8px; }

.project-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.project-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.project-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.project-card div, .info-card { padding: 1.15rem; }
.project-card p, .info-card p { color: var(--muted); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.area-card {
  min-height: 148px;
  padding: 1.15rem;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67,111,142,.4);
  box-shadow: 0 18px 45px rgba(16,20,25,.1);
}
.area-card p { color: var(--muted); font-size: .93rem; }

.area-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.area-hero-panel {
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
    rgba(10, 15, 18, .38);
  box-shadow: var(--shadow);
}
.area-hero-panel strong {
  display: block;
  margin-bottom: .55rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
}
.area-hero-panel p,
.area-hero-panel li {
  color: rgba(255,255,255,.76);
}
.area-hero-panel ul {
  display: grid;
  gap: .55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.area-hero-panel li {
  padding-left: 1.35rem;
  position: relative;
}
.area-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  background: #d6a14a;
}
.areas-section {
  border-top: 1px solid rgba(16, 20, 25, .08);
}
.coverage-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(67,111,142,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}
.coverage-note strong {
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.coverage-note p {
  margin: 0;
  color: var(--muted);
}
.area-grid-premium {
  grid-template-columns: repeat(4, 1fr);
}
.service-area-cta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(67,111,142,.13), rgba(255,255,255,.78)),
    #fff;
}
.service-area-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.cta {
  color: #fff;
  background: linear-gradient(135deg, #11171b, #303a3f);
}
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.cta p { color: rgba(255,255,255,.75); }

.page-hero {
  padding: clamp(2.8rem, 5vw, 4.8rem) 0 clamp(2rem, 4vw, 3rem);
  color: #fff;
  background: linear-gradient(135deg, #151b1f, #364147);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  max-width: 980px;
}
.page-hero .lead {
  color: rgba(255,255,255,.76);
  margin-top: 1rem;
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: .35rem; font-weight: 800; font-size: .88rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: .9rem;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }

.site-footer {
  color: #fff;
  background: #101419;
  padding: 4rem 0 1.3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr .95fr;
  gap: 2rem;
}
.footer-logo { width: 280px; margin-bottom: 1rem; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.7); }
.footer-grid h3 { font-size: 1rem; margin-bottom: .8rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.footer-badges img { height: 54px; width: auto; object-fit: contain; }
.footer-badges .white { background: #fff; border-radius: 4px; padding: 4px; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}
.sticky-mobile-quote { display: none; }

@media (max-width: 1040px) {
  .hero-proof, .service-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2n), .service-tile:nth-child(2n) { border-right: 0; }
  .split, .credential-band, .footer-grid, .area-hero { grid-template-columns: 1fr; }
  .area-grid, .area-grid-premium, .project-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .site-header { position: relative; }
  .header-main { grid-template-columns: 1fr; padding: .75rem 0; }
  .brand img { width: min(255px, 76vw); margin: 0 auto; }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
    justify-content: stretch;
    align-items: center;
    gap: .5rem;
  }
  .header-actions .btn { min-height: 42px; padding: .68rem .72rem; font-size: .78rem; }
  .header-quote span { display: none; }
  .header-quote b { display: inline; }
  .phone-link { border-left: 0; text-align: left; padding: .2rem .2rem; }
  .phone-link strong { font-size: .98rem; }
  .menu-toggle {
    min-height: 42px;
    min-width: 46px;
    padding: .55rem .62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    color: #fff;
    background: var(--ink);
    border: 0;
    border-radius: 5px;
    font: inherit;
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
  }
  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    width: 16px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    content: "";
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
  }
  .menu-toggle i::before { top: -5px; }
  .menu-toggle i::after { top: 5px; }
  .menu-toggle[aria-expanded="true"] i { background: transparent; }
  .menu-toggle[aria-expanded="true"] i::before { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: translateY(-5px) rotate(-45deg); }
  .nav-row {
    display: none;
    overflow: visible;
  }
  .site-header.is-menu-open .nav-row { display: block; }
  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    min-width: 0;
    min-height: 0;
    padding: .35rem 0 .65rem;
    font-size: .82rem;
  }
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: .55rem .9rem;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a::after {
    content: ">";
    color: var(--steel);
    font-weight: 850;
  }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { padding: 4.5rem 0 1.5rem; }
  .hero-proof, .service-strip, .credential-logos, .project-grid, .card-grid, .area-grid, .area-grid-premium, .form-grid {
    grid-template-columns: 1fr;
  }
  .proof-item { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .proof-badge {
    grid-template-columns: 48px 1fr;
    align-items: center;
    align-content: center;
    column-gap: .85rem;
  }
  .proof-badge .proof-seal {
    grid-row: 1 / 4;
    margin: 0;
  }
  .proof-badge p { font-size: .82rem; }
  .proof-logo img { max-height: 58px; }
  .section-head, .cta-box, .footer-bottom { display: grid; }
  .coverage-note { grid-template-columns: 1fr; }
  .service-area-cta { display: grid; }
  .service-tile { min-height: 280px; border-right: 0; }
  .media-wide { min-height: 320px; }
  .sticky-mobile-quote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    box-shadow: 0 -10px 30px rgba(0,0,0,.18);
  }
  .sticky-mobile-quote a { border-radius: 0; min-height: 54px; }
  body { padding-bottom: 54px; }
}
