:root {
  --navy: #080d2b;
  --navy-2: #111a43;
  --red: #d71920;
  --red-dark: #ad1017;
  --gold: #f1b51c;
  --ink: #11162a;
  --muted: #5c6272;
  --paper: #ffffff;
  --mist: #f4f6f9;
  --line: #dfe3ea;
  --shadow: 0 22px 60px rgb(8 13 43 / 14%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --control: 48px;
  --focus: 0 0 0 3px rgb(241 181 28 / 50%);
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.62; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--focus); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-weight: 760; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.75rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { max-width: 70ch; }
.shell { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 124px) 0; }
.section--mist { background: var(--mist); }
.section--navy { color: #fff; background: var(--navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow { margin-bottom: 14px; color: var(--red); font-size: .76rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.section--navy .eyebrow { color: var(--gold); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 48px; align-items: end; margin-bottom: 46px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head p { margin-bottom: 6px; color: var(--muted); }
.section--navy .section-head p { color: #cbd0df; }
.skip-link { position: fixed; z-index: 3000; left: 12px; top: 12px; transform: translateY(-160%); padding: 10px 14px; border-radius: 8px; background: var(--gold); color: var(--navy); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-h); border-bottom: 1px solid rgb(255 255 255 / 10%); background: rgb(8 13 43 / 96%); box-shadow: 0 10px 30px rgb(0 0 0 / 10%); backdrop-filter: blur(15px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; width: 185px; padding: 5px 9px; border-radius: 9px; background: #fff; }
.brand img { width: 100%; height: 62px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; color: #fff; font-size: .9rem; font-weight: 680; }
.desktop-nav > a, .nav-group > button { padding: 12px 0; color: #fff; border: 0; background: transparent; }
.desktop-nav > a:hover, .nav-group > button:hover { color: var(--gold); }
.nav-group { position: relative; }
.nav-group > button { display: flex; align-items: center; gap: 7px; }
.nav-group > button svg { width: 14px; transition: transform .2s ease; }
.nav-group.is-open > button svg { transform: rotate(180deg); }
.nav-panel { position: absolute; top: calc(100% + 8px); left: -20px; width: 310px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
.nav-group.is-open .nav-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-panel a { display: block; padding: 12px 13px; border-radius: 10px; color: var(--ink); }
.nav-panel a:hover { color: var(--red); background: var(--mist); }
.header-call { color: #fff; white-space: nowrap; font-size: .82rem; font-weight: 750; }
.header-call small { display: block; color: #bcc3d8; font-size: .65rem; font-weight: 650; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgb(255 255 255 / 26%); border-radius: 50%; background: transparent; color: #fff; place-items: center; }
.menu-toggle svg { width: 22px; }
.mobile-menu { position: fixed; z-index: 950; inset: var(--header-h) 0 auto; max-height: calc(100dvh - var(--header-h)); overflow-y: auto; padding: 20px; border-top: 1px solid rgb(255 255 255 / 12%); background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.mobile-menu[hidden] { display: none; }
.mobile-menu > a, .mobile-menu summary { display: block; min-height: 48px; padding: 12px 4px; border-bottom: 1px solid rgb(255 255 255 / 12%); font-weight: 720; list-style: none; }
.mobile-menu summary { cursor: pointer; }
.mobile-menu details a { display: block; padding: 10px 12px 10px 24px; color: #d8dced; }
.mobile-menu .button { margin-top: 18px; border-bottom: 0; }

.button { min-height: var(--control); display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 2px solid transparent; border-radius: 999px; background: var(--red); color: #fff; font-size: .92rem; font-weight: 790; line-height: 1.1; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgb(173 16 23 / 24%); }
.button--gold { background: var(--gold); color: var(--navy); }
.button--gold:hover { background: #ffd05a; box-shadow: 0 12px 26px rgb(241 181 28 / 24%); }
.button--outline { border-color: rgb(255 255 255 / 55%); background: transparent; }
.button--outline:hover { background: #fff; color: var(--navy); }
.button svg, .text-link svg { width: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-weight: 780; }
.text-link:hover { color: var(--red-dark); }

.hero { position: relative; min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero > picture, .page-hero > picture { position: absolute; inset: 0; }
.hero > picture img, .page-hero > picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 9 31 / 93%) 0%, rgb(5 9 31 / 76%) 48%, rgb(5 9 31 / 46%) 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(350px, .72fr); gap: clamp(40px, 7vw, 90px); align-items: center; padding-block: 72px; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 760px; margin-bottom: 22px; color: #fff; }
.hero-copy > p { max-width: 650px; margin-bottom: 28px; color: #e5e7ef; font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; padding: 8px 12px; border: 1px solid rgb(255 255 255 / 22%); border-radius: 999px; background: rgb(8 13 43 / 55%); color: var(--gold); font-size: .76rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: #e2e5ef; font-size: .86rem; font-weight: 690; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 17px; color: var(--gold); }
.lead-card { padding: 28px; border: 1px solid rgb(255 255 255 / 20%); border-radius: var(--radius-lg); background: rgb(255 255 255 / 96%); color: var(--ink); box-shadow: var(--shadow); }
.lead-card h2 { margin-bottom: 7px; font-size: 1.7rem; }
.lead-card > p { margin-bottom: 20px; color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .77rem; font-weight: 780; }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #cfd4df; border-radius: var(--radius-sm); background: #fff; color: var(--ink); }
.field textarea { min-height: 76px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: none; box-shadow: var(--focus); }
.lead-card .button { width: 100%; margin-top: 15px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }

.trust-strip { background: var(--red); color: #fff; }
.trust-list { min-height: 84px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.trust-list span { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border-right: 1px solid rgb(255 255 255 / 25%); text-align: center; font-size: .83rem; font-weight: 790; }
.trust-list span:last-child { border-right: 0; }
.trust-list svg { width: 18px; flex: 0 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 12px 35px rgb(8 13 43 / 6%); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__media { position: relative; aspect-ratio: 4 / 3; display: block; overflow: hidden; background: #e9ebf1; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card__body { padding: 24px; }
.service-card__body h3 { margin-bottom: 11px; }
.service-card__body p { min-height: 76px; margin-bottom: 18px; color: var(--muted); font-size: .93rem; }
.service-card__number { position: absolute; top: 14px; left: 14px; min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: .78rem; font-weight: 840; }
.service-grid .service-card:nth-child(4), .service-grid .service-card:nth-child(5) { grid-column: span 1; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 88px); align-items: center; }
.split-media { position: relative; }
.split-media picture { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.emergency-flag { position: absolute; right: -18px; bottom: 24px; max-width: 220px; padding: 18px 20px; border-radius: 15px; background: var(--red); color: #fff; box-shadow: var(--shadow); font-weight: 780; line-height: 1.25; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 26px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { width: 20px; flex: 0 0 auto; margin-top: 3px; color: var(--red); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; padding: 28px; border: 1px solid rgb(255 255 255 / 15%); border-radius: var(--radius-md); background: rgb(255 255 255 / 6%); }
.step b { display: block; margin-bottom: 26px; color: var(--gold); font-size: .78rem; letter-spacing: .12em; }
.step h3 { margin-bottom: 10px; }
.step p { margin-bottom: 0; color: #cbd0df; font-size: .93rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-item { position: relative; aspect-ratio: 4 / 3; overflow: hidden; padding: 0; border: 0; border-radius: 14px; background: #dfe3ea; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: "View project"; position: absolute; inset: auto 10px 10px auto; padding: 6px 9px; border-radius: 999px; background: rgb(8 13 43 / 84%); color: #fff; font-size: .68rem; font-weight: 740; opacity: 0; transition: opacity .2s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.lightbox { width: min(1060px, calc(100% - 28px)); padding: 46px 16px 16px; border: 0; border-radius: 18px; background: #070a18; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgb(0 0 0 / 82%); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox button { position: absolute; top: 8px; right: 8px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; color: var(--navy); font-size: 1.4rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { display: flex; flex-direction: column; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 10px 30px rgb(8 13 43 / 5%); }
.stars { margin-bottom: 16px; color: #d59c00; letter-spacing: .12em; }
.review-card blockquote { margin: 0 0 22px; color: #353b4c; font-size: 1rem; }
.review-card cite { margin-top: auto; color: var(--navy); font-style: normal; font-weight: 780; }
.faq-list { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-list summary { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; cursor: pointer; color: var(--navy); font-weight: 760; list-style: none; }
.faq-list summary::after { content: "+"; color: var(--red); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.page-hero { position: relative; min-height: 480px; display: grid; align-items: end; overflow: hidden; padding: 90px 0 70px; background: var(--navy); color: #fff; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 9 31 / 92%), rgb(5 9 31 / 50%)); }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 820px; margin-bottom: 16px; color: #fff; font-size: clamp(2.55rem, 6vw, 4.6rem); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: #e0e4ef; font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: #c5cada; font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold); }
.content-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 14px 40px rgb(8 13 43 / 6%); }
.content-card p { color: var(--muted); }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-card { padding: 30px; border-radius: var(--radius-md); background: var(--navy); color: #fff; }
.area-card h3 { color: #fff; }
.area-card p { margin-bottom: 0; color: #cbd0df; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-details { display: grid; gap: 14px; }
.contact-item { padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.contact-item small { display: block; margin-bottom: 5px; color: var(--muted); }
.contact-item strong { color: var(--navy); }
.lead-section { background: linear-gradient(125deg, var(--red), #9f0c15); color: #fff; }
.lead-row { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.lead-row h2 { max-width: 720px; margin-bottom: 10px; color: #fff; }
.lead-row p { margin-bottom: 0; color: #ffe9eb; }
.lead-row .button { flex: 0 0 auto; }

.site-footer { padding: 68px 0 95px; background: #05081e; color: #c6cada; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr .9fr; gap: 42px; }
.footer-brand { width: 220px; padding: 8px; border-radius: 10px; background: #fff; }
.footer-brand img { width: 100%; }
.footer-intro p { margin-top: 18px; color: #afb5c8; font-size: .9rem; }
.site-footer h3 { margin-bottom: 17px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: .88rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .76rem; }
.mobile-dock { position: fixed; z-index: 1100; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; display: none; gap: 8px; padding: 7px; border: 1px solid rgb(255 255 255 / 16%); border-radius: 999px; background: rgb(8 13 43 / 96%); box-shadow: 0 14px 38px rgb(0 0 0 / 28%); transform: translateY(150%); transition: transform .25s ease; }
.mobile-dock.is-visible { transform: translateY(0); }
.mobile-dock a { flex: 1 1 0; min-width: 0; min-height: 45px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; background: #fff; color: var(--navy); font-size: .78rem; font-weight: 790; }
.mobile-dock a:last-child { background: var(--red); color: #fff; }
.mobile-dock svg { width: 16px; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .header-call { display: none; }
  .hero-inner { grid-template-columns: 1fr .78fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; }
  .desktop-nav, .header-call, .header-inner > .button { display: none; }
  .brand { width: 138px; padding: 4px 7px; }
  .brand img { height: 54px; }
  .menu-toggle { display: grid; margin-left: auto; }
  .hero { min-height: 700px; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 80px; }
  .hero::after { background: linear-gradient(90deg, rgb(5 9 31 / 91%), rgb(5 9 31 / 58%)); }
  .hero .lead-card { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .lead-row { align-items: flex-start; flex-direction: column; }
  .mobile-dock { display: flex; }
  .site-footer { padding-bottom: 115px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1240px); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.85rem); }
  .hero { min-height: calc(100svh - var(--header-h)); align-items: end; }
  .hero > picture img { object-position: 54% center; }
  .hero-inner { padding-block: 72px 54px; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: 12px; }
  .hero-note { gap: 10px 16px; }
  .trust-list { grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .trust-list span { justify-content: flex-start; min-height: 42px; padding: 7px 13px; border-right: 0; }
  .trust-list span:last-child { grid-column: 1 / -1; }
  .service-grid, .review-grid, .area-grid { grid-template-columns: 1fr; }
  .service-card__body p { min-height: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .gallery-item { border-radius: 10px; }
  .emergency-flag { right: 12px; bottom: -18px; }
  .page-hero { min-height: 420px; padding-bottom: 52px; }
  .page-hero > picture img { object-position: center; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .content-card { border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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