:root {
  --navy: #06345d;
  --navy-deep: #052c50;
  --navy-ink: #071f3a;
  --green: #00aa45;
  --green-dark: #008f38;
  --green-soft: #e7fbef;
  --soft: #f2f8fc;
  --soft-2: #eaf4fa;
  --line: #dbe8f0;
  --text: #0b2440;
  --muted: #66798c;
  --white: #fff;
  --shadow: 0 18px 50px rgba(11, 36, 64, .09);
  --radius: 18px;
  --container: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.58; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
main { overflow: hidden; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.section { padding: 92px 0; }
.section-compact { padding: 72px 0; }
.section-soft { background: var(--soft); }
.centered-content { text-align: center; max-width: 760px; }
.centered-content h1, .centered-content h2 { margin-left: auto; margin-right: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(42px, 5vw, 68px); margin-bottom: 22px; }
h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 18px; }
h3 { font-size: 18px; }
p { color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: #5ce48d; }
.section-title { max-width: 690px; margin-bottom: 40px; }
.section-title.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { margin-bottom: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: 14px; transition: .22s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 170, 69, .22); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { background: #fff; color: var(--navy-deep); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.06); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.text-link { color: var(--green); font-weight: 800; font-size: 13px; display: inline-flex; gap: 6px; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(219,232,240,.8); }
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 56px; height: 56px; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 54px; height: 54px; object-fit: contain; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav > a, .nav-dropdown > button { padding: 11px 0; color: #203a54; }
.main-nav > a.active, .main-nav > a:hover, .nav-dropdown > button.active, .nav-dropdown > button:hover { color: var(--green); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: flex; align-items: center; gap: 5px; background: none; border: 0; font-weight: 700; }
.dropdown-panel { position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(-8px); width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden; pointer-events: none; transition: .2s ease; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown.is-open .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-panel a { display: block; padding: 9px 11px; border-radius: 9px; color: #4d6276; font-size: 13px; }
.dropdown-panel a:hover { background: var(--soft); color: var(--green); }
.dropdown-overview { font-weight: 800; color: var(--navy) !important; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.phone-link svg { width: 17px; height: 17px; }
.phone-link { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 800; white-space: nowrap; }
.menu-toggle svg { width: 25px; height: 25px; }
.menu-toggle { display: none; background: none; border: 0; color: var(--navy); }

.home-hero { min-height: 555px; background-size: cover; background-position: center; display: flex; align-items: center; color: #fff; position: relative; overflow: hidden; background-color: #052641; }
.home-hero-video > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.home-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,38,65,.96) 0%, rgba(5,38,65,.84) 45%, rgba(5,38,65,.48) 100%); }
.home-hero .hero-content { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .home-hero-video > video { display: none; } .home-hero-video { background-image: linear-gradient(90deg,rgba(5,38,65,.96) 0%,rgba(5,38,65,.84) 45%,rgba(5,38,65,.48) 100%),url('/assets/images/home-hero-source.jpg'); background-size: cover; background-position: center; } }
.home-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 80px; background: linear-gradient(transparent, rgba(255,255,255,.97)); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding: 85px 0 110px; }
.hero-content > * { max-width: 650px; }
.hero-badge svg { width: 14px; height: 14px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(85,225,134,.35); color: #6ce397; background: rgba(0,170,69,.12); border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.hero-content h1 { max-width: 710px; color: #fff; font-size: clamp(48px, 6vw, 76px); }
.hero-content h1 span { display: block; color: #00d55a; }
.hero-content p { max-width: 610px; color: rgba(255,255,255,.82); font-size: 16px; }
.hero-actions { display: flex; gap: 12px; margin: 30px 0 24px; }
.hero-proof { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.hero-proof span { color: #56db87; letter-spacing: 2px; }
.hero-proof small { color: rgba(255,255,255,.65); }


.hero-proof-showcase { padding-top: 36px; }
.business-card-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; margin: 0 auto 26px; max-width: 980px; }
.business-card-pair img { width: 100%; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 16px 42px rgba(8,43,75,.12); background: #fff; }
.compare-grid-featured { margin-top: 8px; }
.about-side-panel { display: grid; gap: 18px; }
.about-side-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 10px 28px rgba(11,36,64,.06); }
.about-side-card strong { display: block; margin-bottom: 12px; font-size: 18px; color: var(--navy); }
.about-side-card ul { margin: 0; padding-left: 18px; color: #3d556d; display: grid; gap: 10px; font-size: 14px; }

.trust-strip { position: relative; z-index: 3; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; min-width: 0; }
.trust-item > svg { width: 32px; height: 32px; padding: 7px; border-radius: 50%; color: var(--green); background: var(--green-soft); flex: 0 0 auto; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: 12px; }
.trust-item span { color: var(--muted); font-size: 10px; }

.split-about { display: grid; grid-template-columns: 1fr .95fr; gap: 75px; align-items: center; }
.split-about p { max-width: 570px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 9px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: #3d556d; }
.check-list svg { color: var(--green); flex: 0 0 auto; margin-top: 2px; }
.check-list.compact { gap: 7px; }
.check-list.roomy { gap: 12px; }
.cards-showcase { display: grid; gap: 18px; justify-items: center; }
.cards-showcase img { width: min(100%, 390px); border-radius: 10px; box-shadow: 0 18px 42px rgba(8, 43, 75, .16); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgba(11,36,64,.045); transition: .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-image { display: block; height: 158px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-body { padding: 18px; position: relative; }
.service-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 10px; margin-bottom: 14px; }
.service-icon.large { width: 48px; height: 48px; border-radius: 14px; }
.service-body h3 { margin-bottom: 9px; }
.service-body p { min-height: 68px; font-size: 12px; margin-bottom: 13px; }

.home-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.home-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; }
.center-action { text-align: center; margin-top: 28px; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.compare-card { background: #fff; padding: 12px; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(11,36,64,.07); }
.compare-card h3 { text-align: center; font-size: 14px; letter-spacing: 0; margin: 2px 0 11px; }
.ba-slider { --position: 50%; position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 1.6/1; background: #dbe8f0; isolation: isolate; user-select: none; touch-action: pan-y; }
.ba-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 2; clip-path: inset(0 0 0 var(--position)); }
.ba-after-wrap .ba-image { width: 100%; height: 100%; max-width: none; }
.ba-label { position: absolute; top: 12px; z-index: 5; padding: 5px 10px; border-radius: 999px; color: #fff; font-size: 10px; line-height: 1; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.ba-label-before { left: 12px; background: rgba(7,31,58,.78); }
.ba-label-after { right: 12px; background: var(--green); }
.ba-divider { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgba(255,255,255,.95); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 0 1px rgba(7,31,58,.12); }
.ba-divider > span { position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; display: grid; place-items: center; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(11,36,64,.18); font-size: 17px; font-weight: 800; }
.ba-range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-slider:focus-within { outline: 3px solid rgba(0,170,69,.25); outline-offset: 3px; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; min-height: 186px; }
.process-card > span { width: 40px; height: 40px; display: grid; place-items: center; background: var(--navy); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 800; margin-bottom: 24px; }
.process-card h3 { font-size: 15px; margin-bottom: 9px; }
.process-card p { font-size: 12px; margin-bottom: 0; }
.why-section { border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-grid article { text-align: center; border: 1px solid var(--line); border-radius: 15px; padding: 26px 20px; }
.why-grid article > span, .value-grid article > span { width: 46px; height: 46px; display: grid; place-items: center; margin: 0 auto 17px; border-radius: 50%; color: var(--green); background: var(--green-soft); }
.why-grid h3 { margin-bottom: 8px; }
.why-grid p { font-size: 12px; margin-bottom: 0; }
.mid-cta { background: var(--navy); color: #fff; padding: 62px 0; }
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.mid-cta h2 { color: #fff; max-width: 720px; }
.mid-cta p { color: rgba(255,255,255,.72); max-width: 700px; margin-bottom: 0; }
.mid-cta .btn { flex: 0 0 auto; }
.google-heading { text-align: center; margin-bottom: -4px; }
.google-heading strong { font-size: 25px; color: #4b6ea9; }
.google-heading strong span { color: #4285f4; }
.stars { color: #00a940; letter-spacing: 2px; font-size: 13px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; min-height: 245px; }
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-head .avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; }
.review-head strong, .review-head small { display: block; }
.review-head small { color: var(--muted); font-size: 10px; }
.google-g { margin-left: auto; font-weight: 800; color: #4285f4; }
.review-card p { font-size: 12px; margin: 14px 0; }
.review-card > small { font-size: 9px; color: #8797a7; }
.local-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.map-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--soft); min-height: 330px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 330px; border: 0; }

.page-hero { padding: 80px 0; }
.page-hero-soft { background: var(--soft); }
.page-hero-centered { text-align: center; max-width: 840px; }
.page-hero-centered h1 { font-size: clamp(42px, 5vw, 64px); }
.page-hero-centered p { max-width: 720px; margin: 0 auto; font-size: 17px; }

.service-overview-grid { display: grid; gap: 34px; }
.service-overview-card { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 30px rgba(11,36,64,.05); }
.service-overview-card:nth-child(even) .service-overview-image { order: 2; }
.service-overview-image { position: relative; min-height: 390px; overflow: hidden; }
.service-overview-image img { width: 100%; height: 100%; object-fit: cover; }
.service-overview-image > span { position: absolute; left: 24px; top: 24px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(5,44,80,.88); color: #fff; font-weight: 800; }
.service-overview-body { padding: 48px; }
.service-overview-body h2 { font-size: 34px; }
.service-overview-body ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; margin: 22px 0 28px; }
.service-overview-body li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4c6278; }
.service-overview-body li svg { color: var(--green); width: 16px; }
.simple-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.simple-steps div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.simple-steps span { display: block; color: var(--green); font-weight: 800; font-size: 12px; margin-bottom: 20px; }
.simple-steps strong { display: block; font-size: 14px; }

.service-hero-detail { background: var(--soft); padding: 68px 0 72px; }
.service-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.service-hero-grid h1 { font-size: clamp(42px, 5vw, 66px); }
.service-hero-grid p { font-size: 17px; }
.service-hero-image { border-radius: 28px; overflow: hidden; min-height: 360px; box-shadow: 0 24px 55px rgba(11,36,64,.12); }
.service-hero-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.two-col-details { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.two-col-details h2 { font-size: 28px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills span { border: 1px solid var(--line); background: var(--soft); border-radius: 999px; padding: 9px 14px; color: #4b6075; font-size: 13px; font-weight: 700; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 20px; border: 0; background: #fff; color: var(--text); font-weight: 800; text-align: left; }
.faq-item button svg { transition: .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 20px; font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 18px; }
.faq-item.open button svg { transform: rotate(180deg); color: var(--green); }

.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 40px; }
.filter-row button { border: 1px solid var(--line); background: var(--soft); color: #52677b; padding: 8px 15px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.filter-row button.active { background: var(--green); color: #fff; border-color: var(--green); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.project-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(11,36,64,.045); }
.project-card img { width: 100%; aspect-ratio: 1.52/1; object-fit: cover; }
.project-card > div { padding: 18px; }
.project-card span { display: inline-flex; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; padding: 4px 8px; font-size: 10px; font-weight: 800; margin-bottom: 9px; }
.project-card h2 { font-size: 16px; letter-spacing: -.02em; margin-bottom: 8px; }
.project-card p { font-size: 12px; margin: 0; }
.project-cta h2 { font-size: 34px; }

.about-hero { padding: 78px 0; }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-hero-grid h1 { font-size: clamp(46px, 5.5vw, 72px); }
.about-cards-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: end; }
.about-cards-wrap > div { text-align: center; }
.about-cards-wrap span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .16em; margin-bottom: 8px; }
.about-cards-wrap img { border-radius: 10px; box-shadow: 0 18px 40px rgba(11,36,64,.14); }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value-grid article { background: var(--soft); border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; }
.value-grid article > span { margin-left: 0; }
.value-grid h2 { font-size: 17px; margin-bottom: 9px; }
.value-grid p { font-size: 12px; margin: 0; }
.stats-band { background: var(--navy); color: #fff; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid article { text-align: center; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; padding: 25px 14px; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { font-size: 27px; }
.stats-grid span { color: rgba(255,255,255,.65); font-size: 11px; margin-top: 8px; }
.about-final-cta { padding-top: 78px; padding-bottom: 78px; }

.contact-intro { padding-bottom: 68px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; align-items: start; }
.contact-form { background: var(--soft); border: 1px solid var(--line); border-radius: 24px; padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { font-weight: 800; font-size: 12px; color: #324b63; }
.form-grid label.full { grid-column: 1/-1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; margin-top: 8px; border: 1px solid #d7e4ec; border-radius: 12px; background: #fff; padding: 13px 14px; color: var(--text); outline: none; font-weight: 500; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,170,69,.1); }
.form-grid textarea { resize: vertical; }
.form-submit { width: 100%; margin-top: 20px; border: 0; }
.hp-field { position: absolute !important; opacity: 0; pointer-events: none; height: 0; width: 0; }
.form-status { margin-top: 16px; padding: 14px; border-radius: 12px; font-size: 13px; }
.form-status.success { background: var(--green-soft); color: #087934; }
.form-status.fallback { background: #fff7df; color: #6d5800; }
.form-status .btn { margin-top: 12px; }
.contact-card { background: var(--navy); color: #fff; border-radius: 22px; padding: 28px; }
.contact-card h2 { font-size: 20px; color: #fff; }
.contact-card > p, .contact-card > a { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.86); font-size: 13px; margin-bottom: 16px; }
.contact-card svg { color: #2ad86c; width: 17px; flex: 0 0 auto; }
.hours-list { display: flex; gap: 11px; margin: 18px 0; }
.hours-list > div { flex: 1; }
.hours-list span { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; color: rgba(255,255,255,.8); }
.hours-list strong { color: #fff; }
.area-box { border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; }
.area-box small { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; }
.area-box p { color: rgba(255,255,255,.9); font-size: 12px; margin: 4px 0 0; }
.contact-map { min-height: 220px; margin-top: 16px; box-shadow: none; }
.contact-map iframe { min-height: 220px; }
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 26px; margin-top: 36px; }
.not-found { min-height: 55vh; display: grid; place-items: center; }

.footer-cta { background: var(--navy-deep); color: #fff; padding: 58px 0; position: relative; overflow: hidden; }
.footer-cta::before, .footer-cta::after { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: rgba(0,170,69,.08); }
.footer-cta::before { left: -80px; bottom: -80px; }
.footer-cta::after { right: -80px; top: -80px; }
.footer-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-cta h2 { color: #fff; max-width: 680px; margin-bottom: 10px; }
.footer-cta p { color: rgba(255,255,255,.68); max-width: 700px; margin-bottom: 0; }
.footer-main { background: var(--navy); color: #fff; padding: 66px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1fr; gap: 45px; }
.footer-grid h3 { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-grid > div > a { display: block; color: rgba(255,255,255,.68); font-size: 12px; margin-bottom: 9px; }
.footer-grid > div > a:hover { color: #fff; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; background: #fff; border-radius: 4px; margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,.68); font-size: 12px; max-width: 270px; }
.social-row { display: flex; gap: 8px; }
.social-row span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); font-size: 11px; }
.footer-contact p, .footer-contact a { display: flex !important; align-items: flex-start; gap: 9px; }
.footer-contact svg { width: 15px; color: #23d96b; flex: 0 0 auto; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 45px; padding-top: 20px; color: rgba(255,255,255,.5); font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }

@media (max-width: 1080px) {
  .header-actions .phone-link { display: none; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card:nth-child(4), .process-card:nth-child(5) { grid-column: span 1; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .menu-toggle svg { width: 25px; height: 25px; }
.menu-toggle { display: block; }
  .main-nav { position: fixed; left: 0; right: 0; top: 74px; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 20px 24px; display: grid; gap: 5px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a, .nav-dropdown > button { width: 100%; padding: 11px; border-radius: 8px; text-align: left; }
  .nav-dropdown > button { justify-content: space-between; }
  .dropdown-panel { position: static; width: 100%; transform: none !important; box-shadow: none; border: 0; padding: 0 10px; max-height: 0; overflow: hidden; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-dropdown.is-open .dropdown-panel { max-height: 600px; padding-top: 5px; }
  .home-hero { min-height: 620px; background-position: 62% center; }
  .hero-content { padding-top: 75px; }
  .split-about, .service-hero-grid, .about-hero-grid, .local-grid, .contact-grid, .service-overview-card, .business-card-pair { grid-template-columns: 1fr; }
  .service-overview-card:nth-child(even) .service-overview-image { order: 0; }
  .cards-showcase { margin-top: 18px; }
  .two-col-details { gap: 45px; }
  .projects-grid, .compare-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-inner, .mid-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-cta-inner .btn, .mid-cta-inner .btn { flex: initial; }
  .about-cards-wrap { max-width: 600px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 40px; }
  .home-hero { min-height: 650px; }
  .hero-content h1 { font-size: 46px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
  .trust-grid, .services-grid, .home-gallery, .process-grid, .why-grid, .reviews-grid, .projects-grid, .compare-grid, .value-grid, .stats-grid, .footer-grid, .simple-steps { grid-template-columns: 1fr; }
  .trust-grid { gap: 12px; }
  .trust-item { padding: 6px 0; }
  .two-col-details { grid-template-columns: 1fr; }
  .service-overview-body { padding: 28px 22px; }
  .service-overview-body ul { grid-template-columns: 1fr; }
  .service-overview-image { min-height: 250px; }
  .service-hero-image, .service-hero-image img { min-height: 280px; }
  .about-cards-wrap { grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .contact-form { padding: 20px; border-radius: 18px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .phone-link { display: none; }
  .page-hero { padding: 58px 0; }
}

/* Production hardening: accessibility, form feedback and stable interactions. */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(0,170,69,.38); outline-offset: 3px; }
button:disabled { cursor: wait; opacity: .72; transform: none !important; }
[hidden] { display: none !important; }

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.55;
}
.privacy-consent input {
  width: 17px !important;
  height: 17px;
  margin: 1px 0 0 !important;
  flex: 0 0 auto;
  accent-color: var(--green);
}
.privacy-consent a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-status.error { background: #fff0f0; color: #9f2424; border: 1px solid #ffd1d1; }
.form-status.success { border: 1px solid #bceecf; }
.form-status:empty { display: none; }

.project-card[hidden] { display: none; }
.project-card { transition: transform .22s ease, box-shadow .22s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

@media (max-width: 860px) {
  body.nav-open { overflow: hidden; }
  .main-nav { max-height: calc(100vh - 74px); overflow-y: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Cartes B.A.M placées immédiatement après le hero */
.business-card-intro {
  position: relative;
  z-index: 3;
  padding: 58px 0 66px;
  background: linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
  border-bottom: 1px solid var(--line);
}
.business-card-heading { margin-bottom: 30px; }
.business-card-heading p { max-width: 620px; margin-inline: auto; }
.business-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.business-card-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(7, 31, 58, .08);
  box-shadow: 0 20px 52px rgba(7, 31, 58, .14);
}
.business-card-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 906;
  object-fit: cover;
}
.about-summary { max-width: 900px; text-align: center; }
.about-summary-copy > p { max-width: 750px; margin-inline: auto; }
.about-summary .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}
.about-summary .btn { margin-top: 4px; }
.ba-slider { cursor: ew-resize; }
.ba-range:focus-visible { opacity: .001; outline: none; }

@media (max-width: 760px) {
  .business-card-intro { padding: 42px 0 48px; }
  .business-card-grid { grid-template-columns: 1fr; gap: 16px; }
  .business-card-grid figure { border-radius: 14px; }
  .about-summary .check-list { grid-template-columns: 1fr; }
}

/* Local SEO and expanded realization gallery */
.home-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service-area-note { font-weight: 700; color: var(--navy); background: var(--green-soft); border-left: 4px solid var(--green); padding: 12px 14px; border-radius: 10px; }
.footer-area-note { margin-top: 14px; color: rgba(255,255,255,.82); font-size: .9rem; }
@media (max-width: 760px) { .home-gallery { grid-template-columns: 1fr; } }


/* Matériel professionnel */
.equipment-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:center; }
.equipment-media { border-radius:24px; overflow:hidden; box-shadow:var(--shadow); background:#fff; }
.equipment-media img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.equipment-copy p { max-width:620px; }
.equipment-copy .check-list { margin:24px 0 28px; }
@media (max-width:900px){ .equipment-grid { grid-template-columns:1fr; gap:30px; } }
/* BAM image-only realizations gallery */
.projects-grid-images { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.project-card-image { padding: 0; background: transparent; border: 0; box-shadow: none; border-radius: 16px; overflow: hidden; cursor: zoom-in; }
.project-card-image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: inherit; transition: transform .3s ease, filter .3s ease; }
.project-card-image:hover { transform: none; box-shadow: none; }
.project-card-image:hover img { transform: scale(1.035); filter: saturate(1.03); }
@media (max-width: 980px) { .projects-grid-images { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .projects-grid-images { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.about-hero-single { max-width: 900px; }
.about-hero-single > div { max-width: 820px; }

/* Galerie plein écran : agrandissement et navigation entre les images */
.lightbox-enabled {
  cursor: zoom-in;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 18, 34, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: bamLightboxFade .18s ease-out;
}

.image-lightbox__dialog {
  position: relative;
  width: min(1180px, 100%);
  height: min(900px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
}

.image-lightbox__figure {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 12px;
}

.image-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 125px);
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  user-select: none;
  -webkit-user-drag: none;
}

.image-lightbox__caption {
  min-height: 24px;
  max-width: 900px;
  color: rgba(255, 255, 255, .88);
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
}

.image-lightbox__counter {
  display: inline-block;
  margin-left: 10px;
  color: rgba(255, 255, 255, .58);
  white-space: nowrap;
}

.image-lightbox__button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.image-lightbox__button:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .42);
  transform: scale(1.06);
}

.image-lightbox__button:focus-visible {
  outline: 3px solid rgba(87, 230, 142, .8);
  outline-offset: 3px;
}

.image-lightbox__button:disabled {
  visibility: hidden;
}

.image-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  font-size: 30px;
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes bamLightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 760px) {
  .image-lightbox { padding: 12px; }
  .image-lightbox__dialog {
    width: 100%;
    height: calc(100vh - 24px);
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }
  .image-lightbox__button {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .image-lightbox__close {
    top: 4px;
    right: 4px;
  }
  .image-lightbox__image {
    max-height: calc(100vh - 105px);
    border-radius: 10px;
  }
  .image-lightbox__caption {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox { animation: none; }
  .image-lightbox__button { transition: none; }
}

.ba-zoom-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 8;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(5, 44, 80, .82);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,.24);
  cursor: zoom-in;
}
.ba-zoom-button:hover { background: var(--green); }
.ba-zoom-button:focus-visible { outline: 3px solid rgba(0,170,69,.42); outline-offset: 2px; }

/* Equipment product gallery — 2026-08 */
.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f9fc 100%);
  overflow: visible;
}
.equipment-product {
  margin: 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 58, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 31, 58, .08);
}
.equipment-media.equipment-gallery .equipment-product img {
  width: 100%;
  height: 220px;
  aspect-ratio: auto;
  padding: 14px;
  object-fit: contain;
  background: #fff;
}
.equipment-product figcaption {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(7, 31, 58, .07);
}
.equipment-product figcaption strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}
.equipment-product figcaption span {
  color: #61758a;
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .equipment-media.equipment-gallery .equipment-product img { height: 190px; }
}
@media (max-width: 600px) {
  .equipment-gallery { grid-template-columns: 1fr; padding: 12px; }
  .equipment-media.equipment-gallery .equipment-product img { height: 230px; }
  .equipment-product figcaption { min-height: auto; }
}
/* End equipment product gallery */

.google-review-action{display:flex;justify-content:center;margin-top:30px}.google-review-action .btn{min-width:250px;box-shadow:0 12px 28px rgba(0,174,75,.22)}
