@font-face {
font-family: 'Roboto Slab';
src: url('/assets/fonts/RobotoSlab-Bold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
font-display: swap;
}
:root {
--navy: #12233b;
--accent: #e8962e;
--navy-deep: color-mix(in srgb, var(--navy) 82%, #000);
--navy-soft: color-mix(in srgb, var(--navy) 88%, #fff);
--accent-hover: color-mix(in srgb, var(--accent) 86%, #000);
--accent-tint: color-mix(in srgb, var(--accent) 14%, #fff);
--accent-text: color-mix(in srgb, var(--accent) 62%, #000); 
--ink: #17202c;
--body: #3b4452;
--muted: #5b6573;
--line: #e4e1da;
--line-strong: #cfcac0;
--bg: #ffffff;
--bg-light: #f6f4ef;
--on-dark: #ffffff;
--on-dark-muted: #c3cbd6;
--focus: #2f7de1;
--font-head: 'Roboto Slab', Rockwell, 'Roboto Slab Fallback', Georgia, serif;
--font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
--r-sm: 8px;
--r: 14px;
--r-lg: 20px;
--shadow-sm: 0 1px 2px rgb(18 35 59 / 6%), 0 2px 6px rgb(18 35 59 / 5%);
--shadow: 0 2px 4px rgb(18 35 59 / 5%), 0 10px 28px rgb(18 35 59 / 9%);
--shadow-lg: 0 6px 12px rgb(18 35 59 / 8%), 0 24px 56px rgb(18 35 59 / 18%);
--container: 1200px;
--gutter: 20px;
--section-y: 56px;
--header-h: 68px;
--bar-h: 64px;
}
@media (min-width: 768px) {
:root { --gutter: 32px; --section-y: 80px; --header-h: 80px; }
}
@media (min-width: 1100px) {
:root { --section-y: 96px; }
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
margin: 0;
font-family: var(--font-body);
font-size: 1rem;
line-height: 1.6;
color: var(--body);
background: var(--bg);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
@media (min-width: 768px) { body { font-size: 1.0625rem; } }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; text-wrap: balance; }
h3 { font-size: 1.2rem; line-height: 1.3; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-text); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
main:focus { outline: none; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.25em; }
.icon--sm { width: 1em; height: 1em; }
.icon--fill { fill: currentColor; stroke: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: var(--navy); padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.btn {
--btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--btn-bg);
display: inline-flex; align-items: center; justify-content: center; gap: .5em;
min-height: 48px; padding: .75em 1.35em;
border: 2px solid var(--btn-bd); border-radius: var(--r-sm);
background: var(--btn-bg); color: var(--btn-fg);
font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; text-align: center;
cursor: pointer; transition: background-color .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--navy-deep); box-shadow: 0 2px 0 var(--accent-hover); }
.btn--accent:hover { --btn-bg: var(--accent-hover); --btn-bd: var(--accent-hover); --btn-fg: var(--navy-deep); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--navy); }
.btn--outline:hover { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgb(255 255 255 / 55%); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }
.btn--sm { min-height: 40px; padding: .5em 1em; font-size: .9375rem; }
.btn--md { min-height: 48px; }
.btn--lg { min-height: 54px; padding: .85em 1.6em; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }
@media (max-width: 479px) { .btn-row > .btn { flex: 1 1 100%; } }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; }
.link-arrow .icon { transition: transform .18s; }
.link-arrow:hover { color: var(--accent-text); }
.link-arrow:hover .icon { transform: translateX(3px); }
.topbar { display: none; background: var(--navy-deep); color: var(--on-dark-muted); font-size: .875rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 38px; }
.topbar__info, .topbar__links { display: flex; gap: 24px; align-items: center; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--accent); }
.topbar .icon { color: var(--accent); width: 1.05em; height: 1.05em; }
@media (min-width: 900px) { .topbar { display: block; } }
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgb(18 35 59 / 8%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); flex: none; }
.logo:hover { color: var(--navy); }
.logo__mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--accent); font-family: var(--font-head); font-size: .95rem; letter-spacing: .04em; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.logo__sub { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.logo--light .logo__mark { background: var(--accent); color: var(--navy); }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: var(--on-dark-muted); }
.logo__img { height: 54px; width: auto; }
@media (min-width: 768px) { .logo__img { height: 66px; } }
.site-footer .logo__img { height: 120px; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; }
.header-phone { display: none; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; font-weight: 700; line-height: 1.15; }
.header-phone .icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--accent-tint); color: var(--navy); }
.header-phone small { display: block; font-size: .75rem; font-weight: 600; color: var(--muted); }
@media (min-width: 560px) { .header-cta { display: inline-flex; min-height: 44px; } }
@media (min-width: 1180px) { .header-phone { display: inline-flex; } }
.nav-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: #fff; color: var(--navy); cursor: pointer; }
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded='true'] .nav-toggle__close { display: block; }
.nav { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; overflow-y: auto; padding: 8px var(--gutter) calc(var(--bar-h) + 32px); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
.nav.is-open { transform: none; visibility: visible; }
.nav__list { display: flex; flex-direction: column; }
.nav__item { border-bottom: 1px solid var(--line); }
.nav__link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 4px; border: 0; background: none; color: var(--ink); font-weight: 700; font-size: 1.0625rem; text-decoration: none; cursor: pointer; text-align: left; }
.nav__link[aria-current='page'], .nav__link[data-current] { color: var(--accent-text); }
.nav__trigger .icon { transition: transform .2s; }
.nav__trigger[aria-expanded='true'] .icon { transform: rotate(180deg); }
.nav__mobile-cta { display: grid; gap: 12px; margin-top: 24px; }
.mega { display: none; padding: 0 0 16px; }
.has-mega.is-open .mega { display: block; }
.mega__inner { padding: 0; }
.mega__grid { display: grid; gap: 18px; }
.mega__title { display: flex; align-items: center; gap: 8px; margin: 0 0 6px; font-weight: 700; color: var(--navy); font-size: .95rem; }
.mega__title .icon { color: var(--accent-text); }
.mega__col ul { display: grid; gap: 2px; padding-left: 28px; }
.mega__col a { display: block; padding: 6px 0; color: var(--body); text-decoration: none; }
.mega__col a:hover { color: var(--accent-text); text-decoration: underline; }
.mega__aside { display: none; }
@media (min-width: 1024px) {
.nav-toggle, .nav__mobile-cta { display: none; }
.nav { position: static; transform: none; visibility: visible; padding: 0; overflow: visible; background: none; margin-left: auto; }
.nav__list { flex-direction: row; gap: 4px; }
.nav__item { border: 0; }
.nav__link { padding: 10px 14px; font-size: 1rem; border-radius: var(--r-sm); position: relative; }
.nav__link:hover { color: var(--accent-text); background: var(--bg-light); }
.nav__link[aria-current='page']::after, .nav__link[data-current]::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav__link[aria-current='page'], .nav__link[data-current] { color: var(--ink); }
.nav__trigger { gap: 4px; }
.site-header__actions { margin-left: 8px; }
.has-mega { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; padding: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 18px 40px rgb(18 35 59 / 14%); display: block; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; }
.has-mega.is-open .mega { opacity: 1; visibility: visible; transform: none; }
.mega__inner { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding-block: 32px; padding-inline: var(--gutter); }
.mega__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.mega__col ul { padding-left: 30px; }
.mega__col a { padding: 3px 0; font-size: .95rem; }
.mega__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; border-radius: var(--r); background: var(--bg-light); }
.mega__aside p { margin: 0; font-size: .95rem; }
.mega__aside-title { font-family: var(--font-head); color: var(--ink); font-size: 1.1rem !important; }
.mega__all { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; text-decoration: none; margin-top: 4px; }
}
.section { padding-block: var(--section-y); }
.section--light { background: var(--bg-light); }
.section--white { background: #fff; }
.section--navy { background: var(--navy); color: var(--on-dark-muted); }
.section--navy h2, .section--navy h3, .section--navy .section-title { color: #fff; }
.section--navy .eyebrow { color: var(--accent); }
.section--navy .section-lead { color: var(--on-dark-muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: .8125rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--accent); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem); margin-bottom: .4em; }
.section-lead { font-size: 1.0625rem; color: var(--muted); max-width: 62ch; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 8px 24px; margin-bottom: 36px; }
.section-head-row .section-head { margin-bottom: 0; }
.center-cta { display: flex; justify-content: center; margin-top: 40px; }
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--on-dark-muted); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; color: rgb(255 255 255 / 16%);
background-image:
linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px; background-position: -1px -1px; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 40%, color-mix(in srgb, var(--navy) 30%, transparent) 0%, var(--navy) 85%); opacity: .55; }
.blueprint { position: absolute; right: -120px; bottom: -30px; width: 720px; max-width: none; opacity: .9; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
.hero__tagline { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 6px 14px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 999px; background: rgb(255 255 255 / 6%); color: #fff; font-size: .875rem; font-weight: 600; }
.hero__tagline::before { content: '✓'; color: var(--accent); font-weight: 800; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 8px 14px; border-radius: 999px; background: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 16%); color: #fff; text-decoration: none; font-size: .95rem; }
.hero__rating:hover { background: rgb(255 255 255 / 14%); color: #fff; }
.stars { color: var(--accent); letter-spacing: .08em; }
.hero--photo .hero__bg::after { background: linear-gradient(90deg, rgb(10 20 35 / 92%) 0%, rgb(10 20 35 / 75%) 55%, rgb(10 20 35 / 55%) 100%); opacity: 1; }
.hero__inner { display: grid; gap: 36px; padding-block: 44px 52px; }
.hero__area { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 6px 14px 6px 10px; border: 1px solid rgb(255 255 255 / 18%); border-radius: 999px; background: rgb(255 255 255 / 6%); color: #fff; font-size: .875rem; font-weight: 600; }
.hero__area .icon { color: var(--accent); }
.hero__title { color: #fff; font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem); line-height: 1.1; margin-bottom: 18px; max-width: 20ch; }
.hero__lead { font-size: 1.125rem; color: #dbe2eb; max-width: 54ch; margin-bottom: 28px; }
.hero__points { display: grid; gap: 10px; margin-top: 28px; color: #fff; font-weight: 600; font-size: .975rem; }
.hero__points li { display: flex; gap: 10px; align-items: flex-start; }
.hero__points .icon { color: var(--accent); margin-top: 1px; }
@media (min-width: 1024px) {
.hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: center; gap: 56px; padding-block: 72px 80px; }
.blueprint { right: 26%; bottom: -40px; width: 760px; opacity: .6; }
}
@media (max-width: 1023px) { .blueprint { opacity: .45; right: -260px; } }
.page-hero { position: relative; background: var(--navy); color: var(--on-dark-muted); overflow: hidden; isolation: isolate; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1;
background-image: linear-gradient(rgb(255 255 255 / 4.5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4.5%) 1px, transparent 1px);
background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent 0%, #000 70%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 70%); }
.page-hero__inner { padding-block: 36px 48px; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3rem); max-width: 22ch; margin-bottom: 14px; }
.page-hero__lead { font-size: 1.125rem; color: #dbe2eb; max-width: 60ch; margin-bottom: 26px; }
.page-hero__lead:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .page-hero__inner { padding-block: 48px 64px; } }
.breadcrumbs { margin-bottom: 22px; font-size: .875rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; color: var(--on-dark-muted); }
.breadcrumbs li + li::before { content: '/'; opacity: .5; }
.breadcrumbs a { color: #fff; text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust__item > a, .trust__item > .trust__static { display: flex; align-items: center; gap: 12px; padding: 18px 8px; color: var(--ink); text-decoration: none; height: 100%; }
.trust__item > a:hover strong { color: var(--accent-text); }
.trust__item .icon--fill { color: var(--accent); }
.trust__item .icon { width: 40px; height: 40px; padding: 9px; border-radius: 10px; background: var(--accent-tint); color: var(--navy); }
.trust__item strong { display: block; font-size: .95rem; line-height: 1.25; }
.trust__item small { display: block; color: var(--muted); font-size: .8125rem; line-height: 1.35; }
@media (max-width: 767px) { .trust__item:nth-child(odd) > * { padding-left: 0; } .trust__item > * { padding-block: 14px; gap: 10px; } .trust__item small { display: none; } .trust__item .icon { width: 36px; height: 36px; padding: 8px; } }
@media (min-width: 900px) {
.trust__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust__item > * { padding: 26px 20px; }
.trust__item + .trust__item { border-left: 1px solid var(--line); }
.trust__item:first-child > * { padding-left: 0; }
}
.cat-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.cat-card { position: relative; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s, border-color .2s; }
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--line-strong); }
.cat-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 12px; background: var(--navy); color: var(--accent); }
.cat-card__icon .icon { width: 28px; height: 28px; }
.cat-card__title { font-size: 1.25rem; margin-bottom: 8px; }
.cat-card__title a { color: var(--ink); text-decoration: none; }
.cat-card__title a:hover { color: var(--accent-text); }
.cat-card > p { color: var(--muted); font-size: .975rem; }
.cat-card__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; }
.cat-card__list a { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--bg-light); border: 1px solid var(--line); color: var(--navy); font-size: .875rem; font-weight: 600; text-decoration: none; transition: background-color .15s, border-color .15s; }
.cat-card__list a:hover { background: var(--accent-tint); border-color: var(--accent); color: var(--navy); }
.svc-grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.svc-card { position: relative; display: flex; flex-direction: column; padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: box-shadow .2s, transform .2s, border-color .2s; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--accent); }
.svc-card__icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 14px; border-radius: 10px; background: var(--accent-tint); color: var(--navy); }
.svc-card__icon .icon { width: 24px; height: 24px; }
.svc-card__title { font-size: 1.125rem; margin-bottom: 6px; }
.svc-card__title a { color: var(--ink); text-decoration: none; }
.svc-card__title a::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.svc-card p { color: var(--muted); font-size: .95rem; }
.svc-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .9rem; color: var(--navy); }
.svc-card:hover .svc-card__more { color: var(--accent-text); }
.svc-card:focus-within { outline: 3px solid var(--focus); outline-offset: 2px; }
.svc-card a:focus-visible { outline: none; }
.steps { display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }
.step { position: relative; padding: 26px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.section--white .step, .section:not(.section--light):not(.section--navy) .step { background: var(--bg-light); border-color: transparent; }
.step__icon { position: relative; display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 16px; border-radius: 50%; background: var(--navy); color: #fff; }
.step__icon .icon { width: 26px; height: 26px; }
.step__num { position: absolute; top: -4px; right: -6px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--navy-deep); font-size: .8rem; font-weight: 800; border: 2px solid #fff; }
.step__title { font-size: 1.125rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }
.split { display: grid; gap: 36px; }
@media (min-width: 960px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; } .split--center { align-items: center; } }
.split__media { position: relative; }
.split__badge { position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--r-sm); background: #fff; box-shadow: var(--shadow); color: var(--body); font-size: .9rem; }
.split__badge .icon { color: var(--accent-text); width: 22px; height: 22px; }
.split__badge strong { color: var(--ink); }
.why-solo .split__copy { max-width: none; }
.why-solo .feature-list { display: grid; gap: 24px; }
@media (min-width: 768px) { .why-solo .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 40px; } }
.feature-list { display: grid; gap: 22px; margin-bottom: 28px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list li > .icon { width: 44px; height: 44px; padding: 10px; border-radius: 10px; background: var(--accent-tint); color: var(--navy); }
.feature-list h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-list p { color: var(--muted); font-size: .975rem; }
.photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--r); background: var(--bg-light); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--placeholder { display: grid; place-items: center; border: 1px dashed var(--line-strong);
background-color: #eef0f3;
background-image: repeating-linear-gradient(135deg, rgb(18 35 59 / 3.5%) 0 2px, transparent 2px 14px); }
.photo__ph { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px; text-align: center; color: var(--muted); font-weight: 700; font-size: .95rem; }
.photo__ph .icon { width: 40px; height: 40px; color: color-mix(in srgb, var(--navy) 55%, #fff); margin-bottom: 4px; }
.photo__ph small { font-weight: 600; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.photo--tall { max-height: 560px; }
@media (max-width: 959px) { .photo--tall { aspect-ratio: 4/3 !important; } }
.project-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.project { display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.project .photo, .project .ba { border-radius: 0; border: 0; }
.project .photo--placeholder { border-bottom: 1px dashed var(--line-strong); }
.project__body { padding: 16px 18px 20px; }
.project__cat { margin: 0 0 4px; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text); }
.project__title { font-size: 1.05rem; margin: 0; }
.project__loc { display: flex; align-items: center; gap: 6px; margin: 6px 0 0; font-size: .875rem; color: var(--muted); }
.project[hidden] { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip { min-height: 42px; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; color: var(--navy); font-weight: 700; font-size: .9375rem; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s; }
.chip:hover { border-color: var(--navy); }
.chip[aria-pressed='true'] { background: var(--navy); border-color: var(--navy); color: #fff; }
.ba { position: relative; margin: 0; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r); background: #dfe3e8; user-select: none; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; height: 100%; font-weight: 700; color: var(--muted); }
.ba__ph .icon { width: 36px; height: 36px; }
.ba__after .ba__ph { background: #e9ecef repeating-linear-gradient(135deg, rgb(18 35 59 / 3%) 0 2px, transparent 2px 14px); padding-left: 50%; }
.ba__before .ba__ph { background: #cfd5dc repeating-linear-gradient(45deg, rgb(18 35 59 / 5%) 0 2px, transparent 2px 14px); padding-right: 50%; }
.ba__tag { position: absolute; top: 12px; padding: 4px 10px; border-radius: 6px; background: rgb(18 35 59 / 85%); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.ba__tag--before { left: 12px; }
.ba__tag--after { right: 12px; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgb(18 35 59 / 20%); pointer-events: none; }
.ba__handle::after { content: '‹ ›'; position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 44px; height: 44px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--accent); color: var(--navy-deep); font-weight: 800; font-size: 1.1rem; letter-spacing: .1em; box-shadow: var(--shadow); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba:focus-within .ba__handle::after { outline: 3px solid var(--focus); outline-offset: 2px; }
.review-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.review { position: relative; display: flex; flex-direction: column; margin: 0; padding: 28px; border-radius: var(--r); background: var(--navy-soft); border: 1px solid rgb(255 255 255 / 10%); color: #e3e8ee; }
.section:not(.section--navy) .review { background: #fff; border-color: var(--line); color: var(--body); }
.review__quote { width: 34px; height: 34px; color: var(--accent); margin-bottom: 14px; }
.review blockquote { margin: 0 0 20px; font-size: 1.0625rem; line-height: 1.6; }
.review figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; font-size: .9rem; color: var(--on-dark-muted); }
.review figcaption strong { color: #fff; font-size: 1rem; }
.section:not(.section--navy) .review figcaption strong { color: var(--ink); }
.review__stars { margin: 0 0 10px; color: var(--accent); letter-spacing: .1em; }
.review--placeholder { border-style: dashed; border-color: rgb(255 255 255 / 30%); }
.review--placeholder blockquote { font-style: italic; opacity: .85; }
.review__flag { align-self: flex-start; margin-bottom: 14px; padding: 3px 10px; border-radius: 6px; background: var(--accent); color: var(--navy-deep); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review--placeholder .review__quote { display: none; }
.rating-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.rating-badge { display: flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border-radius: var(--r); background: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 14%); color: #fff; text-decoration: none; line-height: 1.2; }
.rating-badge:hover { background: rgb(255 255 255 / 14%); color: #fff; }
.rating-badge__score { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 10px; background: var(--accent); color: var(--navy-deep); font-family: var(--font-head); font-size: 1.35rem; }
.rating-badge strong { display: block; font-size: 1rem; }
.rating-badge small { color: var(--on-dark-muted); font-size: .85rem; }
.rating-badge .stars { display: block; font-size: .85rem; }
.section:not(.section--navy) .rating-badge { background: #fff; border-color: var(--line); color: var(--ink); }
.section:not(.section--navy) .rating-badge small { color: var(--muted); }
.reviews-more { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.section:not(.section--navy) .reviews-more .btn--ghost-light { --btn-fg: var(--navy); --btn-bd: var(--navy); }
.review-grid--all { display: block; columns: 1; column-gap: 24px; }
.review-grid--all .review { break-inside: avoid; margin-bottom: 24px; }
@media (min-width: 700px) { .review-grid--all { columns: 2; } }
@media (min-width: 1100px) { .review-grid--all { columns: 3; } }
.review__src { color: var(--accent); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.section:not(.section--navy) .review__src { color: var(--accent-text); }
.fact-list { display: grid; gap: 12px; margin-top: 24px; }
.fact-list li { display: flex; gap: 12px; align-items: center; font-size: 1.02rem; }
.fact-list .icon { width: 40px; height: 40px; padding: 9px; border-radius: 10px; background: var(--navy); color: var(--accent); }
.price-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.price-card { padding: 26px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.price-card > .icon { width: 44px; height: 44px; padding: 10px; border-radius: 10px; background: var(--accent-tint); color: var(--navy); margin-bottom: 14px; }
.price-card h3 { margin-bottom: 6px; }
.price-card p { color: var(--muted); }
.svc-photo { margin: 28px 0 8px; }
.footer-tagline { font-family: var(--font-head); font-size: 1.15rem; color: var(--accent); margin: 18px 0 6px !important; }
.area { display: grid; gap: 36px; }
@media (min-width: 960px) { .area { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: center; } }
.area__list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area__list li, .area__list a { display: inline-flex; align-items: center; gap: 6px; }
.area__list li { padding: 8px 14px; border-radius: 999px; background: var(--bg-light); border: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: .95rem; }
.section--light .area__list li { background: #fff; }
.area__list a { color: var(--navy); text-decoration: none; }
.area__list a:hover { color: var(--accent-text); text-decoration: underline; }
.area__list .icon { color: var(--accent-text); }
.area__list .area__more { background: none; border-style: dashed; color: var(--muted); }
.area__map { max-width: 440px; width: 100%; margin-inline: auto; }
.area__svg { width: 100%; height: auto; }
.area__svg .ring { fill: none; stroke: var(--navy); }
.area__svg .ring--1 { fill: color-mix(in srgb, var(--accent) 16%, transparent); stroke: var(--accent); stroke-width: 1.5; }
.area__svg .ring--2 { stroke-opacity: .22; stroke-dasharray: 5 6; }
.area__svg .ring--3 { stroke-opacity: .14; stroke-dasharray: 2 6; }
.area__svg .river { fill: none; stroke: color-mix(in srgb, var(--navy) 22%, #fff); stroke-width: 8; stroke-linecap: round; opacity: .5; }
.area__svg .pin-mark circle { fill: var(--navy); }
.area__svg .pin-mark .pulse { fill: none; stroke: var(--navy); stroke-width: 2; opacity: .5; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
.area__label { font-family: var(--font-head); font-size: 16px; letter-spacing: .18em; fill: var(--navy); }
.area__label--sm { font-family: var(--font-body); font-size: 11px; font-weight: 700; fill: var(--muted); }
@keyframes pulse { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(2.2); opacity: 0; } }
.loc-grid { display: grid; gap: 14px; }
@media (min-width: 600px) { .loc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.loc-card { display: flex; gap: 14px; align-items: center; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; }
.loc-card > .icon { width: 42px; height: 42px; padding: 10px; border-radius: 50%; background: var(--navy); color: var(--accent); }
.loc-card h3 { font-size: 1.1rem; margin: 0 0 2px; }
.loc-card h3 a { color: var(--ink); text-decoration: none; }
.loc-card h3 a:hover { color: var(--accent-text); text-decoration: underline; }
.loc-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.loc-card--more { border-style: dashed; background: var(--bg-light); }
.loc-card--more > .icon { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.faq { display: grid; gap: 28px; }
@media (min-width: 960px) { .faq { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; } .faq--solo { grid-template-columns: minmax(0, .6fr) minmax(0, 1.4fr); } }
.faq__head .section-head { margin-bottom: 24px; }
.faq__ask { padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.faq__ask .btn-row { margin-top: 16px; }
.faq__ask .btn { flex: 1 1 auto; }
.faq__list { display: grid; gap: 12px; }
.faq__item { border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: border-color .15s, box-shadow .15s; }
.section:not(.section--light) .faq__item { background: var(--bg-light); border-color: transparent; }
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__item summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; list-style: none; font-weight: 700; color: var(--ink); font-size: 1.0625rem; line-height: 1.4; border-radius: var(--r); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--navy); }
.faq__icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: #fff; border-radius: 2px; transition: transform .2s; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--accent); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--navy-deep); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }
.faq__a { padding: 0 20px 20px; color: var(--body); }
.quote-form { display: grid; gap: 16px; }
.quote-form--compact { padding: 26px 22px; border-radius: var(--r-lg); background: #fff; color: var(--body); box-shadow: var(--shadow-lg); border-top: 5px solid var(--accent); }
@media (min-width: 768px) { .quote-form--compact { padding: 30px; } }
.quote-form__head { margin-bottom: 2px; }
.quote-form__title { font-size: 1.5rem; margin: 0 0 4px; }
.quote-form__head p { color: var(--muted); font-size: .95rem; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 520px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: 6px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field label, .field legend { font-weight: 700; color: var(--ink); font-size: .9375rem; padding: 0; }
.field .req { color: #b3261e; }
.field .opt { font-weight: 500; color: var(--muted); font-size: .85rem; }
.field input:not([type='radio']):not([type='file']), .field select, .field textarea {
width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: #fff; color: var(--ink); font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312233b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #a9a293; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 35%, transparent); }
.field input[type='file'] { width: 100%; padding: 12px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-sm); background: var(--bg-light); font-size: .95rem; cursor: pointer; }
.field input[type='file']::file-selector-button { margin-right: 12px; padding: 8px 14px; border: 0; border-radius: 6px; background: var(--navy); color: #fff; font-weight: 700; cursor: pointer; }
.field ::placeholder { color: #8a929d; }
.field__hint { margin: 0; font-size: .85rem; color: var(--muted); }
.field__error { display: flex; gap: 6px; margin: 0; font-size: .875rem; font-weight: 600; color: #b3261e; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; background-color: #fff8f7; }
.radios { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.radio { position: relative; flex: 1 1 0; min-width: 88px; }
.radio input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.radio span { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 8px 12px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); font-weight: 700; color: var(--navy); background: #fff; transition: all .15s; }
.radio input:checked + span { border-color: var(--navy); background: var(--navy); color: #fff; }
.radio input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0; font-size: .85rem; color: var(--muted); text-align: center; }
.form-alert { padding: 14px 16px; border-radius: var(--r-sm); background: #fdecea; border: 1px solid #f3b8b2; color: #7a1d16; font-weight: 600; font-size: .95rem; }
.form-alert:focus { outline: none; }
.form-alert--info { background: var(--accent-tint); border-color: var(--accent); color: var(--navy-deep); }
.quote-form button[type='submit'][disabled] { opacity: .7; cursor: progress; }
.card-pad { padding: 24px 20px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
@media (min-width: 768px) { .card-pad { padding: 36px; } }
.card-title { font-size: 1.35rem; margin-bottom: 18px; }
.svc-detail { display: grid; gap: 40px; }
@media (min-width: 1024px) { .svc-detail { grid-template-columns: minmax(0, 1fr) 420px; gap: 64px; align-items: start; } }
.prose { max-width: 70ch; }
.prose--narrow { max-width: 760px; }
.prose p { font-size: 1.0625rem; }
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.8rem); margin-top: 1.6em; }
.prose > :first-child { margin-top: 0; }
.check-list { display: grid; gap: 10px; margin: 0 0 24px; }
@media (min-width: 600px) { .prose .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; } }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.check-list .icon { flex: none; width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--accent); color: var(--navy-deep); stroke-width: 3; margin-top: 2px; }
.callout { display: flex; gap: 16px; margin: 32px 0; padding: 22px; border-radius: var(--r); background: var(--bg-light); border-left: 4px solid var(--accent); }
.callout > .icon { width: 28px; height: 28px; color: var(--navy); margin-top: 2px; }
.callout h3 { margin-bottom: 4px; font-size: 1.1rem; }
.callout p { font-size: 1rem !important; color: var(--body); }
.sticky-card { padding: 24px 20px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-top: 5px solid var(--accent); }
@media (min-width: 768px) { .sticky-card { padding: 30px; } }
@media (min-width: 1024px) { .sticky-card { position: sticky; top: calc(var(--header-h) + 20px); } }
.sticky-card__title { font-size: 1.3rem; margin-bottom: 18px; }
.jump { position: sticky; top: var(--header-h); z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.jump ul { display: flex; gap: 6px; overflow-x: auto; padding-block: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.jump ul::-webkit-scrollbar { display: none; }
.jump a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; white-space: nowrap; color: var(--navy); font-weight: 700; font-size: .9rem; text-decoration: none; border: 1px solid var(--line); }
.jump a:hover { background: var(--bg-light); border-color: var(--line-strong); }
.jump .icon { color: var(--accent-text); }
.svc-group__head { display: flex; gap: 18px; align-items: flex-start; }
.svc-group__head .cat-card__icon { margin: 4px 0 0; }
.svc-group__head .section-head { margin-bottom: 28px; }
.svc-grid--3 { }
.owner-note { margin-top: 28px; padding: 22px; border-radius: var(--r); border: 1.5px dashed var(--accent); background: var(--accent-tint); }
.owner-note p { font-size: .975rem !important; color: var(--navy-deep); }
.owner-note__flag { display: inline-block; margin-bottom: 8px !important; padding: 3px 10px; border-radius: 6px; background: var(--accent); color: var(--navy-deep); font-size: .7rem !important; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.section--overlap { padding-top: 0; }
.section--overlap .contact { margin-top: -24px; position: relative; }
.contact { display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr); }
.contact > * { min-width: 0; }
@media (min-width: 1024px) { .contact { grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; align-items: start; } .section--overlap .contact { margin-top: -40px; } }
.contact__aside { display: grid; gap: 20px; }
.contact-card { padding: 26px; border-radius: var(--r-lg); background: var(--navy); color: var(--on-dark-muted); }
.contact-card .card-title { color: #fff; }
.contact-card--steps { background: var(--bg-light); color: var(--body); }
.contact-card--steps .card-title { color: var(--ink); }
.contact-methods { display: grid; gap: 10px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--r-sm); background: rgb(255 255 255 / 6%); color: #fff; text-decoration: none; }
a.contact-method:hover { background: rgb(255 255 255 / 12%); color: #fff; }
.contact-method .icon { width: 40px; height: 40px; padding: 9px; border-radius: 50%; background: var(--accent); color: var(--navy-deep); }
.contact-method strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-muted); }
.contact-method span { line-height: 1.35; font-weight: 600; }
.contact-card__note { margin: 14px 0 0; font-size: .875rem; }
.mini-steps { counter-reset: s; display: grid; gap: 12px; }
.mini-steps li { counter-increment: s; display: flex; gap: 12px; align-items: flex-start; font-size: .975rem; }
.mini-steps li::before { content: counter(s); flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: .8rem; margin-top: 1px; }
.status-page__inner { max-width: 640px; text-align: center; padding-block: 24px; }
.status-page h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); }
.status-page .eyebrow { justify-content: center; }
.status-page__icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: var(--accent); color: var(--navy-deep); }
.status-page__icon .icon { width: 36px; height: 36px; stroke-width: 2.5; }
.status-page .btn-row { margin-top: 28px; }
.cta-band { background: var(--accent); color: var(--navy-deep); }
.cta-band__inner { display: grid; gap: 22px; padding-block: 44px; }
.cta-band h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.2rem); color: var(--navy-deep); margin-bottom: 6px; }
.cta-band p { font-size: 1.0625rem; font-weight: 500; }
.cta-band .btn--accent { --btn-bg: var(--navy); --btn-bd: var(--navy); --btn-fg: #fff; box-shadow: none; }
.cta-band .btn--accent:hover { --btn-bg: var(--navy-deep); --btn-bd: var(--navy-deep); }
.cta-band .btn--outline { --btn-fg: var(--navy-deep); --btn-bd: var(--navy-deep); }
.cta-band .btn--outline:hover { --btn-bg: var(--navy-deep); --btn-fg: #fff; }
@media (min-width: 1024px) { .cta-band__inner { grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-block: 52px; } }
.site-footer { background: var(--navy-deep); color: var(--on-dark-muted); font-size: .95rem; }
.footer-cta { background: var(--navy); border-bottom: 1px solid rgb(255 255 255 / 8%); }
.footer-cta__inner { display: grid; gap: 20px; padding-block: 44px; }
.footer-cta__title { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem); margin-bottom: 6px; }
.footer-cta p { color: var(--on-dark-muted); }
@media (min-width: 900px) { .footer-cta__inner { grid-template-columns: 1fr auto; align-items: center; } }
.footer-main { display: grid; gap: 36px; padding-block: 52px; }
@media (min-width: 640px) { .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand p { margin: 18px 0; max-width: 38ch; }
.footer-contact { display: grid; gap: 10px; }
.footer-contact li, .footer-contact a { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .icon { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgb(255 255 255 / 20%); color: #fff; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--navy-deep); }
.footer-col__title { font-family: var(--font-body); color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--on-dark-muted); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 8%); font-size: .85rem; }
.footer-bottom__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 20px; }
.footer-bottom a { color: var(--on-dark-muted); }
.footer-bottom a:hover { color: #fff; }
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr 1.35fr; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgb(18 35 59 / 10%); padding-bottom: env(safe-area-inset-bottom); }
.mobile-bar__item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: var(--bar-h); color: var(--navy); font-weight: 700; font-size: .8125rem; text-decoration: none; }
.mobile-bar__item + .mobile-bar__item { border-left: 1px solid var(--line); }
.mobile-bar__item .icon { width: 22px; height: 22px; }
.mobile-bar__item--primary { flex-direction: row; gap: 8px; margin: 8px; min-height: calc(var(--bar-h) - 16px); border-radius: var(--r-sm); background: var(--accent); color: var(--navy-deep); font-size: .95rem; border-left: 0 !important; }
.mobile-bar__item:hover { color: var(--accent-text); }
.mobile-bar__item--primary:hover { color: var(--navy-deep); background: var(--accent-hover); }
@media (min-width: 900px) { .mobile-bar { display: none; } }
@media print {
.topbar, .site-header, .mobile-bar, .footer-cta, .hero__form, .cta-band { display: none !important; }
body { padding: 0; }
}
.contact-method span, .footer-contact a, .topbar a { min-width: 0; overflow-wrap: anywhere; }
.contact__aside > * { min-width: 0; }
.project .ba { aspect-ratio: 4/5; }