/* ==========================================================================
   Industrial Coatings & Services, LLC (ICS) — styles
   Palette: Royal Blue · Steel Silver · Cool Navy  (light theme)
   ========================================================================== */

:root {
  /* Brand blue (pulled from the logo) */
  --blue: #1D4ED8;
  --blue-bright: #3B82F6;
  --blue-deep: #1E3A8A;
  --sky: #60A5FA;         /* lighter secondary accent */

  /* Steel / silver (logo chrome) */
  --steel: #64748B;
  --silver: #CBD5E1;

  /* Cool navy ink */
  --ink: #10203A;
  --graphite: #1E293B;
  --graphite-2: #16202E;

  /* Light surfaces */
  --bg: #F5F7FA;
  --panel: #E9EEF4;      /* section-alt (silver) */
  --panel-2: #0E1A2E;    /* dark navy footer */
  --card: #FFFFFF;

  --line: rgba(15, 32, 58, 0.10);
  --line-strong: rgba(15, 32, 58, 0.17);

  --text: #1B2A44;
  --muted: #5B6B82;
  --muted-2: #93A0B4;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow: 0 22px 55px -26px rgba(15, 32, 58, 0.35);
  --shadow-blue: 0 18px 44px -18px rgba(29, 78, 216, 0.42);
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient page background — soft cool glows on silver-white */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(29, 78, 216, 0.09), transparent 60%),
    radial-gradient(800px 600px at 5% 110%, rgba(100, 116, 139, 0.08), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus visibility (mouse clicks stay clean) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4, .eyebrow, .btn, .nav a, .step-num, .brand-text {
  font-family: "Saira Condensed", "Inter", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(29, 78, 216, 0.55);
}
.hl-blue { color: var(--blue); }
.hl-ink { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -18px rgba(29, 78, 216, 0.6); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-3px); }

.link-arrow {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--blue-deep);
  transition: color .2s, transform .2s var(--ease);
}
.link-arrow:hover { color: var(--blue); transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(245, 247, 250, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(15, 32, 58, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 56px; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(15, 32, 58, .28));
}
/* Header emblem: oversized and top-aligned so it overhangs below the bar */
.site-header .brand { align-self: flex-start; }
.site-header .brand-mark {
  width: 150px; height: auto;
  margin-top: 8px;
  filter: drop-shadow(0 12px 22px rgba(15, 32, 58, .32));
}
.brand-text { display: flex; flex-direction: column; line-height: 0.94; text-transform: uppercase; }
.brand-text strong { font-size: 1.28rem; font-weight: 800; letter-spacing: 0.02em; color: var(--ink); }
.brand-text span { font-size: 0.86rem; font-weight: 700; color: var(--blue-deep); letter-spacing: 0.20em; }

.nav { display: flex; gap: 26px; }
.nav a {
  position: relative;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--blue);
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; color: var(--ink);
  white-space: nowrap;
  transition: color .2s;
}
.header-phone:hover { color: var(--blue-deep); }
.header-phone svg { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px; border-radius: 3px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 158px 0 60px;  /* clears the overhanging logo */
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .6; z-index: 0; pointer-events: none;
}
.hero-glow-blue { width: 620px; height: 620px; background: rgba(29,78,216,.20); top: -180px; left: -120px; }
.hero-glow-steel { width: 560px; height: 560px; background: rgba(100,116,139,.18); bottom: -200px; right: -100px; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(15,32,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,32,58,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hbadge {
  display: flex; flex-direction: column;
  padding: 14px 20px 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 120px;
  box-shadow: 0 12px 30px -22px rgba(15, 32, 58, 0.4);
}
.hbadge strong {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--blue-deep);
  line-height: 1;
}
.hbadge span { font-size: 0.82rem; color: var(--muted); letter-spacing: .02em; }

/* Hero showcase — featured aerial + two shots (full images, no crop) */
.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--card);
}
.showcase-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.showcase-card:hover img { transform: scale(1.04); }
/* Exact aerial ratio (889×504) so the whole facility shot shows, uncropped */
.card-lg { grid-column: 1 / -1; aspect-ratio: 889 / 504; }
.card-sm { aspect-ratio: 4 / 3; }

.showcase-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--blue-deep);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 100px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--blue);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(29,78,216,.06), rgba(100,116,139,.06));
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-track i { color: var(--blue); font-style: normal; font-size: .7rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   TRUSTED BY (client strip)
   ========================================================================== */
.section-trusted { padding: 72px 0 64px; overflow: hidden; }
.trusted-head { text-align: center; margin-bottom: 34px; }
.trusted-head .eyebrow { justify-content: center; margin-bottom: 12px; }
.trusted-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em;
  color: var(--ink);
}
.trusted-head p { color: var(--muted); margin-top: 8px; font-size: 1.02rem; }

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.client-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center;
  padding: 24px 14px;
  min-height: 104px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -26px rgba(15, 32, 58, 0.4);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.client-chip:hover { transform: translateY(-4px); border-color: rgba(29,78,216,.4); box-shadow: var(--shadow); }
.client-chip strong {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.16rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  color: var(--ink); line-height: 1.02;
}
.client-chip span { font-size: .74rem; color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 100px 0; position: relative; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), transparent 22%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800; line-height: 1.02; text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Shop reel video ---------- */
.video-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  background: #0b1220;
  aspect-ratio: 16 / 9;
}
.shop-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-sound {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 18, 32, .55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.video-sound:hover { border-color: var(--blue); color: var(--sky); transform: translateY(-2px); }
.video-sound svg { width: 22px; height: 22px; }
.video-sound .icon-sound { display: none; }
.video-sound.on .icon-muted { display: none; }
.video-sound.on .icon-sound { display: block; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  grid-column: span 1;
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px -26px rgba(15, 32, 58, 0.4);
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px 200px at 50% -20%, rgba(29,78,216,.12), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(29,78,216,.4); box-shadow: var(--shadow); }
.service-card:hover::after { opacity: 1; }

.svc-icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(29,78,216,.16), rgba(96,165,250,.14));
  border: 1px solid var(--line-strong);
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .01em; color: var(--ink); }
.service-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Split / industries ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card {
  padding: 40px 38px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px -28px rgba(15, 32, 58, 0.4);
  transition: transform .35s var(--ease), border-color .35s;
}
.split-card:hover { transform: translateY(-4px); }
.split-card:nth-child(1):hover { border-color: rgba(30,58,138,.45); }
.split-card:nth-child(2):hover { border-color: rgba(29,78,216,.45); }
.split-badge {
  display: inline-block;
  font-family: "Saira Condensed", sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 20px;
}
.split-badge-ink { color: var(--graphite); background: rgba(30,41,59,.09); border: 1px solid rgba(30,41,59,.26); }
.split-badge-blue { color: var(--blue-deep); background: rgba(29,78,216,.12); border: 1px solid rgba(29,78,216,.3); }
.split-card h3 { font-size: 1.9rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; line-height: 1.02; color: var(--ink); }
.split-card > p { color: var(--muted); margin-bottom: 22px; }

.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px rgba(29,78,216,.5);
}
.split-card:nth-child(1) .feature-list li::before { background: var(--steel); box-shadow: 0 0 10px rgba(100,116,139,.4); }

/* ==========================================================================
   FACILITY BAND
   ========================================================================== */
.facility {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--graphite-2);
}
.facility-media { position: relative; }
.facility-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 360px; }
.facility-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,46,.30), rgba(14,26,46,.78));
}
.facility-inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 0;
}
.facility-copy { max-width: 620px; }
.facility-copy .eyebrow { color: var(--sky); margin-bottom: 16px; }
.facility-copy .eyebrow .dot { background: var(--sky); box-shadow: 0 0 12px rgba(96,165,250,.6); }
.facility-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.02; letter-spacing: -0.005em;
  color: #fff; margin-bottom: 14px;
}
.facility-copy p { color: rgba(255,255,255,.82); font-size: 1.08rem; margin-bottom: 30px; }
.facility-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 780px;
}
.fstat {
  padding: 20px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.fstat strong {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.9rem; font-weight: 800; line-height: 1; color: #fff; margin-bottom: 5px;
}
.fstat span { font-size: .84rem; color: rgba(255,255,255,.72); letter-spacing: .02em; }

/* ---------- Gallery ---------- */
/* Masonry columns so full (uncropped) images of different shapes pack neatly */
.gallery-grid {
  columns: 3;
  column-gap: 18px;
  margin-bottom: 44px;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  box-shadow: 0 14px 34px -26px rgba(15, 32, 58, 0.4);
}
.gallery-item img {
  width: 100%; height: auto; display: block;   /* whole image, natural aspect ratio */
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 15px;
  background: linear-gradient(180deg, transparent, rgba(10,18,32,.9));
  transform: translateY(6px); opacity: .95;
  transition: transform .35s var(--ease), opacity .35s;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item figcaption span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(29,78,216,0);
  transition: box-shadow .35s;
}
.gallery-item:hover::before { box-shadow: inset 0 0 0 2px rgba(29,78,216,.6); }

.work-cta { text-align: center; }
.work-cta p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.work-cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  padding: 30px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 14px 34px -28px rgba(15, 32, 58, 0.4);
  transition: transform .35s var(--ease), border-color .35s;
}
.process-step:hover { transform: translateY(-5px); border-color: rgba(29,78,216,.4); }
.step-num {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.28rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--ink); }
.process-step p { color: var(--muted); font-size: .92rem; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 30px 26px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px -30px rgba(15, 32, 58, 0.42);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(29,78,216,.4); box-shadow: var(--shadow); }
.team-photo {
  width: 132px; height: 132px; margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(29,78,216,.3), 0 14px 30px -14px rgba(15,32,58,.5);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card h3 { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; color: var(--ink); line-height: 1.05; }
.team-role {
  display: inline-block; margin-top: 8px;
  font-family: "Saira Condensed", sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.26);
  padding: 6px 14px; border-radius: 100px;
}

/* ==========================================================================
   GOVERNMENT CONTRACTING / NAICS
   ========================================================================== */
.naics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.naics-chip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px -28px rgba(15, 32, 58, 0.4);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.naics-chip:hover { transform: translateY(-4px); border-color: rgba(29,78,216,.4); box-shadow: var(--shadow); }
.naics-chip.is-primary {
  border-color: rgba(29,78,216,.35);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(29,78,216,.08), transparent 60%),
    var(--card);
}
.naics-code {
  flex-shrink: 0;
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.42rem; font-weight: 800; letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 22px -12px rgba(29,78,216,.6);
}
.naics-body { display: flex; flex-direction: column; gap: 6px; }
.naics-tag {
  align-self: flex-start;
  font-family: "Saira Condensed", sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.26);
  padding: 3px 10px; border-radius: 100px;
}
.naics-title { font-size: .96rem; line-height: 1.4; color: var(--text); font-weight: 500; }

.gov-facts {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.gfact {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -26px rgba(15, 32, 58, 0.4);
}
.gfact-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2);
}
.gfact-value {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.06rem; font-weight: 700; color: var(--ink);
}
.gov-facts .btn { margin-left: 4px; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.about-media { position: relative; }
.about-media > img {
  width: 100%; height: auto; display: block;   /* whole image, no crop */
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.about-media-badge {
  position: absolute; right: -14px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 14px 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-media-badge img { width: 58px; height: auto; }
.about-media-badge strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.about-media-badge span { font-size: .82rem; color: var(--muted); }

.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 18px; color: var(--ink); }
.about-copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 16px; }
.about-copy em { color: var(--ink); font-style: italic; font-weight: 600; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 26px; }
.apoint { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.apoint svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }

/* ---------- CTA band (bold blue focal) ---------- */
.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 14px; color: #fff; }
.cta-inner p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* On the blue band, invert the buttons for contrast */
.cta-band .btn-primary { background: #fff; color: var(--blue-deep); box-shadow: 0 18px 44px -18px rgba(10,18,32,.4); }
.cta-band .btn-primary:hover { box-shadow: 0 26px 54px -18px rgba(10,18,32,.5); }
.cta-band .btn-ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 14px; color: var(--ink); }
.contact-lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 30px; max-width: 460px; }

.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(29,78,216,.16), rgba(96,165,250,.12));
  border: 1px solid var(--line-strong);
  color: var(--blue-deep);
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.08rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 2px; color: var(--ink); }
.contact-list a, .ci-plain { color: var(--muted); transition: color .2s; }
.contact-list .ci-plain { display: block; }
.contact-list a:hover { color: var(--blue-deep); }

.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all .25s var(--ease);
}
.contact-socials a:hover { color: var(--blue-deep); border-color: var(--blue); transform: translateY(-3px); }

/* Location map */
.map-wrap {
  position: relative;
  margin-top: 34px;
  height: clamp(300px, 42vw, 440px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-directions {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  box-shadow: 0 10px 26px -8px rgba(10,18,32,.4);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(29,78,216,.08), transparent 58%),
    var(--card);
  border: 1px solid rgba(29,78,216,.28);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow), 0 26px 60px -30px rgba(29,78,216,.32);
  overflow: hidden;
}
/* Brand accent bar across the top of the form */
.contact-form-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 22px; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field-opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: .7; }
.field input, .field select, .field textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231D4ED8' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.18);
  background: #fff;
}
.form-note { font-size: .84rem; color: var(--muted-2); text-align: center; margin-top: 14px; }
.form-note a { color: var(--blue-deep); font-weight: 600; }
.form-note.success { color: var(--blue-deep); font-weight: 600; }

/* ==========================================================================
   FOOTER  (deep navy for contrast — echoes the logo)
   ========================================================================== */
.site-footer { background: var(--panel-2); color: rgba(255,255,255,.78); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-mark { width: 120px; height: auto; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .96rem; max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); transition: all .25s var(--ease);
}
.footer-socials a:hover { color: var(--sky); border-color: var(--blue); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 1.02rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,.62); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-col .ci-plain { display: block; color: rgba(255,255,255,.62); font-size: .95rem; padding: 5px 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { color: rgba(255,255,255,.45); font-size: .88rem; }

/* ==========================================================================
   MOBILE FLOATING CALL BUTTON (shown on mobile only)
   ========================================================================== */
.call-fab { display: none; }
@keyframes fabPulse {
  0%   { box-shadow: 0 12px 26px -8px rgba(29,78,216,.7), 0 0 0 0 rgba(29,78,216,.5); }
  70%  { box-shadow: 0 12px 26px -8px rgba(29,78,216,.7), 0 0 0 16px rgba(29,78,216,0); }
  100% { box-shadow: 0 12px 26px -8px rgba(29,78,216,.7), 0 0 0 0 rgba(29,78,216,0); }
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-cue span, .call-fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .site-header .brand-mark { width: 122px; }

  /* Collapse to the hamburger menu on tablet — 7 nav items + phone + button
     won't fit alongside the logo below this width. */
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(245,247,250,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -24px rgba(15,32,58,.5);
    padding: 12px 24px 24px;
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
  }
  .nav.open { display: flex; transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; white-space: normal; }
  .nav a::after { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 2; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-stats { grid-template-columns: repeat(2, 1fr); max-width: 460px; }
  .naics-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { max-width: 520px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  /* Oversized emblem overhangs below the bar, matching the desktop look */
  .site-header .brand-mark { width: 140px; }

  .section { padding: 72px 0; }
  .hero { padding: 120px 0 50px; min-height: auto; }

  .scroll-cue { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }

  .call-fab {
    display: grid;
    place-items: center;
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 95;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    animation: fabPulse 2.4s ease-out infinite;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s var(--ease);
  }
  .call-fab:active { transform: scale(.93); }

  .hero-showcase { max-width: none; gap: 12px; margin-top: 4px; }

  .split-grid { grid-template-columns: 1fr; }
  .split-card { padding: 30px 24px; }
  .naics-grid { grid-template-columns: 1fr; }
  .gov-facts .btn { margin-left: 0; }
  .facility-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 22px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .site-header .brand-mark { width: 130px; }
  .services-grid { grid-template-columns: 1fr; }
  .trusted-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { gap: 10px; }
  .hbadge { min-width: 0; flex: 1; padding: 12px 14px; }
  .btn { padding: 13px 22px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .about-media-badge { right: 8px; left: 8px; }
}
