/* omnix.network — site.css (v1). Design system per build specification §6. No framework. */
:root {
  --navy: #10315C; --navy-deep: #0B2344; --blue: #1F5FA8; --sky: #E8EEF6; --ink: #17202A;
  --grey: #5F6B7A; --line: #D9DFE7; --white: #FFFFFF; --green: #2FA36B; --green-deep: #1E7F52;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Barlow Semi Condensed", "Arial Narrow", var(--font-body);
  --max: 1200px; --gutter: 24px; --radius: 8px; --section: 96px; --header-h: 72px;
  --shadow: 0 10px 30px rgba(16, 49, 92, .14);
}
@media (max-width: 720px) { :root { --section: 56px; --header-h: 64px; } }

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (max-width: 720px) { html { font-size: 16px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font-body); font-weight: 400; line-height: 1.55; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img, video, svg { max-width: 100%; height: auto; display: block; }
picture { display: block; height: 100%; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--navy); text-wrap: balance; letter-spacing: -.005em; }
h1 { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; color: var(--grey); font-weight: 600; }
p { margin: 0 0 1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: .3em; }
strong { font-weight: 600; }
small, .small { font-size: .9rem; }
.muted { color: var(--grey); }
.lead { font-size: 1.18rem; max-width: 62ch; color: #2A3646; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: var(--radius); z-index: 100; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--tint { background: var(--sky); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy p { color: #fff; }
.section--deep { background: var(--navy-deep); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head .kicker { display: block; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--blue); margin-bottom: 10px; }
.section--navy .kicker, .section--deep .kicker { color: #9EC5F2; }
.grid { display: grid; gap: var(--gutter); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 48px; }
@media (max-width: 960px) { .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--split { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--blue); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sky); color: var(--navy); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .75); color: #fff; background: rgba(255, 255, 255, .06); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--green { background: var(--green); color: var(--navy-deep); }
.btn--green:hover { background: #3BB57A; color: var(--navy-deep); }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { font-family: var(--font-head); font-weight: 600; text-decoration: none; color: var(--blue); }
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { color: var(--navy); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { width: 128px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy); text-decoration: none; padding: 10px 12px; border-radius: 6px; min-height: 44px; display: inline-flex; align-items: center; }
.site-nav a:hover { background: var(--sky); }
.site-nav a[aria-current="page"] { color: var(--blue); box-shadow: inset 0 -2px 0 var(--blue); border-radius: 0; }
.site-nav .btn { margin-left: 8px; min-height: 44px; }
.site-nav a.btn--primary { color: #fff; background: var(--navy); }
.site-nav a.btn--primary:hover { background: var(--blue); color: #fff; }
.site-nav .nav-phone { display: none; }
.nav-toggle, .header-call { display: none; }
@media (max-width: 960px) {
  .site-nav a { font-size: 1rem; padding: 8px 8px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); cursor: pointer; }
  .nav-toggle span { position: relative; display: block; width: 22px; height: 2px; background: var(--navy); transition: transform .2s; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); transition: transform .2s, top .2s; }
  .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
  .header-call { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: var(--navy); color: #fff; margin-left: auto; margin-right: 10px; }
  .header-call svg { width: 22px; height: 22px; }
  .site-nav { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 32px; gap: 4px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; border-top: 1px solid var(--line); }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-size: 1.25rem; padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
  .site-nav .btn { margin: 16px 0 0; justify-content: center; border-bottom: 0; }
  .site-nav .nav-phone { display: inline-flex; margin-top: 12px; color: var(--grey); font-family: var(--font-body); font-weight: 500; border-bottom: 0; }
  body.nav-open { overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) { .site-nav { transition: none; } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: min(84vh, 780px); display: grid; align-items: end; color: #fff; background: var(--navy-deep); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media video { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero__media video.is-playing { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 35, 68, .18) 0%, rgba(11, 35, 68, .38) 45%, rgba(11, 35, 68, .88) 100%); }
.hero__content { padding-block: 120px 72px; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lead { color: rgba(255, 255, 255, .92); font-size: 1.22rem; margin-bottom: 28px; }
@media (max-width: 640px) { .hero { min-height: 78vh; } .hero__content { padding-block: 96px 56px; } .hero .btn { width: 100%; } }

/* Page hero (inner pages) */
.page-hero { position: relative; color: #fff; background: var(--navy-deep); overflow: hidden; isolation: isolate; display: grid; align-items: end; min-height: 500px; }
.page-hero--short { min-height: 360px; }
.page-hero .hero__media img { object-position: center; }
.page-hero .hero__overlay { background: linear-gradient(180deg, rgba(11, 35, 68, .12) 0%, rgba(11, 35, 68, .35) 45%, rgba(11, 35, 68, .82) 100%); }
.page-hero__content { padding-block: 96px 56px; max-width: 800px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255, 255, 255, .92); }
.page-hero--plain { background: var(--navy); min-height: 0; }
.page-hero--plain .page-hero__content { padding-block: 72px 48px; }
@media (max-width: 640px) { .page-hero { min-height: 340px; } .page-hero__content { padding-block: 72px 40px; } }

/* ---------- Two doors ---------- */
.doors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gutter); }
.door { display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; text-decoration: none; color: inherit; transition: box-shadow .2s ease, transform .2s ease; }
.door:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.door__media { aspect-ratio: 3 / 2; overflow: hidden; }
.door__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.door:hover .door__media img { transform: scale(1.03); }
.door__body { padding: 26px 28px 28px; display: grid; gap: 10px; align-content: start; }
.door__body h3 { font-size: 1.55rem; margin: 0; }
.door__body p { color: var(--grey); margin: 0; }
.door__body .link-arrow { margin-top: 6px; }
@media (max-width: 720px) { .doors { grid-template-columns: 1fr; } }

/* ---------- Feature blocks ---------- */
.feature { border-top: 2px solid var(--navy); padding-top: 18px; }
.feature__num { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .95rem; letter-spacing: .08em; margin-bottom: 8px; }
.feature h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feature p { color: var(--grey); margin: 0; }
.section--tint .feature { border-top-color: var(--blue); }

/* ---------- Audience rows ---------- */
.audience { border-top: 1px solid var(--line); }
.audience__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) auto; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.audience__row h3 { margin: 0; font-size: 1.3rem; }
.audience__row p { margin: 0; color: var(--grey); }
.audience__note { padding: 22px 0 0; color: var(--grey); font-size: 1rem; max-width: 80ch; }
@media (max-width: 760px) { .audience__row { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Logo strip (operators) ---------- */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 40px; }
.wordmark { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; letter-spacing: .01em; color: #7B8794; filter: grayscale(1); transition: color .2s ease, filter .2s ease; padding: 8px 0; line-height: 1; }
.wordmark:hover { color: var(--navy); filter: none; }
.wordmark img { height: 34px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.wordmark:hover img { filter: none; opacity: 1; }
.strip-title { text-align: center; color: var(--grey); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; margin-bottom: 24px; }
@media (max-width: 600px) { .logo-strip { gap: 12px 24px; } .wordmark { font-size: 1.35rem; } }

/* ---------- Badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; }
.badge { display: inline-flex; align-items: center; gap: 12px; border: 1.5px solid var(--navy); border-radius: var(--radius); padding: 10px 16px 10px 12px; min-height: 64px; background: #fff; color: var(--navy); }
.badge svg { width: 36px; height: 36px; flex: none; }
.badge__text { display: grid; line-height: 1.15; }
.badge__text b { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .03em; }
.badge__text span { font-size: .85rem; color: var(--grey); }
.section--deep .badge, .site-footer .badge { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .5); color: #fff; }
.section--deep .badge__text span, .site-footer .badge__text span { color: rgba(255, 255, 255, .75); }
.badge-strip { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
@media (max-width: 860px) { .badge-strip { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Bands ---------- */
.band { position: relative; overflow: hidden; color: #fff; background: var(--navy-deep); }
.band__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 420px; }
.band__body { padding: 64px var(--gutter); display: grid; align-content: center; gap: 16px; }
.band__body .inner { max-width: 520px; margin-left: auto; width: 100%; padding-right: 32px; }
.band__body h2, .band__body p { color: #fff; }
.band__body p { color: rgba(255, 255, 255, .85); }
.band__media { position: relative; min-height: 280px; }
.band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band--careers { border-top: 6px solid var(--green); }
.band--careers .kicker { color: var(--green); }
@media (max-width: 860px) { .band__grid { grid-template-columns: 1fr; } .band__body .inner { max-width: none; padding-right: 0; } .band__media { min-height: 240px; } }
.contact-band { background: var(--sky); }
.contact-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.contact-band h2 { margin: 0 0 6px; }
.contact-band .phone { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--navy); text-decoration: none; }
.contact-band .phone:hover { color: var(--blue); }

/* ---------- Cards ---------- */
.card { display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sky); }
.card__media--wide { aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 18px 20px 22px; }
.card__body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.card__body p { color: var(--grey); margin: 0; font-size: .98rem; }
.card--text { padding: 24px; grid-template-rows: none; border-top: 3px solid var(--navy); }
.card--text h3 { font-size: 1.25rem; }
.card--text p { color: var(--grey); margin: 0; }
.card--text ul { margin: 8px 0 0; padding-left: 1.1em; color: var(--grey); }

/* ---------- Media + text sections ---------- */
.media-text { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.media-text + .media-text { margin-top: 72px; }
.media-text__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.media-text__media img { width: 100%; height: 100%; object-fit: cover; }
.media-text--flip .media-text__media { order: 2; }
.media-text ul { color: #2A3646; }
@media (max-width: 860px) { .media-text { grid-template-columns: 1fr; gap: 24px; } .media-text--flip .media-text__media { order: 0; } .media-text + .media-text { margin-top: 48px; } }

/* ---------- Step strip ---------- */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: step; position: relative; }
.step { position: relative; padding-top: 22px; }
.step::before { content: ""; position: absolute; left: 0; right: -16px; top: 8px; height: 2px; background: var(--line); }
.step:last-child::before { right: 0; }
.step::after { content: ""; position: absolute; left: 0; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); }
.step__num { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .9rem; letter-spacing: .1em; }
.step h3 { font-size: 1.15rem; margin: 4px 0 6px; }
.step p { color: var(--grey); margin: 0; font-size: .95rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 0; } .step { padding: 0 0 22px 28px; } .step::before { left: 6px; right: auto; top: 8px; width: 2px; height: 100%; } .step:last-child::before { display: none; } .step::after { left: 0; top: 5px; } }

/* ---------- Definition lists / facts ---------- */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); }
.fact { border-left: 3px solid var(--blue); padding: 4px 0 4px 18px; }
.fact b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.fact span { color: var(--grey); }
@media (max-width: 720px) { .facts { grid-template-columns: 1fr; } }
.function-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 32px; }
.function-list li { padding: 14px 0; border-bottom: 1px solid var(--line); margin: 0; }
.function-list b { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.1rem; }
.function-list span { color: var(--grey); }
@media (max-width: 640px) { .function-list { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.form fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px 26px; margin: 0; min-width: 0; display: grid; gap: 18px; }
.form legend { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--navy); padding: 0 8px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 720px) { .form-row, .form-row--3, .form-row--4 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field .label { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem; }
.field .hint { color: var(--grey); font-size: .88rem; }
.field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), .field select, .field textarea { width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid #B9C4D2; border-radius: var(--radius); font: inherit; color: var(--ink); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31, 95, 168, .22); }
.field input[type="file"] { padding: 10px 0; font: inherit; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path d='M1 1l7 7 7-7' fill='none' stroke='%2310315C' stroke-width='2'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.check { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; min-height: 44px; }
.check input { width: 24px; height: 24px; margin: 2px 0 0; accent-color: var(--navy); }
.check span { line-height: 1.45; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
@media (max-width: 720px) { .check-grid { grid-template-columns: 1fr; } }
.check-row { display: grid; grid-template-columns: 1fr minmax(120px, 160px); gap: 12px; align-items: center; }
.check-row input[type="month"], .check-row input[type="text"] { min-height: 44px; padding: 8px 12px; border: 1.5px solid #B9C4D2; border-radius: 6px; font: inherit; width: 100%; }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 500; }
.radio-group input { width: 22px; height: 22px; accent-color: var(--navy); }
.form-status { font-weight: 500; color: var(--navy); min-height: 1.4em; }
.form-status.is-error { color: #B3261E; }
.form-success { border: 1.5px solid var(--green); border-left-width: 6px; border-radius: var(--radius); padding: 24px 28px; background: #F1FAF5; }
.form-success h3 { color: var(--green-deep); }
.form-note { color: var(--grey); font-size: .92rem; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-error-page { max-width: 640px; margin: 80px auto; padding: 0 24px; }

/* ---------- Map (site locator) ---------- */
.map-wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 40px; align-items: start; }
.map { position: relative; }
.map svg { width: 100%; max-width: 620px; height: auto; margin-inline: auto; }
.map .land { fill: #EEF2F7; stroke: none; }
.map .state { fill: var(--line); stroke: #fff; stroke-width: 1.6; cursor: pointer; transition: fill .2s ease; outline: none; }
.map .state.is-served { fill: var(--navy); }
.map .state:hover, .map .state:focus-visible, .map .state.is-active { fill: var(--blue); }
.map .label { font-family: var(--font-head); font-weight: 600; font-size: 22px; fill: var(--navy); pointer-events: none; }
.map .label.is-served { fill: #fff; }
.map-tip { position: absolute; z-index: 5; background: var(--navy-deep); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: .95rem; pointer-events: none; transform: translate(-50%, calc(-100% - 12px)); white-space: nowrap; box-shadow: var(--shadow); }
.map-tip[hidden] { display: none; }
.map-legend { display: grid; gap: 14px; }
.map-legend__item { display: flex; align-items: center; gap: 12px; }
.map-legend__swatch { width: 22px; height: 22px; border-radius: 4px; flex: none; border: 1px solid rgba(0, 0, 0, .08); }
.map-legend ul { columns: 2; padding-left: 1.1em; color: #2A3646; }
@media (max-width: 860px) { .map-wrap { grid-template-columns: 1fr; } .map .label { font-size: 26px; } }
@media (max-width: 480px) { .map .label { display: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .88); padding: 64px 0 28px; margin-top: 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #9EC5F2; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #9EC5F2; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer address { font-style: normal; line-height: 1.6; }
.site-footer .brand img { width: 150px; }
.site-footer__desc { margin-top: 16px; max-width: 42ch; color: rgba(255, 255, 255, .78); }
.site-footer__bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .15); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .92rem; color: rgba(255, 255, 255, .7); }
.site-footer .badges .badge { min-height: 56px; padding: 8px 12px; }
.site-footer .badge svg { width: 28px; height: 28px; }
@media (max-width: 960px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Prose pages ---------- */
.prose h2 { margin-top: 2.2em; font-size: 1.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; font-size: 1.2rem; }
.prose ul { color: #2A3646; }
.prose table { border-collapse: collapse; width: 100%; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--font-head); color: var(--navy); }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } .btn:hover, .card:hover, .door:hover { transform: none; } .door__media img { transition: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }
.text-center { text-align: center; }
.center { margin-inline: auto; }
.nowrap { white-space: nowrap; }
.tel { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; text-decoration: none; color: var(--navy); }
.tel:hover { color: var(--blue); }
.notice { border-left: 4px solid var(--blue); background: var(--sky); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; }
.osm { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sky); }
.osm iframe { width: 100%; height: 100%; border: 0; display: block; }
.not-found { text-align: center; padding: 120px 0; }
.not-found h1 { font-size: clamp(3rem, 8vw, 6rem); }
@media print { .site-header, .site-footer, .hero__media, .band__media, .nav-toggle, .header-call { display: none !important; } body { color: #000; } }

/* ---------- Helpers that replace inline styles (strict CSP) ---------- */
.fieldset--plain { border: 0 !important; padding: 0 !important; }
.legend--plain { font-size: 1rem !important; padding: 0 !important; }
.ta-short { min-height: 90px !important; }
.grid--top { align-items: start; }
.address { font-style: normal; line-height: 1.7; }
.function-list--1 { grid-template-columns: 1fr; }
.btn-row--center { justify-content: center; }
.swatch--navy { background: var(--navy); }
.swatch--grey { background: var(--line); }
