:root {
  --navy: #071d2e;
  --navy-2: #0d2a40;
  --blue: #087fc2;
  --blue-dark: #06679d;
  --sky: #74c4ed;
  --coral: #d96949;
  --ink: #102638;
  --muted: #5a6c78;
  --line: #dce4e9;
  --soft: #f3f6f8;
  --white: #fff;
  --shadow: 0 14px 38px rgb(7 29 46 / 10%);
  --wrap: min(1180px, calc(100% - 40px));
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 5.7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.18rem; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
[data-reveal] { opacity: 0; transform: translateY(36px) scale(.985); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal="left"] { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.section-heading h2::after { display: block; width: 58px; height: 3px; margin-top: 18px; background: var(--blue); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .6s cubic-bezier(.2,.7,.2,1) .18s; }
.section-heading--centred h2::after { margin-inline: auto; transform-origin: center; }
.section-heading.is-visible h2::after { transform: scaleX(1); }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: var(--white); background: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.eyebrow { margin-bottom: 12px; color: var(--blue); font-size: .77rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: var(--sky); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p:last-child { max-width: 690px; margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.section-heading--centred { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--centred p:last-child { margin-inline: auto; }

.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 2px solid var(--blue); border-radius: 4px; color: var(--white); background: var(--blue); font-size: .88rem; font-weight: 800; letter-spacing: .035em; line-height: 1.2; text-transform: uppercase; cursor: pointer; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.btn:hover { border-color: var(--blue-dark); background: var(--blue-dark); transform: translateY(-1px); }
.btn--small { min-height: 43px; padding: 10px 16px; font-size: .78rem; }
.btn--outline { color: var(--navy); border-color: var(--line); background: var(--white); }
.btn--outline:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }
.btn--outline-light { color: var(--white); border-color: rgb(255 255 255 / 65%); background: transparent; }
.btn--outline-light:hover { border-color: var(--white); background: rgb(255 255 255 / 12%); }
.btn--light { color: var(--navy); border-color: var(--white); background: var(--white); }
.btn--light:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-size: .9rem; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; }
.text-link:hover { color: var(--navy); }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header); border-bottom: 1px solid var(--line); background: rgb(255 255 255 / 96%); backdrop-filter: blur(14px); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand picture { display: block; }
.brand img { width: 190px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 30px); margin-left: auto; }
.desktop-nav a { position: relative; padding-block: 30px; color: var(--navy); font-size: .82rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--blue); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions > .btn { white-space: nowrap; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: .85rem; font-weight: 800; white-space: nowrap; }
.header-phone .icon { color: var(--blue); }
.language-switch { display: inline-flex; align-items: center; gap: 5px; color: #7a8891; font-size: .76rem; font-weight: 800; }
.language-switch button { min-width: 27px; padding: 5px 2px; border: 0; color: #7a8891; background: none; font-weight: 800; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--blue-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-toggle .close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.menu-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; padding: 14px 20px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.mobile-nav.is-open { display: grid; }
.mobile-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 800; }

.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--navy); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-overlay { background: linear-gradient(90deg, rgb(2 19 32 / 92%) 0%, rgb(3 22 36 / 77%) 42%, rgb(3 22 36 / 22%) 72%, rgb(3 22 36 / 10%) 100%); }
.hero-content { position: relative; z-index: 1; display: flex; min-height: 690px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 90px 150px; }
.hero-content > * { max-width: 730px; }
.hero h1 { margin-bottom: 22px; color: var(--white); font-size: clamp(2.55rem, 5.2vw, 4.9rem); letter-spacing: -.04em; text-transform: uppercase; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--sky); }
.hero-lead { margin-bottom: 14px; color: rgb(255 255 255 / 91%); font-size: clamp(1rem, 1.8vw, 1.22rem); line-height: 1.6; }
.hero-slogan { margin-bottom: 30px; color: var(--white); font-weight: 800; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.benefit-rail { position: relative; z-index: 2; margin-top: -90px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); box-shadow: 0 18px 46px rgb(7 29 46 / 22%); }
.benefit { display: flex; min-height: 122px; align-items: center; gap: 15px; padding: 25px 22px; border-right: 1px solid rgb(255 255 255 / 14%); color: var(--white); }
.benefit:last-child { border-right: 0; }
.benefit > .icon { width: 32px; height: 32px; color: var(--sky); stroke-width: 1.7; }
.benefit strong, .benefit span { display: block; }
.benefit strong { margin-bottom: 3px; color: var(--white); font-size: .95rem; }
.benefit span { color: rgb(255 255 255 / 67%); font-size: .78rem; line-height: 1.35; }

.services { padding-top: 120px; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; min-width: 0; border: 1px solid var(--line); background: var(--white); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.service-card:hover { border-color: #bbcbd4; box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card > img { width: 100%; height: 180px; object-fit: cover; object-position: center; }
.service-card__body { position: relative; padding: 38px 18px 22px; }
.service-icon { position: absolute; top: -28px; left: 18px; display: grid; width: 54px; height: 54px; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--white); background: var(--blue); }
.service-icon .icon { width: 24px; height: 24px; stroke-width: 1.8; }
.service-card h3 { min-height: 2.3em; margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.service-note { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 34px 0 0; color: var(--navy); font-weight: 700; text-align: center; }
.service-note .icon { color: var(--blue); }

.split { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(50px, 7vw, 90px); }
.split-media { position: relative; }
.about { padding-block: 72px; }
.split-media > img { width: 100%; height: 420px; margin-inline: auto; object-fit: contain; background: #e7edf1; box-shadow: var(--shadow); }
.media-label { position: absolute; right: -20px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 15px 22px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.media-label strong { color: var(--sky); font-size: 1.5rem; }
.media-label span { font-size: .83rem; font-weight: 800; text-transform: uppercase; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; }
.check-list .icon { margin-top: 4px; color: var(--blue); }

.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.heading-row .section-heading { margin-bottom: 34px; }
.filters { display: flex; margin-bottom: 34px; border: 1px solid var(--line); }
.filter-btn { min-height: 42px; padding: 8px 16px; border: 0; border-right: 1px solid var(--line); background: var(--white); font-size: .78rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.filter-btn:last-child { border-right: 0; }
.filter-btn[aria-pressed="true"] { color: var(--white); background: var(--navy); }
.gallery-grid { display: grid; grid-auto-rows: 280px; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-card { position: relative; min-width: 0; overflow: hidden; padding: 0; border: 0; background: var(--navy); cursor: zoom-in; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .2s ease; }
.gallery-card--portrait img { object-fit: contain; background: #e7edf1; }
.gallery-card > span { position: absolute; right: 0; bottom: 0; left: 0; padding: 46px 18px 16px; color: var(--white); background: linear-gradient(transparent, rgb(4 22 36 / 90%)); text-align: left; }
.gallery-card strong, .gallery-card small { display: block; }
.gallery-card strong { font-size: .95rem; }
.gallery-card small { margin-top: 3px; color: rgb(255 255 255 / 72%); }
.gallery-card:hover img { transform: scale(1.035); }

.why { padding-top: 30px; }
.proof-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid article { padding: 32px 18px; border-right: 1px solid var(--line); text-align: center; }
.proof-grid article:last-child { border-right: 0; }
.proof-grid article > span { display: grid; width: 58px; height: 58px; margin: 0 auto 17px; place-items: center; border-radius: 50%; color: var(--blue); background: #e9f5fb; }
.proof-grid .icon { width: 27px; height: 27px; stroke-width: 1.8; }
.proof-grid h3 { margin-bottom: 8px; font-size: .98rem; }
.proof-grid p { margin-bottom: 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }

.value-banner { padding: 68px 0; color: var(--white); background: var(--blue); }
.value-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.value-grid > div { max-width: 820px; }
.value-grid h2 { margin-bottom: 15px; color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.value-grid p:last-child { margin-bottom: 0; color: rgb(255 255 255 / 83%); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; min-height: 355px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-top: 4px solid var(--blue); background: var(--white); box-shadow: 0 8px 26px rgb(7 29 46 / 6%); }
.quote-icon { width: 34px; height: 34px; margin-bottom: 18px; color: var(--blue); fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.review-card blockquote { flex: 1; margin: 0 0 26px; color: #344957; font-size: .98rem; line-height: 1.75; }
.review-source { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-source strong, .review-source span { display: block; }
.review-source strong { color: var(--navy); font-size: .88rem; }
.review-source span { color: var(--muted); font-size: .75rem; }
.view-original { padding: 0 0 2px; border: 0; border-bottom: 1px solid var(--blue); color: var(--blue-dark); background: none; font-size: .74rem; font-weight: 800; cursor: pointer; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { position: absolute; top: 60px; right: 9%; left: 9%; height: 1px; background: var(--line); content: ''; }
.process-grid li { position: relative; text-align: center; }
.process-grid li > span { display: block; margin-bottom: 12px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.process-grid li > .icon { position: relative; z-index: 1; width: 52px; height: 52px; padding: 12px; border: 1px solid var(--line); color: var(--blue); background: var(--white); stroke-width: 1.7; }
.process-grid h3 { margin: 17px 0 8px; font-size: 1rem; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

.areas { padding: 85px 0; color: var(--white); background: var(--navy); }
.areas-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; }
.areas h2 { margin-bottom: 18px; color: var(--white); }
.areas p:not(.eyebrow) { margin-bottom: 26px; color: rgb(255 255 255 / 70%); }
.location-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 22px; align-content: center; margin: 0; padding: 0; list-style: none; }
.location-list li { position: relative; padding: 7px 0 7px 18px; border-bottom: 1px solid rgb(255 255 255 / 12%); color: rgb(255 255 255 / 82%); font-size: .88rem; }
.location-list li::before { position: absolute; top: 17px; left: 1px; width: 5px; height: 5px; border-radius: 50%; background: var(--sky); content: ''; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-layout .section-heading { position: sticky; top: 120px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 42px 22px 2px; color: var(--navy); font-weight: 800; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; top: 20px; right: 5px; color: var(--blue); content: '+'; font-size: 1.5rem; font-weight: 400; line-height: 1; }
.accordion details[open] summary::after { content: '–'; }
.accordion details p { padding: 0 42px 21px 2px; margin: 0; color: var(--muted); }

.contact { padding: 100px 0; color: var(--white); background: var(--navy-2); }
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 70%); }
.contact-methods { display: grid; gap: 1px; margin-top: 34px; background: rgb(255 255 255 / 12%); }
.contact-methods a { display: flex; align-items: center; gap: 15px; padding: 18px 0; background: var(--navy-2); }
.contact-methods a > .icon { width: 24px; height: 24px; color: var(--sky); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: rgb(255 255 255 / 55%); }
.contact-methods strong { color: var(--white); font-size: .95rem; overflow-wrap: anywhere; }
.quote-panel { padding: clamp(26px, 4vw, 46px); color: var(--ink); background: var(--white); box-shadow: 0 20px 50px rgb(0 0 0 / 20%); }
.quote-panel__head { display: flex; align-items: center; gap: 17px; padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.quote-panel__head > span { display: grid; width: 54px; height: 54px; place-items: center; color: var(--white); background: var(--blue); }
.quote-panel__head > span .icon { width: 27px; height: 27px; }
.quote-panel__head p, .quote-panel__head h2 { margin-bottom: 0; }
.quote-panel__head h2 { font-size: 1.65rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid > label, .form-grid fieldset { min-width: 0; }
.form-grid label > span:first-child, .form-grid legend { display: block; margin-bottom: 6px; color: var(--navy); font-size: .78rem; font-weight: 800; }
.form-grid input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), .form-grid select, .form-grid textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid #cbd6dc; border-radius: 0; color: var(--ink); background: var(--white); }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); outline: 2px solid rgb(8 127 194 / 16%); }
.form-full { grid-column: 1 / -1; }
.form-grid fieldset { padding: 0; border: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label { display: flex; align-items: center; gap: 7px; min-height: 42px; padding: 8px 13px; border: 1px solid var(--line); cursor: pointer; }
.radio-row label > span:first-child { margin: 0; font-weight: 700; }
.file-control { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px dashed #b5c7d1; background: var(--soft); }
.file-control .icon { color: var(--blue); }
.file-control small { margin-left: auto; color: var(--muted); }
.photo-note { display: flex; align-items: flex-start; gap: 13px; padding: 15px; border: 1px solid #b9dfc7; background: #f0f8f3; }
.photo-note > .icon { width: 25px; height: 25px; margin-top: 2px; color: #187b42; }
.photo-note strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: .82rem; }
.photo-note p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.consent { display: flex !important; align-items: flex-start; gap: 9px; }
.consent input { margin-top: 5px; }
.consent > span { margin: 0 !important; color: var(--muted) !important; font-size: .78rem !important; font-weight: 400 !important; }
.consent a { color: var(--blue-dark); text-decoration: underline; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.form-status { min-height: 1.5em; margin: 14px 0 0; color: var(--navy); font-weight: 700; }
.form-status.is-error { color: #a52b20; }
.form-status.is-success { color: #18734a; }
.honeypot { position: absolute !important; left: -10000px !important; }

.site-footer { padding-top: 70px; color: rgb(255 255 255 / 66%); background: #041421; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; padding-bottom: 55px; }
.footer-brand img { width: 205px; height: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 370px; font-size: .88rem; }
.footer-main h2 { margin: 0 0 18px; color: var(--white); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main a, .footer-main span { font-size: .84rem; }
.footer-main a:hover { color: var(--white); }
.language-switch--dark { margin-top: 18px; color: rgb(255 255 255 / 40%); }
.language-switch--dark button { color: rgb(255 255 255 / 55%); }
.language-switch--dark button[aria-pressed="true"] { color: var(--sky); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

.mobile-sticky { display: inline-flex; position: fixed; z-index: 80; right: 18px; bottom: 18px; width: 58px; height: 58px; align-items: center; justify-content: center; padding: 0; border: 2px solid rgb(255 255 255 / 85%); border-radius: 50%; color: var(--white); background: #187b42; box-shadow: 0 10px 28px rgb(0 0 0 / 28%); transition: background .18s ease, transform .18s ease; }
.mobile-sticky:hover { background: #116536; transform: translateY(-2px); }
.mobile-sticky .icon { width: 27px; height: 27px; }
.lightbox { width: min(1050px, calc(100% - 32px)); max-width: none; padding: 0; border: 0; color: var(--white); background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgb(1 12 20 / 92%); }
.lightbox figure { margin: 0; background: var(--navy); }
.lightbox figure img { width: 100%; max-height: 76vh; object-fit: contain; background: #020a0f; }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 15px 18px; }
.lightbox figcaption strong { color: var(--white); }
.lightbox figcaption span { color: rgb(255 255 255 / 60%); }
.lightbox__close, .lightbox__nav { position: absolute; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; border: 0; color: var(--white); background: var(--navy); cursor: pointer; }
.lightbox__close { top: -54px; right: 0; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: -58px; }
.lightbox__next { right: -58px; }
.lightbox[data-mode="review"] .lightbox__nav { display: none; }
.cookie-banner { position: fixed; z-index: 150; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 900px; padding: 18px 20px; margin: 0 auto; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 45px rgb(7 29 46 / 24%); }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .84rem; }
.cookie-banner strong { color: var(--navy); }
.cookie-banner a { color: var(--blue-dark); text-decoration: underline; }

@media (hover: hover) {
  .benefit { transition: background .2s ease; }
  .benefit:hover { background: rgb(255 255 255 / 7%); }
  .proof-grid article { transition: background .2s ease, transform .2s ease; }
  .proof-grid article:hover { position: relative; z-index: 1; background: var(--white); transform: translateY(-5px); box-shadow: 0 12px 30px rgb(7 29 46 / 9%); }
  .proof-grid article > span { transition: color .2s ease, background .2s ease, transform .2s ease; }
  .proof-grid article:hover > span { color: var(--white); background: var(--blue); transform: scale(1.06); }
  .review-card { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
  .review-card:hover { border-color: #b9cad4; box-shadow: 0 18px 40px rgb(7 29 46 / 12%); transform: translateY(-6px); }
  .process-grid li > .icon { transition: color .2s ease, border-color .2s ease, transform .2s ease; }
  .process-grid li:hover > .icon { color: var(--white); border-color: var(--blue); background: var(--blue); transform: translateY(-4px); }
  .location-list li { transition: color .18s ease, padding-left .18s ease, background .18s ease; }
  .location-list li:hover { padding-left: 23px; color: var(--white); background: rgb(255 255 255 / 5%); }
  .contact-methods a { transition: padding-left .2s ease, background .2s ease; }
  .contact-methods a:hover { padding-left: 10px; background: #12334c; }
  .footer-main a { transition: color .18s ease, transform .18s ease; }
  .footer-main a:hover { transform: translateX(3px); }
}

.legal-page { background: var(--soft); }
.legal-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.legal-nav a { color: var(--navy); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.legal-main { padding: 70px 0 95px; }
.legal-wrap { max-width: 900px; }
.legal-wrap article { padding: clamp(28px, 5vw, 64px); border-top: 5px solid var(--blue); background: var(--white); box-shadow: var(--shadow); }
.legal-wrap h1 { margin-bottom: 28px; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.legal-wrap h2 { margin: 36px 0 12px; font-size: 1.35rem; }
.legal-wrap p, .legal-wrap li { color: #405462; }
.legal-wrap a:not(.btn) { color: var(--blue-dark); text-decoration: underline; }
.legal-wrap .updated { margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.legal-wrap article > p:last-child { margin: 38px 0 0; }
.legal-footer { padding-top: 0; }
.legal-footer .footer-bottom { min-height: 75px; }

@media (max-width: 1320px) {
  .header-actions { gap: 10px; }
  .header-phone span { display: none; }
  .desktop-nav { gap: 18px; }
}

@media (max-width: 1120px) {
  :root { --header: 76px; }
  .brand img { width: 167px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card > img { height: 220px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid article:nth-child(3) { border-right: 0; }
  .proof-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .contact-grid { gap: 45px; }
}

@media (max-width: 820px) {
  :root { --wrap: min(100% - 32px, 680px); }
  .section { padding: 76px 0; }
  .header-actions { gap: 10px; }
  .header-actions > .btn { display: none; }
  .hero, .hero-content { min-height: 620px; }
  .hero-content { padding-bottom: 115px; }
  .hero-overlay { background: linear-gradient(90deg, rgb(2 19 32 / 91%), rgb(3 22 36 / 64%)); }
  .benefit-rail { margin-top: -55px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .services { padding-top: 95px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .areas-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .split-media > img { height: auto; background: transparent; }
  .media-label { right: 16px; }
  .heading-row { display: block; }
  .filters { width: max-content; }
  .gallery-grid { grid-auto-rows: 230px; grid-template-columns: repeat(2, 1fr); }
  .gallery-card--wide { grid-column: span 1; }
  .value-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-grid::before { display: none; }
  .location-list { grid-template-columns: repeat(3, 1fr); }
  .faq-layout .section-heading, .contact-copy { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-sticky { right: 14px; bottom: 14px; }
  .cookie-banner { right: 12px; bottom: 74px; left: 12px; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 24px); }
  html, body { overflow-x: clip; }
  body { font-size: 15px; }
  .section { padding: 64px 0; }
  .header-inner { gap: 10px; }
  .brand { min-width: 0; max-width: 48vw; }
  .brand img { display: block; width: 100%; max-width: 180px; }
  .header-actions { flex: 0 0 auto; }
  .header-actions { gap: 6px; }
  .header-actions .language-switch { gap: 1px; }
  .header-phone { display: none; }
  .hero, .hero-content { min-height: 590px; }
  .hero-content { padding-block: 60px 100px; }
  .hero-media img { object-position: 64% center; }
  .hero h1 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  .hero-buttons { align-items: stretch; flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .benefit-grid { width: calc(100% - 24px); }
  .benefit { min-height: 102px; padding: 18px 14px; }
  .benefit > .icon { width: 27px; height: 27px; }
  .benefit strong { font-size: .83rem; }
  .benefit span { font-size: .7rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card > img { height: 250px; }
  .service-card h3 { min-height: 0; }
  .heading-row .section-heading { margin-bottom: 24px; }
  .filters { width: 100%; }
  .filter-btn { flex: 1; padding-inline: 8px; }
  .gallery-grid { grid-auto-rows: 235px; grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid article:nth-child(3) { border-right: 1px solid var(--line); }
  .proof-grid article:nth-child(even) { border-right: 0; }
  .proof-grid article:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .proof-grid article { padding-inline: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: repeat(2, 1fr); gap: 6px 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .file-control { align-items: flex-start; flex-direction: column; }
  .file-control small { margin-left: 0; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom nav { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; }
  .lightbox__nav { top: auto; bottom: -56px; }
  .lightbox__prev { left: 0; }
  .lightbox__next { right: 0; }
  .lightbox figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 12px; }
  .legal-nav { display: none; }
  .legal-main { padding-block: 34px 70px; }
  .legal-wrap article { padding: 25px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 0 !important; transform: none !important; transition: opacity .4s ease !important; }
  [data-reveal].is-visible { opacity: 1 !important; }
  .section-heading h2::after { transition: transform .35s ease !important; }
}
