/* â”€â”€ RESET & ROOT â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #0e1f4a;
  --navy-mid:    #152258;
  --navy-light:  #1a2f6e;
  --blue:        #2060d8;
  --blue-bright: #2979ff;
  --blue-light:  #4a90e8;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --light-gray:  #dde4f0;
  --gray:        #4d5870;
  --gray-muted:  #5f6b82;
  --gold:        #f5a623;
  --nav-height:  112px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
input, textarea, select { max-width: 100%; }

/* Quote forms: anti-spam honeypot + server error banner */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 220, 160, 0.28);
  border: 1px solid rgba(180, 120, 40, 0.5);
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* â”€â”€ TYPOGRAPHY â”€â”€ */
h1,h2,h3,h4 { line-height: 1; }
p { line-height: 1.7; }

/* â”€â”€ NAV â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-height);
  border-bottom: 3px solid var(--blue-bright);
}
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; min-width: 0; }
.nav-logo:hover .nav-logo-name { color: var(--blue-light); }
.nav-logo-img {
  width: 96px;
  height: 96px;
  min-width: 96px;
  max-width: 96px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text { min-width: 0; }
.nav-logo-name { font-weight: 600; font-size: clamp(1rem, 2.8vw, 1.35rem); color: white; display: block; line-height: 1.2; transition: color 0.2s; text-transform: uppercase; }
.nav-logo-sub  { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light); display: block; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 0 1rem; line-height: var(--nav-height);
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap; transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--blue-light); }
.nav-cta { background: var(--blue-bright) !important; color: white !important; border-radius: 8px; margin-left: 0.65rem; line-height: 50px !important; padding: 0 26px !important; font-size: 0.95rem !important; }
.nav-cta:hover { background: var(--blue-light) !important; }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-light); min-width: 200px;
  border-top: 2px solid var(--blue-bright);
  border-radius: 0 0 6px 6px; list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.has-drop:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 12px 18px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.88rem; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: rgba(255,255,255,0.06); color: white; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 5%; z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { line-height: 2.5; padding: 0; width: 100%; }
  .dropdown { display: block; position: static; border-top: none; box-shadow: none; background: transparent; min-width: auto; }
  .dropdown li a { padding: 4px 12px; }
  .nav-cta { line-height: 2.2 !important; margin-left: 0 !important; display: inline-block !important; margin-top: 0.5rem; }
  .nav-logo-img { width: 76px; min-width: 76px; height: 76px; max-width: 76px; }
}

/* â”€â”€ PAGE HEADER (inner pages) â”€â”€ */
.page-header {
  margin-top: var(--nav-height); background: var(--navy);
  padding: 5rem 5% 4rem; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(41,121,255,0.07) 1px,transparent 1px), linear-gradient(90deg,rgba(41,121,255,0.07) 1px,transparent 1px);
  background-size: 50px 50px;
}
.page-header-inner { position: relative; z-index: 1; }
.page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.6rem; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem,6vw,5rem); color: white; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 1.05rem; font-weight: 300; max-width: 560px; line-height: 1.7; }

/* â”€â”€ SECTION UTILITIES â”€â”€ */
.section { padding: 5rem 5%; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 0.6rem; }
.eyebrow-light { color: var(--blue-light); }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,4.5vw,3.5rem); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 0.9rem; color: var(--navy); }
.sec-title-light { color: white; }
.sec-sub { font-size: 1rem; color: var(--gray); font-weight: 400; line-height: 1.7; max-width: 560px; margin-bottom: 3rem; }
.sec-sub-light { color: rgba(255,255,255,0.72); }

/* â”€â”€ BUTTONS â”€â”€ */
.btn { display: inline-block; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 30px; border-radius: 4px; transition: background 0.2s, transform 0.15s, border-color 0.2s; }
.btn-blue { background: var(--blue-bright); color: white; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.28); }
.btn-outline-white:hover { border-color: var(--blue-bright); color: var(--blue-light); }
.btn-white { background: white; color: var(--blue-bright); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* â”€â”€ TRUST BAR â”€â”€ */
.trust-bar { background: var(--blue-bright); padding: 0.85rem 5%; display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: white; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap; }
.trust-sep { color: rgba(255,255,255,0.3); }

/* â”€â”€ CARDS â”€â”€ */
.card-grid { display: grid; gap: 1px; background: var(--light-gray); border-radius: 8px; overflow: hidden; border: 1px solid var(--light-gray); }

/* Blog index: spaced cards instead of 1px hairline gutters (avoids grey “shimmer” while scrolling) */
.blog-list .card-grid {
  gap: 1.25rem;
  background: transparent;
  border: none;
  overflow: visible;
  border-radius: 0;
}
.blog-list .card {
  border: 1.5px solid rgba(41, 121, 255, 0.4);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
html.js-reveal .blog-list .card {
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: var(--sr-delay, 0ms);
}
html.js-reveal .blog-list .card:not(.in) {
  opacity: 0;
  transform: translateY(1.25rem);
}
html.js-reveal .blog-list .card.in {
  opacity: 1;
  transform: translateY(0);
}
.blog-list .card:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 6px 20px rgba(41, 121, 255, 0.14);
}

/* Keep excerpt to a few lines so cards don’t stretch tall (overrides inline flex:1 on blog cards) */
.blog-list .card > p {
  flex: 0 1 auto !important;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .blog-list .card:not(.in) {
    opacity: 1;
    transform: none;
  }
  html.js-reveal .blog-list .card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}

.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }

.card { background: white; padding: 2.25rem; position: relative; transition: background 0.2s; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: var(--blue-bright); transition: height 0.25s; }
.card:hover { background: #fafcff; }
.card:hover::before { height: 3px; }
.card-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon svg { width: 22px; height: 22px; fill: var(--blue-bright); }
.card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem; }
.card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; font-weight: 400; }

/* Blog index: full-bleed thumbnails (override global img max-width) */
.blog-list .card > img:first-child {
  width: calc(100% + 4.5rem);
  max-width: none;
  height: 180px;
  margin: -2.25rem -2.25rem 1.5rem;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  border-bottom: 1px solid var(--light-gray);
  transform: none !important;
  backface-visibility: hidden;
}
.blog-list .card > div:first-child {
  width: calc(100% + 4.5rem);
  max-width: none;
  height: 180px;
  margin: -2.25rem -2.25rem 1.5rem;
  box-sizing: border-box;
  border-radius: 0;
  border-bottom: 1px solid var(--light-gray);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-list .card > div:first-child svg { flex-shrink: 0; }

/* Material badges */
.material-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(41,121,255,0.1); border: 1px solid rgba(41,121,255,0.3); color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 1rem; }

/* â”€â”€ FEAT LIST (check items) â”€â”€ */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.feat { display: flex; align-items: flex-start; gap: 12px; }
.feat-dot { width: 22px; height: 22px; background: var(--blue-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-dot svg { width: 10px; height: 10px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; }
.feat p, .feat span { color: rgba(255,255,255,0.88); font-size: 0.93rem; line-height: 1.5; }
.feat strong { color: white; font-weight: 600; }
.feat-dark p, .feat-dark span { color: var(--navy); }
.feat-dark strong { color: var(--navy-light); }

/* â”€â”€ FAQ â”€â”€ */
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); gap: 1rem; }
.faq-q .faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--blue-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-bright); font-size: 1.1rem; transition: transform 0.25s, background 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-bright); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 1.25rem; color: var(--gray); font-size: 0.93rem; line-height: 1.75; font-weight: 400; }

/* â”€â”€ PROCESS STEPS â”€â”€ */
.p-steps { display: flex; flex-direction: column; }
.p-step { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--light-gray); }
.p-step:last-child { border-bottom: none; }
.p-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--light-gray); line-height: 1; min-width: 50px; transition: color 0.2s; }
.p-step:hover .p-num { color: var(--blue-bright); }
.p-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.3rem; }
.p-body p { font-size: 0.87rem; color: var(--gray); font-weight: 400; line-height: 1.55; }

/* â”€â”€ REVIEWS â”€â”€ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.rev-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(41,121,255,0.18); border-radius: 8px; padding: 2rem; transition: border-color 0.2s, background 0.2s; }
.rev-card:hover { border-color: rgba(41,121,255,0.45); background: rgba(255,255,255,0.08); }
.stars { color: #ffc107; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.85rem; }
.rev-card blockquote { font-size: 0.91rem; color: rgba(255,255,255,0.82); font-weight: 300; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-bright); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700; color: white; flex-shrink: 0; }
.rev-name { font-size: 0.85rem; font-weight: 600; color: white; }
.rev-loc  { font-size: 0.74rem; color: rgba(255,255,255,0.58); }

/* â”€â”€ CTA BAND â”€â”€ */
.cta-band { background: var(--blue-bright); padding: 5rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.06) 1px,transparent 1px); background-size: 42px 42px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,5.5vw,4rem); color: white; letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1rem; font-weight: 300; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-phone { display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,5vw,3rem); color: white; text-decoration: none; letter-spacing: 0.06em; margin-bottom: 1.5rem; transition: opacity 0.2s; }
.cta-phone:hover { opacity: 0.85; }

/* â”€â”€ SERVICE AREAS â”€â”€ */
.areas { background: var(--off-white); padding: 3rem 5%; text-align: center; border-top: 1px solid var(--light-gray); }
.areas-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-muted); margin-bottom: 1rem; }
.areas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.area-chip { font-size: 0.84rem; color: var(--navy); background: white; border: 1px solid var(--light-gray); padding: 5px 14px; border-radius: 100px; }

/* â”€â”€ FOOTER â”€â”€ */
footer { background: var(--navy); padding: 2.75rem 5%; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; border-top: 3px solid var(--blue-bright); }
.footer-brand .footer-name { font-weight: 600; font-size: 1.05rem; color: white; display: block; text-transform: uppercase; }
.footer-brand .footer-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); }
.footer-brand .footer-tag { font-size: 0.78rem; color: rgba(255,255,255,0.52); margin-top: 6px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-info { font-size: 0.82rem; line-height: 1.85; color: rgba(255,255,255,0.72); }
.footer-info a { color: rgba(255,255,255,0.88); text-decoration: none; }
.footer-info a:hover { color: var(--blue-light); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* â”€â”€ SPLIT LAYOUT â”€â”€ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-dark { background: var(--navy-light); }
.split-light { background: var(--off-white); }
.split > div { padding: 5rem 5%; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* â”€â”€ ANIMATIONS â”€â”€ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
/* opacity:0 until .in — page scripts use IntersectionObserver with threshold:0 so very tall .reveal blocks (blog card grid) still activate when only a slice is visible (8% of a huge element was often never reached on phones). */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 600px) {
  footer { flex-direction: column; }
  .footer-col { width: 100%; }
}

/* â”€â”€ HERO (home) â”€â”€ */
.hero {
  margin-top: var(--nav-height);
  min-height: 90vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 18, 48, 0.82) 0%, rgba(7, 18, 48, 0.66) 42%, rgba(7, 18, 48, 0.86) 100%);
}
.hero-slide {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.hero-slide.is-prime {
  opacity: 1;
  transform: scale(1.06);
}
.hero-slide.is-active {
  opacity: 1;
  animation: heroSlideZoom 7s ease forwards;
}
@keyframes heroSlideZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41,121,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(41,121,255,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: min(620px, 90vw);
  height: min(620px, 90vw);
  background: radial-gradient(circle, rgba(41,121,255,0.2) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: 5%;
  max-width: 640px;
  animation: fadeUp 0.7s ease both;
  min-width: 0;
}
.hero-stats {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border-left: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.025);
}
.hero-stat {
  width: 100%;
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.hero-stat:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero-inner {
    max-width: none;
    padding: 2.25rem 5% 1.5rem;
  }
  .hero-stats {
    position: relative;
    width: 100%;
    max-width: none;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat {
    flex: 1 1 50%;
    min-width: 140px;
    padding: 1.35rem 1rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .hero-stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .hero-stat { flex-basis: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-stat:last-child { border-bottom: none; }
}

/* â”€â”€ RESPONSIVE GRIDS (use with inline grids that need stacking) â”€â”€ */
@media (max-width: 900px) {
  .u-grid-stack {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .u-sticky-off { position: static !important; top: auto !important; }
  .section { padding: 3.25rem 5%; }
  .page-header { padding: 3.25rem 5% 2.75rem; }
  .cta-band { padding: 3.5rem 5%; }
  .trust-bar { gap: 0.65rem 1rem; justify-content: flex-start; padding-left: 5%; padding-right: 5%; }
  .trust-sep { display: none; }
}

@media (max-width: 500px) {
  .form-name-row {
    grid-template-columns: 1fr !important;
  }
  .nav-logo-name { font-size: 0.88rem; }
  .nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* Work gallery: avoid horizontal overflow on narrow phones */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}
.work-gallery-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  aspect-ratio: 3 / 2;
  background: var(--navy);
  cursor: pointer;
}
.work-gallery-photo:focus {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}
.work-gallery-photo:focus:not(:focus-visible) {
  outline: none;
}
.work-gallery-photo:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}
.work-gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Project gallery lightbox (our-work) */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.25rem 1.25rem;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
  overscroll-behavior: contain;
}
.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.project-lightbox img {
  max-width: min(100%, 94vw);
  max-height: min(86vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}
.project-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.project-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.work-gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 2rem 1rem;
  border: 1px dashed var(--light-gray);
  border-radius: 8px;
  background: var(--off-white);
}

/* Facebook feed embed (our-work) */
.social-embed-wrap {
  margin-top: 2.5rem;
  border: 1px solid rgba(41, 121, 255, 0.22);
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.social-embed-wrap iframe {
  width: min(500px, 100%);
  min-height: 620px;
  border: 0;
  border-radius: 8px;
}

.social-post-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.social-post-card {
  border: 1px solid rgba(41, 121, 255, 0.22);
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem;
}
.social-post-card iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 8px;
  display: block;
}
@media (max-width: 1100px) {
  .social-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .social-post-grid { grid-template-columns: 1fr; }
  .social-post-card iframe { min-height: 560px; }
}
.social-post-note {
  margin-top: 1rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
}
.social-post-note a {
  color: var(--blue-bright);
  font-weight: 600;
  text-decoration: none;
}

