:root {
  --navy: #0f182b;
  --navy-2: #18243b;
  --ink: #182033;
  --muted: #5f6878;
  --paper: #f7f4ee;
  --white: #ffffff;
  --mist: #eef1f4;
  --line: #d8dde4;
  --coral: #e27463;
  --coral-dark: #bd5d50;
  --gold: #b99a59;
  --green: #2f7e5a;
  --shadow: 0 24px 60px rgba(15, 24, 43, 0.14);
  --shadow-soft: 0 12px 34px rgba(15, 24, 43, 0.09);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 36px; height: 2px; background: var(--coral); }
h1, h2, h3, h4 { margin: 0; color: var(--navy); line-height: 1.12; text-wrap: balance; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -0.025em; }
h1 { font-size: 4rem; font-size: clamp(2.55rem, 5.3vw, 5rem); }
h2 { font-size: 2.75rem; font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.3rem; font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
.lede { max-width: 760px; color: #455165; font-size: 1.18rem; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; }
.section-intro { max-width: 760px; color: var(--muted); font-size: 1.07rem; }
.small { font-size: 0.88rem; }
.muted { color: var(--muted); }

.utility-bar { color: #edf0f5; background: var(--navy); font-size: 0.86rem; }
.utility-bar__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.utility-bar__meta, .utility-bar__actions { display: flex; align-items: center; gap: 20px; }
.utility-bar a { color: var(--white); text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; }
.utility-bar__status { color: #c9cfda; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 221, 228, 0.9);
  backdrop-filter: blur(12px);
}
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; flex: 0 0 auto; }
.brand img { width: 74px; height: 34px; object-fit: contain; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 11px 10px; color: #364055; font-size: 0.92rem; font-weight: 650; text-decoration: none; border-radius: 8px; }
.site-nav a:hover { color: var(--navy); background: var(--mist); }
.site-nav a[aria-current="page"] { color: var(--navy); background: #f1ebe5; }
.site-nav .nav-cta { margin-left: 8px; padding-inline: 15px; color: var(--white); background: var(--navy); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--navy-2); }
.nav-toggle { display: none; padding: 9px 11px; color: var(--navy); background: transparent; border: 1px solid var(--line); border-radius: 8px; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 160ms ease; }
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

.hero { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 112px) 0 72px; background: linear-gradient(135deg, var(--paper) 0%, #fff 58%, #eef1f4 100%); }
.hero::before { content: ""; position: absolute; top: -130px; right: -140px; width: 480px; height: 480px; border: 1px solid rgba(226, 116, 99, 0.22); border-radius: 50%; }
.hero::after { content: ""; position: absolute; bottom: -220px; left: -120px; width: 430px; height: 430px; background: radial-gradient(circle, rgba(185,154,89,0.11), rgba(185,154,89,0)); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr); align-items: center; gap: clamp(42px, 6vw, 86px); }
.hero h1 { max-width: 820px; }
.hero .lede { margin-top: 25px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: 0.86rem; list-style: none; }
.hero__meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta li::before { content: ""; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.hero__media { position: relative; margin: 0; overflow: hidden; min-height: 480px; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy); }
.hero__media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,24,43,0.02) 45%, rgba(15,24,43,0.72) 100%); pointer-events: none; }
.hero__media figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 20px; color: var(--white); font-size: 0.82rem; letter-spacing: 0.02em; }
.hero--compact { padding-block: 64px; }
.hero--compact h1 { font-size: 3.5rem; font-size: clamp(2.45rem, 4.6vw, 4.35rem); }
.hero--compact .hero__media { min-height: 390px; }
.hero--compact .hero__media img { min-height: 390px; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 19px; border: 1px solid transparent; border-radius: 8px; font-weight: 750; text-decoration: none; transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 22px rgba(15,24,43,0.16); }
.btn--primary:hover { background: var(--navy-2); }
.btn--secondary { color: var(--navy); background: var(--white); border-color: #cbd1da; }
.btn--secondary:hover { background: var(--mist); }
.btn--coral { color: var(--navy); background: var(--coral); }
.btn--text { min-height: 0; padding: 0; color: var(--navy); border-radius: 0; border-bottom: 1px solid var(--navy); }
.btn--text:hover { transform: none; color: var(--coral-dark); border-color: var(--coral-dark); }

.capability-strip { background: var(--navy); color: var(--white); }
.capability-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.capability-strip__item { min-height: 105px; padding: 25px 24px; border-right: 1px solid rgba(255,255,255,0.13); }
.capability-strip__item:last-child { border-right: 0; }
.capability-strip__item span { display: block; margin-bottom: 5px; color: var(--coral); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.capability-strip__item strong { display: block; font-size: 0.98rem; line-height: 1.4; }

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section--tight { padding-block: 64px; }
.section--paper { background: var(--paper); }
.section--mist { background: var(--mist); }
.section--navy { color: #e7ebf2; background: var(--navy); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy .eyebrow { color: var(--coral); }
.section--navy .section-intro, .section--navy .muted { color: #bfc7d5; }
.section__head { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.48fr); align-items: end; gap: 50px; margin-bottom: 46px; }
.section__head--stack { display: block; max-width: 820px; }
.section__head--stack .section-intro { margin-top: 18px; }

.grid { display: grid; gap: 22px; }
.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)); }
.card { position: relative; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.card h3 { margin-bottom: 12px; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card--flat { box-shadow: none; }
.card--navy { color: #dce2ec; background: var(--navy-2); border-color: rgba(255,255,255,0.11); }
.card--navy h3 { color: var(--white); }
.card--link { display: flex; flex-direction: column; min-height: 280px; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--link .card__link { margin-top: auto; padding-top: 24px; font-weight: 800; }
.card__number { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--navy); background: #f2e9e3; border-radius: 50%; font-size: 0.8rem; font-weight: 850; }
.card__tag { display: inline-block; margin-bottom: 18px; color: var(--coral-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.feature-grid--reverse .feature-grid__media { order: 2; }
.feature-grid__media { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy); }
.feature-grid__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-grid__media figcaption { padding: 13px 16px; color: #d9dfeb; background: var(--navy); font-size: 0.78rem; }
.feature-grid__content > p { color: var(--muted); }
.feature-grid__content .check-list { margin-top: 24px; }

.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 31px; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 14px; height: 8px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.plain-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.plain-list li:last-child { border-bottom: 0; }
.section--navy .plain-list li, .section--navy .check-list li { border-color: rgba(255,255,255,0.14); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.process__step { counter-increment: step; min-height: 260px; padding: 28px; border-right: 1px solid var(--line); }
.process__step:last-child { border-right: 0; }
.process__step::before { content: "0" counter(step); display: block; margin-bottom: 34px; color: var(--coral-dark); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.16em; }
.process__step h3 { margin-bottom: 12px; }
.process__step p { color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 19px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--white); background: var(--navy); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 750; color: var(--navy); }

.callout { padding: clamp(30px, 5vw, 52px); border-left: 5px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0; background: var(--paper); }
.callout h2, .callout h3 { margin-bottom: 15px; }
.callout p:last-child { margin-bottom: 0; }
.callout--navy { color: #dfe5ef; background: var(--navy); }
.callout--navy h2, .callout--navy h3 { color: var(--white); }

.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.download-card { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px; color: inherit; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; box-shadow: var(--shadow-soft); transition: transform 160ms ease, box-shadow 160ms ease; }
.download-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.download-card__icon { display: grid; place-items: center; width: 58px; height: 72px; color: var(--navy); background: var(--paper); border: 1px solid var(--line); border-radius: 7px; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; }
.download-card h3 { margin-bottom: 8px; }
.download-card p { color: var(--muted); }
.download-card__meta { display: block; margin-top: 12px; color: var(--coral-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.gallery { display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: repeat(2, minmax(250px, 1fr)); gap: 18px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-sm); background: var(--navy); }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; transition: transform 300ms ease; }
.gallery figure:hover img { transform: scale(1.015); }
.gallery figcaption { position: absolute; inset: auto 0 0; padding: 36px 18px 16px; color: var(--white); background: linear-gradient(transparent, rgba(15,24,43,0.88)); font-size: 0.82rem; }

.case-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr); gap: 42px; align-items: start; }
.case-sidebar { position: sticky; top: calc(var(--header-height) + 24px); }
.definition-list { margin: 0; }
.definition-list > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.definition-list > div:first-child { padding-top: 0; }
.definition-list dt { margin-bottom: 4px; color: var(--muted); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.definition-list dd { margin: 0; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr); gap: 48px; align-items: start; }
.contact-panel { padding: 30px; color: #dfe5ef; background: var(--navy); border-radius: var(--radius); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel a { color: var(--white); }
.contact-panel__item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.contact-panel__item:last-child { border-bottom: 0; }
.contact-panel__label { display: block; margin-bottom: 5px; color: var(--coral); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.form-card { padding: clamp(26px, 5vw, 44px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 10px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 720; }
label .optional { color: var(--muted); font-size: 0.82rem; font-weight: 500; }
input, select, textarea { width: 100%; color: var(--ink); background: var(--white); border: 1px solid #bfc7d1; border-radius: 7px; padding: 12px 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(226,116,99,0.2); outline: none; }
textarea { min-height: 170px; resize: vertical; }
.field-hint { color: var(--muted); font-size: 0.78rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.form-note { margin: 20px 0 0; padding-top: 18px; color: var(--muted); font-size: 0.83rem; border-top: 1px solid var(--line); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal { max-width: 860px; }
.legal h2 { margin: 44px 0 14px; font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
.legal h3 { margin: 30px 0 10px; }
.legal ul { padding-left: 1.25rem; }
.legal li { margin-bottom: 8px; }
.legal .updated { margin-bottom: 34px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 64px 0; color: #e5eaf2; background: var(--navy); }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -180px; width: 430px; height: 430px; border: 1px solid rgba(226,116,99,0.3); border-radius: 50%; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band h2 { max-width: 760px; color: var(--white); font-size: 2.5rem; font-size: clamp(2rem, 3.4vw, 3rem); }
.cta-band p { max-width: 730px; margin: 14px 0 0; color: #bdc6d5; }
.cta-band__actions { display: flex; flex: 0 0 auto; gap: 12px; }

.site-footer { color: #c9d0dc; background: #0a1120; }
.site-footer__main { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr; gap: 48px; padding: 66px 0 46px; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--white); text-decoration: none; }
.footer-brand img { width: 90px; height: 38px; object-fit: contain; }
.footer-brand strong { display: block; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-copy { max-width: 370px; margin-top: 20px; color: #aeb7c7; }
.site-footer h2 { margin-bottom: 17px; color: var(--white); font-family: inherit; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: #c9d0dc; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.site-footer address { font-style: normal; }
.site-footer__base { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 26px; color: #909bab; font-size: 0.78rem; border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer__base-links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__base a { color: #b9c2d0; }

.status-page { min-height: 63vh; display: grid; place-items: center; padding: 90px 0; background: var(--paper); }
.status-card { max-width: 720px; padding: clamp(34px, 7vw, 70px); text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.status-card .status-code { color: var(--coral-dark); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.status-card h1 { margin: 14px 0 20px; font-size: 4rem; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.status-card .hero__actions { justify-content: center; }

.notice { padding: 16px 18px; color: #384357; background: #fff8e6; border: 1px solid #e6d39a; border-radius: 8px; }
.notice strong { color: var(--navy); }

@media (max-width: 1040px) {
  .site-header__inner { gap: 18px; }
  .site-nav a { padding-inline: 7px; font-size: 0.86rem; }
  .hero__grid { grid-template-columns: 1fr 0.8fr; gap: 38px; }
  .site-footer__main { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .site-footer__main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .utility-bar__status { display: none; }
  .site-header__inner { min-height: var(--header-height); }
  .has-js .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 42px; }
  .has-js .site-nav { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 14px 20px 22px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(15,24,43,0.12); }
  .has-js .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 12px; font-size: 0.98rem; }
  .site-nav .nav-cta { margin: 5px 0 0; text-align: center; }
  .hero__grid, .feature-grid, .contact-grid, .case-layout { grid-template-columns: 1fr; }
  .hero__media { min-height: 420px; }
  .hero__media img { min-height: 420px; }
  .section__head { grid-template-columns: 1fr; gap: 18px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process__step:nth-child(2) { border-right: 0; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid--reverse .feature-grid__media { order: initial; }
  .case-sidebar { position: static; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__main { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__main > :last-child { grid-column: auto; }
}

@media (max-width: 660px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .utility-bar__inner { min-height: 42px; }
  .utility-bar__meta { gap: 12px; }
  .utility-bar__meta span:first-child { display: none; }
  .utility-bar__actions .utility-email { display: none; }
  .brand img { width: 62px; }
  .brand__text strong { font-size: 0.88rem; }
  .brand__text small { font-size: 0.6rem; }
  .hero { padding-block: 54px 50px; }
  .hero__media, .hero__media img, .hero--compact .hero__media, .hero--compact .hero__media img { min-height: 330px; }
  .hero__actions, .cta-band__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .btn--text { width: auto; align-self: flex-start; }
  .hero__meta { display: grid; gap: 8px; }
  .capability-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .capability-strip__item:nth-child(2) { border-right: 0; }
  .capability-strip__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.13); }
  .grid--2, .grid--3, .grid--4, .download-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .process { grid-template-columns: 1fr; }
  .process__step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process__step:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery figure:first-child { grid-row: auto; }
  .gallery figure { min-height: 300px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__base { flex-direction: column; }
  .download-card { grid-template-columns: 52px 1fr; padding: 22px; }
  .download-card__icon { width: 50px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .utility-bar, .site-header, .cta-band, .site-footer, .hero__actions { display: none !important; }
  .hero, .section { padding: 30px 0; }
  .hero__grid, .feature-grid, .contact-grid, .case-layout { grid-template-columns: 1fr; }
  body { color: #000; background: #fff; }
  a { text-decoration: none; }
}
