/* ==========================================================================
   MICRO NANO TECH — Version C design system
   One stylesheet for the Laravel application and the exported static preview.
   Logo colours are fixed: blue #036AB1, green #00954D. Everything else is a
   supporting palette derived for contrast on paper and on navy.

   Refinement pass, 21 September 2026: one spacing scale, one type scale and
   three weights (400/500/600) as tokens; rows of cards share their inner rows
   (subgrid) so titles, text, facts and links align across a row.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Fixed brand colours (from the logo SVG) */
  --blue: #036AB1;
  --green: #00954D;

  /* Supporting palette */
  --blue-deep: #03558E;        /* hover / pressed */
  --blue-tint: #E6F0F9;        /* soft blue surfaces */
  --blue-line: #B9D3EA;
  --green-deep: #00733B;       /* green as text on light backgrounds (AA) */
  --green-tint: #E3F3EA;
  --navy: #0D1C2A;             /* dark sections */
  --navy-2: #14293B;
  --navy-line: rgba(255,255,255,.14);
  --on-navy: #E6EDF2;          /* text on navy */
  --on-navy-2: #C9D5DE;
  --on-navy-muted: #9FB2C1;    /* 7.9:1 on navy */
  --ink: #142230;              /* body text */
  --ink-2: #33434F;
  --muted: #56666F;            /* secondary text: 5.2:1 on paper-2, 6.0:1 on white */
  --paper: #F5F7F5;            /* page background */
  --paper-2: #EDF0EE;          /* alternating sections */
  --white: #FFFFFF;
  --line: #D5DCE0;
  --line-strong: #AEBAC3;
  --field-line: #788994;       /* form-field boundary: 3.6:1 on white, 3.2:1 on paper-2 (WCAG 1.4.11) */
  --media: #DDE4E9;            /* placeholder behind photographs */
  --danger: #B3261E;
  --danger-deep: #8E1E17;
  --danger-tint: #FBEDEB;
  --focus: #036AB1;

  --sans: 'IBM Plex Sans', 'Plex Sans Fallback', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', SFMono-Regular, Menlo, Consolas, monospace;

  /* Type scale (px). Headings are fluid between the two ends of their clamp. */
  --t-tiny: 9px;               /* the illustration tag on a 96 px thumbnail, nothing else */
  --t-micro: 11px;             /* mono labels above values */
  --t-label: 12px;             /* eyebrows, captions, tags */
  --t-small: 13px;             /* notes, sub-values */
  --t-meta: 14px;              /* secondary text, table labels, card links */
  --t-ui: 15px;                /* buttons, navigation, card text */
  --t-body-s: 16px;
  --t-base: 17px;
  --t-card: 17px;              /* titles of text cards */
  --t-emph: 18px;              /* contact details, article card titles */
  --t-card-lg: 20px;           /* titles of photo cards */
  --t-drawer: 22px;            /* links in the mobile navigation drawer */
  --t-lead: clamp(18px, 1.6vw, 21px);
  --t-h3: clamp(20px, 2vw, 24px);
  --t-h2: clamp(27px, 3.4vw, 42px);
  --t-h1: clamp(33px, 5vw, 60px);
  --t-h1-detail: clamp(31px, 4.4vw, 52px);
  --w-regular: 400; --w-medium: 500; --w-bold: 600;
  --track-label: .1em;         /* letter-spacing of mono labels */

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-7: 32px; --s-8: 40px; --s-9: 56px; --s-10: 72px;
  --card-pad: var(--s-5);
  --card-gap: var(--s-5);

  --radius: 3px;
  --radius-lg: 6px;
  --wrap: 1280px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(56px, 8.4vw, 112px);
  --section-tight: clamp(40px, 6vw, 72px);
  --header-h: 96px;
  --subnav-h: 49px;
  --shadow-1: 0 1px 2px rgba(13,28,42,.06), 0 1px 1px rgba(13,28,42,.04);
  --shadow-2: 0 10px 30px -12px rgba(13,28,42,.25);
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: 320ms;
}
@media (max-width: 1000px) { :root { --header-h: 80px; } }

/* A metric-matched local fallback keeps line lengths and heights stable while IBM Plex Sans loads. */
@font-face { font-family: 'Plex Sans Fallback'; font-weight: 100 500; src: local('Arial'), local('Liberation Sans'), local('Helvetica'); size-adjust: 101.2%; ascent-override: 101.3%; descent-override: 27.2%; line-gap-override: 0%; }
@font-face { font-family: 'Plex Sans Fallback'; font-weight: 600 900; src: local('Arial Bold'), local('Arial-BoldMT'), local('Liberation Sans Bold'), local('Helvetica Bold'); size-adjust: 96.8%; ascent-override: 105.8%; descent-override: 28.4%; line-gap-override: 0%; }

/* ---------- 2. Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--s-4)); overflow-x: clip; }
body {
  margin: 0;
  font: var(--w-regular) var(--t-base)/1.6 var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
b, strong { font-weight: var(--w-bold); }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--blue-deep); }
p, ul, ol, dl, dd, figure, h1, h2, h3, h4 { margin: 0; }
ul, ol { padding: 0; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.section-navy :focus-visible, .scale-band :focus-visible, .site-footer :focus-visible, .cta-band :focus-visible { outline-color: #fff; }
::selection { background: var(--blue); color: #fff; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.print-only { display: none; }

/* ---------- 3. Typography ------------------------------------------------- */
h1, h2, h3, h4 { font-weight: var(--w-bold); letter-spacing: -0.015em; line-height: 1.12; color: var(--ink); text-wrap: balance; }
h1 { font-size: var(--t-h1); letter-spacing: -0.025em; line-height: 1.08; }
h2 { font-size: var(--t-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--t-h3); line-height: 1.2; }
h4 { font-size: var(--t-card); line-height: 1.3; }
p, li, dd, figcaption { text-wrap: pretty; }
.lead { font-size: var(--t-lead); line-height: 1.5; color: var(--ink-2); max-width: 36em; }
.lead-spaced { margin-top: var(--s-4); }
.eyebrow {
  font: var(--w-medium) var(--t-label)/1.5 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: var(--s-4);
}
.eyebrow::before { content: ''; flex: none; width: 22px; height: 2px; margin-top: calc(.75em - 1px); background: var(--green); border-radius: 1px; }
.eyebrow.no-rule::before { display: none; }
/* A list of short terms: lines break only between terms, and a separator never starts a line
   (each term carries its separator in a left padding that is clipped at the start of a line). */
.eyebrow-list .terms { display: block; min-width: 0; margin-left: -1.8em; -webkit-clip-path: inset(0 0 0 1.8em); clip-path: inset(0 0 0 1.8em); text-wrap: balance; }
.eyebrow-list .terms > span { display: inline-block; position: relative; white-space: nowrap; padding-left: 1.8em; }
.eyebrow-list .terms > span::before { content: '·'; content: '·' / ''; position: absolute; left: 0; width: 1.8em; text-align: center; }
.mono { font-family: var(--mono); }
.measure { max-width: 62ch; }
.muted { color: var(--muted); }
.section-note { margin-top: var(--s-4); color: var(--muted); max-width: 44ch; }
.section-note-spaced { margin-bottom: var(--s-6); }
.rich-text > * + * { margin-top: 1em; }
.rich-text ul, .rich-text ol { padding-left: 1.3em; }
.rich-text li + li { margin-top: .35em; }
.rich-text h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 1.6em; }
.rich-text h3 { margin-top: 1.4em; }
.rich-text img { border-radius: var(--radius-lg); }
.rich-text table { border-collapse: collapse; width: 100%; font-size: var(--t-ui); }
.rich-text td, .rich-text th { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
:lang(de) p, :lang(de) li, :lang(de) dd, :lang(ru) p, :lang(ru) li, :lang(ru) dd, :lang(ro) p, :lang(ro) li, :lang(ro) dd { -webkit-hyphens: auto; hyphens: auto; hyphenate-limit-chars: 10 4 4; }
.lead, .hero-copy p, .btn, .eyebrow, th, dt { -webkit-hyphens: manual !important; hyphens: manual !important; }

/* ---------- 4. Layout ----------------------------------------------------- */
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-tight { padding-block: var(--section-tight); }
.section-paper2 { background: var(--paper-2); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--on-navy); }
.section-navy h2, .section-navy h3, .section-navy h1 { color: #fff; }
.section-navy .eyebrow { color: var(--on-navy-muted); }
.section-navy a { color: #fff; }
.section-head { display: grid; gap: var(--s-4) var(--s-9); align-items: end; margin-bottom: clamp(28px, 4vw, 56px); }
.section-head > .section-head-side { color: var(--muted); max-width: 44ch; }
.section-head > .section-head-side p + a, .section-head > .section-head-side p + p { margin-top: var(--s-3); }
@media (min-width: 900px) { .section-head { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); } .section-head .section-head-side { justify-self: end; text-align: left; } }
.grid-2 { display: grid; gap: clamp(24px, 4vw, 56px); }
.grid-3, .grid-4 { display: grid; gap: var(--card-gap); }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.two-col { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .two-col.even { grid-template-columns: 1fr 1fr; }
  .two-col.align-center { align-items: center; }
  .two-col.stretch { align-items: stretch; }
  .two-col.sticky-aside > :first-child { position: sticky; top: calc(var(--header-h) + var(--subnav-h) + var(--s-6)); }
}
.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-7); }

/* ---------- 5. Buttons & links ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  background: var(--blue); color: #fff; border: 1px solid var(--blue);
  border-radius: var(--radius); font-weight: var(--w-bold); font-size: var(--t-ui); line-height: 1.25; letter-spacing: .005em;
  text-decoration: none; white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; box-shadow: var(--shadow-2); transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-1); }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: var(--blue-tint); color: var(--blue-deep); border-color: var(--blue-tint); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; box-shadow: none; }
.btn-small { min-height: 40px; padding: 0 16px; font-size: var(--t-meta); }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: var(--t-body-s); }
.btn[disabled], .btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.arrow-link, .card-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: var(--w-bold); font-size: var(--t-ui); line-height: 1.3;
  color: var(--blue); text-decoration: none;
}
.card-link { font-size: var(--t-meta); }
.arrow-link svg, .card-link svg { flex: none; width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.card-link svg { width: 16px; height: 16px; }
.arrow-link:hover { color: var(--blue-deep); text-decoration: underline; }
.arrow-link:hover svg, a:hover > .card-link svg, a:hover .card-body > .card-link svg, a:hover > .card-arrow svg, a:hover > .need-route svg { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4); align-items: center; }
.hero-actions { margin-top: var(--s-6); }

/* ---------- 6. Header ------------------------------------------------------ */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: var(--radius); text-decoration: none; }
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,247,245,.92);
  -webkit-backdrop-filter: saturate(160%) blur(10px); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(13,28,42,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 76px; }
@media (max-width: 1000px) { .brand img { height: 62px; } }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px;
  color: var(--ink); text-decoration: none; font-weight: var(--w-medium); font-size: var(--t-ui); border-radius: var(--radius);
  position: relative; white-space: nowrap;
}
@media (min-width: 1001px) and (max-width: 1240px) { .primary-nav > a { padding: 0 8px; font-size: var(--t-meta); } .nav-actions .btn-small { padding: 0 12px; } }
.primary-nav > a::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
@media (min-width: 1001px) and (max-width: 1240px) { .primary-nav > a::after { left: 8px; right: 8px; } }
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav > a[aria-current="page"] { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: var(--s-2); margin-left: 10px; }
.menu-toggle { display: none; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius); font-weight: var(--w-medium); font-size: var(--t-meta); }
.menu-toggle svg { width: 20px; height: 20px; }
.language { position: relative; }
.language summary { list-style: none; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 10px; border-radius: var(--radius); font: var(--w-medium) var(--t-small)/1 var(--mono); letter-spacing: .06em; cursor: pointer; }
@media (min-width: 1001px) and (max-width: 1240px) { .language summary { padding: 0 6px; } } /* after the base rule, or it never applies */
.language summary::-webkit-details-marker { display: none; }
.language summary svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.language[open] summary svg { transform: rotate(180deg); }
.language summary:hover { background: var(--paper-2); }
.language-list { position: absolute; right: 0; top: calc(100% + 6px); min-width: 170px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-2); padding: 6px; z-index: 60; }
.language-list a { display: flex; justify-content: space-between; align-items: center; min-height: 44px; padding: 0 12px; text-decoration: none; color: var(--ink); border-radius: var(--radius); font-size: var(--t-ui); }
.language-list a:hover { background: var(--blue-tint); }
.language-list a[aria-current="true"] { color: var(--blue); font-weight: var(--w-bold); }
.language-list a[aria-current="true"]::after { content: '✓'; font-size: var(--t-label); }
@media (max-width: 1000px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 0; top: 0; z-index: 70;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); padding: calc(var(--header-h) + var(--s-3)) var(--gutter) var(--s-8); overflow: auto;
    visibility: hidden; opacity: 0;
    transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
  }
  body.nav-open .primary-nav { visibility: visible; opacity: 1; transition-delay: 0s; animation: nav-in var(--dur) var(--ease); }
  @keyframes nav-in { from { transform: translateX(28px); } to { transform: none; } }
  body.nav-open { overflow: hidden; }
  .primary-nav > a { font-size: var(--t-drawer); font-weight: var(--w-bold); min-height: 60px; padding: 0; border-bottom: 1px solid var(--line); border-radius: 0; white-space: normal; }
  .primary-nav > a::after { display: none; }
  .nav-actions { margin: var(--s-6) 0 0; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4); }
  .nav-actions .btn { flex: 1 1 100%; min-height: 52px; font-size: var(--t-body-s); }
  .site-header { z-index: 80; }
  body.nav-open .site-header { background: var(--paper); }
  .header-inner > .menu-toggle { position: relative; z-index: 90; }
  .language-list { position: static; box-shadow: none; margin-top: 6px; }
}

/* ---------- 7. Footer ------------------------------------------------------ */
.site-footer { background: var(--navy); color: var(--on-navy-2); padding: clamp(48px, 6vw, 80px) 0 var(--s-7); margin-top: 0; }
.footer-top { display: grid; gap: var(--s-7); padding-bottom: var(--s-8); border-bottom: 1px solid var(--navy-line); }
@media (min-width: 1000px) { .footer-top { grid-template-columns: repeat(4, minmax(0,1fr)); column-gap: var(--s-6); align-items: start; } .footer-top > :first-child { grid-column: 1 / 3; } .footer-top > .footer-contact { grid-column: 3 / 5; } }
.footer-top .brand img { height: 72px; filter: brightness(0) invert(1); }
.footer-top p { max-width: 44ch; margin-top: var(--s-4); }
.footer-contact { display: grid; gap: var(--s-2); font-size: var(--t-ui); justify-items: start; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: var(--w-medium); }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact .mono { font-size: var(--t-label); font-weight: var(--w-medium); color: var(--on-navy-muted); letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s-1); }
.footer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-7) var(--s-6); padding: var(--s-8) 0; border-bottom: 1px solid var(--navy-line); }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.footer-grid h2 { font: var(--w-medium) var(--t-label)/1.5 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--on-navy-muted); margin-bottom: var(--s-3); text-wrap: wrap; }
.footer-grid a { display: block; color: var(--on-navy); text-decoration: none; font-size: var(--t-ui); line-height: 1.35; padding: 6px 0; overflow-wrap: anywhere; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6); justify-content: space-between; align-items: center; padding-top: var(--s-5); font-size: var(--t-small); color: var(--on-navy-muted); }
.footer-bottom a { color: var(--on-navy-2); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-langs { display: flex; gap: 2px; }
.footer-langs a { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px; font-family: var(--mono); letter-spacing: .06em; border-radius: 2px; }
.footer-langs a[aria-current="true"] { color: #fff; background: rgba(255,255,255,.1); }
.footer-certs { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.footer-certs span { display: inline-flex; align-items: center; gap: 8px; font: var(--w-medium) var(--t-label)/1 var(--mono); letter-spacing: .06em; color: var(--on-navy); border: 1px solid var(--navy-line); border-radius: 999px; padding: 8px 12px; }
.footer-certs span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
@media (max-width: 699px) { .footer-grid a { padding: 11px 0; } .footer-contact a { padding: 10px 0; } .footer-contact { gap: 0; } .footer-contact address { margin-top: var(--s-2); } .footer-langs a { min-width: 44px; min-height: 44px; } }

/* ---------- 8. Home hero --------------------------------------------------- */
.home-hero { position: relative; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.home-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .28;
  -webkit-mask-image: radial-gradient(ellipse at 20% 20%, #000 20%, transparent 70%); mask-image: radial-gradient(ellipse at 20% 20%, #000 20%, transparent 70%);
}
.hero-grid { position: relative; display: grid; gap: var(--s-8); padding: clamp(36px, 5.4vw, 80px) 0 clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(36px, 4.4vw, 56px) clamp(32px, 5vw, 72px); }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .hero-figure { grid-column: 2; grid-row: 1; }
  .hero-proof { grid-column: 1 / -1; grid-row: 2; }
}
@media (min-width: 960px) and (max-width: 1199px) { .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.hero-copy h1 { margin: 0 0 var(--s-5); max-width: 12em; }
.hero-copy h1 em { font-style: normal; color: var(--blue); }
:lang(ro) .hero-copy h1, :lang(ru) .hero-copy h1 { font-size: clamp(31px, 4.4vw, 54px); max-width: 13em; }
.hero-copy .lead { margin-bottom: var(--s-7); }
.hero-proof { display: grid; gap: var(--s-5); padding-top: var(--s-6); border-top: 1px solid var(--line); list-style: none; }
@media (min-width: 700px) { .hero-proof { grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(24px, 5vw, 72px); } }
.hero-proof li { list-style: none; font-size: var(--t-meta); line-height: 1.5; color: var(--ink-2); max-width: 40ch; }
.hero-proof li strong { display: block; font-size: var(--t-body-s); line-height: 1.35; color: var(--ink); font-weight: var(--w-bold); margin-bottom: var(--s-1); }
.hero-proof li .mono { display: block; font-size: var(--t-micro); font-weight: var(--w-medium); letter-spacing: var(--track-label); color: var(--green-deep); text-transform: uppercase; margin-bottom: var(--s-2); }
.hero-figure { margin: 0; }
.hero-media { position: relative; }
.hero-figure .hero-photo { border-radius: var(--radius-lg); overflow: hidden; background: #1B2A38; box-shadow: var(--shadow-2); aspect-ratio: 5 / 4; }
/* Stacked layout: a wider crop keeps the photograph from filling the first screen. Must follow the base rule. */
@media (max-width: 959px) { .hero-figure .hero-photo { aspect-ratio: 16 / 10; } }
.hero-figure .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure figcaption, .detail-photo figcaption { margin-top: var(--s-3); font: var(--w-regular) var(--t-label)/1.5 var(--mono); color: var(--muted); letter-spacing: .04em; }
.hero-callout {
  position: absolute; left: var(--s-4); bottom: var(--s-4); max-width: 250px;
  background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s-3) var(--s-4); box-shadow: var(--shadow-2); font-size: var(--t-small); line-height: 1.45; color: var(--ink-2);
}
.hero-callout strong { display: block; font-family: var(--mono); font-size: var(--t-micro); font-weight: var(--w-medium); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--blue); margin-bottom: var(--s-1); }
@media (max-width: 560px) { .hero-callout { position: static; max-width: none; margin-top: var(--s-3); box-shadow: none; } }

/* ---------- 9. Scale band -------------------------------------------------- */
/* The scale band's own rules live in fragments/scale.css (inlined by the fragment, 22.09.2026). The site only adds the reveal animation: */
html.reveal-ready .scale-grid:not(.is-visible) .scale-bar i { transform: scaleX(0); }
.scale-grid.is-visible .scale-bar i { transition: transform 900ms var(--ease) 150ms; }

/* ---------- 10. Family cards ---------------------------------------------- */
.family-grid { display: grid; column-gap: var(--card-gap); row-gap: 0; margin-bottom: calc(-1 * var(--card-gap)); }
@media (min-width: 700px) { .family-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1100px) { .family-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.family-card, .service-card, .article-card {
  display: flex; flex-direction: column; margin-bottom: var(--card-gap);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.family-card:hover, .service-card:hover, .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--blue-line); color: var(--ink); }
.card-media { position: relative; overflow: hidden; background: var(--media); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
a:hover > .card-media img { transform: scale(1.03); }
.media-tag { position: absolute; left: var(--s-3); bottom: var(--s-3); font: var(--w-medium) var(--t-micro)/1 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--ink); background: rgba(255,255,255,.92); border-radius: 2px; padding: 6px 8px; }
.family-card .card-media { aspect-ratio: 4/3; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: var(--card-pad) var(--card-pad) calc(var(--card-pad) + 2px); }
.card-index { font: var(--w-medium) var(--t-label)/1 var(--mono); color: var(--muted); letter-spacing: var(--track-label); margin-bottom: var(--s-3); }
.card-body h3 { font-size: var(--t-card-lg); line-height: 1.2; margin-bottom: var(--s-2); }
.card-body p { color: var(--muted); font-size: var(--t-ui); line-height: 1.55; }
.card-facts { margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid var(--line); display: grid; gap: var(--s-3); align-content: start; }
.card-facts dt, .quick-facts dt, .cert-facts dt, .fact-list dt, .direct-contact .mono { font: var(--w-medium) var(--t-micro)/1.4 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); }
.card-facts dd { margin-top: 2px; font-size: var(--t-meta); font-weight: var(--w-medium); line-height: 1.4; color: var(--ink); font-variant-numeric: tabular-nums; text-wrap: balance; }
.family-card .card-link { margin-top: auto; padding-top: var(--s-5); }

/* ---------- 11. Requirement / application grid ---------------------------- */
.need-grid { display: grid; column-gap: var(--s-4); row-gap: 0; margin-bottom: calc(-1 * var(--s-4)); }
@media (min-width: 700px) { .need-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .need-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.need-card { display: flex; flex-direction: column; margin-bottom: var(--s-4); padding: var(--s-6); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; color: var(--ink); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.need-card:hover { border-color: var(--blue-line); box-shadow: var(--shadow-2); transform: translateY(-2px); color: var(--ink); }
.need-card .need-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-bottom: var(--s-4); }
.need-card .need-icon svg { width: 24px; height: 24px; }
.need-card h3 { font-size: var(--t-card); line-height: 1.3; margin-bottom: var(--s-2); }
.need-card p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
.need-card .need-route { display: block; margin-top: auto; padding-top: var(--s-5); font: var(--w-medium) var(--t-label)/1.5 var(--mono); letter-spacing: .06em; color: var(--blue); text-transform: uppercase; }
.need-card .need-route svg { display: inline-block; vertical-align: -2px; width: 14px; height: 14px; margin-left: 4px; transition: transform var(--dur) var(--ease); }
@media (max-width: 699px) {
  .need-card { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: var(--s-4); padding: var(--s-5); }
  .need-card .need-icon { margin-bottom: 0; }
  .need-card h3 { align-self: center; margin-bottom: 0; }
  .need-card p, .need-card .need-route { grid-column: 1 / -1; }
  .need-card p { margin-top: var(--s-3); }
  .need-card .need-route { padding-top: var(--s-3); }
}

/* ---------- 12. Process stepper ------------------------------------------- */
.process { position: relative; }
.process-track { list-style: none; position: relative; display: grid; row-gap: 0; margin-top: var(--s-2); }
.process-step { position: relative; padding: 0 0 var(--s-7) 60px; }
.process-step:last-child { padding-bottom: 0; }
/* Connector from this dot to the next one: never runs past the last step. */
.process-step:not(:last-child)::before, .process-step:not(:last-child)::after { content: ''; position: absolute; left: 20px; top: 30px; bottom: -2px; width: 2px; background: var(--line); }
.process-step:not(:last-child)::after { background: linear-gradient(180deg, var(--green), var(--blue)); background-size: 100% 400%; background-position: 0 calc(var(--i, 0) * 33.333%); transform-origin: top; transform: scaleY(0); }
.is-visible .process-step::after, .no-motion .process-step::after, .no-js .process-step::after { transform: none; transition: transform 320ms linear calc(var(--i, 0) * 260ms + 200ms); }
.process-step .step-dot { position: absolute; left: 8px; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--white); border: 2px solid var(--line-strong); display: grid; place-items: center; font: var(--w-medium) var(--t-micro)/1 var(--mono); color: var(--muted); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); transition-delay: calc(var(--i, 0) * 260ms); }
.is-visible .process-step .step-dot, .no-motion .process-step .step-dot, .no-js .process-step .step-dot { border-color: var(--blue); color: var(--blue); }
.process-step h3 { font-size: var(--t-card); line-height: 1.3; padding-top: 2px; margin-bottom: var(--s-2); }
.process-step.is-highlight .step-dot { background: var(--blue) !important; color: #fff !important; border-color: var(--blue) !important; }
.process-step.is-highlight h3 { color: var(--blue); }
.process-step.is-other h3 { color: var(--ink-2); }
.process-step p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
@media (min-width: 900px) {
  .process-track { grid-template-columns: repeat(5, minmax(0,1fr)); column-gap: var(--s-6); }
  .process-step { padding: 52px 0 0; }
  .process-step:not(:last-child)::before, .process-step:not(:last-child)::after { left: 30px; right: calc(-1 * var(--s-6) - 4px); top: 12px; bottom: auto; width: auto; height: 2px; }
  .process-step:not(:last-child)::after { background: linear-gradient(90deg, var(--green), var(--blue)); background-size: 400% 100%; background-position: calc(var(--i, 0) * 33.333%) 0; transform-origin: left; transform: scaleX(0); }
  .process-step .step-dot { left: 0; top: 0; }
}
.process-foot { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-7); align-items: center; justify-content: space-between; margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--line); color: var(--muted); font-size: var(--t-ui); }

/* ---------- 13. Service cards --------------------------------------------- */
.service-grid { display: grid; column-gap: var(--card-gap); row-gap: 0; margin-bottom: calc(-1 * var(--card-gap)); }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.service-card .card-media { aspect-ratio: 16/10; }
.service-card .card-fact { display: block; margin-top: auto; font-size: var(--t-small); font-weight: var(--w-medium); line-height: 1.45; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.service-card .card-fact::before { content: ''; display: block; height: 1px; background: var(--line); margin: var(--s-4) 0 var(--s-3); }
@media (max-width: 560px) {
  .family-card .card-media { aspect-ratio: 16/9; }
  .service-card { flex-direction: row; align-items: flex-start; }
  .service-card .card-media { flex: none; width: 96px; height: 96px; aspect-ratio: auto; margin: var(--s-4) 0 var(--s-4) var(--s-4); border-radius: var(--radius); }
  .service-card .media-tag { left: 4px; right: 4px; bottom: 4px; padding: 4px 0; text-align: center; font-size: var(--t-tiny); letter-spacing: .04em; }
  .service-card .card-body { padding: var(--s-4); min-width: 0; }
  .service-card .card-body h3 { font-size: var(--t-card); }
  .service-card .card-body p { font-size: var(--t-meta); }
}

/* ---------- 14. Evidence -------------------------------------------------- */
.evidence-grid { display: grid; gap: var(--card-gap); }
@media (min-width: 900px) { .evidence-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: stretch; } }
.cert-stack { display: grid; gap: var(--s-4); align-content: start; }
.cert-card, .fact-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.cert-card { display: grid; gap: var(--s-4); padding: var(--s-6); }
.cert-head { display: flex; align-items: center; gap: var(--s-4); }
.cert-badge { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.cert-badge svg { width: 26px; height: 26px; }
.cert-head h3 { font-size: var(--t-card-lg); line-height: 1.2; }
.cert-head .cert-issuer { display: block; font-size: var(--t-small); line-height: 1.4; color: var(--muted); margin-top: var(--s-1); }
.cert-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3) var(--s-5); padding: var(--s-4) 0; border-block: 1px solid var(--line); }
.cert-facts dd, .quick-facts dd { margin-top: 2px; font-size: var(--t-ui); font-weight: var(--w-medium); line-height: 1.4; color: var(--ink); font-variant-numeric: tabular-nums; }
@media (max-width: 520px) { .cert-facts { grid-template-columns: 1fr; gap: 0; padding: var(--s-2) 0; } .cert-facts > div { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-4); padding: var(--s-2) 0; } .cert-facts dd { margin-top: 0; text-align: right; } }
.cert-scope { font-size: var(--t-meta); line-height: 1.55; color: var(--ink-2); }
.cert-scope span { display: block; font: var(--w-medium) var(--t-micro)/1.4 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-1); }
.cert-card .arrow-link { font-size: var(--t-meta); justify-self: start; }
.fact-panel { display: flex; flex-direction: column; padding: var(--s-2) var(--s-6) var(--s-6); }
.fact-list { display: grid; gap: 0; }
.fact-list > div { display: grid; gap: var(--s-1); padding: var(--s-4) 0; border-bottom: 1px solid var(--line); }
.fact-list dd { margin: 0; font-size: var(--t-body-s); line-height: 1.45; color: var(--ink); }
.fact-list dd small { display: block; font-size: var(--t-small); color: var(--muted); margin-top: 2px; }
.fact-note { margin-top: auto; padding-top: var(--s-5); font-size: var(--t-small); line-height: 1.5; color: var(--muted); }

/* ---------- 15. Enquiry panel --------------------------------------------- */
.enquiry-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.enquiry-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 960px) { .enquiry-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); } }
.brief-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-6); }
.section-paper2 .brief-panel, .contact-section .brief-panel { background: var(--white); }
.brief-panel h3, .brief-title { font-size: var(--t-card); line-height: 1.3; margin-bottom: var(--s-3); }
.check-list { list-style: none; display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; } /* the column never grows past the list for a long word (22.09.2026) */
.check-list li { position: relative; padding: 11px 0 11px 30px; border-top: 1px solid var(--line); font-size: var(--t-ui); line-height: 1.5; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 16px; height: 16px; border-radius: 50%; background: var(--green-tint); border: 1px solid var(--green); }
.check-list li::after { content: ''; position: absolute; left: 7px; top: 19px; width: 5px; height: 8px; border: solid var(--green-deep); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.check-list-compact li { font-size: var(--t-meta); padding-block: 9px; }
.check-list-compact li::before { top: 12px; } .check-list-compact li::after { top: 16px; }
.brief-panel .note { font-size: var(--t-small); line-height: 1.5; color: var(--muted); margin-top: var(--s-3); }
.context-chooser { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-top: var(--s-6); min-width: 0; }
.context-chooser label { font-weight: var(--w-bold); font-size: var(--t-ui); }
.context-chooser .chooser-row { display: flex; flex-wrap: wrap; gap: 10px; }
.context-chooser select { flex: 1 1 240px; }
.direct-contact { display: grid; gap: var(--s-4); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
/* Two columns only when each can hold the e-mail address on one line (about 230 px); otherwise one column. 22.09.2026 */
.enquiry-band .direct-contact { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.direct-contact-plain { margin-top: 0; padding-top: 0; border-top: 0; }
.direct-contact a { display: inline-block; font-size: var(--t-emph); font-weight: var(--w-bold); line-height: 1.3; text-decoration: none; color: var(--ink); padding: 3px 0; }
.direct-contact a:hover { color: var(--blue); }
.direct-contact .mono { display: block; margin-bottom: 2px; }

/* ---------- 16. Detail pages --------------------------------------------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0 var(--s-2); font-size: var(--t-small); color: var(--muted); padding: var(--s-3) 0 0; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 32px; color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--line-strong); }
.breadcrumb span[aria-current] { color: var(--ink-2); }
.breadcrumb-inline { padding-top: 0; margin-bottom: var(--s-5); }
.detail-hero { background: var(--white); border-bottom: 1px solid var(--line); }
.detail-grid { display: grid; gap: var(--s-7); padding: clamp(24px, 3.4vw, 48px) 0 clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); } }
.detail-grid h1, .page-hero.has-figure h1 { font-size: var(--t-h1-detail); margin-bottom: var(--s-4); }
.detail-grid .lead { margin-bottom: var(--s-6); }
.detail-photo { margin: 0; }
.detail-photo .photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--media); box-shadow: var(--shadow-2); aspect-ratio: 5/4; }
.detail-photo .photo-frame.contain { background: var(--paper-2); }
.detail-photo .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.detail-photo .photo-frame.contain img { object-fit: contain; padding: 6%; }
.article-photo { margin-bottom: var(--s-8); } .article-photo .photo-frame { aspect-ratio: 16/9; }
.photo-zoom { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; text-align: left; }
.photo-zoom > span { position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-1); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.photo-zoom:hover > span { background: var(--blue); color: #fff; }
.photo-zoom > span svg { width: 18px; height: 18px; }
.quick-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s-4) var(--s-5); margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.quick-facts div { display: grid; gap: 2px; align-content: start; }
.section-nav { position: sticky; top: var(--header-h); z-index: 30; background: rgba(245,247,245,.94); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.section-nav .wrap { display: flex; gap: var(--s-1); overflow-x: auto; scrollbar-width: none; width: min(calc(var(--wrap) + 24px), calc(100% - 2 * var(--gutter) + 24px)); } /* 12 px link padding on both ends, so every row starts flush with the page edge */
.section-nav .wrap::-webkit-scrollbar { display: none; }
.section-nav a { flex: none; display: inline-flex; align-items: center; min-height: 48px; padding: 0 12px; font-size: var(--t-meta); font-weight: var(--w-medium); color: var(--ink-2); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; }
.section-nav a:hover, .section-nav a.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.section-nav a.nav-cta { margin-left: auto; color: var(--blue); font-weight: var(--w-bold); }
/* From 1000 px the bar wraps onto a second row when its links do not fit (eight links on the microcoils page, long Russian labels);
   below that it scrolls sideways, as before. The sticky offset follows the measured height (site.js). 22.09.2026 */
@media (min-width: 1000px) { .section-nav .wrap { flex-wrap: wrap; row-gap: 0; overflow-x: visible; } }
.section-nav ~ section, .section-nav ~ section [id], .section-nav ~ .mnt-fragment section[id] { scroll-margin-top: calc(var(--header-h) + var(--subnav-h) + var(--s-2)); }
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--t-ui); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; table-layout: fixed; }
.spec-table caption { caption-side: top; text-align: left; font: var(--w-medium) var(--t-micro)/1.4 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); padding: 0 0 var(--s-3); }
.spec-table-spaced { margin-top: var(--s-6); }
.spec-table th, .spec-table td { text-align: left; vertical-align: top; padding: 13px var(--s-4); border-top: 1px solid var(--line); line-height: 1.45; }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: 0; }
.spec-table th { width: 36%; font-weight: var(--w-medium); color: var(--muted); font-size: var(--t-meta); }
.spec-table td { font-size: var(--t-ui); font-weight: var(--w-medium); color: var(--ink); font-variant-numeric: tabular-nums; }
.spec-table td small { display: block; font-size: var(--t-small); font-weight: var(--w-regular); color: var(--muted); margin-top: 2px; }
@media (max-width: 699px) {
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: auto; }
  /* Stacked: the caption moves inside the frame and reads as the table's head row. */
  .spec-table caption { display: block; padding: var(--s-3) var(--s-4); background: var(--paper); border-bottom: 1px solid var(--line); }
  .spec-table tr { padding: var(--s-3) var(--s-4); border-top: 1px solid var(--line); }
  .spec-table tr:first-child { border-top: 0; }
  .spec-table th, .spec-table td { padding: 0; border: 0; }
  .spec-table th { font: var(--w-medium) var(--t-micro)/1.4 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; margin-bottom: 3px; }
}
.spec-caption { font-size: var(--t-small); color: var(--muted); margin-top: var(--s-3); }
.option-grid { display: grid; gap: var(--s-4); }
@media (min-width: 700px) { .option-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .option-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.option-card, .value-card { padding: var(--s-5) var(--s-6) var(--s-6); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.option-card h3, .option-card h4, .value-card h3 { font-size: var(--t-card); line-height: 1.3; margin-bottom: var(--s-2); }
.option-card p, .value-card p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
.option-card .mono, .value-card .mono, .cap-service > .mono { font-size: var(--t-label); font-weight: var(--w-medium); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--blue); display: block; margin-bottom: var(--s-3); }
.tag-list { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tag-list li { list-style: none; font-size: var(--t-meta); line-height: 1.3; padding: 9px 14px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); }
.aside-title { font-size: var(--t-h3); margin-bottom: var(--s-3); }
.technical-disclosure { border-top: 1px solid var(--line); }
.technical-disclosure:last-of-type { border-bottom: 1px solid var(--line); }
.technical-disclosure summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); padding: var(--s-4) 0; font-weight: var(--w-bold); font-size: var(--t-card); line-height: 1.3; cursor: pointer; }
.technical-disclosure summary::-webkit-details-marker { display: none; }
.technical-disclosure summary .disclosure-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--blue); transition: background var(--dur) var(--ease); }
.technical-disclosure summary .disclosure-icon svg { transition: transform var(--dur) var(--ease); }
.technical-disclosure[open] summary .disclosure-icon { background: var(--blue-tint); }
.technical-disclosure[open] summary .disclosure-icon svg { transform: rotate(45deg); }
.technical-disclosure summary:hover { color: var(--blue); }
.technical-disclosure > div { padding: 0 0 var(--s-5); color: var(--ink-2); font-size: var(--t-body-s); max-width: 64ch; }
.sample-gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-3); }
@media (min-width: 700px) { .sample-gallery { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1000px) { .sample-gallery { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.sample-gallery .photo-zoom { border-radius: var(--radius-lg); overflow: hidden; background: var(--media); aspect-ratio: 1; }
@media (max-width: 699px) { .sample-gallery > .photo-zoom:last-child:nth-child(odd) { grid-column: span 2; aspect-ratio: 2 / 1; } }
.sample-gallery .photo-zoom img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.sample-gallery .photo-zoom:hover img { transform: scale(1.04); }
.sample-gallery .photo-zoom > span { width: 36px; height: 36px; right: 8px; bottom: 8px; }
.related-strip { display: grid; column-gap: var(--s-4); row-gap: 0; margin-bottom: calc(-1 * var(--s-4)); }
@media (min-width: 700px) { .related-strip { grid-template-columns: repeat(3, minmax(0,1fr)); } .related-strip.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.related-card { position: relative; display: flex; flex-direction: column; margin-bottom: var(--s-4); padding: var(--s-5) var(--s-6) var(--s-6); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; color: var(--ink); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.related-card:hover { border-color: var(--blue-line); box-shadow: var(--shadow-2); transform: translateY(-2px); color: var(--ink); }
.related-card .mono { font-size: var(--t-label); font-weight: var(--w-medium); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-3); }
.related-card h3 { font-size: var(--t-card); line-height: 1.3; margin-bottom: var(--s-2); }
.related-card p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
.related-card .card-arrow { position: absolute; right: var(--s-5); top: var(--s-5); color: var(--blue); }
.related-card .card-arrow svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.cta-band { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.cta-grid { position: relative; z-index: 1; display: grid; gap: var(--s-6); align-items: center; padding-block: clamp(48px, 6vw, 80px); }
@media (min-width: 900px) { .cta-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); } }
.cta-grid h2 { color: #fff; margin-bottom: var(--s-3); }
.cta-grid p { color: #fff; max-width: 46ch; }
.cta-grid .actions { justify-content: flex-start; }
@media (min-width: 900px) { .cta-grid .actions { justify-content: flex-end; } }

/* ---------- 17. Page-specific ------------------------------------------- */
.page-hero { background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero .wrap, .page-hero .wrap-narrow { padding: clamp(36px, 5vw, 72px) 0 clamp(36px, 5vw, 64px); }
.page-hero h1 { max-width: 16em; margin-bottom: var(--s-4); }
.page-hero .lead { margin-bottom: 0; }
.page-hero.has-figure .wrap { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 900px) { .page-hero.has-figure .wrap { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); } }
.timeline { display: grid; gap: 0; margin-left: 5px; border-left: 2px solid var(--line); }
.timeline li { list-style: none; position: relative; padding: 0 0 var(--s-7) var(--s-7); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--blue); }
.timeline .mono { font-size: var(--t-label); font-weight: var(--w-medium); letter-spacing: var(--track-label); color: var(--blue); text-transform: uppercase; display: block; margin-bottom: var(--s-1); }
.timeline h3 { font-size: var(--t-card); line-height: 1.3; margin-bottom: var(--s-1); }
.timeline p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
.value-grid { display: grid; gap: var(--s-4); }
@media (min-width: 700px) { .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.value-card .mono { color: var(--green-deep); }
.location-list { display: grid; gap: 0; border-top: 1px solid var(--line); align-content: start; }
.location-list li { list-style: none; display: grid; gap: 2px; padding: var(--s-4) 0; border-bottom: 1px solid var(--line); }
.location-list b { font-size: var(--t-body-s); line-height: 1.35; }
.location-list span { font-size: var(--t-ui); line-height: 1.45; color: var(--muted); }
.location-list a { font-size: var(--t-meta); }
.map-placeholder { border: 1px solid var(--line); border-radius: var(--radius-lg); background-color: var(--white); background-image: linear-gradient(var(--paper-2) 1px, transparent 1px), linear-gradient(90deg, var(--paper-2) 1px, transparent 1px); background-size: 40px 40px; background-position: center; min-height: 320px; display: grid; place-items: center; text-align: center; padding: var(--s-7); color: var(--muted); font-size: var(--t-meta); }
.map-placeholder-inner { display: grid; justify-items: center; gap: var(--s-2); max-width: 46ch; padding: var(--s-5) var(--s-6); background: rgba(255,255,255,.9); border-radius: var(--radius-lg); }
.map-placeholder strong { display: block; font-size: var(--t-emph); color: var(--ink); }
.map-placeholder svg { width: 32px; height: 32px; color: var(--blue); }
.contact-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } .contact-aside { position: sticky; top: calc(var(--header-h) + var(--s-6)); } }
.contact-aside { display: flex; flex-direction: column; gap: var(--s-6); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); }
.form-card h2 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: var(--s-2); }
.form-card .form-intro { color: var(--muted); font-size: var(--t-ui); margin-bottom: var(--s-5); }
.article-grid { display: grid; column-gap: var(--card-gap); row-gap: 0; margin-bottom: calc(-1 * var(--card-gap)); }
@media (min-width: 700px) { .article-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .article-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } .article-grid.count-2, .article-grid.count-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1200px) { .article-grid.count-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.article-card .card-media { aspect-ratio: 16/9; }
.article-card .card-body { padding: var(--s-5); }
.article-card .mono { font-size: var(--t-micro); font-weight: var(--w-medium); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-3); }
.article-card .card-body h3 { font-size: var(--t-emph); line-height: 1.3; }
.article-card .card-link { margin-top: auto; padding-top: var(--s-4); }
.article-header .mono { display: block; font-size: var(--t-label); font-weight: var(--w-medium); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-3); }
.article-header h1 { font-size: var(--t-h1-detail); margin-bottom: 0; }
.article-body { font-size: var(--t-base); line-height: 1.7; }
.article-body img { border-radius: var(--radius-lg); }
.article-share { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); align-items: center; margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); font-size: var(--t-meta); color: var(--muted); }
.article-share a { font-size: var(--t-meta); min-height: 32px; }
.notice { display: flex; gap: var(--s-3); align-items: flex-start; padding: var(--s-3) var(--s-4); border-radius: 0 var(--radius) var(--radius) 0; background: var(--blue-tint); color: var(--ink-2); font-size: var(--t-meta); line-height: 1.5; border-left: 3px solid var(--blue); }
.notice.notice-green { background: var(--green-tint); border-left-color: var(--green); }
.notice-spaced { margin-top: var(--s-5); }
.page-note { margin-top: clamp(32px, 4vw, 56px); padding-top: var(--s-5); border-top: 1px solid var(--line); font-size: var(--t-small); line-height: 1.5; color: var(--muted); max-width: 86ch; }
.error-page { text-align: center; padding: clamp(64px, 10vw, 140px) 0; }
.error-page .mono { font-size: var(--t-small); letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.error-page h1 { margin: 10px 0 var(--s-4); }
.error-page p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
.error-page .actions { justify-content: center; margin-top: var(--s-7); }
/* Capabilities overview */
.cap-products { display: grid; column-gap: clamp(24px, 4vw, 56px); row-gap: 0; }
.cap-tables { display: grid; gap: var(--s-7); margin-top: var(--s-8); }
@media (min-width: 900px) { .cap-tables { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cap-table h3 { font-size: var(--t-card-lg); line-height: 1.25; margin-bottom: var(--s-2); }
.cap-table > p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); margin-bottom: var(--s-4); }
@media (min-width: 900px) { .cap-products { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.cap-product { display: flex; flex-direction: column; margin-bottom: var(--s-9); }
.cap-products .cap-product:last-child { margin-bottom: 0; }
@media (min-width: 900px) { .cap-products .cap-product:nth-last-child(2):nth-child(odd) { margin-bottom: 0; } }
.cap-product h3 { margin-bottom: var(--s-2); }
.cap-product h3 a, .cap-service h3 a { color: inherit; text-decoration: none; }
.cap-product h3 a:hover, .cap-service h3 a:hover { color: var(--blue); }
.cap-product > p { color: var(--muted); font-size: var(--t-body-s); margin-bottom: var(--s-5); max-width: 52ch; }
.cap-product .spec-table { align-self: start; }
.cap-product .arrow-link { margin-top: var(--s-4); align-self: start; }
.cap-services { display: grid; column-gap: var(--card-gap); row-gap: 0; margin-bottom: calc(-1 * var(--card-gap)); }
@media (min-width: 700px) { .cap-services { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .cap-services { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.cap-service { display: flex; flex-direction: column; margin-bottom: var(--card-gap); padding: var(--s-5) var(--s-6) var(--s-6); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.cap-service h3 { font-size: var(--t-card-lg); line-height: 1.2; margin-bottom: var(--s-2); }
.cap-service p { font-size: var(--t-ui); line-height: 1.55; color: var(--muted); }
.cap-service .cap-fact { margin-top: var(--s-3); font-size: var(--t-meta); font-weight: var(--w-medium); color: var(--ink); font-variant-numeric: tabular-nums; }
.cap-service h4 { font: var(--w-medium) var(--t-micro)/1.4 var(--mono); letter-spacing: var(--track-label); text-transform: uppercase; color: var(--muted); margin-top: var(--s-5); margin-bottom: var(--s-2); }

/* Rows shared across a row of cards (subgrid): titles, text, facts and links line up. */
@supports (grid-template-rows: subgrid) {
  /* A card that becomes a grid gets one implicit column sized to its longest word; this caps that column at the
     card's own width, so a long compound wraps inside the card instead of pushing the card out of its track. */
  .family-card, .family-card .card-body, .need-card, .related-card, .article-card, .article-card .card-body,
  .cap-service, .cap-product, .cap-table, .service-card, .service-card .card-body, .process-step { grid-template-columns: minmax(0, 1fr); }
  .family-card { display: grid; grid-row: span 6; grid-template-rows: subgrid; }
  .family-card .card-body { display: grid; grid-row: span 5; grid-template-rows: subgrid; }
  .family-card .card-link { align-self: end; }
  .need-card { display: grid; grid-row: span 4; grid-template-rows: subgrid; }
  .need-card .need-route { align-self: start; margin-top: 0; }
  .related-card { display: grid; grid-row: span 3; grid-template-rows: subgrid; }
  .article-card { display: grid; grid-row: span 5; grid-template-rows: subgrid; }
  .article-card .card-body { display: grid; grid-row: span 4; grid-template-rows: subgrid; }
  .article-card .card-link { align-self: end; }
  .cap-service { display: grid; grid-row: span 8; grid-template-rows: subgrid; }
  .cap-service .check-list { grid-row: span 3; grid-template-rows: subgrid; }
  .cap-product { display: grid; grid-row: span 4; grid-template-rows: subgrid; }
  .cap-table { display: grid; grid-row: span 3; grid-template-rows: subgrid; }
  @media (min-width: 561px) {
    .service-card { display: grid; grid-row: span 5; grid-template-rows: subgrid; }
    .service-card .card-body { display: grid; grid-row: span 4; grid-template-rows: subgrid; }
    .service-card .card-fact { align-self: start; margin-top: 0; }
  }
  @media (min-width: 900px) {
    .process-step { display: grid; grid-row: span 2; grid-template-rows: subgrid; }
  }
  @media (max-width: 699px) { .need-card { grid-row: auto; grid-template-rows: none; grid-template-columns: 44px minmax(0, 1fr); } }
}

/* ---------- 18. Forms ---------------------------------------------------- */
.form-row { display: grid; gap: 0 var(--s-4); }
@media (min-width: 600px) { .form-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.form-item { display: grid; gap: 6px; margin-bottom: var(--s-4); align-content: start; }
.form-item label { font-weight: var(--w-bold); font-size: var(--t-ui); }
.form-item label span[aria-hidden] { color: var(--blue); }
.form-item input, .form-item select, .form-item textarea, .context-chooser select, .newsletter-form input {
  width: 100%; min-width: 0; max-width: 100%; min-height: 48px; padding: 10px 14px; background: #fff; color: var(--ink);
  border: 1px solid var(--field-line); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-item select, .context-chooser select, .iv-field select {
  -webkit-appearance: none; appearance: none; padding-right: 42px; text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23142230' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px 18px;
}
.form-item textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.form-item input:hover, .form-item select:hover, .form-item textarea:hover, .context-chooser select:hover, .newsletter-form input:hover { border-color: var(--ink-2); }
.form-item input:focus, .form-item select:focus, .form-item textarea:focus, .context-chooser select:focus, .newsletter-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(3,106,177,.22); }
.form-item [aria-invalid="true"] { border-color: var(--danger); }
.form-item [aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(179,38,30,.18); }
.field-error { font-size: var(--t-meta); color: var(--danger-deep); min-height: 0; }
.field-error:empty { display: none; }
.form-note { font-size: var(--t-meta); color: var(--muted); margin-bottom: var(--s-4); }
.form-submit { margin-top: var(--s-2); display: grid; gap: var(--s-3); }
.form-submit .button, .form-submit .btn { width: 100%; min-height: 52px; }
.form-submit .button { display: inline-flex; align-items: center; justify-content: center; background: var(--blue); color: #fff; border: 1px solid var(--blue); border-radius: var(--radius); font-weight: var(--w-bold); font-size: var(--t-body-s); transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.form-submit .button:hover { background: var(--blue-deep); box-shadow: var(--shadow-2); }
.form-submit .button[disabled] { opacity: 1; background: var(--paper-2); border-color: var(--line); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.error-alert { display: none; padding: var(--s-3) var(--s-4); border-radius: 0 var(--radius) var(--radius) 0; font-size: var(--t-ui); margin-bottom: var(--s-4); border-left: 3px solid; }
.error-alert:not(:empty) { display: block; }
.error-alert.is-error { background: var(--danger-tint); color: #6E1912; border-left-color: var(--danger); }
.error-alert.is-success { background: var(--green-tint); color: #0B4A2A; border-left-color: var(--green); }
.error-alert.is-info { background: var(--blue-tint); color: var(--ink-2); border-left-color: var(--blue); }
.demo-note { display: inline-flex; align-items: center; gap: 8px; font: var(--w-medium) var(--t-label)/1.4 var(--mono); letter-spacing: .04em; color: var(--ink-2); background: var(--blue-tint); border-radius: var(--radius); padding: 8px 12px; margin-bottom: var(--s-4); }
.demo-note::before { content: ''; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.newsletter-form { display: grid; gap: var(--s-3); }
.newsletter-form .form-item { margin-bottom: 0; }
.newsletter-form .newsletter-row { display: grid; gap: 10px; }
@media (min-width: 600px) { .newsletter-form .newsletter-row { grid-template-columns: 1fr auto; } }

/* ---------- 19. Dialog --------------------------------------------------- */
.photo-dialog { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 94vh; }
.photo-dialog::backdrop { background: rgba(13,28,42,.86); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.photo-dialog img { max-width: min(96vw, 1400px); max-height: 84vh; width: auto; height: auto; margin: 0 auto; border-radius: var(--radius-lg); background: #fff; }
.photo-dialog .dialog-close { position: absolute; right: 8px; top: 8px; min-height: 44px; padding: 0 16px; background: #fff; color: var(--ink); border: 0; border-radius: var(--radius); font-weight: var(--w-bold); font-size: var(--t-ui); }
.photo-dialog .dialog-close:hover { background: var(--blue-tint); }
.photo-dialog figcaption { text-align: center; color: var(--on-navy-2); font: var(--w-regular) var(--t-small)/1.5 var(--mono); padding: var(--s-3) 0 var(--s-1); }

/* ---------- 20. Motion --------------------------------------------------- */
/* Content is hidden for a reveal only once site.js has confirmed it will reveal it (html.reveal-ready). */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease), transform 520ms var(--ease); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.reveal-ready [data-reveal="fade"] { transform: none; }
.reveal-ready [data-reveal-group] > * { opacity: 0; transform: translateY(12px); transition: opacity 480ms var(--ease), transform 480ms var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.reveal-ready [data-reveal-group].is-visible > * { opacity: 1; transform: none; }
.reveal-ready [data-reveal-group].is-visible > a:hover { transform: translateY(-3px); transition-delay: 0ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(2) { transition-delay: 70ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(3) { transition-delay: 140ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(4) { transition-delay: 210ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(5) { transition-delay: 280ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(6) { transition-delay: 350ms; }
.reveal-ready [data-reveal-group].is-visible > :nth-child(n+7) { transition-delay: 420ms; }
.reveal-ready [data-reveal-group].is-settled > * { transition-delay: 0ms !important; }
html:not(.reveal-ready) .process-step::after { transform: none; }
html:not(.reveal-ready) .process-step .step-dot { border-color: var(--blue); color: var(--blue); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; transition-delay: 0ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
  .scale-bar i, .process-step::after { transform: none !important; }
  .process-step .step-dot { border-color: var(--blue); color: var(--blue); }
}

/* ---------- 21. Narrow-screen safety -------------------------------------- */
.hero-grid > *, .detail-grid > *, .two-col > *, .contact-grid > *, .enquiry-grid > *, .scale-grid > *, .evidence-grid > *, .cta-grid > *, .grid-2 > *, .grid-3 > *, .grid-4 > *, .page-hero.has-figure .wrap > *, .footer-top > *, .footer-grid > *, .family-grid > *, .service-grid > *, .need-grid > *, .article-grid > *, .cap-products > *, .cap-services > *, .related-strip > *, .process-track > * { min-width: 0; }
h1, h2, h3, h4, .lead, .rich-text, .spec-table td, .spec-table th, .quick-facts dd, .fact-list dd, .cert-scope, .direct-contact a, .card-facts dd, .tag-list li, .location-list span { overflow-wrap: anywhere; }
h1, h2, h3, h4 { -webkit-hyphens: manual; hyphens: manual; }
/* Optional break points in long compounds (TypographyHelper::heading): off until a word cannot fit. */
.hy { white-space: nowrap; }
.shy { display: none; }
.hy.is-split, .no-js .hy { white-space: normal; }
.hy.is-split .shy, .no-js .shy { display: inline; }
/* 320–359 px (22.09.2026): the certificate heading keeps its year on one line, the service-row thumbnail leaves room for the machining envelope. */
@media (max-width: 359px) {
  .cert-head h3 { font-size: var(--t-card); }
  .service-card .card-media { width: 72px; height: 72px; }
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; padding-block: 10px; }
  .actions > .btn { flex: 1 1 100%; }
  .context-chooser select { flex-basis: 100%; }
  .context-chooser .btn { flex: 1 1 100%; }
  .brief-panel, .cert-card, .need-card { padding: var(--s-5); }
  .fact-panel { padding-inline: var(--s-5); }
  .tag-list li { border-radius: var(--radius-lg); }
}
@media (max-width: 699px) {
  .arrow-link, .section-head-side .arrow-link, .cert-card .arrow-link, .process-foot .arrow-link, .cap-product .arrow-link, .article-share a { min-height: 44px; }
  .direct-contact a { padding: 10px 0; } .direct-contact { gap: var(--s-2); }
  .cap-product h3 a, .cap-service h3 a { display: inline-block; padding-block: 10px; margin-block: -10px; }
  .section-head { margin-bottom: var(--s-7); }
}

/* ---------- 22. Print ---------------------------------------------------- */
/* Written for the capabilities overview (A4, four pages) and safe for every other page. Cards become plain
   blocks: shared rows (subgrid) and page breaks do not mix. */
@media print {
  @page { size: A4; margin: 14mm 14mm 16mm; }
  :root { --section: 7mm; --section-tight: 5mm; --gutter: 0px; --wrap: 100%; }
  html { scroll-behavior: auto; }
  body { background: #fff; color: #000; font-size: 9.5pt; line-height: 1.4; }
  .site-header, .site-footer, .cta-band, .section-nav, .menu-toggle, .skip-link, .photo-zoom > span, .actions, .hero-actions, .enquiry-band, .newsletter-section, .photo-dialog, .demo-note, .card-link, .card-arrow, .arrow-link, .map-placeholder, .media-tag, .step-tags, .cert-badge { display: none !important; }
  .print-only { display: block; }
  .print-head { display: flex !important; justify-content: space-between; align-items: center; gap: 8mm; padding-bottom: 3mm; border-bottom: 1pt solid #000; font-size: 8.5pt; }
  .print-head img { height: 12mm; width: auto; }
  .print-head p { text-align: right; line-height: 1.4; }
  [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
  .scale-bar i, .process-step::after { transform: none !important; }
  .section, .section-tight, .page-hero, .detail-hero, .home-hero, .section-paper2, .section-white { background: #fff !important; border: 0 !important; }
  /* Space above a section only: trailing padding would have to fit on the page with the last row. */
  .section, .section-tight { padding-block: 5mm 0 !important; }
  .location-list { break-inside: avoid; }
  .page-hero .wrap, .page-hero .wrap-narrow { padding: 5mm 0 0; }
  .wrap, .wrap-narrow { width: 100%; }
  h1 { font-size: 20pt; margin-bottom: 2mm !important; } h2 { font-size: 13.5pt; } h3, .cap-service h3, .cert-head h3 { font-size: 10.5pt; }
  h1, h2, h3, h4, .eyebrow, .section-head { color: #000; break-after: avoid; }
  p, li, dd, .section-head, .process-foot, .page-note { orphans: 3; widows: 3; break-inside: avoid; }
  .lead { font-size: 10.5pt; max-width: none; color: #000; }
  .eyebrow { margin-bottom: 1.5mm; color: #333; font-size: 7.5pt; } .eyebrow::before { background: #000; }
  .section-head { display: block; margin-bottom: 3mm; } .section-head-side { max-width: none !important; margin-top: 1.5mm; }
  .muted, .section-head-side, .cap-product > p, .cap-service p, .process-step p, .section-note, .fact-note, .page-note, .spec-table th, .spec-table td small, dt, .cert-issuer, .location-list span, .process-foot { color: #222 !important; }
  .spec-table, .cert-card, .fact-panel, .cap-service, .cap-product, .brief-panel, .option-card, .value-card, tr, .process-step, .location-list li, .timeline li { break-inside: avoid; }
  .spec-table, .cert-card, .fact-panel, .cap-service, .brief-panel { border-color: #999; box-shadow: none; }
  .spec-table th, .spec-table td { padding: 1.3mm 2.2mm; font-size: 8.5pt; border-top-color: #bbb; }
  .spec-table td small { font-size: 7.5pt; }
  /* Inline blocks, not grid: rows of monolithic blocks paginate cleanly between rows. */
  .cap-products, .cap-services { display: block; font-size: 0; margin-bottom: 0; orphans: 1; widows: 1; }
  .cap-product { display: inline-block; vertical-align: top; width: calc(50% - 3mm); margin: 0 6mm 5mm 0 !important; font-size: 9.5pt; }
  .cap-product:nth-child(even) { margin-right: 0 !important; } .cap-product h3 { margin-bottom: 1mm; } .cap-product > p { font-size: 8.5pt; margin-bottom: 2mm; }
  .cap-service { display: inline-block; vertical-align: top; width: calc((100% - 8mm) / 3); margin: 0 4mm 4mm 0; padding: 3mm; font-size: 9.5pt; }
  .cap-service:nth-child(3n) { margin-right: 0; }
  .cap-service > .mono { margin-bottom: 1.5mm; font-size: 7.5pt; color: #000; } .cap-service h3 { margin-bottom: 1.5mm; }
  .cap-service p, .cap-service .cap-fact, .check-list-compact li { font-size: 8pt; line-height: 1.4; } .cap-service .cap-fact { margin-top: 1.5mm; }
  .cap-service h4 { margin-top: 2.5mm; margin-bottom: 1mm; font-size: 7pt; }
  .cap-service .check-list { display: block; }
  .check-list li { padding: 1mm 0 1mm 4.5mm; border-top-color: #bbb; } .check-list li:last-child { border-bottom-color: #bbb; }
  .check-list li::before { top: 1.7mm; width: 2.4mm; height: 2.4mm; background: #fff; border-color: #000; } .check-list li::after { display: none; }
  .process-track { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); column-gap: 4mm; }
  .process-step { display: block; padding: 7.5mm 0 0; } .process-step p { font-size: 8pt; } .process-step h3 { font-size: 9.5pt; margin-bottom: 1mm; }
  .process-step .step-dot { left: 0; top: 0; border-color: #000 !important; color: #000 !important; background: #fff !important; }
  .process-step:not(:last-child)::before { left: 30px; right: -4mm; top: 12px; bottom: auto; width: auto; height: 1pt; background: #000; }
  .process-step::after { display: none; }
  .process-foot { margin-top: 3mm; padding-top: 2mm; font-size: 8.5pt; }
  .evidence-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 4mm; } .cert-stack { gap: 2.5mm; } .cert-card { padding: 2.5mm 3mm; gap: 1.5mm; }
  .cert-facts { grid-template-columns: repeat(3, 1fr); padding: 1.5mm 0; } .cert-facts dd, .cert-scope { font-size: 8.5pt; }
  .fact-panel { padding: 0 3mm 3mm; } .fact-list > div { padding: 1.8mm 0; } .fact-list dd { font-size: 9pt; } .fact-note { padding-top: 2mm; font-size: 7.5pt; }
  .two-col { display: grid; grid-template-columns: 5fr 7fr; gap: 6mm; }
  .location-list li { padding: 1.3mm 0; } .location-list b, .location-list span { font-size: 9pt; }
  .page-note { margin-top: 3mm; padding-top: 2mm; font-size: 7.5pt; max-width: none; }
  a { color: #000; text-decoration: none; }
  .rich-text a, .article-body a { text-decoration: underline; }
  img { max-width: 100%; }
}
/* ---------- Refinement batch 55 onward, 22 September 2026 ----------------- */
.need-icon { width:58px;height:58px;background:var(--white);border:1px solid var(--line);border-radius:6px; }
.need-icon svg { width:48px;height:48px; }
.cert-head { align-items:center;gap:22px; }
.cert-preview { display:block;flex:none;width:94px;padding:4px;background:white;border:1px solid var(--line);box-shadow:var(--shadow-1);transition:transform var(--dur) var(--ease); }
.cert-preview:hover { transform:translateY(-3px); }
.cert-preview img { width:100%;height:auto; }
.cert-head h3 { font-size:var(--t-card-lg); }
.cert-condition { font-size:var(--t-small);color:var(--muted); }
.cert-card { border-top:3px solid var(--blue); }
.cert-card:nth-child(2) { border-top-color:var(--green); }
.footer-certs a { display:inline-flex;align-items:center;gap:9px;padding:10px 14px;border:1px solid var(--navy-line);border-radius:4px;font-size:var(--t-small);font-weight:500;text-decoration:none; }
.footer-certs a::before { content:'';width:5px;height:18px;background:var(--green); }
.footer-certs a:hover { background:var(--navy-2);color:white; }
.footer-map { font:inherit;line-height:1.6; }
.complete-image { margin-top:8px;min-height:44px; }
.detail-photo .photo-frame.contain { aspect-ratio:3607 / 2885; }
.detail-photo .photo-frame.contain img { padding:0; }
.card-media img[data-image=capillaries] { object-fit:cover;object-position:center; }
a:hover > .card-media img[data-image=capillaries] { transform:none; }
.card-media img[data-image=research-illustration] { object-position:50% 60%; }
#enquiry-form { scroll-margin-top:var(--enquiry-intro-height, 220px); }
.form-card { scroll-margin-top:calc(var(--header-h) + 16px); }
.form-card:focus { outline:none; }
@media(min-width:900px) {
 .contact-section { padding-top:40px; }
 .contact-grid { grid-template-columns:minmax(0,4fr) minmax(0,8fr);gap:48px; }
 .contact-section .form-card { padding:24px 28px; }
 .contact-section .form-card h2 { font-size:var(--t-h3); }
 .contact-section .form-intro { margin:8px 0 12px; }
 .contact-section .demo-note { margin-bottom:10px;padding:6px 10px; }
 .contact-section .form-note { margin-bottom:10px;font-size:var(--t-small); }
 .contact-section .form-item { margin-bottom:10px;gap:4px; }
 .contact-section .form-item textarea { min-height:90px;height:90px; }
 .contact-section .form-item input,.contact-section .form-item select { min-height:44px;padding-block:8px; }
 .contact-section .form-submit .button { min-height:46px; }
}
.cta-band { position:relative;isolation:isolate;overflow:hidden; }
/* Inset drafting accents stay entirely inside the banner. */
.cta-band { border-bottom:3px solid var(--green); }
.cta-band::before,.cta-band::after { content:'';position:absolute;z-index:0;pointer-events:none;background:none;opacity:1;border:0;border-top:3px solid var(--green);border-right:3px solid var(--green);border-radius:0;width:96px;height:24px;right:var(--gutter);top:20px; }
.cta-band::after { width:64px;height:14px;right:calc(var(--gutter) + 12px);top:30px; }
.cta-grid .actions { position:relative; }
.capability-hero > .wrap { position:relative; }
.capability-hero .lead { max-width:48ch; }
.capability-signal { margin-top:32px;max-width:440px; }
.capability-signal svg { width:100%;display:block; }
.signal-axis { stroke:var(--line-strong);stroke-dasharray:10 3 2 3; }
.signal-register { stroke:var(--blue); }
.signal-traces path { stroke:var(--blue);stroke-width:2; }
.signal-traces path+path { stroke:var(--green);stroke-width:2; }
.signal-tools { display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;align-items:center;color:var(--muted);font-size:var(--t-small); }
.signal-tools button { min-height:44px;border:1px solid var(--line-strong);background:white;color:var(--ink);padding:8px 12px;border-radius:3px; }
@media(min-width:1150px) { .capability-hero h1,.capability-hero .lead,.capability-hero .actions { max-width:60%; } .capability-signal { position:absolute;right:0;top:50%;transform:translateY(-50%);width:34%;margin:0; } }
@media(prefers-reduced-motion:no-preference) { .signal-running .signal-traces path { stroke-dasharray:8 5;animation:signal-flow 12s linear infinite; } .signal-running .signal-traces path+path { animation-direction:reverse;animation-duration:16s; } @keyframes signal-flow { to { stroke-dashoffset:-130; } } }
@media(max-width:699px) { .need-icon { width:44px;height:48px; } .need-icon svg { width:40px;height:40px; } }
@media(max-width:420px) { .cert-head { gap:14px; } .cert-preview { width:72px; } .cert-head h3 { font-size:var(--t-card); } }
@media print { .capability-signal { display:none; } .cert-preview { width:22mm; } }

.footer-certs a { color:var(--on-navy); }
.reference-note { margin-top:18px;font-size:var(--t-small);color:var(--muted);max-width:60ch; }
@media(max-width:520px) { .cert-facts > div { flex-wrap:wrap; } .cert-facts dd { margin-left:auto; } }

/* Keep certificate metadata inside narrow translated cards. */
.cert-card,.cert-head > div { min-width:0; }
@media(max-width:380px) { .cert-preview { width:56px; } .cert-head { gap:12px; } }

/* Owner-supplied ISO design; edition text follows the linked certificate, not the scan year. */
.iso-mark { display:flex;flex-direction:column;align-items:center;width:100%;padding:8px;background:#fff;color:#0c508c; }
.iso-mark-art { display:block;width:100%;aspect-ratio:452/346;overflow:hidden; }
.iso-mark-art img { display:block!important;width:100%!important;height:auto!important;max-width:none; }
.iso-mark-edition { display:block;white-space:nowrap;font:500 15px/1.3 Arial,sans-serif;letter-spacing:-.04em;margin-top:4px; }
.cert-preview { width:112px; }
.footer-certs .footer-iso-link { display:block;width:110px;padding:0;border:0;background:white;border-radius:4px;overflow:hidden; }
.footer-certs .footer-iso-link::before,.footer-certs .iso-mark span::before { display:none; }
.footer-certs .iso-mark,.footer-certs .iso-mark span { border:0;border-radius:0;letter-spacing:normal;padding:0;color:#0c508c; }
.footer-certs .iso-mark { display:flex;padding:8px;gap:0; }
.footer-certs .iso-mark-art { display:block; }
.footer-certs .iso-mark-edition { display:block;font:500 15px/1.3 Arial,sans-serif;letter-spacing:-.04em;margin-top:4px; }
@media(max-width:420px) { .cert-preview { width:86px; }.cert-preview .iso-mark { padding:5px; }.cert-preview .iso-mark-edition { font-size:12px; } }
@media(max-width:350px) { .cert-head { align-items:flex-start;flex-direction:column; }.cert-preview { width:98px; } }

.footer-certs .iso-mark::before { display:none; }

.card-media img[data-image="scale-matters"] { object-fit:contain;background:var(--media); }
.article-photo .photo-frame:has(img[data-image="scale-matters"]) { aspect-ratio:1402 / 1122; }
.detail-photo .photo-frame:has(img[data-image="research-illustration"]) { aspect-ratio:525 / 430; }

/* Certificate preview: toolbar remains outside the independently scrolling scan. */
.certificate-dialog { border: 0; border-radius: var(--radius); padding: 0; width: min(1100px, calc(100vw - 24px)); max-width: none; height: min(94vh, 1400px); height: min(94dvh, 1400px); max-height: none; color: var(--ink); background: var(--paper); }
.certificate-dialog[open] { display: flex; flex-direction: column; }
.certificate-dialog::backdrop { background: rgba(13,28,42,.86); }
.certificate-toolbar { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--line); flex: 0 0 auto; }
.certificate-toolbar h2 { font-size: var(--t-ui); line-height: 1.4; margin: 0; flex: 1 1 200px; }
.certificate-download, .certificate-close { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 14px; font-size: var(--t-ui); font-weight: var(--w-bold); border-radius: var(--radius); }
.certificate-download { color: var(--blue); text-decoration: underline; }
.certificate-close { gap: 12px; background: var(--blue); color: #fff; border: 0; cursor: pointer; }
.certificate-close:hover { background: var(--navy); }
.certificate-scroll { min-height: 0; flex: 1; overflow: auto; overscroll-behavior: contain; padding: 12px; background: #e8ecee; }
.certificate-scroll img { display: block; width: 100%; height: auto; margin: 0 auto; background: #fff; }
@media (max-width: 480px) { .certificate-toolbar { gap: 4px 8px; padding: 8px; } .certificate-toolbar h2 { flex-basis: 100%; } .certificate-close { margin-left: auto; } .certificate-scroll { padding: 4px; } }
@media print { .certificate-dialog { display: none !important; } }
