@charset "UTF-8";
@font-face {
  font-family: "Gotham Pro";
  src: url("fonts/GothamPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("fonts/GothamPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("fonts/GothamPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("fonts/GothamPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy: #0f1b3d;
  --navy-700: #15234e;
  --navy-600: #1c2d63;
  --steel: #2a5582;
  --steel-300: #6e8ab0;
  --red: #dc2626;
  --red-700: #b91c1c;
  --sand: #e2d1ae;
  --paper: #f7f6f2;
  --paper-2: #efeee8;
  --line: #e2e0d8;
  --line-strong: #c9c6bb;
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #6b7280;
  --muted-2: #9aa0a8;
  --sans: "Gotham Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: clamp(1560px, 88vw, 2400px);
  --pad: clamp(20px, 3.5vw, 80px);
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevents html from becoming the scroll container on iOS */
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--navy);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 4.2vw, 56px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h4 {
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.lede {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}

.cap-photo {
  margin: 0 0 48px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.cap-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
}
@media (max-width: 640px) {
  .cap-photo {
    margin: 0 0 32px;
    border-radius: 8px;
  }
  .cap-photo img {
    max-height: 260px;
  }
}

.mono {
  font-family: var(--mono);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.7);
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section {
  background: var(--sand);
  padding: clamp(48px, 5vw, 80px) 0;
  position: relative;
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.sec-head .l p {
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
}
.sec-head h2 {
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.section-num {
  position: absolute;
  top: clamp(80px, 10vw, 140px);
  right: var(--pad);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

@media (max-width: 700px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .site-header .wrap,
  .hero .wrap,
  .summary-trust .wrap,
  #industries .wrap,
  #products .wrap {
    max-width: 1560px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  line-height: 1;
}
.btn .arrow {
  width: 18px;
  height: 10px;
  flex: 0 0 18px;
  background: linear-gradient(currentColor, currentColor) right center/10px 1.5px no-repeat, linear-gradient(45deg, transparent 50%, currentColor 50%) right center/8px 8px no-repeat;
  background-position: 0 50%, right 0 center;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-700);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}
.btn-dark:hover {
  background: var(--navy-600);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.25s var(--ease);
}
.btn-link:hover {
  gap: 16px;
}

.lang-switch {
  position: relative;
  z-index: 20;
  font-family: var(--mono);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1;
}
.lang-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.lang-btn .globe {
  width: 14px;
  height: 14px;
}
.lang-btn .chev {
  width: 9px;
  height: 6px;
  margin-left: 2px;
  transition: transform 0.25s var(--ease);
}

.lang-switch.is-open::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.lang-switch.is-open .lang-btn {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.lang-switch.is-open .lang-btn .chev {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(15, 27, 61, 0.04), 0 4px 6px -1px rgba(15, 27, 61, 0.06), 0 20px 48px -8px rgba(15, 27, 61, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}
.lang-menu li {
  margin: 0;
}
.lang-menu li + li {
  border-top: 1px solid var(--line);
}
.lang-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  padding: 10px 10px 10px 4px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s var(--ease);
}
.lang-menu button:hover {
  background: var(--paper-2);
}
.lang-menu button:hover .lm-code {
  background: var(--line-strong);
  color: var(--navy);
}
.lang-menu button.is-on .lm-check {
  opacity: 1;
}
.lang-menu button.is-on .lm-name {
  color: var(--navy);
}
.lang-menu button.is-on .lm-code {
  background: rgba(220, 38, 38, 0.1);
  color: var(--red);
}
.lang-menu li:first-child button {
  border-radius: 6px 6px 0 0;
}
.lang-menu li:last-child button {
  border-radius: 0 0 6px 6px;
}

.lang-switch.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lm-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.lm-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 10px;
}

.lm-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.lm-region {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

.lm-check {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--red);
  transition: opacity 0.15s var(--ease);
}
.lm-check svg {
  width: 12px;
  height: 10px;
}

@media (max-width: 980px) {
  .lang-switch {
    display: none;
  }
}
.theme-switch {
  position: relative;
  z-index: 20;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1;
}
.theme-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.theme-btn .theme-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.theme-btn .ico-sun,
.theme-btn .ico-moon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.theme-btn .ico-moon { display: none; }
[data-theme="dark"] .theme-btn .ico-sun { display: none; }
[data-theme="dark"] .theme-btn .ico-moon { display: block; }
.theme-btn .chev {
  width: 9px;
  height: 6px;
  margin-left: 2px;
  transition: transform 0.25s var(--ease);
}

.theme-switch.is-open::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.theme-switch.is-open .theme-btn {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.theme-switch.is-open .theme-btn .chev {
  transform: rotate(180deg);
}

.theme-menu {
  display: none !important;
}
.theme-menu-hidden {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(15, 27, 61, 0.04), 0 4px 6px -1px rgba(15, 27, 61, 0.06), 0 20px 48px -8px rgba(15, 27, 61, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}
.theme-menu li {
  margin: 0;
}
.theme-menu li + li {
  border-top: 1px solid var(--line);
}
.theme-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  padding: 10px 10px 10px 4px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s var(--ease);
}
.theme-menu button:hover {
  background: var(--paper-2);
}
.theme-menu button:hover .tm-icon {
  background: var(--line-strong);
  color: var(--navy);
}
.theme-menu button.is-on .tm-check {
  opacity: 1;
}
.theme-menu button.is-on .tm-name {
  color: var(--navy);
}
.theme-menu button.is-on .tm-icon {
  background: rgba(220, 38, 38, 0.1);
  color: var(--red);
}
.theme-menu li:first-child button {
  border-radius: 6px 6px 0 0;
}
.theme-menu li:last-child button {
  border-radius: 0 0 6px 6px;
}

.theme-switch.is-open .theme-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.tm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.tm-icon svg {
  width: 15px;
  height: 15px;
}

.tm-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 10px;
}

.tm-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.tm-desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

.tm-check {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--red);
  transition: opacity 0.15s var(--ease);
}
.tm-check svg {
  width: 12px;
  height: 10px;
}

@media (max-width: 980px) {
  .header-cta .theme-switch {
    display: none;
  }
}
html {
  color-scheme: light dark;
}

html, body {
  transition: background-color 0.25s ease, color 0.25s ease;
}

[data-theme=dark] {
  --navy: #e2d9c8;
  --navy-700: #c8bfb0;
  --navy-600: #b0a898;
  --sand: #1a1a1e;
  --paper: #242429;
  --paper-2: #2e2e34;
  --line: #2e2e34;
  --line-strong: #3e3e46;
  --ink: #f0ece4;
  --ink-2: #d4cfc5;
  --muted: #8a8691;
  --muted-2: #6a666f;
}
[data-theme=dark] .site-header.on-diagonal::before {
  background: #1a1a1e;
}
[data-theme=dark] .site-header.on-diagonal::after {
  background: rgba(26, 26, 30, 0.88);
}
[data-theme=dark] .site-header.is-solid,
[data-theme=dark] .site-header.on-light {
  background: rgba(26, 26, 30, 0.95);
}
[data-theme=dark] .site-header.on-diagonal.is-solid::before {
  background: rgba(26, 26, 30, 0.96);
}
[data-theme=dark] .btn-dark {
  color: #1c1814;
}
[data-theme=dark] .lang-btn, [data-theme=dark] .theme-btn {
  color: var(--navy);
  border-color: var(--line-strong);
}
[data-theme=dark] .lang-btn:hover, [data-theme=dark] .lang-switch.is-open .lang-btn,
[data-theme=dark] .theme-btn:hover, [data-theme=dark] .theme-switch.is-open .theme-btn {
  color: #1c1814;
}
[data-theme=dark] .lang-menu, [data-theme=dark] .theme-menu {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .brand-text {
  color: var(--navy);
}
[data-theme=dark] .burger span {
  background: var(--navy);
}
[data-theme=dark] .summary-trust::before, [data-theme=dark] #industries::before, [data-theme=dark] #products::before,
[data-theme=dark] #capabilities::before, [data-theme=dark] .flow::before, [data-theme=dark] .projects::before, [data-theme=dark] #news::before,
[data-theme=dark] .kf-section::before, [data-theme=dark] .rs-section::before, [data-theme=dark] .article-main::before,
[data-theme=dark] .article-more::before, [data-theme=dark] .np-featured::before, [data-theme=dark] .np-grid-section::before,
[data-theme=dark] .summary-trust::after, [data-theme=dark] #industries::after, [data-theme=dark] #products::after,
[data-theme=dark] #capabilities::after, [data-theme=dark] .flow::after, [data-theme=dark] .projects::after, [data-theme=dark] #news::after,
[data-theme=dark] .kf-section::after, [data-theme=dark] .rs-section::after, [data-theme=dark] .article-main::after,
[data-theme=dark] .article-more::after, [data-theme=dark] .np-featured::after, [data-theme=dark] .np-grid-section::after {
  opacity: 0;
}
/* ─── dark mode: gold dividers between sections ───────────────── */
[data-theme=dark] .co-intro,
[data-theme=dark] .summary-trust,
[data-theme=dark] #industries,
[data-theme=dark] #products,
[data-theme=dark] #capabilities,
[data-theme=dark] .flow,
[data-theme=dark] .projects,
[data-theme=dark] #news,
[data-theme=dark] .kf-section,
[data-theme=dark] .rs-section,
[data-theme=dark] .article-main,
[data-theme=dark] .article-more,
[data-theme=dark] .np-featured,
[data-theme=dark] .np-grid-section {
  border-top: 2px solid rgba(243, 179, 9, 0.45);
  /* mask-image fades the top to transparent at 0px, hiding border-top.
     Override: start mask opaque so the 2px gold border is always visible. */
  -webkit-mask-image: linear-gradient(to bottom, black 0px, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, black 0px, black 40px, black calc(100% - 40px), transparent 100%);
}
[data-theme=dark] .st-text h2 {
  color: var(--ink);
}
[data-theme=dark] .st-text p {
  color: var(--ink-2);
}
[data-theme=dark] .st-text .eyebrow {
  color: var(--muted);
}
[data-theme=dark] .st-text .lede {
  color: var(--ink-2);
}
[data-theme=dark] .st-text .btn-ghost {
  background: var(--ink);
  border-color: var(--ink);
  color: #1c1814;
}
[data-theme=dark] .st-text .btn-ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #1c1814;
}
[data-theme=dark] .st-stats {
  color: #1c1814;
}
[data-theme=dark] .st-stats-head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
[data-theme=dark] .st-stats-head .label {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .st-stats-head .note {
  color: rgba(255, 255, 255, 0.65);
}
[data-theme=dark] .st-cell .label {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme=dark] .st-cell .value {
  color: #ffffff;
}
[data-theme=dark] .st-cell .note {
  color: rgba(255, 255, 255, 0.6);
}
[data-theme=dark] .st-cell .unit {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme=dark] .industry:hover h3 {
  color: #0f1b3d;
}
[data-theme=dark] .industry:hover p {
  color: #4b5563;
}
[data-theme=dark] .industry:hover ul {
  color: #1f2937;
}
[data-theme=dark] .industry:hover .btn-link {
  color: #0f1b3d;
}

/* ─── dark mode: navy surfaces stay dark (same as footer #0a1430) */
[data-theme=dark] .page-hero,
[data-theme=dark] .np-hero,
[data-theme=dark] .rfq-cta,
[data-theme=dark] .ct-person,
[data-theme=dark] .ct-cta,
[data-theme=dark] .ct-map-footer,
[data-theme=dark] .st-stats,
[data-theme=dark] .quality,
[data-theme=dark] .cert,
[data-theme=dark] .mv-card--dark,
[data-theme=dark] .chip.is-on,
[data-theme=dark] .np-filter.is-active,
[data-theme=dark] .np-card-badge,
[data-theme=dark] .ct-card-icon {
  background: #0a1430;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(226, 209, 174, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header.on-light {
  background: rgba(226, 209, 174, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header.on-diagonal {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}
.site-header.on-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sand);
  clip-path: polygon(0 0, 28% 0, 18% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
  transition: clip-path 0.35s var(--ease), background 0.25s var(--ease);
}
.site-header.on-diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(226, 209, 174, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 18% 100%);
  z-index: -2;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), clip-path 0.35s var(--ease);
}
.site-header.on-diagonal.is-solid {
  border-bottom: 1px solid var(--line);
}
.site-header.on-diagonal.is-solid::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background: rgba(226, 209, 174, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.on-diagonal.is-solid::after {
  opacity: 0;
}
@media (max-width: 1200px) {
  .site-header.on-diagonal::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: rgba(226, 209, 174, 0.96);
    backdrop-filter: blur(10px);
  }
  .site-header.on-diagonal::after {
    opacity: 0;
  }
  .nav-open .site-header.on-diagonal::before {
    backdrop-filter: none;
  }
  .nav-open .site-header.on-light {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: clamp(20px, 2vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  font-family: var(--mono);
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  border-left: 2px solid var(--red);
  padding-left: 16px;
  line-height: 1.4;
  display: block;
}

.site-header.on-dark:not(.is-solid) .brand img {
  filter: brightness(0) invert(1);
}
.site-header.on-dark:not(.is-solid) .brand-text {
  color: #fff;
  border-left-color: rgba(255, 255, 255, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 14px);
}
.nav a {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  padding: 11px 16px;
  color: var(--ink);
  position: relative;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-radius: 8px;
}
.nav a:hover, .nav a.is-active {
  color: var(--red);
  background-color: rgba(220, 38, 38, 0.08);
}

.site-header.on-dark:not(.is-solid) .nav a {
  color: rgba(255, 255, 255, 0.92);
}
.site-header.on-dark:not(.is-solid) .nav a:hover {
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-rfq {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-rfq:hover {
  background: var(--red-700);
}
.cta-rfq .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.burger {
  display: none;
}
.mobile-nav-footer {
  display: none;
}
@media (min-width: 1201px) {
  .mobile-nav-footer {
    display: none !important;
  }
  .header-cta .lang-switch,
  .header-cta .theme-switch {
    display: flex;
  }
}

/* >1280px — full desktop: logo + brand-text + nav + lang + theme + CTA */
@media (min-width: 1281px) {
  .brand-text {
    display: block !important;
  }
}
/* 1201–1280px — compact desktop: no brand-text, tighter nav */
@media (max-width: 1280px) {
  .brand-text {
    display: none;
  }
  .nav a {
    padding: 10px 10px;
    font-size: 14px;
  }
  .header-inner {
    gap: clamp(12px, 1.2vw, 20px);
  }
}
/* 1025–1200px — tighter still, all items present */
@media (max-width: 1200px) {
  .nav a {
    padding: 8px 8px;
    font-size: 13.5px;
  }
  .header-inner {
    gap: 8px;
  }
}
/* ≤1200px — switch to hamburger */
@media (max-width: 1200px) {
  .header-inner {
    height: 64px;
  }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav.is-open > a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.5;
    flex-shrink: 0;
  }
  .nav.is-open > a:hover,
  .nav.is-open > a.is-active {
    color: var(--red);
    background: transparent;
  }
  .nav.is-open > a.is-active::after {
    opacity: 1;
  }
  .nav.is-open .desktop-only {
    display: flex;
  }
  .mobile-nav-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 24px;
    margin-top: auto;
    border-top: 1px solid var(--line);
  }
  .mobile-lang-accordion {
    flex: 1;
    min-width: 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-lang-accordion[open] .mobile-lang-chev {
    transform: rotate(180deg);
  }
  .mobile-lang-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .mobile-lang-summary::-webkit-details-marker { display: none; }
  .mobile-lang-current { flex: 1; }
  .mobile-lang-chev { transition: transform 0.2s; flex-shrink: 0; }
  .mobile-lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .mobile-lang-list li { border-bottom: 1px solid var(--line); }
  .mobile-lang-list li:last-child { border-bottom: none; }
  .mobile-lang-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    text-align: left;
  }
  .mobile-lang-opt .mlc {
    font-size: 12px;
    font-weight: 700;
    font-family: var(--mono);
    letter-spacing: 0.05em;
    width: 24px;
    flex-shrink: 0;
  }
  .mobile-lang-opt .mln {
    font-size: 15px;
    flex: 1;
  }
  .mobile-lang-opt[data-active="true"] .mlc,
  .mobile-lang-opt[data-active="true"] .mln {
    color: var(--red);
    font-weight: 600;
  }
  .mobile-lang-opt svg { margin-left: auto; opacity: 0.6; }
  .mobile-nav-switches {
    flex-shrink: 0;
    align-self: flex-start;
    display: flex;
    align-items: center;
    padding: 0;
    border-left: 1px solid var(--line);
  }
  .mobile-nav-switches .theme-btn {
    width: 57px;
    height: 57px;
    border-radius: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav-switches .theme-btn:hover,
  .mobile-nav-switches .theme-btn:focus-visible {
    background: var(--nav-hover);
    color: var(--text);
    outline: none;
  }
  .mobile-nav-switches .theme-menu {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    gap: 8px;
  }
  .header-cta .lang-switch,
  .header-cta .theme-switch {
    display: none;
  }
  .cta-rfq {
    width: auto;
    max-width: 44vw;
    justify-content: center;
    padding: 10px 11px;
    font-size: clamp(8px, 2.5vw, 11px);
    letter-spacing: 0.025em;
    gap: 6px;
  }
  @media (max-width: 460px) {
    .cta-rfq .dot {
      display: none;
    }
    .cta-rfq {
      gap: 0;
    }
  }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
  }
  .burger span {
    width: 18px;
    height: 1.5px;
    background: var(--navy);
    display: block;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-open .burger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-open .burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .burger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
.hero {
  --hero-h: clamp(900px, 96svh, 1120px);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--hero-h);
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) brightness(0.55);
  position: absolute;
  inset: 0;
}
.hero-media .hero-fallback {
  z-index: 0;
}
.hero-media .hero-video {
  z-index: 1;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 61, 0.6) 0%, rgba(15, 27, 61, 0.45) 40%, rgba(15, 27, 61, 0.85) 100%), linear-gradient(90deg, rgba(15, 27, 61, 0.7) 0%, rgba(15, 27, 61, 0) 60%);
}

.hero-fullscreen-btn {
  display: none;
}
@media (max-width: 768px) {
  .hero-fullscreen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .hero-fullscreen-btn:active {
    background: rgba(255, 255, 255, 0.32);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: var(--hero-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(94px, 10svh, 122px);
  padding-bottom: 0;
  width: 100%;
}

.hero-top {
  max-width: 100%;
  width: 100%;
  min-width: 0;
  padding-bottom: 0;
}

.hero-top-spacer {
  height: clamp(24px, 3svh, 48px);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(32px, 5.8vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 28px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-top > .hero-eyebrow,
.hero-top > h1,
.hero-top > .hero-sub,
.hero-top > .hero-ctas {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}

.hero-top > .hero-eyebrow {
  animation-delay: 0.5s;
}

.hero-top > h1 {
  animation-delay: 0.7s;
}

.hero-top > .hero-sub {
  animation-delay: 0.9s;
}

.hero-top > .hero-ctas {
  animation-delay: 1.1s;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-top > .hero-eyebrow,
  .hero-top > h1,
  .hero-top > .hero-sub,
  .hero-top > .hero-ctas {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
  margin-bottom: 36px;
  font-weight: 300;
  word-wrap: break-word;
}

.hero-ctas {
  display: none;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-bottom {
  display: block;
  padding: 28px 0 clamp(24px, 4svh, 40px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-items: end;
  margin-top: auto;
  z-index: 2;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta-item .n {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.hero-meta-item .l {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 480px) {
  .hero-meta-item .l {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

.hero-locate {
  position: absolute;
  bottom: clamp(24px, 4svh, 40px);
  right: var(--pad);
  text-align: right;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.hero-locate .coord {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.hero-locate .coord-map {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s var(--ease);
}
.hero-locate .coord-map:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .hero-locate .coord-map {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    margin-left: 4px;
  }
  .hero-locate .coord-map svg {
    width: 20px;
    height: 20px;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: var(--pad);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .hero {
    --hero-h: clamp(860px, 98svh, 1080px);
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: clamp(20px, 3svh, 32px);
  }
  .hero-top-spacer {
    height: clamp(12px, 2svh, 28px);
  }
  .hero-locate {
    text-align: left;
  }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-scroll {
    display: none;
  }
}
/* Landscape mobile — hero too short for absolute-positioned locate */
@media (max-height: 520px) and (orientation: landscape) {
  .hero-locate {
    position: static;
    text-align: left;
    margin-top: 12px;
    font-size: 11px;
  }
  .hero-locate .coord {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .hero {
    --hero-h: auto;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    padding-top: 64px; /* push video below fixed header */
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero-media img,
  .hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-media::after {
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(15, 27, 61, 0.55) 55%,
      #0f1b3d 100%
    );
  }
  .hero-grid {
    display: none;
  }
  .hero-content {
    position: relative;
    inset: auto;
    min-height: 0;
    background: #0f1b3d;
    padding-top: 24px;
    padding-bottom: 20px;
    margin-top: 0;
  }
  /* Eyebrow floats to the very top of the video */
  .hero-eyebrow {
    position: absolute;
    top: calc(-56.25vw + 12px);
    left: var(--pad);
    z-index: 3;
  }
  .hero h1 {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 16px;
  }
  .hero-top-spacer {
    height: 8px;
  }
  .hero-bottom {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 0;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }
  .hero-meta-item {
    gap: 8px;
  }
  .hero-meta-item .n {
    font-size: clamp(22px, 6vw, 28px);
  }
  .hero-meta-item .l {
    font-size: 9px;
    white-space: normal;
    overflow-wrap: break-word;
  }
  /* Coordinates below stats */
  .hero-locate {
    display: block;
    position: static;
    text-align: left;
    margin-top: 14px;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
  }
  .hero-locate .coord {
    justify-content: flex-start;
  }
}
.summary-trust,
#industries,
#products,
#capabilities,
.flow,
.projects,
#news,
.kf-section,
.rs-section,
.article-main,
.article-more,
.np-featured,
.np-grid-section {
  background: var(--sand);
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
}

.summary-trust {
  padding: clamp(32px, 3vw, 48px) 0 clamp(44px, 5vw, 72px);
}

#industries {
  padding-top: clamp(32px, 3vw, 48px);
}

#industries .sec-head {
  align-items: start;
}

#industries .sec-head h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 20px;
  max-width: 22ch;
}

#industries .sec-head .r {
  padding-top: 36px;
}

#industries .sec-head .r p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
}

.summary-trust::before,
#industries::before,
#products::before,
#capabilities::before,
.flow::before,
.projects::before,
#news::before,
.kf-section::before,
.rs-section::before,
.article-main::before,
.article-more::before,
.np-featured::before,
.np-grid-section::before {
  content: "";
  position: absolute;
  inset: -16%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.68), transparent 44%), radial-gradient(circle at 84% 16%, rgba(255, 247, 230, 0.5), transparent 44%), radial-gradient(circle at 72% 88%, rgba(255, 238, 210, 0.4), transparent 52%), radial-gradient(circle at 10% 78%, rgba(255, 255, 255, 0.34), transparent 40%);
  will-change: auto;
}

.summary-trust::after,
#industries::after,
#products::after,
#capabilities::after,
.flow::after,
.projects::after,
#news::after,
.kf-section::after,
.rs-section::after,
.article-main::after,
.article-more::after,
.np-featured::after,
.np-grid-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.06) 38%, rgba(255, 252, 245, 0.3) 100%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0px, rgba(255, 255, 255, 0.11) 1px, transparent 1px, transparent 3px), repeating-linear-gradient(90deg, rgba(255, 244, 220, 0.09) 0px, rgba(255, 244, 220, 0.09) 1px, transparent 1px, transparent 5px);
  background-size: 360% 360%, 100% 96px, 140px 140px;
  background-position: 0% 50%, 0 0, 0 0;
  opacity: 0.98;
  mix-blend-mode: screen;
  will-change: auto;
}

.summary-trust > .wrap,
#industries > .wrap,
#products > .wrap,
#capabilities > .wrap,
.flow > .wrap,
.projects > .wrap,
#news > .wrap,
.kf-section > .wrap,
.rs-section > .wrap,
.article-main > .wrap,
.article-more > .wrap,
.np-featured > .wrap,
.np-grid-section > .wrap {
  position: relative;
  z-index: 1;
}

.st-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.st-text h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
  max-width: 22ch;
}
.st-text .lede {
  margin-bottom: 18px;
}
.st-text p {
  color: var(--ink-2);
}
.st-text .eyebrow {
  color: var(--muted);
  letter-spacing: 0.14em;
}
.st-text .eyebrow::before {
  background: currentColor;
}

.st-stats {
  background: var(--navy);
  color: #fff;
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3vw, 48px);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  align-self: stretch;
}
.st-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(28px, 3vw, 48px);
  row-gap: 14px;
}
.st-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.st-stats-head {
  grid-column: 1/-1;
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.st-stats-head .label {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 12px;
}
.st-stats-head .note {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.4;
}

.st-cell {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  z-index: 1;
  align-content: start;
}
.st-cell .label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.st-cell .value {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
}
.st-cell .value .unit {
  font-size: 0.65em;
  font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}
.st-cell .note {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.summary-trust .st-text.reveal,
.summary-trust .st-stats.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.summary-trust .st-text.reveal.is-in,
.summary-trust .st-stats.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.summary-trust .st-text > *,
.summary-trust .st-stats .st-stats-head,
.summary-trust .st-stats .st-cell {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.summary-trust .st-text.reveal.is-in > *,
.summary-trust .st-stats.reveal.is-in .st-stats-head,
.summary-trust .st-stats.reveal.is-in .st-cell {
  opacity: 1;
  transform: translateY(0);
}

.summary-trust .st-text.reveal.is-in > *:nth-child(1) {
  transition-delay: 0s;
}

.summary-trust .st-text.reveal.is-in > *:nth-child(2) {
  transition-delay: 0.2s;
}

.summary-trust .st-text.reveal.is-in > *:nth-child(3) {
  transition-delay: 0.4s;
}

.summary-trust .st-text.reveal.is-in > *:nth-child(4) {
  transition-delay: 0.6s;
}

.summary-trust .st-stats.reveal.is-in .st-stats-head {
  transition-delay: 0s;
}

.summary-trust .st-stats.reveal.is-in .st-cell.st-delay-1 {
  transition-delay: 0.2s;
}

.summary-trust .st-stats.reveal.is-in .st-cell.st-delay-2 {
  transition-delay: 0.4s;
}

.summary-trust .st-stats.reveal.is-in .st-cell.st-delay-3 {
  transition-delay: 0.6s;
}

.summary-trust .st-stats.reveal.is-in .st-cell.st-delay-4 {
  transition-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .summary-trust::before, .summary-trust::after,
  #industries::before,
  #industries::after,
  #products::before,
  #products::after,
  #capabilities::before,
  #capabilities::after,
  .flow::before,
  .flow::after,
  .projects::before,
  .projects::after {
    animation: none;
  }
  .summary-trust .st-text.reveal,
  .summary-trust .st-stats.reveal,
  .summary-trust .st-text > *,
  .summary-trust .st-stats .st-cell {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 980px) {
  .st-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 520px) {
  .st-stats {
    gap: 1px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  .st-row {
    column-gap: 1px;
    row-gap: 6px;
  }
  .st-stats-head {
    padding: 20px 16px 14px;
  }
  .st-stats-head .label {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .st-stats-head .note {
    font-size: 18px;
    line-height: 1.3;
  }
  .st-cell {
    padding: 20px 16px;
    border-radius: 0;
  }
  .st-cell .label {
    font-size: 10px;
  }
  .st-cell .value {
    font-size: clamp(22px, 6vw, 30px);
  }
  .st-cell .note {
    font-size: 12px;
  }
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry {
  background: var(--paper);
  padding: 32px;
  position: relative;
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.industry:hover {
  background: #fff;
}
.industry .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: -32px -32px 28px;
  position: relative;
  background: var(--navy);
}
.industry .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(0.1);
}
.industry .img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 61, 0) 50%, rgba(15, 27, 61, 0.4) 100%);
  z-index: 1;
}
.industry:hover .img-wrap img {
  transform: scale(1.04);
}
.industry .num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  z-index: 2;
}
.industry h3 {
  margin-bottom: 12px;
  min-height: 2.4em;
}
.industry p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.industry ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  line-height: 1.9;
}
.industry ul li::before {
  content: "→  ";
  color: var(--red);
  font-weight: 700;
}
.industry .more {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry {
    min-height: auto;
  }
}
.products {
  background: var(--paper-2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.product {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 28px;
  transition: transform 0.4s var(--ease);
}
.product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) grayscale(0.15);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  z-index: 0;
}
.product:hover img {
  transform: scale(1.05);
  filter: brightness(0.5) grayscale(0);
}
.product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 61, 0.15) 0%, rgba(15, 27, 61, 0.85) 100%);
  z-index: 1;
}
.product > * {
  position: relative;
  z-index: 2;
}
.product .cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.product h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.product .spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.product .spec span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}
.product .pnum {
  position: absolute;
  top: 22px;
  left: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.p-wide {
  grid-column: span 8;
  min-height: 460px;
}

.p-tall {
  grid-column: span 4;
  min-height: 460px;
}

.p-half {
  grid-column: span 6;
}

.p-third {
  grid-column: span 4;
}

@media (max-width: 1100px) {
  .p-wide, .p-tall, .p-half, .p-third {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .p-wide, .p-tall, .p-half, .p-third {
    grid-column: span 12;
  }
}
.projects {
  background: var(--sand);
}

/* ─── Capabilities section ──────────────────────────────────── */
.cap-section {
  padding: clamp(52px, 6vw, 96px) 0;
  background: var(--paper);
}
.cap-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 56px;
}
.cap-head-text .eyebrow {
  margin-bottom: 10px;
}
.cap-head-text h2 {
  margin-bottom: 14px;
}
.cap-head-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 44ch;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cap-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.cap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cap-card:hover .cap-card-img img {
  transform: scale(1.04);
}
.cap-card-body {
  padding: 20px 20px 24px;
  flex: 1;
}
.cap-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.cap-card-body h3 {
  font-size: clamp(15px, 1.2vw, 17px);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cap-card-body p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.cap-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cap-specs li {
  font-size: 11px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
}
.cap-specs li b {
  font-weight: 600;
  color: var(--ink);
  min-width: 68px;
  flex-shrink: 0;
}
.cap-grid .cap-card:nth-child(4) {
  grid-column: 1 / 2;
}
.cap-grid .cap-card:nth-child(5) {
  grid-column: 2 / 4;
}
.cap-grid .cap-card:nth-child(5) .cap-card-img {
  aspect-ratio: 16 / 7;
}
@media (max-width: 900px) {
  .cap-head {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cap-grid .cap-card:nth-child(4),
  .cap-grid .cap-card:nth-child(5) {
    grid-column: auto;
  }
  .cap-grid .cap-card:nth-child(5) .cap-card-img {
    aspect-ratio: 3 / 2;
  }
}
@media (max-width: 540px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.project {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 36px 32px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  transition: background 0.25s var(--ease);
}
.project:hover {
  background: var(--paper);
}
.project:nth-child(3n) {
  border-right: none;
}
.project:nth-last-child(-n+3) {
  border-bottom: none;
}
.project .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.project .meta .id {
  color: var(--red);
}
.project h3 {
  font-size: 22px;
  margin: 0;
}
.project .info {
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.5;
}
.project .info span {
  display: flex;
  gap: 12px;
}
.project .info span b {
  font-weight: 500;
  color: var(--muted);
  min-width: 145px;
  letter-spacing: 0.04em;
}
.project img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-top: 4px;
  filter: grayscale(0.1);
}

@media (max-width: 1000px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project:nth-child(3n) {
    border-right: 1px solid var(--line-strong);
  }
  .project:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 640px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .project {
    border-right: none;
  }
}
.capabilities {
  background: var(--sand);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.cap {
  border-bottom: 1px solid var(--line-strong);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: start;
  transition: background 0.25s var(--ease);
  position: relative;
}
.cap:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid var(--line-strong);
}
.cap:nth-child(even) {
  padding-left: 40px;
}
.cap:hover {
  background: var(--paper);
}
.cap .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-top: 4px;
}
.cap h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.cap p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.cap .specs {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.7;
  padding-top: 4px;
}
.cap .specs b {
  color: var(--navy);
  font-weight: 700;
  display: block;
}

@media (max-width: 800px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap, .cap:nth-child(odd), .cap:nth-child(even) {
    padding: 24px 0;
    border-right: none;
  }
  .cap .specs {
    text-align: left;
  }
}
.quality {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
}
.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.quality .wrap {
  position: relative;
  z-index: 1;
}
.quality h2 {
  color: #fff;
}
.quality .sec-head .l p {
  color: rgba(255, 255, 255, 0.7);
}
.quality .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cert-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cert {
  background: var(--navy);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: background 0.25s var(--ease);
}
.cert:hover {
  background: var(--navy-700);
}
.cert .badge {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  flex: 0 0 56px;
}
.cert .name {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.cert .scope {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.cert .dl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s var(--ease);
}
.cert .dl:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.quality-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}
.quality-points li {
  padding-left: 40px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.quality-points li::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.quality-points b {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.quality-points span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.flow {
  background: var(--sand);
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.flow-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}

.flow-step {
  position: relative;
  padding: 0 12px 16px 0;
  z-index: 1;
}
.flow-step .dot {
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  margin: 33px 0 22px;
  position: relative;
  transition: all 0.25s var(--ease);
}
.flow-step:hover .dot {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}
.flow-step.is-highlight .dot {
  background: var(--red);
  border-color: var(--red);
}
.flow-step .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  position: absolute;
  top: 0;
  left: 0;
}
.flow-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 4px;
}
.flow-step p {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

.flow-1, .flow-2, .flow-3,
.flow-4, .flow-5, .flow-6 {
  grid-column: span 2;
}

.flow-row-2 {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .flow-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .flow-track::before {
    display: none;
  }
  .flow-step {
    grid-column: auto !important;
  }
  .flow-step .dot {
    margin-top: 22px;
  }
}
.rfq-cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 100px, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0px, black 100px, black 100%);
}
.rfq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("banner_1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(1);
}
.rfq-cta .wrap {
  position: relative;
  z-index: 1;
}

.rfq-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.rfq-cta h2 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 28px;
}
.rfq-cta .lede {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.rfq-cta .accepted {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}
.rfq-cta .accepted span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 6px;
}

.rfq-mini {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 36px;
  backdrop-filter: blur(4px);
}
.rfq-mini h4 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.rfq-mini .field {
  margin-bottom: 18px;
}
.rfq-mini label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.rfq-mini input, .rfq-mini select, .rfq-mini textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.rfq-mini input:focus, .rfq-mini select:focus, .rfq-mini textarea:focus {
  border-color: var(--red);
}
.rfq-mini input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.rfq-mini select {
  appearance: none;
  /* stylelint-disable-next-line function-url-quotes */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='white' stroke-opacity='0.5' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.rfq-mini select option {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 900px) {
  .rfq-cta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.rfq-form-wrap {
  background: var(--paper);
  padding: 60px 0 120px;
}
.rfq-simple-form {
  max-width: 860px;
}
.rfq-err {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #f87171;
  margin-top: 6px;
  min-height: 16px;
}
.rfq-err--consent {
  margin-top: 6px;
  display: block;
}
input.rfq-field-error,
textarea.rfq-field-error {
  border-bottom-color: #f87171 !important;
}
.rfq-hero-lead {
  margin-top: 10px;
  margin-bottom: 32px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  max-width: none;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.9s cubic-bezier(0.25, 0.4, 0.25, 1) 0.55s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .rfq-hero-lead { opacity: 1; transform: none; animation: none; }
}
.rfq-hero-fields label {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px !important;
}
.rfq-hero-fields input,
.rfq-hero-fields textarea {
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, 0.3) !important;
  font-size: 18px !important;
}
.rfq-hero-fields input::placeholder,
.rfq-hero-fields textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.rfq-hero-fields input:focus,
.rfq-hero-fields textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.8) !important;
}
.rfq-simple-footer .consent {
  color: rgba(255, 255, 255, 0.65);
}
.rfq-simple-footer {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.rfq-simple-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.rfq-simple-footer .consent {
  flex: 1;
  min-width: 240px;
}
.rfq-simple-footer .cta-rfq {
  flex-shrink: 0;
  align-self: center;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
}

.rfq-form {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.rfq-side {
  position: sticky;
  top: 100px;
}
.rfq-side h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 700;
}
.rfq-side ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 4px;
}
.rfq-side li {
  counter-increment: step;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border-left: 2px solid var(--line-strong);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.rfq-side li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
.rfq-side li .check {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.rfq-side li.is-active {
  border-left-color: var(--red);
  color: var(--navy);
  font-weight: 700;
}
.rfq-side li.is-done {
  color: var(--ink);
  border-left-color: var(--navy);
}
.rfq-side li.is-done .check {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
}
.rfq-side li.is-done .check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.rfq-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 48px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.rfq-step {
  display: none;
  flex: 1;
  flex-direction: column;
}
.rfq-step.is-active {
  display: flex;
}
.rfq-step h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.rfq-step .step-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 32px;
}
.field-grid .full {
  grid-column: 1/-1;
}
.field-grid label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.field-grid label .req {
  color: var(--red);
}
.field-grid input, .field-grid select, .field-grid textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus {
  border-color: var(--navy);
}
.field-grid select {
  appearance: none;
  /* stylelint-disable-next-line function-url-quotes */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%23111827' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.field-grid textarea {
  resize: vertical;
  min-height: 90px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s var(--ease);
  letter-spacing: -0.005em;
}
.chip:hover {
  border-color: var(--navy);
}
.chip.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.drop {
  border: 1.5px dashed var(--line-strong);
  background: var(--paper);
  padding: 40px;
  text-align: center;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.drop:hover, .drop.is-over {
  border-color: var(--navy);
  background: #fff;
}
.drop .ico {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}
.drop .ico::after {
  content: "↑";
  font-size: 18px;
  color: var(--navy);
}
.drop b {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.drop .formats {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.file-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.file-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}
.file-item .x {
  color: var(--muted);
  cursor: pointer;
  padding: 0 6px;
}
.file-item .x:hover {
  color: var(--red);
}
.file-item .size {
  color: var(--muted);
  letter-spacing: 0.05em;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
}
.consent + .consent {
  margin-top: 12px;
}

.rfq-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.rfq-nav .step-of {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.rfq-nav .btns {
  display: flex;
  gap: 12px;
}

/* ─── RFQ form exit ────────────────────────────────────────── */
.rfq-simple-form.is-exiting {
  animation: rfq-form-out 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes rfq-form-out {
  to { opacity: 0; transform: translateY(-12px); }
}

/* ─── RFQ success state ─────────────────────────────────────── */
.rfq-success {
  display: none;
  padding: 48px 0 64px;
}
.rfq-success.is-visible {
  animation: rfq-success-in 0.5s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}
@keyframes rfq-success-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animated checkmark */
.rfq-check-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}
.rfq-check-svg {
  width: 64px;
  height: 64px;
  overflow: visible;
}
.rfq-check-circle {
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: draw-circle 0.65s cubic-bezier(0.65, 0, 0.45, 1) 0.25s forwards;
}
.rfq-check-tick {
  fill: none;
  stroke-dasharray: 41;
  stroke-dashoffset: 41;
  animation: draw-tick 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-tick   { to { stroke-dashoffset: 0; } }

/* Text */
.rfq-success-title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.rfq-success-body {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 28px;
}

/* Reference number badge */
.rfq-success-ref {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 40px;
}
.rfq-success-ref-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.rfq-success-ref-id {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

/* What's next steps */
.rfq-success-steps {
  list-style: none;
  padding: 32px 0 0;
  margin: 0 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 460px;
}
.rfq-success-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rfq-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.rfq-success-steps strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2px;
}
.rfq-success-steps span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* Fallback contact */
.rfq-success-fallback {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  max-width: 460px;
}
.rfq-success-fallback a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.15s, border-color 0.15s;
}
.rfq-success-fallback a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .rfq-simple-form.is-exiting,
  .rfq-success.is-visible,
  .rfq-check-circle,
  .rfq-check-tick {
    animation: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .rfq-form {
    grid-template-columns: 1fr;
  }
  .rfq-side {
    position: static;
  }
  .rfq-side ol {
    display: flex;
    overflow-x: auto;
    gap: 4px;
  }
  .rfq-side li {
    flex: 0 0 auto;
  }
  .rfq-panel {
    padding: 28px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background: #0a1430;
  color: #fff;
}

.foot-body {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr 0.9fr;
  gap: 48px;
  padding: 40px 0 36px;
  align-items: start;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-brand .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand .brand img {
  height: 28px;
  width: auto;
}
.foot-brand-name {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #e2d1ae;
  line-height: 1;
  display: inline-block;
  transform: scaleX(0.82);
  transform-origin: left center;
}

.foot-tagline {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.foot-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.foot-addresses {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-addr h5 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.foot-addr p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.foot-addr a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s var(--ease);
}
.foot-addr a:hover {
  color: var(--red);
}

.foot-addr--contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.foot-addr--contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.foot-addr--contact a:hover {
  color: var(--red);
}

.foot-addr-coord {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.foot-addr-map {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s var(--ease);
  flex-shrink: 0;
}
.foot-addr-map:hover {
  color: var(--red);
}

.foot-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 2px;
}
.foot-nav a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s var(--ease);
}
.foot-nav a:hover {
  color: var(--red);
}

.foot-social h5 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}
.foot-social h5 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.foot-social h5 a:hover {
  color: #fff;
}

.foot-social-icons {
  display: flex;
  gap: 10px;
}
.foot-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s var(--ease);
}
.foot-social-icons a:hover {
  background: var(--red);
}

.foot-bottom {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.foot-legal {
  display: flex;
  gap: 20px;
}
.foot-legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s var(--ease);
}
.foot-legal a:hover {
  color: #fff;
}

@media (min-width: 1280px) {
  .site-footer > .wrap {
    max-width: 1560px;
  }
}
@media (max-width: 1024px) {
  .foot-body {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px 0 28px;
  }
}
/* ── Footer accordion — desktop: trigger hidden, body always visible ── */
.foot-acc-trigger { display: none; }
.foot-acc-body { display: block; }
.foot-acc-inner { /* transparent wrapper for overflow trick */ }

/* ── Footer accordion — mobile ── */
@media (max-width: 600px) {
  /* Single flex column — no side-by-side grid */
  .foot-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 8px;
    align-items: stretch; /* override desktop align-items:start */
  }

  /* Brand: full width so tagline never wraps */
  .foot-brand {
    padding: 16px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Social: full-width row — label left, icon right (matches accordion pattern) */
  .foot-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .foot-social h5 {
    display: block;
    margin: 0;
  }
  .foot-social-icons a {
    width: 32px;
    height: 32px;
  }

  /* Accordion sections */
  .foot-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .foot-acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  .foot-acc-trigger:hover { color: #fff; }

  .foot-acc-chev {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
  }
  .foot-accordion.is-open .foot-acc-chev {
    transform: rotate(180deg);
    color: rgba(255,255,255,0.7);
  }

  .foot-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .foot-accordion.is-open .foot-acc-body {
    grid-template-rows: 1fr;
  }
  .foot-acc-inner {
    overflow: hidden;
  }
  .foot-accordion.is-open .foot-acc-inner {
    padding-bottom: 16px;
  }

  .foot-accordion .foot-addr h5 {
    display: none;
  }
  .foot-accordion .foot-nav {
    gap: 10px;
    padding-top: 0;
  }

  /* Footer bottom: stack copyright above legal links */
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .foot-legal {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.page-hero > .wrap { width: 100%; }
.page-hero {
  min-height: clamp(900px, 96svh, 1120px);
  padding: clamp(94px, 10svh, 122px) 0 clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0px, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 28px);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F3B309;
}
.page-hero .breadcrumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
}
.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.45);
}
.page-hero .breadcrumbs a:hover {
  color: #F3B309;
}
.page-hero .breadcrumbs .sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.2);
}
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 22ch;
  color: #fff;
}
.page-hero .lede {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.62);
}

/* ─── inner-page hero entrance animation ─────────────────── */
.page-hero .eyebrow,
.page-hero h1,
.page-hero .lede,
.page-hero .page-hero-side {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.9s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}
.page-hero .eyebrow    { animation-delay: 0.2s; }
.page-hero h1          { animation-delay: 0.4s; }
.page-hero .lede       { animation-delay: 0.6s; }
.page-hero .page-hero-side { animation-delay: 0.7s; }

.np-hero-title,
.np-hero-lead {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.9s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}
.np-hero-title { animation-delay: 0.2s; }
.np-hero-lead  { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .lede,
  .page-hero .page-hero-side,
  .np-hero-title,
  .np-hero-lead {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.page-hero--with-photo {
  background-image: linear-gradient(90deg, rgba(15, 27, 61, 0.72) 38%, transparent 68%), url("/assets/madesta_building.webp");
  background-size: auto, cover;
  background-position: center, center right;
  background-color: var(--navy);
}
.page-hero--with-photo::before {
  display: none;
}
@media (max-width: 640px) {
  .page-hero {
    min-height: 0;
    padding: 88px 0 36px;
    background-size: cover !important;
    background-position: center center !important;
  }
  .page-hero h1 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.15;
    margin-top: 8px;
    margin-bottom: 14px;
  }
  .page-hero .lede {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-hero--with-photo::before,
  .page-hero[style*="background-image"]::before {
    display: block;
    background-image: linear-gradient(180deg, rgba(15,27,61,0.5) 0%, rgba(15,27,61,0.78) 100%);
    background-color: transparent;
    z-index: 1;
  }
  .page-hero--with-photo > *,
  .page-hero[style*="background-image"] > * {
    position: relative;
    z-index: 2;
  }
}
.page-hero--with-photo .page-hero-side {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero--with-photo .page-hero-side b {
  color: rgba(255, 255, 255, 0.88);
}

.company-lead {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}
.company-lead p {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  max-width: 84ch;
}

.co-intro {
  position: relative;
  min-height: clamp(900px, 96svh, 1120px);
  background: url("/assets/about_us_01.webp") center/cover no-repeat;
  display: flex;
  align-items: stretch;
}
.co-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 28%, rgba(15, 27, 61, 0.93) 58%);
  pointer-events: none;
}
.co-intro .co-intro-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(94px, 10svh, 122px) var(--pad) clamp(48px, 5vw, 80px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.co-intro .co-intro-content {
  max-width: 520px;
}
.co-intro .co-intro-content h2 {
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.co-intro .co-intro-content p {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}
.co-intro .co-intro-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .co-intro {
    background-position: center left;
  }
  .co-intro::after {
    background: rgba(15, 27, 61, 0.78);
  }
  .co-intro .co-intro-inner {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 48px;
  }
  .co-intro .co-intro-content {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .co-intro {
    min-height: 0;
    background-size: cover;
    background-position: center 18%;
  }
  .co-intro::after {
    background: linear-gradient(
      180deg,
      rgba(15, 27, 61, 0.05) 0%,
      rgba(15, 27, 61, 0.45) 42%,
      rgba(15, 27, 61, 0.92) 62%,
      #0f1b3d 75%
    );
  }
  .co-intro .co-intro-inner {
    align-items: flex-start;
    padding-top: 52vw;
    padding-bottom: 28px;
  }
  .co-intro .co-intro-content p {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .co-intro .co-intro-content p:last-of-type {
    margin-bottom: 22px;
  }
  .co-intro .co-intro-actions {
    gap: 10px;
  }
  .co-intro .co-intro-actions .btn {
    flex: 1 1 calc(50% - 5px);
    text-align: center;
    font-size: 14px;
    padding: 0 12px;
    height: 44px;
  }
  /* buttons on dark overlay background need light styling */
  .co-intro .co-intro-actions .btn-dark {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
  }
  .co-intro .co-intro-actions .btn-dark:hover {
    background: var(--paper);
  }
  .co-intro .co-intro-actions .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .co-intro .co-intro-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
  }
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.page-hero-side {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.page-hero-side b {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-hero-side div + div {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}
.summary {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.summary .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.summary .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 4px;
}
.summary p {
  margin: 0;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 80ch;
}

@media (max-width: 700px) {
  .summary .wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.mv-section {
  padding: 0;
  border-top: 3px solid #F3B309;
  border-bottom: 3px solid #F3B309;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.mv-card {
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mv-card--dark {
  background: var(--navy);
}
.mv-card--dark .mv-card-label {
  color: var(--red);
}
.mv-card--dark h3 {
  color: #fff;
}
.mv-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.mv-card--light {
  background: var(--paper);
}
.mv-card--light .mv-card-label {
  color: var(--red);
}
.mv-card--light h3 {
  color: var(--navy);
}
.mv-card--light p {
  color: var(--ink-2);
}

.mv-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .mv-card {
    padding: 32px 20px;
  }
  .mv-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .mv-card-label {
    margin-bottom: 14px;
  }
  .mv-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .mv-card p + p {
    margin-top: 10px;
  }
}
.kf-section {
  padding: 40px 0;
}

.kf-head {
  text-align: center;
  margin-bottom: 56px;
}
.kf-head .eyebrow {
  margin-bottom: 12px;
}
.kf-head h2 {
  font-size: clamp(30px, 4.2vw, 56px);
}

.kf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-strong);
}

.kf-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line-strong);
}
.kf-stat:last-child {
  border-right: none;
}

.kf-value {
  font-family: var(--mono);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.kf-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.kf-desc {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.clients-note {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}
.clients-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  grid-column: span 2;
}
.clients-logo-cell[data-tier="1"] { grid-column: span 3; padding: 36px 24px; }
.clients-logo-cell[data-tier="2"] { grid-column: span 3; padding: 28px 20px; }
.clients-logo-cell img {
  max-width: 110px;
  max-height: 36px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.clients-logo-cell[data-tier="1"] img { max-width: 240px; max-height: 88px; }
.clients-logo-cell[data-tier="2"] img { max-width: 170px; max-height: 58px; }
.clients-logo-cell img[src*="client_7"] { max-width: 187px; max-height: 64px; }
.clients-logo-cell img:hover {
  opacity: 1;
  transform: scale(1.06);
}
/* dark mode: raster logos — only apply brightness to logos WITHOUT a dedicated dark variant */
[data-theme="dark"] .clients-logo-cell img[src$=".webp"]:not([data-dark-src]) {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
[data-theme="dark"] .clients-logo-cell img[src$=".webp"]:not([data-dark-src]):hover {
  filter: brightness(0) invert(1);
  opacity: 1;
}
/* logos with dark variants are JS-swapped — no filter needed */
[data-theme="dark"] .clients-logo-cell img[data-dark-src] {
  filter: none;
  opacity: 1;
}
@media (max-width: 1024px) {
  .clients-logo-cell[data-tier="1"] { grid-column: span 6; }
  .clients-logo-cell[data-tier="2"] { grid-column: span 4; }
  .clients-logo-cell[data-tier="3"],
  .clients-logo-cell              { grid-column: span 3; }
}
@media (max-width: 600px) {
  .clients-logo-cell[data-tier="1"],
  .clients-logo-cell[data-tier="2"],
  .clients-logo-cell[data-tier="3"],
  .clients-logo-cell              { grid-column: span 6; padding: 20px 16px; }
  .clients-logo-cell[data-tier="1"] img { max-width: 160px; max-height: 56px; }
  .clients-logo-cell[data-tier="2"] img { max-width: 130px; max-height: 44px; }
}

@media (max-width: 900px) {
  .kf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kf-stat:nth-child(2n) {
    border-right: none;
  }
  .kf-stat {
    border-bottom: 1px solid var(--line-strong);
  }
  .kf-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .kf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kf-stat {
    padding: 20px 16px;
  }
  .kf-stat:nth-child(2n) {
    border-right: none;
  }
  .kf-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .kf-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
  .kf-value {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 6px;
  }
  .kf-label {
    font-size: 12px;
  }
  .kf-head {
    margin-bottom: 32px;
  }
}
.article-img-wrap {
  border-bottom: 1px solid var(--line);
}
.article-img-wrap img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-body-text {
  max-width: 72ch;
}
.article-body-text p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.article-body-text strong {
  color: var(--navy);
  font-weight: 700;
}
.article-body-text h2, .article-body-text h3 {
  color: var(--navy);
  margin: 40px 0 16px;
}

.rs-section {
  padding: 80px 0;
}

/* ── Certificates section ───────────────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cert-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.cert-card:hover {
  border-color: var(--steel);
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.cert-thumb {
  position: relative;
  overflow: hidden;
  background: #f0ede8;
  aspect-ratio: 1 / 1.414;
}
.cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s var(--ease);
}
.cert-card:hover .cert-thumb img {
  transform: scale(1.04);
}
.cert-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.cert-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.cert-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}
.cert-dl {
  display: none;
}
.cert-card:hover .cert-dl {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 900px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.rs-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.rs-head h2 {
  font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
}

.rs-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.rs-all-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.rs-all-link:hover {
  color: var(--red);
}
.rs-all-link:hover svg {
  transform: translateX(4px);
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .rs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .rs-grid {
    grid-template-columns: 1fr;
  }
}
/* ─── Product categories ─────────────────────────────────────── */
.prod-cat-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.prod-cat-header h2 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .prod-cat-header {
    display: block;
    padding-bottom: 20px;
  }
  .prod-cat-header h2 {
    font-size: clamp(22px, 6vw, 30px);
    white-space: nowrap;
    margin-top: 0;
  }
  .kf-section {
    padding: 40px 0;
  }
}
.prod-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prod-cat {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-top: 1px solid var(--line);
  padding: 52px 0;
  align-items: start;
}
.prod-cat:last-child {
  border-bottom: 1px solid var(--line);
}
.prod-cat-info {
  padding-right: 48px;
  position: sticky;
  top: 100px;
}
.prod-cat-info h3 {
  margin: 10px 0 14px;
  font-size: clamp(22px, 2vw, 28px);
}
.prod-cat-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 38ch;
}
.prod-cat-gallery {
  display: grid;
  gap: 8px;
}
.prod-cat-gallery--1 {
  grid-template-columns: 1fr;
}
.prod-cat-gallery--2 {
  grid-template-columns: 1fr 1fr;
}
.prod-cat-gallery--3 {
  grid-template-columns: 1fr 1fr;
}
.prod-cat-gallery--3 img:first-child {
  grid-column: 1 / -1;
}
.prod-cat-gallery--4 {
  grid-template-columns: 1fr 1fr;
}
.prod-cat-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.prod-cat-gallery img:hover {
  transform: scale(1.02);
  opacity: 0.92;
}
@media (max-width: 640px) {
  .prod-cat {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .prod-cat-info {
    position: static;
    padding-right: 0;
  }
  .prod-cat-info h3 {
    font-size: 20px;
  }
  .prod-cat-info p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .prod-cat-gallery--2,
  .prod-cat-gallery--3,
  .prod-cat-gallery--4 {
    grid-template-columns: 1fr;
  }
  .prod-cat-gallery--3 img:first-child {
    grid-column: 1;
  }
}

.ind-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: stretch;
  min-height: 460px;
}
.ind-row.alt {
  grid-template-columns: 1.2fr 1fr;
}
.ind-row.alt .ind-text {
  order: 2;
}
.ind-row.alt .ind-photo {
  order: 1;
}

.ind-photo {
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.ind-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-photo .tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

.ind-text {
  padding: 60px clamp(24px, 5vw, 80px) 60px clamp(0px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ind-text h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 20px;
}
.ind-text .pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.ind-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
}
.ind-text ul li::before {
  content: "→  ";
  color: var(--red);
  font-weight: 700;
}

.ind-row.alt .ind-text {
  padding: 60px clamp(0px, 4vw, 60px) 60px clamp(24px, 5vw, 80px);
}

@media (max-width: 900px) {
  .ind-row, .ind-row.alt {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ind-row .ind-text, .ind-row.alt .ind-text {
    order: 2;
    padding: 40px 24px;
  }
  .ind-row .ind-photo, .ind-row.alt .ind-photo {
    order: 1;
    aspect-ratio: 16/10;
  }
  .ind-text ul {
    grid-template-columns: 1fr;
  }
}
.qpage-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.qpage-section .sec-head {
  margin-bottom: 50px;
}

.q-twocol {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.q-twocol .l h2 {
  margin-bottom: 18px;
}
.q-twocol .l .eyebrow {
  margin-bottom: 16px;
}
.q-twocol p {
  color: var(--ink-2);
}

.q-feature-list {
  display: grid;
  gap: 18px;
}

.q-feature {
  border-left: 2px solid var(--line-strong);
  padding: 6px 0 6px 20px;
}
.q-feature b {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 16px;
}
.q-feature span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.doc-table {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 60px 1fr 180px 100px;
}
.doc-table > div {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  align-items: center;
}
.doc-table > div:nth-last-child(-n+4) {
  border-bottom: none;
}
.doc-table .head {
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.doc-table .num {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
}
.doc-table .ext {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.doc-table .dl {
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doc-table .dl:hover {
  color: var(--red);
}

@media (max-width: 800px) {
  .q-twocol {
    grid-template-columns: 1fr;
  }
  .doc-table {
    grid-template-columns: 40px 1fr 80px;
  }
  .doc-table .ext {
    display: none;
  }
}
.legal-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
  padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 8vw, 120px);
}

.legal-toc {
  position: sticky;
  top: 100px;
}
.legal-toc h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc li a {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-left: 2px solid var(--line);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease);
  line-height: 1.4;
}
.legal-toc li a:hover {
  color: var(--ink);
  border-left-color: var(--red);
  background: var(--sand);
}
.legal-toc li a.is-active {
  color: var(--red);
  border-left-color: var(--red);
  font-weight: 700;
}

.legal-body {
  min-width: 0;
}
.legal-body .legal-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--sand);
  border-left: 3px solid var(--red);
  margin-bottom: 52px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.legal-body .legal-meta span {
  color: var(--ink);
  font-weight: 600;
}
.legal-body section[id] {
  padding: 0;
  background: none;
  scroll-margin-top: 100px;
}
.legal-body h2 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.legal-body h2 .sec-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  flex-shrink: 0;
}
.legal-body h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin: 16px 0 8px;
  font-family: var(--mono);
}
.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin: 0 0 10px;
}
.legal-body ul li, .legal-body ol li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover {
  text-decoration: none;
}
.legal-body .legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 20px;
}
.legal-body .legal-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 2px solid var(--line-strong);
  text-align: left;
  white-space: nowrap;
}
.legal-body .legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
  line-height: 1.6;
}
.legal-body .legal-table tr:last-child td {
  border-bottom: none;
}
.legal-body .legal-table code {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--sand);
  padding: 2px 6px;
  border-radius: 4px;
}
.legal-body .rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px;
}
.legal-body .right-card {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--navy);
}
.legal-body .right-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.legal-body .right-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}
.legal-body .legal-contact-box {
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--sand);
}
.legal-body .legal-contact-box p {
  margin: 0 0 4px;
}
.legal-body .legal-contact-box strong {
  color: var(--navy);
}
.legal-body .legal-contact-box a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .legal-toc {
    position: static;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--sand);
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .legal-body .rights-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── article-body-text ──────────────────────────────────────── */
.article-body-text { max-width: none; margin-top: 32px; }
.article-body-text p { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.7; color: var(--ink-2); margin-bottom: 24px; }

/* ─── btn-gold ────────────────────────────────────────────────── */
.btn-gold { background: #F3B309; color: var(--navy); border-color: #F3B309; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.btn-gold:hover { background: #e0a408; border-color: #e0a408; }

/* ─── page-hero photo grid ───────────────────────────────────── */
.page-hero--with-photo .page-hero-grid { margin-top: clamp(40px, 7vh, 100px); }

/* ─── legal-table gold ───────────────────────────────────────── */
.legal-body .legal-table { border: 1px solid rgba(15,27,61,.12); border-radius: 8px; overflow: hidden; }
.legal-body .legal-table th { color: #fff; background: var(--navy); padding: 11px 16px; border-bottom: 2px solid #F3B309; border-right: 1px solid rgba(255,255,255,.1); }
.legal-body .legal-table th:last-child { border-right: none; }
.legal-body .legal-table td { padding: 12px 16px; border-right: 1px solid rgba(15,27,61,.06); }
.legal-body .legal-table td:last-child { border-right: none; }
.legal-body .legal-table tbody tr:hover td { background: rgba(15,27,61,.03); }
.legal-body .legal-contact-box { border-color: #F3B309; margin-bottom: 20px; }

/* ─── #news section ──────────────────────────────────────────── */
#news { padding: clamp(52px, 6vw, 88px) 0 clamp(60px, 7vw, 96px); }
.news-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.news-title {
  font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--navy); margin: 0;
}
.news-all-link {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--navy); white-space: nowrap;
}
.news-all-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.news-all-link:hover { color: var(--red); }
.news-all-link:hover svg { transform: translateX(4px); }
@media (max-width: 640px) { .news-head { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* ─── news carousel ──────────────────────────────────────────── */
.news-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.news-track-wrap::-webkit-scrollbar { display: none; }
.news-track-wrap.is-dragging { cursor: grabbing; user-select: none; }
.news-track { display: grid; grid-auto-flow: column; grid-auto-columns: 300px; gap: 24px; }
.news-card { display: flex; flex-direction: column; min-width: 0; }
.news-card-link { display: flex; flex-direction: column; flex: 1; min-width: 0; text-decoration: none; color: inherit; }
.news-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 20px; }
.news-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); filter: grayscale(0.1); }
.news-card:hover .news-card-img-wrap img { transform: scale(1.04); }
.news-card-body { display: flex; flex-direction: column; flex: 1; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.news-card-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.news-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--navy); margin: 0 0 auto; letter-spacing: -0.01em; }
.news-card-date { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-top: 16px; }
@media (max-width: 1024px) { .news-track { grid-auto-columns: 280px; } }
@media (max-width: 640px) { .news-track { grid-auto-columns: 76vw; } }

/* ─── np-hero ────────────────────────────────────────────────── */
.np-hero { background: var(--navy); padding: 120px 0 56px; border-bottom: 3px solid #F3B309; }
.np-hero-inner { display: grid; gap: 20px; }
.np-hero-title { font-size: clamp(40px,5vw,72px); font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: -0.02em; line-height: 1; margin: 0; }
.np-hero-lead { font-size: clamp(15px,1.4vw,18px); color: rgba(255,255,255,.65); max-width: 64ch; margin: 0; line-height: 1.65; }
.np-hero .eyebrow { color: rgba(255,255,255,.5); }
.np-hero .eyebrow::before { background: rgba(255,255,255,.3); }

/* ─── np-featured / np-grid-section ─────────────────────────── */
.np-featured { padding: 80px 0 48px; }
.np-grid-section { padding: clamp(48px, 5vw, 72px) 0 80px; min-height: 40vh; }
.np-empty { padding: 80px 0; font-family: var(--sans); font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); text-align: center; }

/* ─── np-filters ─────────────────────────────────────────────── */
.np-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.np-filter {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 7px 16px; border: 1px solid rgba(15,27,61,.2);
  border-radius: 6px; background: transparent; color: var(--ink-2); cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.np-filter:hover { border-color: var(--navy); color: var(--navy); }
.np-filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.np-hero .np-filter { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.6); }
.np-hero .np-filter:hover { border-color: rgba(255,255,255,.8); color: #fff; background: rgba(255,255,255,.08); }
.np-hero .np-filter.is-active { background: #fff; border-color: #fff; color: var(--navy); }

/* ─── np-card ────────────────────────────────────────────────── */
.np-card { background: var(--paper); border-radius: 12px; overflow: hidden; border: 1px solid rgba(15,27,61,.08); transition: box-shadow .2s, transform .2s; }
.np-card:hover { box-shadow: 0 8px 32px rgba(15,27,61,.1); transform: translateY(-2px); }
.np-card-img-wrap { position: relative; overflow: hidden; }
.np-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.np-card:hover .np-card-img-wrap img { transform: scale(1.04); }
.np-card-badge { position: absolute; top: 16px; left: 16px; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: var(--navy); color: #fff; z-index: 2; }
.np-card-badge--press { background: #7C3AED; }
.np-card-badge--industry { background: #0284C7; }
.np-card-body { padding: clamp(20px,2.5vw,32px); display: flex; flex-direction: column; gap: 12px; }
.np-card-meta { display: flex; align-items: center; gap: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.np-card-title { font-size: clamp(16px,1.4vw,20px); font-weight: 700; line-height: 1.3; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.np-card-excerpt { font-size: 14px; line-height: 1.65; color: var(--ink-2); margin: 0; flex: 1; }
.np-card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-top: 4px; transition: color .15s; }
.np-card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.np-card-link:hover { color: #F3B309; }
.np-card-link:hover svg { transform: translateX(4px); }
.np-card--featured { display: grid; grid-template-columns: 1fr 1fr; }
.np-card--featured .np-card-img-wrap { position: relative; overflow: hidden; min-height: 320px; }
.np-card--featured .np-card-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.np-card--featured .np-card-body { padding: clamp(28px,3vw,48px); display: flex; flex-direction: column; gap: 16px; justify-content: flex-start; }
.np-card--featured .np-card-title { font-size: clamp(26px,2.8vw,40px); }
@media (max-width: 900px) {
  .np-card--featured { grid-template-columns: 1fr; }
  .np-card--featured .np-card-img-wrap { min-height: 240px; aspect-ratio: 16/9; }
  .np-card--featured .np-card-img-wrap img { position: static; }
}
.np-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .np-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .np-grid { grid-template-columns: 1fr; } }

/* ─── contacts page ──────────────────────────────────────────── */
/* ─── ct-persons ─────────────────────────────────────────────── */
.ct-persons {
  background: var(--sand);
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
  padding: clamp(56px, 7vw, 88px) 0;
}
.ct-persons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.ct-person {
  background: var(--navy);
  border-radius: 12px;
  padding: clamp(16px, 1.6vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-person-role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 12px;
  line-height: 1.6;
}
.ct-person-name {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ct-person-tel,
.ct-person-email {
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.ct-person-tel:hover,
.ct-person-email:hover { color: var(--sand); }
.ct-person--cta { justify-content: space-between; }
.ct-person-desc {
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 14px);
  color: rgba(255,255,255,0.55);
  margin: 4px 0 0;
  line-height: 1.6;
  flex: 1;
}
.ct-person-btn { margin-top: 20px; align-self: flex-start; }
@media (max-width: 1024px) {
  .ct-persons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ct-persons-grid { grid-template-columns: 1fr; }
}

.ct-section { padding: clamp(48px, 6vw, 80px) 0; }
.ct-section .wrap { display: flex; flex-direction: column; gap: 16px; }
.ct-facility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.ct-facility-img {
  overflow: hidden;
  position: relative;
  border-radius: 12px 0 0 12px;
}
.ct-facility-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px 0 0 12px;
}
.ct-facility-info {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  background: var(--paper);
  border-radius: 0 12px 12px 0;
}
.ct-facility-name {
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.ct-facility-address {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.ct-facility-note {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.ct-facility-contacts {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.ct-facility-contacts em { color: var(--muted); font-style: italic; }
.ct-facility-contacts a { color: var(--ink); text-decoration: none; }
.ct-facility-contacts a:hover { color: var(--steel); }
.ct-facility-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  margin-top: 4px;
}
.ct-facility-map:hover { color: var(--ink); }
.ct-facility-info--right { border-radius: 12px 0 0 12px; }
.ct-facility-img--right { border-radius: 0 12px 12px 0; }
.ct-facility-img--right img { border-radius: 0 12px 12px 0; }
@media (max-width: 768px) {
  .ct-facility { grid-template-columns: 1fr; }
  .ct-facility--reverse { direction: ltr; }
  .ct-facility-img { min-height: 260px; }
  .ct-facility-info--right,
  .ct-facility-img--right,
  .ct-facility-img--right img { border-radius: 12px; }
}
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: start; }
.ct-info { display: flex; flex-direction: column; gap: 28px; }
.ct-card { padding: 28px 32px; border: 1px solid rgba(15,27,61,.1); border-radius: 12px; background: var(--paper); display: flex; flex-direction: column; gap: 16px; }
.ct-card-header { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #F3B309; }
.ct-card-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-card-icon svg { width: 18px; height: 18px; stroke: #fff; }
.ct-card-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ct-rows { display: flex; flex-direction: column; gap: 10px; }
.ct-row { display: grid; grid-template-columns: 100px 1fr; gap: 8px; font-size: 14px; line-height: 1.5; }
.ct-row-key { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.ct-row-val { color: var(--ink); font-weight: 500; }
.ct-row-val a { color: var(--navy); font-weight: 600; transition: color .15s; }
.ct-row-val a:hover { color: #F3B309; }
.ct-cta { display: flex; flex-direction: column; gap: 12px; padding: 28px 32px; border: 1px solid #F3B309; border-radius: 12px; background: var(--navy); }
.ct-cta-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0; }
.ct-cta-text { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.6; }
.ct-cta .btn { align-self: flex-start; margin-top: 4px; }
.ct-map-wrap { position: sticky; top: 100px; display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; border: 1px solid rgba(15,27,61,.1); box-shadow: 0 4px 32px rgba(15,27,61,.08); }
.ct-map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.ct-map-footer { background: var(--navy); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ct-map-addr { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.ct-map-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #F3B309; white-space: nowrap; transition: opacity .15s; }
.ct-map-link:hover { opacity: .8; }
.ct-map-link svg { width: 12px; height: 12px; stroke: currentColor; }
@media (max-width: 1000px) { .ct-grid { grid-template-columns: 1fr; } .ct-map-wrap { position: static; } .ct-map-wrap iframe { height: 320px; } }
@media (max-width: 600px) { .ct-card { padding: 20px; } .ct-cta { padding: 20px; } .ct-row { grid-template-columns: 80px 1fr; } }

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.prod-cat-gallery img { cursor: zoom-in; }
.lb-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.92);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lb-overlay.is-open { opacity: 1; pointer-events: all; }
.lb-img-wrap {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.6);
  display: block;
}
.lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  z-index: 9001;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  z-index: 9001; user-select: none;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-arrow--prev { left: 16px; }
.lb-arrow--next { right: 16px; }
.lb-arrow.is-hidden { opacity: 0; pointer-events: none; }
.lb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
  z-index: 9001;
}
/* Turnstile CAPTCHA — rounded corners to match site style */
.cf-turnstile {
  align-self: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* ── Cookie consent banner ─────────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-bar__text {
  flex: 1 1 280px; font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.72); margin: 0;
}
.cookie-bar__link {
  color: rgba(255,255,255,0.55); text-decoration: underline;
  text-underline-offset: 2px; margin-left: 4px;
  transition: color 0.15s;
}
.cookie-bar__link:hover { color: rgba(255,255,255,0.9); }
.cookie-bar__actions {
  display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; align-items: center;
}
.cookie-bar__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 16px; border-radius: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
  text-decoration: none; border: 1px solid transparent;
}
.cookie-bar__btn--accept {
  background: #4caf50; color: #fff; border-color: #4caf50;
}
.cookie-bar__btn--accept:hover { background: #43a047; border-color: #43a047; }
.cookie-bar__btn--reject {
  background: transparent; color: rgba(255,255,255,0.75);
  border-color: rgba(76,175,80,0.55);
}
.cookie-bar__btn--reject:hover {
  border-color: #4caf50; color: #fff;
}
.cookie-bar__btn--settings {
  background: transparent; color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.18);
}
.cookie-bar__btn--settings:hover {
  border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85);
}
@media (max-width: 600px) {
  .cookie-bar {
    padding: 14px 0;
  }
  .cookie-bar__inner {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .cookie-bar__text { font-size: 12px; flex: 0 0 auto; }
  .cookie-bar__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  /* Accept + Reject side-by-side, equal width */
  .cookie-bar__btn--accept,
  .cookie-bar__btn--reject {
    flex: 1 1 calc(50% - 4px);
    height: 36px;
    font-size: 10px;
    padding: 0 8px;
    white-space: nowrap;
  }
  /* Settings becomes a subtle full-width text link */
  .cookie-bar__btn--settings {
    flex: 1 1 100%;
    height: 24px;
    font-size: 10px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    text-underline-offset: 2px;
    justify-content: center;
  }
  .cookie-bar__btn--settings:hover {
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.75);
  }
}
