@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy-950: #041224;
  --navy-900: #071a33;
  --navy-800: #0b294d;
  --navy-700: #12406f;
  --blue: #138ad0;
  --gold: #c99124;
  --gold-light: #edc66d;
  --gold-dark: #9b6810;
  --white: #fff;
  --off-white: #f7f9fc;
  --ink: #10223a;
  --muted: #5f6d7d;
  --line: #dce3ec;
  --shadow-sm: 0 12px 35px rgba(4, 18, 36, .08);
  --shadow-lg: 0 28px 70px rgba(4, 18, 36, .17);
  --radius: 18px;
  --container: 1180px;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", Aptos, "Segoe UI", Arial, sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 .6em; color: var(--navy-950); font-family: "Manrope", "Segoe UI", Arial, sans-serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1.25rem; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 800px; text-align: center; }
.section { position: relative; padding: clamp(76px, 9vw, 126px) 0; }
.section-soft { background: var(--off-white); }
.section-navy { overflow: hidden; color: rgba(255,255,255,.78); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.section-navy::before { position: absolute; right: -8%; top: -45%; width: 520px; height: 520px; border: 1px solid rgba(237,198,109,.24); border-radius: 50%; content: ""; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.eyebrow { font-family: "Manrope", "Segoe UI", Arial, sans-serif; margin-bottom: 1rem; color: var(--gold-dark); font-size: .79rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-light); }
.lead, .lead-dark { max-width: 730px; font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
.lead-dark { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 12px 16px; color: var(--white); background: var(--navy-950); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.button { font-family: "Manrope", "Segoe UI", Arial, sans-serif; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .93rem; font-weight: 800; letter-spacing: .015em; line-height: 1.2; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(19,138,208,.4); outline-offset: 3px; }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 28px rgba(201,145,36,.24); }
.button-gold:hover { box-shadow: 0 16px 34px rgba(201,145,36,.34); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.button-outline-light svg { width: 19px; height: 19px; }
.button-wide { width: 100%; }
.button[disabled] { opacity: .65; cursor: wait; transform: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 2rem; }
.text-link { font-family: "Manrope", "Segoe UI", Arial, sans-serif; display: inline-flex; align-items: center; gap: 8px; color: var(--navy-800); font-weight: 800; text-decoration: none; }
.text-link span { color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-h); background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: height .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { height: 74px; border-color: rgba(7,26,51,.08); box-shadow: 0 10px 30px rgba(4,18,36,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { align-self: stretch; display: flex; align-items: center; width: 150px; overflow: visible; }
.brand img { width: 146px; height: 76px; object-fit: contain; object-position: left center; transform: none; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); }
.main-nav > a:not(.button) { position: relative; color: #23344b; font-size: .91rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); content: ""; transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-cta { min-height: 45px; padding: 11px 20px; }
.nav-toggle { display: none; width: 46px; height: 46px; place-content: center; gap: 5px; border: 0; border-radius: 50%; background: var(--off-white); cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 21px; height: 2px; background: var(--navy-900); transition: .2s; }

.hero { position: relative; min-height: min(860px, 100svh); display: grid; align-items: center; padding: calc(var(--header-h) + 70px) 0 85px; color: var(--white); background: var(--navy-950); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { background: url('assets/images/hero-office.jpg') center/cover no-repeat; }
.hero-overlay { background: linear-gradient(90deg, rgba(2,13,28,.94) 0%, rgba(3,20,41,.82) 41%, rgba(3,20,41,.29) 68%, rgba(3,20,41,.1) 100%), linear-gradient(0deg, rgba(4,18,36,.35), transparent 45%); }
.hero::after { position: absolute; left: -7%; bottom: -160px; width: 58%; height: 250px; border: 2px solid rgba(237,198,109,.54); border-top: 0; border-radius: 0 0 50% 50%; content: ""; transform: rotate(-4deg); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { max-width: 900px; color: var(--white); text-wrap: balance; }
.hero-subtitle { max-width: 760px; color: rgba(255,255,255,.81); font-size: clamp(1.08rem, 1.7vw, 1.35rem); }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 26px; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 99px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 9px; width: 4px; height: 4px; background: var(--gold-light); border-radius: 50%; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,15px); } }

.trust-bar { position: relative; z-index: 3; color: var(--white); background: var(--navy-900); border-top: 1px solid rgba(237,198,109,.35); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 24px; border-right: 1px solid rgba(255,255,255,.12); font-weight: 750; }
.trust-item:last-child { border-right: 0; }
.trust-item svg { flex: 0 0 37px; width: 37px; height: 37px; color: var(--gold-light); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 52px; }
.section-heading > p { max-width: 500px; color: var(--muted); }
.section-heading-light > p { color: rgba(255,255,255,.68); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 320px; display: flex; flex-direction: column; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 25px rgba(4,18,36,.035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::before { position: absolute; left: 34px; right: 70%; top: -1px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); content: ""; transition: right .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,145,36,.45); box-shadow: var(--shadow-sm); }
.service-card:hover::before { right: 34px; }
.service-card p { color: var(--muted); }
.service-card .text-link { margin-top: auto; }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 27px; color: var(--gold-dark); background: #fff8e8; border-radius: 16px; }
.service-icon svg { width: 32px; height: 32px; }
.services-note { max-width: 780px; margin: 30px auto 0; color: var(--muted); text-align: center; font-size: .94rem; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid::before { position: absolute; left: 7%; right: 7%; top: 31px; height: 1px; background: linear-gradient(90deg, transparent, rgba(237,198,109,.52), transparent); content: ""; }
.process-grid li { position: relative; padding-top: 78px; }
.process-grid li > span { position: absolute; top: 0; left: 0; width: 62px; height: 62px; display: grid; place-items: center; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: 7px solid var(--navy-900); border-radius: 50%; font-weight: 900; box-shadow: 0 0 0 1px rgba(237,198,109,.38); }
.process-grid p { color: rgba(255,255,255,.68); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(54px, 8vw, 110px); }
.about-image { position: relative; }
.about-image::before { position: absolute; inset: -18px 20% 14% -18px; z-index: -1; border: 1px solid var(--gold); border-radius: var(--radius); content: ""; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; right: -26px; bottom: 28px; min-width: 170px; padding: 20px 24px; color: var(--white); background: var(--navy-900); border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { color: var(--gold-light); font-family: Georgia, serif; font-size: 1.45rem; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list.two-columns { grid-template-columns: 1fr 1fr; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; top: .46em; width: 14px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); content: ""; transform: rotate(-45deg); }

.gallery-placeholder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-placeholder > div { aspect-ratio: 4/3; display: grid; place-content: center; justify-items: center; gap: 14px; color: #69778a; background: linear-gradient(145deg, #edf1f6, #fff); border: 1px dashed #bcc7d4; border-radius: var(--radius); font-weight: 750; }
.gallery-placeholder svg { width: 40px; height: 40px; color: var(--gold); }
.testimonials .narrow { margin-inline: auto; }
.empty-testimonial { position: relative; margin-top: 34px; padding: 38px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.empty-testimonial svg { width: 42px; height: 42px; margin: 0 auto 18px; color: var(--gold); }
.empty-testimonial p { margin: 0; }

.area-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.area-grid > div:first-child > p:not(.eyebrow) { max-width: 680px; font-size: 1.08rem; }
.area-card { position: relative; padding: 38px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.area-card > svg { position: absolute; right: 30px; top: 30px; width: 50px; height: 50px; color: var(--gold); }
.area-card span { display: block; color: var(--muted); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.area-card strong { display: block; margin: 5px 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 2rem; }
.area-card hr { margin: 26px 0; border: 0; border-top: 1px solid var(--line); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags span { padding: 7px 12px; color: var(--navy-800); background: var(--off-white); border-radius: 99px; font-size: .72rem; }

.quote-section { background: linear-gradient(180deg, var(--white), #f1f5fa); }
.quote-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(45px, 7vw, 90px); }
.quote-intro { position: sticky; top: calc(var(--header-h) + 35px); }
.quote-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.direct-contact { margin: 34px 0; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.direct-contact span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .9rem; }
.direct-contact a { display: flex; align-items: center; gap: 10px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; text-decoration: none; }
.direct-contact svg { width: 25px; height: 25px; color: var(--gold); }
.mini-promises { padding: 0; list-style: none; }
.mini-promises li { margin: 10px 0; padding-left: 23px; position: relative; color: var(--muted); }
.mini-promises li::before { position: absolute; left: 0; content: "✓"; color: var(--gold-dark); font-weight: 900; }
.form-card { padding: clamp(28px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.field input:not([type=radio]):not([type=checkbox]):not([type=file]), .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fbfcfe; border: 1px solid #cfd8e3; border-radius: 9px; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9baaba; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(19,138,208,.1); }
fieldset.field { padding: 0; border: 0; margin: 0; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-row label { margin: 0; }
.choice-row input { position: absolute; opacity: 0; }
.choice-row span { display: block; padding: 12px 15px; text-align: center; background: var(--off-white); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }
.choice-row input:checked + span { color: var(--navy-900); background: #fff8e8; border-color: var(--gold); }
.choice-row input:focus-visible + span { outline: 3px solid rgba(19,138,208,.35); }
.upload-field { padding: 18px; background: #fbfcfe; border: 1px dashed #aebac8; border-radius: 12px; }
.upload-field label { display: flex; align-items: center; gap: 14px; margin: 0; cursor: pointer; }
.upload-field svg { width: 32px; height: 32px; color: var(--gold-dark); }
.upload-field strong, .upload-field small { display: block; }
.upload-field small { margin-top: 2px; color: var(--muted); font-weight: 500; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-field p { margin: 9px 0 0 46px; color: var(--muted); font-size: .82rem; word-break: break-all; }
.consent label { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .82rem; font-weight: 500; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 4px; accent-color: var(--gold-dark); }
.consent a { color: var(--navy-700); }
.form-card .button { margin-top: 25px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }
.form-alert { margin-bottom: 24px; padding: 15px 17px; border-radius: 10px; font-weight: 650; }
.form-alert.success { color: #164d31; background: #e8f6ed; border: 1px solid #a8d8b9; }
.form-alert.error { color: #7b2323; background: #fff0f0; border: 1px solid #e9b5b5; }
.honeypot { position: absolute; left: -9999px; }

.service-hero, .legal-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 95px) 0 90px; color: var(--white); background: radial-gradient(circle at 85% 20%, #144b7c, transparent 33%), linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.service-hero::after, .legal-hero::after { position: absolute; right: -180px; bottom: -280px; width: 600px; height: 600px; border: 2px solid rgba(237,198,109,.38); border-radius: 50%; content: ""; }
.service-hero h1, .legal-hero h1 { color: var(--white); font-size: clamp(2.8rem, 5.6vw, 5.3rem); }
.service-hero-grid { display: grid; grid-template-columns: 1fr .35fr; align-items: center; gap: 60px; }
.service-icon-large { justify-self: end; width: clamp(150px, 20vw, 230px); aspect-ratio: 1; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(237,198,109,.32); border-radius: 50%; background: rgba(255,255,255,.04); }
.service-icon-large svg { width: 48%; height: 48%; }
.content-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 8vw, 100px); }
.content-split > div > p:not(.eyebrow) { color: var(--muted); }
.feature-panel { padding: 36px; background: var(--off-white); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.feature-panel h2 { font-size: 1.8rem; }
.small-note { color: var(--muted); font-size: .87rem; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(32px, 5vw, 55px); color: rgba(255,255,255,.76); background: var(--navy-900); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.cta-panel h2 { color: var(--white); }
.cta-panel p { margin: 0; }
.legal-hero { padding-bottom: 72px; }
.legal-hero .narrow { text-align: left; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 2.1rem; font-size: 1.75rem; }
.legal-content a { color: var(--navy-700); }
.legal-notice { margin-bottom: 38px; padding: 22px; background: #fff8e8; border: 1px solid #e7cb88; border-radius: 10px; }
.legal-notice p { margin: 6px 0 0; }

.site-footer { padding: 68px 0 92px; color: rgba(255,255,255,.7); background: var(--navy-950); border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .7fr; gap: 70px; }
.site-footer h2 { color: var(--white); font-family: inherit; font-size: .83rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-brand img { width: 180px; height: 120px; object-fit: contain; object-position: left center; filter: none; }
.footer-brand p { margin-top: 13px; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.12rem; }
.footer-list { padding: 0; list-style: none; }
.footer-list li { margin: 8px 0; }
.footer-list a { text-decoration: none; }
.footer-list a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 45px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: grid; z-index: 2; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 28px; background: var(--white); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .main-nav.is-open { transform: none; visibility: visible; }
  .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-grid, .area-grid, .quote-grid { grid-template-columns: 1fr; }
  .about-image { width: min(88%, 650px); }
  .quote-intro { position: static; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header.is-scrolled { height: var(--header-h); }
  .brand { width: 126px; }
  .brand img { width: 122px; height: 66px; }
  .hero { min-height: 760px; padding-top: 130px; align-items: center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,13,28,.93), rgba(3,20,41,.68)), linear-gradient(0deg, rgba(4,18,36,.45), transparent); }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .hero .button-row { display: grid; }
  .hero .button { width: 100%; }
  .scroll-cue { display: none; }
  .trust-item { min-height: 94px; flex-direction: column; gap: 8px; padding: 16px 10px; text-align: center; font-size: .82rem; }
  .trust-item svg { width: 29px; height: 29px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 15px; }
  .services-grid, .process-grid, .gallery-placeholder { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 28px; }
  .process-grid { gap: 14px; }
  .process-grid li { min-height: 150px; padding: 22px 20px 20px 92px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; }
  .process-grid li > span { top: 21px; left: 18px; }
  .check-list.two-columns { grid-template-columns: 1fr; }
  .about-image { width: calc(100% - 12px); margin-left: 12px; }
  .about-badge { right: -8px; bottom: 16px; min-width: 145px; padding: 15px 17px; }
  .gallery-placeholder > div { aspect-ratio: 16/8; }
  .area-card { padding: 29px 24px; }
  .area-card > svg { width: 38px; height: 38px; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .choice-row { grid-template-columns: 1fr; }
  .direct-contact a { font-size: 1.35rem; }
  .service-hero { padding-top: calc(var(--header-h) + 70px); }
  .service-hero-grid, .content-split { grid-template-columns: 1fr; }
  .service-icon-large { display: none; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .cta-panel .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; padding-bottom: 20px; }
  .site-footer { padding-bottom: 110px; }
  .mobile-call { position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-radius: 999px; box-shadow: 0 12px 35px rgba(4,18,36,.28); font-weight: 850; text-decoration: none; }
  .mobile-call svg { width: 20px; height: 20px; }
}


/* Language selector: same component and dimensions in both languages. */
.language-switcher { flex: 0 0 auto; display: flex; align-items: center; }
.language-switcher select { width: 76px; min-height: 40px; padding: 8px 26px 8px 10px; color: #23344b; background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-family: "DM Sans", Aptos, "Segoe UI", Arial, sans-serif; font-size: .84rem; font-weight: 700; cursor: pointer; }
.language-switcher select:focus-visible { outline: 3px solid rgba(19,138,208,.4); outline-offset: 3px; }
@media (max-width: 980px) { .language-switcher { padding: 14px 4px; border-bottom: 1px solid var(--line); } .language-switcher select { width: 100%; } }
