:root {
  --blue-900: #07345e;
  --blue-800: #0b4d86;
  --blue-600: #1b75bb;
  --cyan-500: #48b5df;
  --orange-500: #f59a23;
  --orange-600: #df7f10;
  --ink: #142433;
  --muted: #5f7183;
  --line: #dce7ef;
  --surface: #f6fbff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 52, 94, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 20; background: var(--white); padding: 10px 14px; border-radius: var(--radius); }
.skip-link:focus { left: 12px; }
.topbar { background: var(--blue-900); color: var(--white); font-size: 0.88rem; }
.topbar__inner { min-height: 40px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.topbar a { font-weight: 700; color: var(--white); }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-shell { height: 82px; display: flex; align-items: center; gap: 24px; }
.brand img { width: 220px; }
.site-nav { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.site-nav a, .site-nav button { padding: 10px 12px; border-radius: var(--radius); color: #315066; font-weight: 700; font-size: 0.94rem; font-family: inherit; background: transparent; border: 0; cursor: pointer; }
.site-nav a:hover, .site-nav a.is-active, .site-nav button:hover, .site-nav button.is-active { background: var(--surface); color: var(--blue-800); }
.nav-item { position: relative; }
.services-menu { position: absolute; top: 100%; left: 0; width: 286px; padding: 16px 10px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); display: grid; gap: 2px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease; }
.services-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-item:hover .services-menu, .nav-item:focus-within .services-menu, .nav-item.is-open .services-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.services-menu a { display: block; padding: 10px 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--blue-900); }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border-radius: var(--radius); padding: 0 20px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--small { min-height: 42px; padding: 0 16px; }
.btn--orange { color: var(--white); background: var(--orange-500); box-shadow: 0 12px 24px rgba(245, 154, 35, .25); }
.btn--orange:hover { background: var(--orange-600); }
.btn--glass { color: var(--white); border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.14); }
.btn--light { color: var(--blue-900); background: var(--white); }
.hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; }
.hero picture, .hero > picture img, .hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,31,55,.86), rgba(4,31,55,.42) 58%, rgba(4,31,55,.2)); }
.hero__content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; padding: 120px 0 70px; align-items: end; }
.hero__copy h1, .hero__copy p, .hero__copy .eyebrow, .page-hero h1, .page-hero p, .page-hero .eyebrow { color: var(--white); }
.hero-title { font-size: clamp(3rem, 3.7vw, 4.45rem); line-height: 1.03; max-width: 850px; }
.hero-title span { white-space: nowrap; }
.hero__copy > p { font-size: 1.18rem; max-width: 680px; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__panel { background: rgba(255,255,255,.94); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--cyan-500); }
.hero__panel strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: var(--blue-900); }
.hero__panel span { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 800; color: var(--blue-600); margin-bottom: 12px; }
.section { padding: 92px 0; position: relative; }
.section + .section { border-top: 1px solid rgba(11, 77, 134, .11); }
.section--blue { background: radial-gradient(circle at top right, rgba(72,181,223,.18), transparent 38%), linear-gradient(135deg, var(--blue-900), #0a4a7c); }
.section--blue h2, .section--blue > .container > div > p, .section--blue .section-heading p, .section--blue .section-heading h2 { color: var(--white); }
.section--blue .eyebrow { color: #9ce3ff; }
.section--services { background: #ffffff; }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading--center .text-link { display: inline-block; margin-top: 4px; }
.section-heading p:last-child { font-size: 1.08rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 36px rgba(13,70,113,.08); }
.service-card img { height: 230px; width: 100%; object-fit: cover; }
.service-card div { padding: 24px; }
.service-card a, .text-link { color: var(--blue-700, #0f66aa); font-weight: 800; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-list div, .feature-row div, .check-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 14px 32px rgba(7,52,94,.07); }
.feature-list span { color: var(--orange-500); font-weight: 800; }
.feature-list strong, .feature-row strong { display: block; color: var(--blue-900); margin: 8px 0; font-size: 1.04rem; }
.mini-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.mini-card p { font-size: .94rem; }
.commercial-teaser { background: #eef8fe; border-top: 1px solid #cce5f3; border-bottom: 1px solid #cce5f3; }
.commercial-teaser .mini-card { box-shadow: 0 14px 32px rgba(7,52,94,.08); }
.section--areas { background: linear-gradient(180deg, #ffffff, #f6fbff); }
.section--areas .area-grid { margin-top: 8px; }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-grid a { display: flex; align-items: center; gap: 10px; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--blue-900); font-weight: 800; }
.area-marker { width: 14px; height: 14px; flex: 0 0 14px; border-radius: 50% 50% 50% 0; background: var(--orange-500); transform: rotate(-45deg); box-shadow: 0 5px 12px rgba(245,154,35,.28); position: relative; }
.area-marker::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--white); left: 4.5px; top: 4.5px; }
.area-grid a:hover { border-color: var(--cyan-500); box-shadow: 0 10px 22px rgba(72,181,223,.14); }
.cta-band { background: var(--blue-900); color: var(--white); padding: 54px 0; }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band__inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-panel { background: linear-gradient(180deg, #edf7fc, #f8fcff); border-top: 1px solid #cde4ef; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.info-list { display: grid; gap: 12px; margin-top: 22px; }
.info-list a, .info-list div { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.info-list strong { display: block; color: var(--blue-900); }
.form { display: grid; gap: 14px; background: var(--white); padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: var(--blue-900); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #cbd9e4; border-radius: var(--radius); min-height: 46px; padding: 11px 12px; font: inherit; color: var(--ink); background: var(--white); }
textarea { resize: vertical; }
.page-hero { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,31,55,.86), rgba(4,31,55,.5)); }
.page-hero--subdued .page-hero__shade { background: linear-gradient(90deg, rgba(7,52,94,.9), rgba(7,52,94,.58)); }
.page-hero__content { position: relative; z-index: 1; padding: 128px 0 70px; max-width: 850px; }
.page-hero__content > p:not(.eyebrow) { font-size: 1.15rem; max-width: 700px; }
.page-hero--centered { align-items: center; }
.page-hero--centered .page-hero__content { text-align: center; max-width: 980px; padding: 112px 0 86px; }
.page-hero--centered h1 { font-size: clamp(3rem, 4.4vw, 4.45rem); max-width: 920px; margin-left: auto; margin-right: auto; }
.page-hero--centered .page-hero__content > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
.page-hero--centered .hero__actions { justify-content: center; }
.detail-grid { display: grid; grid-template-columns: 1fr 390px; gap: 46px; align-items: start; }
.check-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.check-card li { margin-bottom: 10px; }
.service-story { background: var(--white); }
.service-story--tint { background: #edf7fc; }
.service-story__row { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 64px; align-items: center; }
.service-story__row--reverse .service-story__media { order: 2; }
.service-story__media { display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: var(--radius); }
.service-story__media img { display: block; width: auto; height: auto; max-width: 100%; border-radius: var(--radius); box-shadow: 0 20px 44px rgba(6, 48, 82, .14); }
.service-story__copy { max-width: 560px; }
.service-story__copy h2 { margin-bottom: 18px; }
.service-story__copy > p:not(.eyebrow) { font-size: 1.06rem; }
.service-story__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin: 28px 0 0; padding: 0; list-style: none; }
.service-story__list li { position: relative; padding-left: 24px; color: var(--blue-900); font-weight: 750; }
.service-story__list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 11px; height: 11px; border: 2px solid var(--blue-900); border-radius: 50%; background: var(--orange); }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.gallery-grid img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }
.gallery-grid figcaption { padding: 12px 14px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.footer { background: #071d31; color: rgba(255,255,255,.8); padding: 58px 0 24px; }
.footer p, .footer a, .footer span { color: rgba(255,255,255,.76); }
.footer__grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 34px; }
.footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer a { display: block; margin: 8px 0; }
.footer__logo { width: 210px; margin-bottom: 18px; background: rgba(255,255,255,.92); border-radius: var(--radius); padding: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; }

@media (max-width: 960px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 122px; display: none; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
  .site-nav.is-open { display: flex; }
  .site-nav button { text-align: left; }
  .services-menu { position: static; width: 100%; box-shadow: none; border-color: #e7f0f6; margin: 4px 0 8px; opacity: 1; pointer-events: auto; transform: none; }
  .services-menu a { padding-left: 24px; }
  .hero { min-height: 680px; }
  .hero__content, .split, .contact-grid, .detail-grid, .service-story__row { grid-template-columns: 1fr; }
  .service-story__row { gap: 36px; }
  .service-story__row--reverse .service-story__media { order: 0; }
  .service-story__copy { max-width: none; }
  .hero__panel { max-width: 460px; }
  .card-grid, .feature-row { grid-template-columns: 1fr; }
  .mini-card-grid, .area-grid, .gallery-grid, .feature-list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar__inner { justify-content: center; text-align: center; flex-wrap: wrap; padding: 8px 0; }
  .topbar__inner span { display: none; }
  .brand img { width: 185px; }
  .nav-shell { height: 76px; }
  .site-nav { top: 116px; }
  .hero { min-height: 650px; }
  .hero__content { padding: 100px 0 42px; gap: 28px; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .section { padding: 68px 0; }
  .service-story__list { grid-template-columns: 1fr; }
  .hero__actions, .cta-band__actions, .cta-band__inner, .footer__bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .mini-card-grid, .area-grid, .gallery-grid, .feature-list, .footer__grid { grid-template-columns: 1fr; }
  .hero-title span { white-space: normal; }
  .form { padding: 22px; }
  .page-hero { min-height: 480px; }
  .page-hero__content { padding: 112px 0 50px; }
}