:root {
  --ink: #161616;
  --ink-2: #333;
  --navy: #111;
  --steel: #1c1c1c;
  --brass: #6a1313;
  --brass-2: #8a1a1a;
  --brass-on-dark: #e8a0a0;
  --paper: #f3f3f3;
  --white: #fff;
  --line: #e2e2e2;
  --line-dark: rgba(255,255,255,.12);
  --muted: #5c5c5c;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(0,0,0,.1);
  --shadow-soft: 0 1px 0 rgba(0,0,0,.06);
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1200px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.topbar {
  background: #111;
  color: #c8c8c8;
  font-size: 12px;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--brass);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  align-items: center;
}
.topbar a { color: #eee; }
.topbar a:hover { color: #fff; }
.lang-switch { display: inline-flex; border: 1px solid rgba(255,255,255,.28); }
.lang-switch a {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #bbb;
}
.lang-switch a.on { background: #fff; color: #111; }
.lang-switch.on-light { border-color: #ccc; }
.lang-switch.on-light a { color: #555; }
.lang-switch.on-light a.on { background: #111; color: #fff; }
.nav-lang { display: none; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar .certs { color: #aaa; }

.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease);
}
.header.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.logo-on-dark { background: #fff; padding: 8px 12px; }
.nav-side { display: flex; align-items: center; gap: 8px; }
.hdr-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: #222;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
.hdr-act svg { width: 15px; height: 15px; flex: none; }
.hdr-act:hover { border-color: var(--brass); color: var(--brass); }
@media (max-width: 1180px) {
  .hdr-act span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hdr-act { width: 36px; padding: 0; }
}
.nav-links { display: flex; align-items: stretch; gap: 2px; height: var(--header-h); }
.nav-links > a, .nav-drop > button {
  padding: 8px 11px;
  background: none;
  border: 0;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.nav-links > a:hover, .nav-drop > button:hover { color: var(--brass); }
.nav-links > a.active { color: var(--brass); }
.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px; bottom: 18px;
  height: 2px;
  background: var(--brass);
}
.nav-caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
  transition: transform .2s;
}
.nav-drop.is-open .nav-caret,
.nav-drop:hover .nav-caret { transform: rotate(180deg); }
.nav-drop { position: relative; display: flex; align-items: center; }
.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(34px + var(--header-h));
  width: 100%;
  background: #fff;
  border-top: 2px solid var(--brass);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 90;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-drop:hover .mega,
.nav-drop:focus-within .mega,
.nav-drop.is-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.mega-feat {
  background: #111;
  color: #eee;
  overflow: hidden;
}
.mega-feat img { width: 100%; height: 132px; object-fit: cover; filter: grayscale(.2); }
.mega-feat > div { padding: 16px 16px 18px; }
.mega-feat strong { display: block; font-family: var(--serif); font-size: 20px; line-height: 1.25; margin: 4px 0 8px; color: #fff; }
.mega-feat p { font-size: 13px; color: #c8c8c8; margin-bottom: 14px; }
.mega-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 14px;
  align-content: start;
}
.mega-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 8px;
  border-bottom: 1px solid #f0f0f0;
}
.mega-item img { width: 56px; height: 42px; object-fit: cover; background: #eee; }
.mega-item em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 2px;
}
.mega-item strong { display: block; font-size: 13.5px; font-weight: 650; line-height: 1.25; color: #161616; }
.mega-item span span { display: block; font-size: 12px; color: var(--muted); line-height: 1.35; margin-top: 2px; }
.mega-item:hover { background: #f8f3f3; }
.mega-item:hover strong { color: var(--brass); }
.mega-bar { background: #f6f6f6; border-top: 1px solid var(--line); }
.mega-bar .container {
  display: flex;
  gap: 28px;
  min-height: 42px;
  align-items: center;
  font-size: 13px;
  font-weight: 650;
}
.mega-bar a { color: #333; letter-spacing: .02em; }
.mega-bar a:hover { color: var(--brass); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 20px;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: .03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.16) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform .65s var(--ease);
}
.btn-gold:hover::after { transform: translateX(130%); }
.btn-gold { background: var(--brass); color: #fff; }
.btn-gold:hover { background: #541010; box-shadow: 0 8px 22px rgba(106,19,19,.28); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-line { background: #fff; border: 1px solid #ccc; color: #111; }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  place-items: center;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 16px; height: 1.5px; background: #111; position: relative;
}
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

.hero {
  position: relative;
  min-height: min(78vh, 680px);
  background: #111;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.25) contrast(1.08);
  animation: ken 28s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}
@keyframes ken { to { transform: scale(1.08) translate(-1.2%, -0.6%); } }
.hero-inner > * {
  animation: fadeUp .85s var(--ease) both;
}
.hero-inner > *:nth-child(2) { animation-delay: .08s; }
.hero-inner > *:nth-child(3) { animation-delay: .16s; }
.hero-inner > *:nth-child(4) { animation-delay: .24s; }
.hero-inner > *:nth-child(5) { animation-delay: .32s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.62) 46%, rgba(10,10,10,.28) 100%);
}
.mesh-overlay { display: none; }
.hero-inner {
  min-height: inherit;
  display: grid;
  align-content: center;
  padding: 72px 0 56px;
  gap: 22px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: #ddd; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 650;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brass); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 600;
  max-width: 16ch;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: #f2d0d0; }
.hero p.lead { max-width: 56ch; color: #d4d4d4; font-size: 17.5px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 22px;
}
.hero-meta > div { padding-right: 36px; margin-right: 36px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-meta > div:last-child { border: 0; padding-right: 0; margin: 0; }
.hero-meta b { display: block; font-size: 24px; color: #fff; font-weight: 700; letter-spacing: -.02em; }
.hero-meta span { color: #b5b5b5; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }

.section { padding: 80px 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-head h2, .page-hero h1, .page-hero .display, .prose h1, .dark-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  font-weight: 600;
}
.kicker { color: var(--brass); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; margin-bottom: 8px; }
.dark-band .kicker,
.page-hero .kicker { color: var(--brass-on-dark); }
.muted { color: var(--muted); }

.page-hero {
  background: #111;
  color: #f3f3f3;
  padding: 56px 0 48px;
  position: relative;
  border-bottom: 3px solid var(--brass);
}
.crumb { font-size: 13px; color: #aaa; margin-bottom: 12px; }
.crumb a:hover { color: #fff; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .35s var(--ease);
}
.card:hover { border-color: #cfcfcf; box-shadow: var(--shadow); transform: translateY(-4px); }
.card-media { aspect-ratio: 16/11; overflow: hidden; background: #ececec; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 18px 18px 20px; }
.card-body .num { color: var(--brass); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.card-body h3 { font-size: 17px; margin: 6px 0 8px; line-height: 1.3; font-weight: 650; }
.card-body p { color: var(--muted); font-size: 14px; }

.feature {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.feature .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--brass);
  color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 12px;
}
.reveal { opacity: 0; transform: translateY(16px); animation: up .7s var(--ease) forwards; }
.reveal:nth-child(2) { animation-delay: .06s; }
.reveal:nth-child(3) { animation-delay: .12s; }
.reveal:nth-child(4) { animation-delay: .18s; }
@keyframes up { to { opacity: 1; transform: none; } }

.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.chip {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.chip:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }
.dark-band {
  background: #111;
  color: #eee;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat {
  padding: 8px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border: 0; }
.stat b { display: block; font-size: 32px; color: #fff; font-family: var(--serif); font-weight: 600; }
.stat span { color: #d0d0d0; font-size: 13px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.photo-frame { overflow: hidden; aspect-ratio: 4/3; background: #ddd; }
.photo-frame img, .gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-frame:hover img, .gallery img:hover { transform: scale(1.04); }
.prose h2, .prose h3, .prose h4 { font-family: var(--serif); margin: 1.15em 0 .4em; font-weight: 600; }
.prose h2 { font-size: 30px; }
.prose h3 { font-size: 22px; }
.prose h4 { font-size: 17px; }
.prose p { margin-bottom: 1em; color: #333; }
.prose ul.check { display: grid; gap: 8px; margin: 14px 0 22px; }
.prose ul.check li { padding-left: 22px; position: relative; }
.prose ul.check li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--brass); }
.prose .btn { margin: 6px 8px 0 0; }

.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.gallery .g2 { display: grid; gap: 10px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.gallery img, .photo-frame img, .g2 img { cursor: zoom-in; }

.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,8,8,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px 72px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lb.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lb img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 140px);
  width: auto; height: auto;
  object-fit: contain;
  background: #111;
  transform: scale(.96);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
}
.lb.open img { transform: scale(1); opacity: 1; }
.lb img.lb-swap { opacity: 0; transform: scale(.97); }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lb-count {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: #ddd;
  font-size: 13px;
  letter-spacing: .08em;
}
@media (max-width: 640px) {
  .lb { padding: 56px 12px 80px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
th { background: #111; color: #fff; position: sticky; top: 0; font-weight: 600; letter-spacing: .03em; }
tr:nth-child(even) td { background: #fafafa; }
tr:hover td { background: #f6eeee; }
.table-tools { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.table-tools input, .table-tools select, .form input, .form select, .form textarea {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: var(--radius);
  padding: 11px 12px;
  outline: none;
}
.table-tools input:focus, .form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--brass); box-shadow: 0 0 0 3px rgba(106,19,19,.12);
}
.form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { font-size: 13px; font-weight: 650; display: grid; gap: 6px; }
.form textarea { min-height: 130px; resize: vertical; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 16px 18px;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { margin-top: 8px; color: var(--muted); }

.footer {
  background: #111;
  color: #bdbdbd;
  padding: 56px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.15fr; gap: 32px; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer a:hover { color: #fff; }
.footer li { margin-bottom: 7px; font-size: 14.5px; }
.footer .copy {
  margin-top: 36px; padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

.tabbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 58px;
  padding-bottom: env(safe-area-inset-bottom);
  background: #fff;
  border-top: 1px solid var(--line);
  z-index: 75;
  grid-template-columns: repeat(4, 1fr);
}
.tabbar a {
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #666;
}
.tabbar a.active { color: var(--brass); box-shadow: inset 0 2px 0 var(--brass); }
.tabbar svg { width: 18px; height: 18px; }

.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; transition: .25s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #fff;
  padding: 10px 20px calc(24px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .35s var(--ease);
  max-height: 86vh;
  overflow: auto;
}
.drawer.open .drawer-sheet { transform: none; }
.drawer-handle { width: 40px; height: 3px; background: #ccc; margin: 8px auto 16px; }
.drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 650; }

.toast {
  position: fixed; left: 50%; bottom: 80px; transform: translateX(-50%) translateY(12px);
  background: #111; color: #fff; padding: 11px 16px;
  opacity: 0; pointer-events: none; transition: .25s; z-index: 100; font-size: 14px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-tile { min-height: 176px; overflow: hidden; position: relative; color: #fff; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cat-tile span {
  position: absolute; inset: auto 14px 14px 14px; z-index: 1; font-weight: 700;
}
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }

@media (max-width: 980px) {
  .grid-3, .grid-4, .industries, .stats, .footer-grid, .catalog-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .split, .gallery { grid-template-columns: 1fr; }
  .nav-links, .topbar, .mega { display: none !important; }
  .nav-lang { display: inline-flex; }
  .menu-btn { display: grid; }
  .header .btn-gold, .hdr-act { display: none; }
  .nav {
    height: 64px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .header .logo {
    grid-column: 2;
    justify-self: center;
    position: relative;
    left: -5%;
    transform: none;
  }
  .header .logo img { height: 38px; }
  .nav-side-right {
    grid-column: 3;
    justify-self: end;
  }
  .footer .logo,
  .footer .logo-on-dark {
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }
  .tabbar { display: grid; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .hero { min-height: 78vh; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .hero-meta > div { border: 0; margin: 0; padding: 0 16px 0 0; }
  .stat { border: 0; padding: 12px 0; }
  .section { padding: 52px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .grid-3, .grid-4, .industries, .stats, .footer-grid, .catalog-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 0 40px; }
  .hero p.lead { font-size: 16px; }
  .page-hero { padding: 40px 0 32px; }
}

@media print {
  .topbar, .header, .tabbar, .btn, .menu-btn { display: none !important; }
  body { padding: 0; background: #fff; }
}

.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.anim.inview { opacity: 1; transform: none; }
.page-hero .display, .page-hero h1, .page-hero .kicker, .page-hero .crumb, .page-hero .muted {
  animation: fadeUp .7s var(--ease) both;
}
.page-hero .kicker { animation-delay: .05s; }
.page-hero .display, .page-hero h1 { animation-delay: .12s; }
.hdr-act, .lb-btn { transition: transform .25s var(--ease), border-color .2s, color .2s, background .25s; }
.lb-btn:hover { transform: scale(1.06); }
.tabbar a { transition: color .2s, box-shadow .2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .anim { opacity: 1; transform: none; }
}
