/* CHUNHUA Mineral Equipment — Industrial B2B Export Site */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('../icons/bootstrap-icons.min.css');

:root {
  /* Brand */
  --brand:         #1f2188;
  --brand-light:   #3a3dc8;
  --brand-dark:    #161870;
  --copper:        #b87c3c;
  --copper-light:  #d4963e;

  /* Surfaces */
  --ink:           #12131e;
  --ink-mid:       #1e1f38;
  --surface:       #ffffff;
  --surface-alt:   #f5f6fb;
  --surface-mid:   #eceef8;
  --slate-bg:      #eceef8;
  --white-smoke:   #f5f6fb;

  /* Text */
  --text-primary:   #1a1c35;
  --text-secondary: #3b3d5c;
  --text-muted:     #6b6d8a;
  --text-faint:     #a0a2b8;

  /* Borders */
  --border-subtle: rgba(20,21,60,0.08);
  --border-light:  rgba(20,21,60,0.13);

  /* Nav */
  --nav-height: 68px;
  --nav-bg: #ffffff;
  --nav-shadow: 0 1px 0 rgba(20,21,60,0.08), 0 4px 24px rgba(18,19,30,0.05);

  /* Fonts */
  --font-display: 'Sora', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body:    'Manrope', 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono:    'IBM Plex Mono', 'JetBrains Mono', monospace;

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases (kept for compatibility) */
  --steel-dark:    #12131e;
  --steel-mid:     #1e1f38;
  --steel-light:   #6b6d8a;
  --amber-stripe:  var(--brand);
  --copper-bright: var(--copper-light);
  --border:        rgba(20,21,60,0.08);
  --border-mid:    rgba(20,21,60,0.13);
}


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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

/* ── Typography ── */
.display-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
}

/* ── Signature: industrial stripe divider ── */
.stripe-divider {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brand),
    var(--brand) 8px,
    var(--brand-light) 8px,
    var(--brand-light) 16px
  );
}

/* ── Navbar (white — logo in brand blue stays visible) ── */
.site-navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-height);
  box-shadow: var(--nav-shadow);
  transition: box-shadow 0.3s ease;
}

.site-navbar.scrolled {
  box-shadow: 0 1px 0 rgba(31, 33, 136, 0.1), 0 12px 40px rgba(20, 21, 40, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand) !important;
  line-height: 1.2;
}

/* Drop logo file at assets/logo.png — displays on white nav background */
.navbar-brand-logo {
  height: 42px;
  width: auto;
  display: none;
  object-fit: contain;
}

.navbar-brand.has-logo .navbar-brand-logo {
  display: block;
}

.navbar-brand.has-logo {
  font-size: 0;
  letter-spacing: 0;
}

.navbar-brand.has-logo span {
  display: none;
}

.navbar-brand span {
  display: block;
  font-size: 0.58rem;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-top: 2px;
}

.site-navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary) !important;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--brand) !important;
}

.site-navbar .dropdown-menu {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0;
  box-shadow: 0 16px 48px rgba(20, 21, 40, 0.12);
}

.site-navbar .dropdown-item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.55rem 1.25rem;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.site-navbar .dropdown-item:focus {
  background-color: transparent;
  color: var(--text-primary);
  outline: none;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item.active {
  background: var(--slate-bg);
  color: var(--brand);
  padding-left: 1.5rem;
}

.site-navbar .dropdown-item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

/* ── Mega menu ── */
.dropdown-menu-mega {
  min-width: min(800px, calc(100vw - 2rem));
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(20, 21, 40, 0.14);
}

.mega-menu {
  display: grid;
  grid-template-columns: 260px 1fr;
}

/* Left: featured image panel */
.mega-menu__feature {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  min-height: 320px;
}

.mega-feature-card {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.mega-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s, transform 0.6s ease;
  display: block;
  min-height: 320px;
}

.mega-feature-card:hover img {
  opacity: 0.65;
  transform: scale(1.04);
}

.mega-feature-card__overlay {
  position: absolute;
  inset: 0;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(20,21,40,0.85) 100%);
}

.mega-feature-card__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 0.4rem;
}

.mega-feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.mega-feature-card__cta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, letter-spacing 0.2s;
}

.mega-feature-card:hover .mega-feature-card__cta {
  color: #fff;
  letter-spacing: 0.15em;
}

/* Right: product list */
.mega-menu__list {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.mega-menu__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mega-menu__title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mega-menu__all {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.mega-menu__all:hover { color: var(--brand-light); }

/* Product rows */
.mega-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.15s, padding-left 0.2s;
  position: relative;
}

.mega-row:last-child { border-bottom: none; }

.mega-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.mega-row:hover {
  background: var(--slate-bg);
  padding-left: 1.85rem;
  color: inherit;
}

.mega-row:hover::before { transform: scaleY(1); }

.mega-row__thumb {
  width: 56px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--slate-bg);
}

.mega-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mega-row:hover .mega-row__thumb img { transform: scale(1.08); }

.mega-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.mega-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: color 0.15s;
}

.mega-row:hover .mega-row__name { color: var(--brand); }

.mega-row__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-row__arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.mega-row:hover .mega-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991.98px) {
  .mega-menu {
    grid-template-columns: 1fr;
  }
  .mega-menu__feature { display: none; }
}

.navbar-toggler {
  border-color: var(--border-light);
}

.navbar-toggler-icon {
  filter: none;
}

/* Contact CTA in navbar */
.site-navbar .btn-copper {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
}

.site-navbar .btn-copper:hover,
.site-navbar .btn-copper:focus {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: #fff !important;
}

.site-navbar .btn-copper.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    background: var(--nav-bg);
    padding: 0.75rem 0 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(220px, 30vh, 300px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 21, 40, 0.35) 0%,
    rgba(20, 21, 40, 0.72) 55%,
    rgba(20, 21, 40, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 2rem;
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  max-width: 18ch;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* ── Buttons ── */
.btn-copper {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: var(--copper);
  border: 2px solid var(--copper);
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-copper:hover,
.btn-copper:focus {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: #fff;
}

.btn-outline-light-custom {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.btn-steel {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: var(--brand);
  border: 2px solid var(--brand);
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 0;
}

.btn-steel:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: #fff;
}

/* ── Pillars (Metso-style) ── */
.pillars {
  background: #fff;
  padding: 5rem 0;
}

.pillar-item {
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--copper);
  height: 100%;
  transition: background 0.2s;
}

.pillar-item:hover {
  background: var(--slate-bg);
}

.pillar-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

/* ── Decorative system ── */
.deco-corner {
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
  z-index: 2;
}

.deco-corner--tl {
  top: 2rem;
  left: 2rem;
  border-top: 2px solid rgba(31, 33, 136, 0.2);
  border-left: 2px solid rgba(31, 33, 136, 0.2);
}

.deco-corner--br {
  bottom: 2rem;
  right: 2rem;
  border-bottom: 2px solid rgba(31, 33, 136, 0.2);
  border-right: 2px solid rgba(31, 33, 136, 0.2);
}

.grid-bg--subtle::before {
  opacity: 0.45;
}

.grid-bg--dots::after {
  background:
    radial-gradient(circle at 12% 50%, rgba(31, 33, 136, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(31, 33, 136, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(31, 33, 136, 0.06) 0%, transparent 70%);
}

/* Editorial section header — copy left, CTA right, no empty middle */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  padding-top: 0.35rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.section-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--brand);
}

.section-head__copy {
  max-width: 40rem;
  min-width: 0;
}

.section-head__copy .eyebrow {
  margin-bottom: 0.7rem;
}

.section-head__copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: none;
  color: var(--text-primary);
}

.section-head__lead {
  margin: 0;
  max-width: 48ch;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-secondary);
}

.section-head__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, gap 0.2s;
}

.section-head__cta:hover {
  background: var(--brand);
  color: #fff;
  gap: 0.7rem;
}

.section-head__aside {
  padding-left: 0;
  border-left: none;
  max-width: none;
}

.section-head__aside p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.card-link--arrow::after {
  content: ' →';
  transition: transform 0.2s ease;
  display: inline-block;
}

.card-link--arrow:hover::after {
  transform: translateX(4px);
}

/* ── Equipment showcase (Mill Relining) ── */
.equipment-showcase {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white-smoke);
  overflow: hidden;
}

.equipment-showcase__ghost {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 14rem);
  letter-spacing: 0.06em;
  color: rgba(31, 33, 136, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.equipment-showcase > .container {
  position: relative;
  z-index: 1;
}

/* Featured product row */
.equip-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(31, 33, 136, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.equip-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 33, 136, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.equip-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(31, 33, 136, 0.14);
  color: inherit;
}

.equip-feature__index {
  position: absolute;
  top: 2rem;
  left: 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(31, 33, 136, 0.07);
  z-index: 2;
  pointer-events: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.equip-feature:hover .equip-feature__index {
  color: rgba(31, 33, 136, 0.12);
  transform: translateY(-4px);
}

.equip-feature__media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eaf5 0%, #f5f6fb 100%);
}

.equip-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.equip-feature:hover .equip-feature__media img {
  transform: scale(1.06);
}

.equip-feature__tag {
  position: absolute;
  top: 1.85rem;
  right: 1.75rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  padding: 0.35rem 0.75rem;
}

.equip-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(2rem, 4vw, 3.25rem);
  position: relative;
  z-index: 2;
}

.equip-feature__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
}

.equip-feature__body p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Bento grid for secondary products — 2 columns, each 50% */
.equip-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.equip-tile {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid rgba(31, 33, 136, 0.08);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

/* --wide modifier no longer used but kept for backward compat */
.equip-tile--wide {
  grid-column: span 1;
  flex-direction: column;
}

.equip-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(31, 33, 136, 0.12);
  color: inherit;
}

.equip-tile__index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(31, 33, 136, 0.35);
  z-index: 2;
  transition: color 0.25s;
}

.equip-tile:hover .equip-tile__index {
  color: var(--brand);
}

.equip-tile__img {
  position: relative;
  overflow: hidden;
  height: auto;
  flex-shrink: 0;
  background: var(--slate-bg);
}

.equip-tile--wide .equip-tile__img {
  width: 100%;
  height: auto;
  min-height: 0;
}

.equip-tile__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 21, 40, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.equip-tile:hover .equip-tile__img::after {
  opacity: 1;
}

.equip-tile__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.equip-tile__body {
  padding: 1.85rem 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equip-tile--wide .equip-tile__body {
  padding: 1.85rem 1.75rem 1.6rem;
  justify-content: flex-start;
}

.equip-tile__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.equip-tile__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Shared CTA pill */
.equip-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
}

.equip-cta__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.equip-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(31, 33, 136, 0.2);
  color: var(--brand);
  font-size: 0.9rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.equip-feature:hover .equip-cta__icon,
.equip-tile:hover .equip-cta__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateX(4px);
}

.equip-cta--sm .equip-cta__icon {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}

/* ── Product cards (RME-style) ── */
.product-grid-section {
  padding: 5rem 0;
  background: var(--slate-bg);
  --product-img-height: 280px;
}

.product-grid-section .category-card__img {
  height: var(--product-img-height);
  min-height: var(--product-img-height);
}

.product-grid-section .category-card__img img {
  height: 100%;
  object-fit: cover;
}

.product-grid-section .category-card__img--contain img {
  max-height: none;
  width: 100%;
  object-fit: contain;
}

.product-grid-section .product-card-img {
  aspect-ratio: auto;
  height: var(--product-img-height);
}

.product-card {
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 35, 50, 0.12);
  color: inherit;
}

.product-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img::after {
  transform: scaleX(1);
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ── Page banner (inner pages) — shorter than homepage hero ── */
.page-header {
  position: relative;
  min-height: clamp(220px, 30vh, 300px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  padding: 2.6rem 0 2rem;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--banner);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 19, 30, 0.28) 0%,
    rgba(18, 19, 30, 0.7) 58%,
    rgba(18, 19, 30, 0.9) 100%
  );
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.55rem;
  line-height: 1.08;
}

.page-header .page-header__tag,
.page-header .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-bottom: 0.45rem;
}

.page-header .text-white-50,
.page-header p {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 42rem;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.breadcrumb-custom {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumb-custom a,
.breadcrumb-custom .current {
  color: var(--brand);
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  color: var(--brand-light);
}

.breadcrumb-custom span:not(.current) {
  color: #adb0c4;
  margin: 0 0.5rem;
}

/* Breadcrumbs on dark hero overlays */
.hero .breadcrumb-custom,
.page-header .breadcrumb-custom,
.rme-hero .breadcrumb-custom,
.news-hero .breadcrumb-custom,
.contact-hero .breadcrumb-custom,
.hero .breadcrumb-custom a,
.page-header .breadcrumb-custom a,
.rme-hero .breadcrumb-custom a,
.news-hero .breadcrumb-custom a,
.contact-hero .breadcrumb-custom a,
.hero .breadcrumb-custom .current,
.page-header .breadcrumb-custom .current,
.rme-hero .breadcrumb-custom .current,
.news-hero .breadcrumb-custom .current,
.contact-hero .breadcrumb-custom .current {
  color: rgba(255, 255, 255, 0.85);
}

.hero .breadcrumb-custom a:hover,
.page-header .breadcrumb-custom a:hover,
.rme-hero .breadcrumb-custom a:hover,
.news-hero .breadcrumb-custom a:hover,
.contact-hero .breadcrumb-custom a:hover {
  color: #fff;
}

.hero .breadcrumb-custom span:not(.current),
.page-header .breadcrumb-custom span:not(.current),
.rme-hero .breadcrumb-custom span:not(.current),
.news-hero .breadcrumb-custom span:not(.current),
.contact-hero .breadcrumb-custom span:not(.current) {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Content sections ── */
.content-section {
  padding: 4rem 0;
}

.content-section.alt-bg {
  background: var(--slate-bg);
}

.content-section.dark-bg {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}

.content-section.dark-bg h2,
.content-section.dark-bg h3 {
  color: #fff;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Stats band ── */
.stats-band {
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stat-item {
  padding: 4rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-suffix {
  color: var(--brand-light);
  font-size: 0.55em;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767.98px) {
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-right: none; }
}

@media (max-width: 479.98px) {
  .stats-band__inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 2.5rem 1.5rem; }
  .stat-item:first-child { border-top: none; }
}

/* ── Gallery ── */
.gallery-grid img,
.gallery-item {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--steel-light);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ── Spec table ── */
.spec-table {
  font-size: 0.9rem;
}

.spec-table thead {
  background: var(--brand);
  color: #fff;
}

.spec-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 1rem;
  border: none;
}

.spec-table tbody td {
  padding: 0.85rem 1rem;
  border-color: #dee2e6;
  vertical-align: middle;
}

.spec-table tbody tr:nth-child(even) {
  background: var(--slate-bg);
}

.spec-table .mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* ── Project cards ── */
.project-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e2e6ea;
}

.project-card-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.project-card-body {
  padding: 1.5rem;
}

.project-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

/* ── Contact form ── */
/* ── Contact Page ── */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--white-smoke);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2.5rem;
  align-items: start;
}

/* Sidebar */
.contact-sidebar {
  background: linear-gradient(160deg, var(--brand-dark) 0%, var(--ink-mid) 100%);
  color: #fff;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-sidebar::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.contact-sidebar::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  margin-top: 0.15rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info-item a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.97rem;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--brand-light);
}

.contact-info-item span {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-sidebar-note {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--brand-light);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.contact-sidebar-note svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--brand-light);
}

/* Form Card */
.contact-form-card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(20,21,40,0.05), 0 16px 48px rgba(20,21,40,0.08);
  border-top: 3px solid var(--brand);
}

.contact-form-header {
  padding: 2.5rem 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
  margin-bottom: 0;
}

.contact-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.contact-form {
  padding: 2rem 2.5rem 2.5rem;
}

.form-field {
  position: relative;
}

.form-control,
.form-select {
  border-radius: 0;
  border: 1.5px solid #dde0ea;
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: #fafbfd;
  color: var(--text-primary);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
  color: #b0b4c8;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 33, 136, 0.1);
  outline: none;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.45rem;
  display: block;
}

.form-label .required {
  color: #c0392b;
  margin-left: 2px;
}

.contact-submit-btn {
  padding: 0.85rem 2.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.2s, background 0.2s;
}

.contact-submit-btn:hover {
  gap: 0.9rem;
}

.contact-form-privacy {
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: 0.77rem;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    padding: 2.25rem 1.75rem;
  }
  .contact-form-header,
  .contact-form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ── News section — pinned story left, 4 matching-height stories right ── */
.news-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--border-subtle);
}

.news-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.65rem;
  padding-bottom: 1.05rem;
  border-bottom: 2px solid var(--brand);
}

.news-section__head h2 {
  margin: 0;
}

.news-board {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0.85rem;
  align-items: stretch;
}

.news-pin {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-width: 0;
}

.news-pin:hover,
.news-pin:focus-visible {
  color: inherit;
  border-color: rgba(31, 33, 136, 0.22);
  box-shadow: 0 16px 40px rgba(18, 19, 30, 0.1);
}

.news-pin:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.news-pin__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  flex: 0 0 auto;
}

.news-pin__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.news-pin:hover .news-pin__media img {
  transform: scale(1.04);
}

.news-pin__flag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  padding: 0.3rem 0.7rem;
}

.news-pin__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1rem 1.2rem 1.05rem;
}

.news-pin__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.news-pin__meta time,
.news-side__meta time {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-pin__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--text-primary);
  margin: 0 0 0.45rem;
}

.news-pin:hover .news-pin__title {
  color: var(--brand);
}

.news-pin__excerpt {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 0.7rem;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-pin__cta,
.news-side__cta {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s var(--ease-out);
}

.news-pin:hover .news-pin__cta,
.news-side__item:hover .news-side__cta {
  gap: 0.6rem;
}

.news-side .news-side__cta {
  margin-top: 0.12rem;
  font-size: 0.66rem;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 0;
  height: 100%;
}

.news-side__item {
  flex: 1 1 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.news-side__item:hover,
.news-side__item:focus-visible {
  color: inherit;
  border-color: rgba(31, 33, 136, 0.22);
  box-shadow: 0 12px 32px rgba(18, 19, 30, 0.08);
}

.news-side__item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.news-side__media {
  position: relative;
  height: 100% !important;
  min-height: 0;
  aspect-ratio: auto !important;
  overflow: hidden;
  background: var(--slate-bg);
}

.news-side__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.news-side__item:hover .news-side__media img {
  transform: scale(1.06);
}

.news-side__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.45rem 0.8rem 0.5rem;
  min-width: 0;
}

.news-side__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.news-side__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.28;
  color: var(--text-primary);
  margin: 0 0 0.22rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-side__item:hover .news-side__title {
  color: var(--brand);
}

@media (max-width: 991.98px) {
  .news-board {
    grid-template-columns: 1fr;
  }

  .news-pin,
  .news-side {
    height: auto;
  }

  .news-pin__media {
    aspect-ratio: 16 / 9;
  }

  .news-side__item {
    flex: 0 0 auto;
    min-height: 120px;
  }
}

@media (max-width: 767.98px) {
  .news-section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .news-side__item {
    grid-template-columns: 0.36fr 0.64fr;
    min-height: 0;
  }

  .news-side__body {
    padding: 0.85rem 0.95rem 0.9rem;
  }

  .news-side__title {
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
  }

  .news-side__cta {
    display: none;
  }
}

/* ── CTA band — single strong dark accent per page ── */
.cta-band {
  background: var(--ink);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* ── Footer — neutral dark, not brand blue ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 4.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 240px;
  height: auto;
  max-width: 100%;
}

.site-footer .small {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 32ch;
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.2rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1;
  transition: color 0.15s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-contact a:hover .footer-contact__icon {
  background: rgba(31, 33, 136, 0.55);
  border-color: rgba(122, 131, 245, 0.45);
  color: #fff;
}

.footer-contact__text {
  min-width: 0;
  word-break: break-word;
  line-height: 28px;
}

.footer-contact__icon .bi {
  display: block;
  line-height: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.42);
}

/* ── Product detail ── */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #e8ebf0;
  font-size: 0.925rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--copper);
}

.product-hero-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

/* ── Capacity chart ── */
.capacity-bar-wrap {
  margin-bottom: 1.25rem;
}

.capacity-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.capacity-bar-label strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.capacity-bar {
  height: 8px;
  background: #e2e6ea;
  position: relative;
  overflow: hidden;
}

.capacity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-bright) 100%);
  transition: width 1s ease;
}

/* ── Focus visible ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

/* ── Hero Main — widescreen full-bleed carousel ── */
.hero-main {
  position: relative;
  width: 100%;
  background: var(--ink);
  overflow: hidden;
}

.hero-main__slides {
  position: relative;
}

.hero-slide-photo {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 62vh, 680px);
  background-size: cover;
  background-position: center;
}

.hero-slide-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 28, 0.82) 0%, rgba(12, 13, 28, 0.42) 46%, rgba(12, 13, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 13, 28, 0.18) 0%, transparent 28%, rgba(12, 13, 28, 0.55) 100%);
  z-index: 1;
}

.hero-main__info {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(560px, 48%);
  padding: 3.5rem clamp(1.5rem, 5vw, 4.5rem) 5.5rem;
  pointer-events: none;
}

.hero-main__info a,
.hero-main__info button {
  pointer-events: auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
}

.hero-main__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-main__lead {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 1.5rem;
  background: rgba(10, 11, 28, 0.28);
}

.hero-stat {
  padding: 0.75rem 0.4rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stat:last-child { border-right: none; }

.hero-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-main__ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-link:hover { color: #fff; }

.hero-slide-card {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.4rem;
  width: min(340px, 34%);
  background: rgba(10,11,28,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--brand);
  padding: 1.1rem 1.2rem;
}

.hero-slide-card:hover { border-left-color: var(--copper); }

.hero-slide-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.hero-slide-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.4rem;
}

.hero-slide-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0 0 0.7rem;
}

.hero-slide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.hero-slide-card__link:hover { gap: 0.65rem; color: #fff; }

.hero-nav-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 28px;
  height: 3px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
  background: #fff;
  width: 44px;
}

@media (max-width: 991.98px) {
  .hero-slide-photo { min-height: clamp(520px, 78vh, 680px); }
  .hero-main__info {
    width: 100%;
    justify-content: flex-end;
    padding: 2rem 1.25rem 7.5rem;
  }
  .hero-slide-card {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 4.4rem;
    width: auto;
  }
  .hero-nav-dots {
    bottom: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stats .hero-stat:nth-child(2) { border-right: none; }
  .hero-slide-card__desc { display: none; }
}

/* ── Intro band — light bridge after dark hero ── */
.intro-band {
  background: var(--surface);
  position: relative;
  padding: clamp(1.15rem, 2.2vw, 1.65rem) 0;
  border-bottom: none;
  overflow: hidden;
}

.intro-band::before {
  content: '';
  position: absolute;
  inset: -48px;
  background-image:
    linear-gradient(rgba(31, 33, 136, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 33, 136, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: intro-grid-drift 28s linear infinite;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}

.intro-band .container {
  position: relative;
  z-index: 1;
}

.intro-band.section-sweep::after {
  z-index: 2;
}

@keyframes intro-grid-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-band::before {
    animation: none;
  }
}

.intro-band__inner {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) 1.45fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.intro-band__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
  background: transparent;
  position: relative;
  overflow: visible;
}

.intro-band__left::before {
  display: none;
}

.intro-band__left .eyebrow {
  color: var(--brand);
  position: relative;
  z-index: 1;
  padding-left: 0;
  margin-bottom: 0.35rem;
}

.intro-band__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 0.55rem;
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.intro-band__left .rme-link {
  color: var(--brand);
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-left: 0;
  border-bottom: 1px solid rgba(31, 33, 136, 0.28);
  padding-bottom: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.intro-band__left .rme-link:hover {
  color: var(--brand-light);
  border-bottom-color: var(--brand-light);
}

.intro-band__right {
  display: flex;
  align-items: stretch;
  background: transparent;
}

.intro-band__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 0;
}

.intro-pillar {
  padding: 0 clamp(1rem, 1.8vw, 1.5rem);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
}

.intro-pillar:first-child {
  padding-left: 0;
}

.intro-pillar:last-child {
  border-right: none;
  padding-right: 0;
}

.intro-pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.intro-pillar:hover::after {
  transform: scaleX(1);
}

.intro-pillar__num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.intro-pillar__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.intro-pillar__icon {
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--brand);
}

.intro-pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.1;
}

.intro-pillar__text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 991.98px) {
  .intro-band__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro-band__left {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 0 1.25rem;
  }

  .intro-band__pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .intro-band__pillars {
    grid-template-columns: 1fr;
  }

  .intro-pillar {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
  }

  .intro-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .intro-pillar:first-child {
    padding-top: 0;
  }
}

/* ── Feature showcase (Metso alternating) ── */
.feature-showcase {
  padding: 0;
}

.feature-showcase--compact .feature-row {
  min-height: 0;
  align-items: center;
}

.feature-showcase--compact .feature-row__media {
  min-height: 0;
  height: 260px;
  max-height: 260px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row:nth-child(even) .feature-row__body { order: 1; }

.feature-row__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.feature-row__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.55;
}

.feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-row:hover .feature-row__media img {
  transform: scale(1.03);
}

.feature-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: #fff;
  position: relative;
}

.feature-row__body::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  width: 3px;
  height: 48px;
  background: var(--brand);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-row:hover .feature-row__body::before {
  opacity: 1;
  transform: scaleY(1);
}

.feature-row:nth-child(even) .feature-row__body {
  background: var(--slate-bg);
}

.feature-row__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.feature-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.feature-list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-inline li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.feature-list-inline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  background: var(--brand);
}

/* ── RME category cards (large) ── */
.category-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(31, 33, 136, 0.08);
}

.category-card:hover {
  box-shadow: 0 20px 60px rgba(31, 33, 136, 0.12);
  color: inherit;
}

.category-card__img {
  position: relative;
  overflow: hidden;
  background: var(--slate-bg);
  min-height: 240px;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__img img {
  transform: scale(1.05);
}

.category-card__img--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #eceef8, #fff);
}

.category-card__img--contain img {
  object-fit: contain;
  max-height: 220px;
  width: auto;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--brand);
}

.category-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.category-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ── Tech highlights grid ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tech-card {
  background: #fff;
  border: 1px solid rgba(31, 33, 136, 0.08);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
}

.tech-card__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(31, 33, 136, 0.75);
  padding: 0.25rem 0.5rem;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(31, 33, 136, 0.12);
}

.tech-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--slate-bg);
  transition: transform 0.5s ease;
}

.tech-card:hover img {
  transform: scale(1.04);
}

.tech-card__body {
  padding: 1.25rem;
}

.tech-card__body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.tech-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Partner strip ── */
.partner-strip {
  position: relative;
  background: linear-gradient(180deg, #f7f8fc 0%, #eef0f8 55%, #e8ebf6 100%);
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.partner-strip__mountains {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.partner-strip__mountains::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(247, 248, 252, 0.94) 0%,
      rgba(247, 248, 252, 0.78) 16%,
      rgba(247, 248, 252, 0.58) 34%,
      rgba(247, 248, 252, 0.22) 58%,
      rgba(255, 255, 255, 0.10) 100%);
  z-index: 1;
}

.partner-strip__mountains img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: saturate(0.92) contrast(1.08) brightness(1.0);
}

.partner-strip__inner {
  position: relative;
  z-index: 1;
}

.partner-strip__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  padding: 0.5rem 1.35rem 1rem;
  background: radial-gradient(ellipse at 50% 42%, rgba(247, 248, 252, 0.94) 0%, rgba(247, 248, 252, 0.62) 50%, rgba(247, 248, 252, 0.18) 72%, transparent 82%);
}

.partner-strip__head .eyebrow {
  margin: 0 auto 0.55rem;
  text-align: center;
  max-width: none;
}

.partner-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.partner-strip__sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 36rem;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9), 0 0 24px rgba(247, 248, 252, 1);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(31, 33, 136, 0.1);
  box-shadow: 0 12px 40px rgba(20, 21, 40, 0.06);
}

.partner-logos img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  padding: 0.75rem 1.15rem;
  border-right: 1px solid rgba(31, 33, 136, 0.08);
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s, transform 0.25s;
  display: block;
}

.partner-logos img:last-child { border-right: none; }

.partner-logos img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .partner-strip {
    padding-bottom: 4rem;
  }
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-logos img:nth-child(3) { border-right: none; }
  .partner-logos img:nth-child(n+4) { border-top: 1px solid rgba(31, 33, 136, 0.08); }
  .partner-logos img { height: 88px; padding: 0.5rem 0.75rem; }
}

/* ── Section header bar ── */
.section-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand);
}

.section-header-bar h2 {
  margin-bottom: 0;
}

/* ── About page: grid backgrounds & effects ── */
.grid-bg {
  position: relative;
  overflow: hidden;
}

.grid-bg > .container,
.grid-bg > .container-fluid {
  position: relative;
  z-index: 1;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 33, 136, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 33, 136, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.grid-bg--dark::before {
  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);
}

.grid-bg--animate::before {
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(56px, 56px); }
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(31, 33, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-hero {
  position: relative;
  min-height: clamp(380px, 58vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--brand-dark);
  overflow: hidden;
}

.about-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.about-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: grid-drift 32s linear infinite;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
}

.about-hero__glow {
  position: absolute;
  width: 60%;
  height: 80%;
  right: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(52, 54, 184, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4rem;
  width: 100%;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.about-hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 40rem;
}

/* Floating stat cards */
.about-stat-float {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-stat-card {
  background: #fff;
  border: 1px solid rgba(31, 33, 136, 0.1);
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 33, 136, 0.1);
  border-color: rgba(31, 33, 136, 0.2);
}

.about-stat-card:hover::before {
  transform: scaleY(1);
}

.about-stat-card .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand);
  line-height: 1;
}

.about-stat-card .lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Product showcase blocks */
.about-product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(31, 33, 136, 0.1);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

.about-product-block:hover {
  box-shadow: 0 24px 64px rgba(31, 33, 136, 0.12);
}

.about-product-block__visual {
  background: linear-gradient(145deg, #eceef8, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.about-product-block__visual--photo {
  padding: 0;
  background: #111;
}

.about-product-block__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
}

.about-product-block:hover .about-product-block__visual--photo img {
  transform: scale(1.04);
}

.about-product-block__visual img.product-cutout {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(31, 33, 136, 0.15));
}

.about-product-block__body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-product-block__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.about-product-block__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.about-product-block__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-product-block__body ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
}

.about-product-block__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  background: var(--brand);
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(31, 33, 136, 0.15);
}

.about-timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.about-timeline-item:last-child { padding-bottom: 0; }

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
}

.about-timeline-item .year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.about-timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Advantage bento grid */
.advantage-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.advantage-card {
  background: #fff;
  border: 1px solid rgba(31, 33, 136, 0.08);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(31, 33, 136, 0.04) 50%);
  transition: width 0.3s, height 0.3s;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(31, 33, 136, 0.1);
}

.advantage-card:hover::after {
  width: 120px;
  height: 120px;
}

.advantage-card span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.advantage-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.5rem 0 0.75rem;
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.advantage-card--wide { grid-column: span 6; }
.advantage-card--full { grid-column: span 12; }
.advantage-card--half { grid-column: span 4; }

/* Service pipeline */
.service-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}

.service-step:last-child { border-right: none; }

.service-step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.service-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Commitment cards */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.commitment-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(31, 33, 136, 0.08);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.commitment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 33, 136, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.commitment-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
}

.commitment-card:hover::before { opacity: 1; }

.commitment-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
}

.commitment-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.commitment-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Honors tags (hero chips on other pages) */
.honor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.honor-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, border-color 0.2s;
}

.honor-tag:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Stagger delays */
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .grid-bg--animate::before,
  .about-hero__grid { animation: none; }
}

@media (max-width: 991.98px) {
  .about-product-block { grid-template-columns: 1fr; }
  .advantage-card--wide,
  .advantage-card--half { grid-column: span 12; }
  .service-pipeline { grid-template-columns: 1fr; }
  .service-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .commitment-grid { grid-template-columns: 1fr; }
  .about-stat-float { grid-template-columns: 1fr; }
}

/* ── Factory album gallery ── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.75rem;
  }
}

.album-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
  background: var(--slate-bg);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.album-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 26, 110, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.album-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 33, 136, 0.15);
}

.album-item:hover::after { opacity: 1; }

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-item:hover img { transform: scale(1.06); }

.album-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
  pointer-events: none;
}

.album-item:hover .album-item__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.album-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}

.album-item:hover .album-item__caption {
  opacity: 1;
  transform: translateY(0);
}

.album-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Lightbox modal */
.album-lightbox .modal-dialog {
  max-width: min(960px, 92vw);
  margin: 1.75rem auto;
}

.album-lightbox .modal-content {
  border: none;
  border-radius: 0;
  background: var(--brand-dark);
  overflow: hidden;
}

.album-lightbox .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  background: var(--brand-dark);
}

.album-lightbox .modal-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.album-lightbox .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.album-lightbox .modal-body {
  padding: 0;
  position: relative;
  background: #0a0b18;
}

.album-lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(70vh, 640px);
  max-height: 75vh;
  padding: 1rem;
}

.album-lightbox__img-wrap img {
  max-width: 100%;
  max-height: min(70vh, 620px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.album-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 5;
  padding: 0;
}

.album-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.album-lightbox__nav--prev { left: 0.75rem; }
.album-lightbox__nav--next { right: 0.75rem; }

.album-lightbox .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brand-dark);
  padding: 0.85rem 1.25rem;
  justify-content: space-between;
}

.album-lightbox__counter {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.album-lightbox__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 575.98px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem;
  }

  .album-item__caption { display: none; }

  .album-lightbox__nav {
    width: 36px;
    height: 36px;
  }
}

/* ── Product single page ── */
.product-localnav {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.product-localnav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0.85rem 0;
}

.product-localnav a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.product-localnav a:hover,
.product-localnav a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.product-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-intro__media {
  background: var(--slate-bg);
  overflow: hidden;
  min-height: 280px;
}

.product-intro__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.product-intro__copy h2 {
  margin-bottom: 1rem;
}

.product-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #24264a;
  color: rgba(255, 255, 255, 0.85);
}

.product-video::before,
.product-video::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.product-video::before {
  width: min(58vw, 42rem);
  height: min(58vw, 42rem);
  left: 2%;
  top: -6%;
  background: radial-gradient(circle, rgba(212, 150, 62, 0.7) 0%, rgba(212, 150, 62, 0.22) 38%, transparent 68%);
  animation: product-video-glow-a 16s var(--ease-in-out) infinite alternate;
}

.product-video::after {
  width: min(64vw, 46rem);
  height: min(64vw, 46rem);
  right: -6%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(110, 114, 230, 0.55) 0%, rgba(31, 33, 136, 0.28) 44%, transparent 70%);
  animation: product-video-glow-b 22s var(--ease-in-out) infinite alternate;
}

.product-video > .container {
  position: relative;
  z-index: 1;
}

@keyframes product-video-glow-a {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(22%, 38%, 0); }
}

@keyframes product-video-glow-b {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-28%, -32%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .product-video::before,
  .product-video::after {
    animation: none;
  }
}

.product-video .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.product-video .display-title {
  color: #fff;
}

.product-video video {
  width: 100%;
  max-height: min(70vh, 640px);
  display: block;
  background: rgba(5, 6, 12, 0.55);
  object-fit: contain;
}

.product-drawing img {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(5, 6, 12, 0.55);
  object-fit: contain;
}

.product-inquiry {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--ink-mid) 100%);
  padding: 5rem 0;
}

.inquiry-left {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.inquiry-left .eyebrow {
  color: rgba(255,255,255,0.88);
}

.inquiry-left .display-title {
  color: #fff;
}

.inquiry-left-desc {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.inquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.inquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inquiry-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.92);
}

.inquiry-contact-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.inquiry-contact-item a:hover {
  color: rgba(255,255,255,0.78);
}

.inquiry-promises {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.28);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.inquiry-promise {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.inquiry-promise-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.inquiry-promise-check svg {
  color: rgba(255,255,255,0.92);
}

.inquiry-form-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
  border-top: 3px solid var(--brand-light);
}

.inquiry-form-inner {
  padding: 2.25rem 2.5rem 2.5rem;
}

.inquiry-form-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 991.98px) {
  .product-inquiry {
    padding: 3.5rem 0;
  }
  .inquiry-left {
    margin-bottom: 1rem;
  }
  .inquiry-form-inner {
    padding: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .product-intro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-intro__media img {
    max-height: 280px;
  }
}

/* ── Capabilities section (about page) ── */
.capabilities-section {
  background: var(--brand-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: grid-drift 28s linear infinite;
  pointer-events: none;
}

.capabilities-section > .container {
  position: relative;
  z-index: 1;
}

.capabilities-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

.capability-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}

.capability-metric:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.capability-metric .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}

.capability-metric .unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}

.capabilities-visual {
  position: relative;
  min-height: 420px;
}

.capabilities-visual__main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.capabilities-visual__main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.capabilities-visual:hover .capabilities-visual__main img {
  transform: scale(1.03);
}

.capabilities-visual__main-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(24, 26, 110, 0.85));
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.capabilities-visual__stack {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 2;
}

.capabilities-visual__thumb {
  overflow: hidden;
  border: 2px solid var(--brand-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: var(--brand-dark);
}

.capabilities-visual__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.capabilities-visual__accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid rgba(255, 255, 255, 0.25);
  border-left: 3px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cert-grid-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.cert-grid-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.cert-grid-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 991.98px) {
  .capabilities-visual {
    min-height: auto;
    margin-top: 1rem;
  }

  .capabilities-visual__stack {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    flex-direction: row;
    margin-top: 0.75rem;
  }

  .capabilities-visual__thumb { flex: 1; }

  .capabilities-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .capabilities-metrics { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}

/* ── RME-inspired About page ── */
.rme-hero {
  position: relative;
  min-height: clamp(220px, 30vh, 300px);
  display: flex;
  align-items: flex-end;
  background: var(--brand-dark);
  overflow: hidden;
}

.rme-hero__media {
  position: absolute;
  inset: 0;
}

.rme-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.rme-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 21, 40, 0.88) 0%, rgba(20, 21, 40, 0.62) 45%, rgba(20, 21, 40, 0.32) 100%);
}

.rme-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.6rem 0 2rem;
  max-width: 680px;
}

.rme-hero__kicker {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.rme-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.rme-hero__mission {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

/* Full-bleed alternating editorial sections */
.rme-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.rme-editorial--reverse .rme-editorial__media { order: 2; }
.rme-editorial--reverse .rme-editorial__body { order: 1; }

.rme-editorial__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.rme-editorial__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.5;
}

.rme-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.rme-editorial:hover .rme-editorial__media img {
  transform: scale(1.04);
}

.rme-editorial__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  background: #fff;
}

.rme-editorial--alt .rme-editorial__body {
  background: var(--slate-bg);
}

.rme-editorial__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.rme-editorial__body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rme-editorial__body p:last-of-type { margin-bottom: 1.5rem; }

.rme-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.rme-link:hover {
  color: var(--brand-light);
  gap: 0.75rem;
}

/* Fast / Reliable / Safe */
.rme-integrity {
  padding: 5rem 0;
  background: #fff;
}

.rme-integrity__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  text-align: center;
  margin-bottom: 2.5rem;
}

.rme-integrity__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.rme-integrity__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.rme-integrity__item p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Values — Our Flag on the Hill */
.rme-values {
  padding: 5rem 0;
  background: var(--slate-bg);
}

.rme-values__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.rme-values__header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.rme-values__header p {
  color: var(--text-muted);
  margin: 0;
}

.rme-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rme-value-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--brand);
  transition: box-shadow 0.3s, transform 0.3s;
}

.rme-value-card:hover {
  box-shadow: 0 12px 40px rgba(31, 33, 136, 0.1);
  transform: translateY(-3px);
}

.rme-value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.rme-value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Origin story block */
.rme-origin {
  padding: 5rem 0;
  background: #fff;
}

.rme-origin__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.rme-origin h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.rme-origin p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Vertical history timeline — light surface, brand accents */
.rme-history {
  padding: 5rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.rme-history::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 33, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 33, 136, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.rme-history > .container { position: relative; z-index: 1; }

.rme-history__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rme-history__list {
  max-width: 720px;
  margin: 0 auto;
}

.rme-history__item {
  padding: 0 0 2.5rem 2rem;
  border-left: 2px solid rgba(31, 33, 136, 0.15);
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rme-history__item.visible {
  opacity: 1;
  transform: translateX(0);
}

.rme-history__item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
}

.rme-history__year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.rme-history__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.rme-history__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Big stats row — light band */
.rme-stats {
  padding: 4rem 0;
  background: var(--slate-bg);
  border-bottom: 1px solid var(--border-subtle);
}

.rme-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.rme-stats__item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rme-stats__item .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Blockquote */
.rme-quote {
  padding: 5rem 0;
  background: var(--slate-bg);
}

.rme-quote blockquote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  border-left: 4px solid var(--brand);
}

.rme-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.rme-quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Bottom CTA pair */
.rme-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rme-cta-block {
  padding: 4rem clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.rme-cta-block--dark {
  background: var(--ink);
  color: #fff;
}

.rme-cta-block--light {
  background: #fff;
  border-top: 1px solid rgba(31, 33, 136, 0.08);
}

.rme-cta-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.rme-cta-block p {
  font-size: 0.925rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.rme-cta-block--light p { color: var(--text-muted); opacity: 1; }

@media (max-width: 991.98px) {
  .rme-editorial { grid-template-columns: 1fr; }
  .rme-editorial--reverse .rme-editorial__media { order: 0; }
  .rme-editorial__media { min-height: 280px; }
  .rme-integrity__grid { grid-template-columns: 1fr; gap: 2rem; }
  .rme-values__grid { grid-template-columns: repeat(2, 1fr); }
  .rme-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .rme-cta-pair { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .rme-values__grid { grid-template-columns: 1fr; }
  .rme-stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   News — list + article (field dispatch)
   ══════════════════════════════════════════ */

.news-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 33, 136, 0.08);
  padding: 0.28rem 0.7rem;
  margin: 0;
}

.field-stamp {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.85rem;
}

.news-index {
  background: var(--surface);
  padding: 2.25rem 0 5rem;
}

.news-index__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.news-filters {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.news-filter-btn {
  padding: 0.42rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.news-filter-btn:hover,
.news-filter-btn.active {
  color: var(--brand);
  border-color: rgba(31, 33, 136, 0.22);
  background: rgba(31, 33, 136, 0.06);
}

.news-filter-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.news-index__count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-index__empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
}

.dispatch {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 2.25rem;
  min-height: 440px;
  transition: box-shadow 0.3s var(--ease-out);
}

.dispatch:hover,
.dispatch:focus-visible {
  color: #fff;
  box-shadow: 0 24px 60px rgba(18, 19, 30, 0.22);
}

.dispatch__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #0c0d16;
}

.dispatch__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dispatch:hover .dispatch__media img {
  transform: scale(1.04);
}

.dispatch__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(18, 19, 30, 0.45) 100%);
  pointer-events: none;
}

.dispatch__body {
  padding: 2.6rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dispatch__body .news-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  width: fit-content;
}

.dispatch .field-stamp {
  color: var(--copper-light);
}

.dispatch__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  text-transform: none;
  margin: 0 0 1rem;
}

.dispatch__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: none;
  margin-bottom: 0;
}

.dispatch__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.6rem 0 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dispatch-stat {
  padding: 1.05rem 0.85rem 0 0;
}

.dispatch-stat + .dispatch-stat {
  padding-left: 0.95rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dispatch-stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.3rem;
}

.dispatch-stat strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.dispatch__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 0.25rem;
  transition: gap 0.2s;
}

.dispatch:hover .dispatch__cta {
  gap: 0.85rem;
}

.news-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

.news-index-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 100%;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.news-index-card[hidden] {
  display: none !important;
}

.news-index-card:hover,
.news-index-card:focus-visible,
.news-index-card.fade-up.visible:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(18, 19, 30, 0.1);
}

.news-index-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-bg);
}

.news-index-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.news-index-card:hover .news-index-card__media img {
  transform: scale(1.05);
}

.news-index-card__body {
  padding: 1.4rem 1.5rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-index-card .news-tag {
  margin-bottom: 0.75rem;
  width: fit-content;
}

.news-index-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text-primary);
  text-transform: none;
  margin: 0 0 0.7rem;
}

.news-index-card:hover .news-index-card__title {
  color: var(--brand);
}

.news-index-card__excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
  margin-bottom: 1.1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-index-card__cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.news-index .news-index-card__media {
  aspect-ratio: 16 / 9;
}

.news-index .news-index-card__body {
  padding: 0.95rem 1.05rem 1.05rem;
}

.news-index .field-stamp {
  margin-bottom: 0.5rem;
  font-size: 0.58rem;
}

.news-index .news-index-card .news-tag {
  margin-bottom: 0.45rem;
  font-size: 0.56rem;
  padding: 0.2rem 0.5rem;
}

.news-index .news-index-card__title {
  font-size: 0.92rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.news-index .news-index-card__excerpt {
  font-size: 0.8rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  margin-bottom: 0.7rem;
}

.news-index .news-index-card__cta {
  font-size: 0.66rem;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 2.35rem 0 0;
}

.news-pag-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.news-pag-btn:hover:not(:disabled):not(.is-current) {
  color: var(--brand);
  border-color: var(--brand);
}

.news-pag-btn.is-current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  cursor: default;
}

.news-pag-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.news-pag-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ── Article ── */
.story-crumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.95rem 0;
}

.story-crumb .breadcrumb-custom {
  margin-bottom: 0;
}

.story-masthead {
  background: var(--surface);
  padding: 2.4rem 0 2.1rem;
}

.story-masthead__inner {
  max-width: 54rem;
}

.story-masthead .news-tag {
  margin-bottom: 1.1rem;
}

.story-masthead h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.05rem);
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-primary);
  margin: 0 0 1.1rem;
  max-width: 18ch;
}

.story-dek {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 46rem;
  margin: 0 0 1.4rem;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-meta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
}

.story-cover {
  position: relative;
  background: var(--ink);
}

.story-cover img {
  width: 100%;
  height: min(68vh, 620px);
  object-fit: cover;
}

.story-cover figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 0 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(18, 19, 30, 0.72));
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.story-shell {
  background: var(--surface);
  padding: 3.25rem 0 4.5rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 3.25rem;
  align-items: start;
}

.story-body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.story-body a:hover {
  color: var(--brand-light);
}

.story-body p {
  max-width: none;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
}

.story-lead {
  font-size: 1.18rem !important;
  line-height: 1.72 !important;
  color: var(--text-primary) !important;
}

.story-body h2 {
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 2.4rem 0 0.9rem;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0.4rem 0 2.4rem;
  border: 1px solid var(--border-subtle);
  background: var(--surface-alt);
}

.story-metric {
  padding: 1.2rem 1.25rem 1.15rem;
}

.story-metric + .story-metric {
  border-left: 1px solid var(--border-subtle);
}

.story-metric span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.story-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.story-quote {
  margin: 2.1rem 0;
  padding: 1.6rem 1.75rem 1.5rem;
  background: var(--ink);
  color: #fff;
  border: 0;
}

.story-quote p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}

.story-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
}

.story-figure {
  margin: 2rem 0;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-bg);
}

.story-figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.65rem;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.story-gallery figure {
  margin: 0;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--slate-bg);
}

.story-gallery figcaption {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 2.4rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.story-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.story-pager a {
  display: block;
  padding: 1.15rem 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.story-pager a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.story-pager span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.story-pager strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.story-pager a:last-child {
  text-align: right;
}

.story-rail {
  position: sticky;
  top: calc(var(--nav-height) + 1.15rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.story-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  padding: 1.35rem 1.3rem 1.4rem;
}

.story-panel h3 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.story-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.story-facts li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.story-facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-facts span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-facts strong {
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}

.story-product {
  text-decoration: none;
  color: inherit;
  display: block;
}

.story-product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0 0 0.9rem;
}

.story-product p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: none;
  margin: 0 0 0.85rem;
}

.story-more {
  list-style: none;
  padding: 0;
  margin: 0;
}

.story-more li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

.story-more a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.story-more time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}

.story-more strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.story-more a:hover strong {
  color: var(--brand);
}

.story-related {
  background: var(--surface-alt);
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}

.story-related .news-index__grid {
  margin-top: 0;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991.98px) {
  .dispatch {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dispatch__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .dispatch__media::after {
    background: linear-gradient(180deg, transparent 60%, rgba(18, 19, 30, 0.4) 100%);
  }

  .news-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-related .news-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-rail {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .story-rail .story-panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .news-index__grid,
  .story-related .news-index__grid {
    grid-template-columns: 1fr;
  }

  .dispatch__body {
    padding: 1.75rem 1.4rem 1.6rem;
  }

  .dispatch__stats,
  .story-metrics,
  .story-gallery,
  .story-pager,
  .story-rail {
    grid-template-columns: 1fr;
  }

  .dispatch-stat + .dispatch-stat,
  .story-metric + .story-metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
  }

  .story-metric + .story-metric {
    border-top: 1px solid var(--border-subtle);
  }

  .story-masthead h1 {
    max-width: none;
  }

  .story-cover img {
    height: 260px;
  }

  .story-pager a:last-child {
    text-align: left;
  }

  .story-rail .story-panel:last-child {
    grid-column: auto;
  }
}

/* ══════════════════════════════════════════
   Animation System
   ══════════════════════════════════════════ */

/* ── Scroll-triggered fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Fade-in from left ── */
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* ── Fade-in from right ── */
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── Scale-in ── */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── Stagger delays ── */
.fade-up.delay-1, .fade-left.delay-1, .fade-right.delay-1, .scale-in.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2, .fade-left.delay-2, .fade-right.delay-2, .scale-in.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3, .fade-left.delay-3, .fade-right.delay-3, .scale-in.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4, .fade-left.delay-4, .fade-right.delay-4, .scale-in.delay-4 { transition-delay: 0.32s; }
.fade-up.delay-5, .fade-left.delay-5, .fade-right.delay-5, .scale-in.delay-5 { transition-delay: 0.4s; }

/* ── Stat counter numbers ── */
.stat-count {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s;
}

/* ── Gradient-line sweep (used on section borders / dividers) ── */
@keyframes line-sweep {
  0%   { background-position: -200% center; }
  100% { background-position: 300% center; }
}
.anim-line {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--brand) 30%,
    #7c83f5 50%,
    var(--copper) 70%,
    transparent 100%);
  background-size: 200% 100%;
  animation: line-sweep 3s linear infinite;
}

/* ── Glowing border on hover cards ── */
@keyframes glow-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,33,136,0); }
  50%       { box-shadow: 0 0 0 3px rgba(31,33,136,0.18), 0 8px 32px rgba(31,33,136,0.1); }
}
.glow-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.glow-card:hover {
  transform: translateY(-5px) scale(1.015);
  animation: glow-border 2s ease infinite;
}

/* ── Shimmer loading / accent ── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer-accent {
  background: linear-gradient(90deg,
    rgba(31,33,136,0.04) 25%,
    rgba(31,33,136,0.12) 50%,
    rgba(31,33,136,0.04) 75%);
  background-size: 800px 100%;
  animation: shimmer 2.4s linear infinite;
}

/* ── Floating particles canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── Hero text word-reveal ── */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.word-reveal.visible .word-inner {
  transform: translateY(0);
}
.word-reveal.visible .word:nth-child(1) .word-inner { transition-delay: 0s; }
.word-reveal.visible .word:nth-child(2) .word-inner { transition-delay: 0.08s; }
.word-reveal.visible .word:nth-child(3) .word-inner { transition-delay: 0.16s; }
.word-reveal.visible .word:nth-child(4) .word-inner { transition-delay: 0.24s; }
.word-reveal.visible .word:nth-child(5) .word-inner { transition-delay: 0.32s; }
.word-reveal.visible .word:nth-child(6) .word-inner { transition-delay: 0.40s; }
.word-reveal.visible .word:nth-child(7) .word-inner { transition-delay: 0.48s; }
.word-reveal.visible .word:nth-child(8) .word-inner { transition-delay: 0.56s; }

/* ── Magnetic card tilt (JS-driven via CSS vars) ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

/* ── Stats band count-up ── */
.stats-band .stat-number {
  display: inline-block;
}

/* ── Horizontal marquee for logos / partners ── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 12%, #fff 88%, transparent);
}

/* ── Section border sweep ── */
.section-sweep {
  position: relative;
}
.section-sweep::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--brand) 20%,
    #7c83f5 50%,
    var(--copper) 80%,
    transparent);
  background-size: 200% 100%;
  animation: line-sweep 4s linear infinite;
}

/* ── Pulsing dot indicator ── */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.4; }
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── Grid canvas overlay (flowing colored lines) ── */
#grid-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s;
}
#grid-canvas.ready { opacity: 1; }

@media (max-width: 991.98px) {
  .dropdown-menu-mega {
    min-width: 100%;
  }

  .hero h1,
  .hero-slide-content h2 {
    max-width: none;
  }

  .pillar-item {
    border-left: none;
    border-top: 3px solid var(--copper);
  }

  .hero-slide-split {
    grid-template-columns: 1fr;
  }

  .hero-slide-split__visual {
    min-height: 280px;
    order: -1;
  }

  .intro-band .intro-text {
    columns: 1;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-row__media { order: 0; }

  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .section-head__cta {
    margin-left: auto;
  }

  .equip-feature {
    grid-template-columns: 1fr;
  }

  .equip-feature__media {
    height: 240px;
  }

  .equip-bento {
    grid-template-columns: 1fr;
  }

  .equip-tile,
  .equip-tile--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .equip-tile--wide .equip-tile__img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .equipment-showcase__ghost {
    display: none;
  }

  .deco-corner {
    width: 48px;
    height: 48px;
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-card__body {
    border-left: none;
    border-top: 4px solid var(--brand);
  }

  .product-grid-section {
    --product-img-height: 220px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    opacity: 0.7;
  }
}

/* ══════════════════════════════════════════
   GLOBAL POLISH PASS — v3
   Spacing · Image constraints · Section rhythm
   · Animation unification · Color separation
   ══════════════════════════════════════════ */

/* ── Section rhythm: never two dark blocks touching ── */
section, .section-block { position: relative; }

/* Light sections */
.bg-light-section {
  background: var(--surface) !important;
}
.bg-alt-section {
  background: var(--surface-alt) !important;
}

/* Ensure a white/light gap between any dark (--ink) sections */
.section-gap {
  height: 3rem;
  background: var(--surface-alt);
}

/* ── Unified section padding ── */
.sec {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.sec--sm { padding: clamp(2rem, 4vw, 3rem) 0; }
.sec--lg { padding: clamp(4rem, 8vw, 7rem) 0; }

/* Apply to existing sections that need consistent padding */
.equipment-showcase,
.intro-band,
.product-grid-section,
.content-section,
.feature-showcase,
.stats-band,
.cta-band {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

/* ── Image height discipline — all images contained, no unconstrained height ── */
img {
  display: block;
  max-width: 100%;
}

/* Product/card images */
.equip-tile__img,
.equip-feature__media,
.news-card__img,
.news-featured__img,
.news-pin__media,
.category-card__img,
.product-hero-img,
.rme-editorial__img {
  overflow: hidden;
  position: relative;
}

.equip-tile__img        { aspect-ratio: auto; height: auto !important; }
.equip-feature__media   { aspect-ratio: 16 / 9; height: auto !important; min-height: 260px; }
.news-card__img         { aspect-ratio: 16 / 9; height: auto !important; }
.news-featured__img     { aspect-ratio: 4 / 3; height: auto !important; }
.news-pin__media        { height: auto !important; }

.equip-feature__media img,
.news-card__img img,
.news-featured__img img,
.news-item__img img,
.news-tile__img img,
.news-pin__media img,
.news-side__media img,
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equip-tile__img img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
  object-position: center;
}

/* Album grid images */
.album-item {
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
}

/* ── Section colour rhythm — enforce alt-bg between ink blocks ── */
/* hero-main (dark) → intro-band (light) — already light */
.intro-band {
  background: var(--surface) !important;
}

/* equipment-showcase — subtle off-white */
.equipment-showcase {
  background: var(--surface-alt) !important;
}

/* stats-band — use ink for drama but only when sandwiched by light sections */
.stats-band {
  background: var(--ink) !important;
}
.stats-band + section,
.stats-band + div {
  background: var(--surface) !important;
}

/* feature-showcase, content-section — alternate surface tones */
.feature-showcase         { background: var(--surface) !important; }
.content-section          { background: var(--surface-alt) !important; }
.content-section.alt-bg   { background: var(--surface) !important; }
.content-section.dark-bg  { background: var(--ink) !important; color: rgba(255, 255, 255, 0.85) !important; }
.content-section.product-video {
  background: #24264a !important;
  color: rgba(255, 255, 255, 0.85);
}

/* cta-band — ink, needs light section above it */
.cta-band {
  background: var(--ink) !important;
}

/* footer — ink */
.site-footer {
  background: var(--ink) !important;
}

/* ── Page banner (inner pages) — compact image header ── */
.page-header {
  background: var(--ink) !important;
  min-height: clamp(220px, 30vh, 300px);
  padding-top: 2.6rem !important;
  padding-bottom: 2rem !important;
}

/* ── Consistent heading sizes via Syne ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2rem,   5vw,   3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(0.95rem, 2vw,  1.15rem); }

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: #fff;
  font-weight: 700;
}

/* Paragraphs: controlled width, comfortable reading */
p {
  max-width: 68ch;
}
p.wide, .section-lead { max-width: 100%; }

/* ── Buttons — unified, no radius ── */
.btn {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 0.65rem 1.5rem !important;
  font-size: 0.8rem !important;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s !important;
}
.btn:hover { transform: translateY(-2px); }
.btn-copper {
  background: var(--brand) !important;
  color: #fff !important;
  border: 2px solid var(--brand) !important;
}
.btn-copper:hover {
  background: var(--brand-light) !important;
  border-color: var(--brand-light) !important;
}
.btn-outline-light-custom {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}

/* ── Cards — no random border-radius, consistent shadows ── */
.equip-tile,
.equip-feature,
.news-card,
.news-item,
.news-tile,
.news-pin,
.news-side__item,
.info-card,
.contact-form-panel,
.product-card,
.category-card {
  border-radius: 0 !important;
}

/* ── Animation system — UNIFIED ── */

/* Base: hidden state */
.fade-up   { opacity: 0; transform: translateY(22px); }
.fade-left { opacity: 0; transform: translateX(-22px); }
.fade-right{ opacity: 0; transform: translateX(22px);  }
.scale-in  { opacity: 0; transform: scale(0.94);       }

/* Transition applied once */
.fade-up, .fade-left, .fade-right, .scale-in {
  transition:
    opacity  0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}

/* Revealed state */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible  { opacity: 1; transform: none; }

/* Stagger delays — consistent 80ms increments */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ── Hover micro-interactions — cards only ── */
.equip-tile:hover,
.news-card:hover,
.news-featured:hover,
.news-item:hover,
.news-tile:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(18,19,30,0.10) !important;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out) !important;
}

/* ── Section head component ── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  padding-top: 0.35rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: nowrap;
}
.section-head__main .eyebrow,
.section-head__copy .eyebrow { margin-bottom: 0.7rem; }
.section-head__main h2,
.section-head__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.2;
  text-transform: none;
}
.section-head__aside {
  max-width: none;
}

/* ── rme-link (text arrow link) ── */
.rme-link, .card-link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  transition: gap 0.2s;
}
.rme-link:hover, .card-link--arrow:hover { gap: 0.75rem; color: var(--brand-light); }

/* ── scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #7c83f5, var(--copper));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── Reduced-motion: disable all transitions ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Responsive spacing ── */
@media (max-width: 767.98px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .section-head__cta {
    width: 100%;
    justify-content: center;
  }
  .section-head__aside { max-width: 100%; }
  p { max-width: 100%; }
}

/* ── Typography Refinement Pass (v4) ── */
body {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.74;
  letter-spacing: 0.002em;
}

h1, h2, h3, h4, h5, h6,
.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.site-navbar .nav-link {
  font-family: var(--font-body) !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-navbar .dropdown-item,
.mega-row__name,
.mega-feature-card__title,
.hero-slide-card__title,
.btn,
.btn-copper {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em !important;
}

.eyebrow,
.hero-eyebrow,
.mega-menu__title,
.hero-stat__label {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
}

p,
li,
.section-lead,
.contact-form-sub,
.news-card__excerpt,
.news-item__excerpt,
.news-featured__excerpt,
.news-pin__excerpt {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   About Us — two-era company story
   ══════════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 0;
  background: var(--surface);
}

.about-intro--reverse .about-intro__media { order: 2; }
.about-intro--reverse .about-intro__body { order: 1; }
.about-intro--reverse { background: var(--surface-alt); }

.about-intro__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--surface-mid);
}

.about-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.about-intro:not(.about-intro--reverse) .about-intro__media img {
  object-position: center 32%;
}

.about-intro--reverse .about-intro__media img,
.about-intro--product .about-intro__media img {
  object-fit: contain;
  padding: 1.5rem 1.25rem;
}

.about-intro:hover .about-intro__media img {
  transform: scale(1.03);
}

.about-intro__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 3.75rem) clamp(1.75rem, 4.5vw, 3.5rem);
}

.about-intro__body .eyebrow { margin-bottom: 0.55rem; }

.about-intro__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 1.15rem;
  color: var(--text-primary);
  max-width: 22ch;
}

.about-intro__body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
  max-width: 54ch;
}

.about-intro__body p:last-of-type { margin-bottom: 1.35rem; }

.about-intro__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 1.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-intro__facts div {
  padding: 0 0.85rem;
  border-right: 1px solid var(--border-subtle);
}

.about-intro__facts div:first-child { padding-left: 0; }
.about-intro__facts div:last-child { border-right: none; padding-right: 0; }

.about-intro__facts span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.about-intro__facts strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-eras {
  background: var(--surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-eras__head {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.about-eras__head .eyebrow { margin-bottom: 0.5rem; }

.about-eras__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.about-eras__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-eras__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-subtle);
}

.about-era {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  min-height: 100%;
}

.about-era--roots {
  background: var(--surface-alt);
  border-right: 1px solid var(--border-subtle);
}

.about-era--reline {
  background: var(--ink);
  color: #fff;
}

.about-era__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.about-era--reline .about-era__label {
  color: var(--copper-light);
}

.about-era__range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.55rem;
  color: var(--text-primary);
}

.about-era--reline .about-era__range { color: #fff; }

.about-era h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.about-era--reline h3 { color: rgba(255, 255, 255, 0.45); }

.about-era__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-era__list li {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-subtle);
  color: inherit;
}

.about-era--reline .about-era__list li {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.about-era__list li:last-child { padding-bottom: 0; }

.about-era__list time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--brand);
  padding-top: 0.15rem;
}

.about-era--reline .about-era__list time {
  color: var(--copper-light);
}

.about-era__list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.about-era--reline .about-era__list strong { color: #fff; }

.about-era__list p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
}

.about-era--reline .about-era__list p {
  color: rgba(255, 255, 255, 0.58);
}

.about-values {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-values__inner { display: block; }

.about-values__lead {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.about-values__lead h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.4rem 0 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4rem;
  border-top: 1px solid var(--border-subtle);
}

.about-value {
  position: relative;
  padding: 2.35rem 0 0;
}

.about-value:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2rem;
  width: 1px;
  height: 100%;
  background: var(--border-subtle);
}

.about-value i {
  font-size: 1.15rem;
  color: var(--brand);
  display: block;
  margin-bottom: 0.65rem;
}

.about-value h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.about-value p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
}

.about-explore {
  background: var(--surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.about-explore .section-head { margin-bottom: 1.75rem; }

.about-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.about-explore__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.about-explore__card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 33, 136, 0.22);
  box-shadow: 0 16px 40px rgba(18, 19, 30, 0.08);
}

.about-explore__img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.about-explore__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-explore__card:hover .about-explore__img img {
  transform: scale(1.05);
}

.about-explore__body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
  gap: 0.25rem;
}

.about-explore__kicker {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.about-explore__body strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-explore__cta {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (max-width: 991.98px) {
  .about-intro,
  .about-intro--reverse {
    grid-template-columns: 1fr;
  }
  .about-intro--reverse .about-intro__media,
  .about-intro--reverse .about-intro__body { order: 0; }
  .about-intro__media { min-height: 280px; aspect-ratio: 16 / 9; }
  .about-intro__facts { grid-template-columns: repeat(2, 1fr); gap: 1rem 0; }
  .about-intro__facts div {
    border-right: none;
    padding: 0.35rem 0;
  }
  .about-intro__facts div:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--border-subtle);
  }
  .about-eras__grid { grid-template-columns: 1fr; }
  .about-era--roots { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); column-gap: 3.5rem; }
  .about-value {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-value:not(:last-child)::after {
    display: none;
  }
  .about-value:nth-child(odd)::after {
    display: block;
    right: -1.75rem;
  }
  .about-value:nth-last-child(-n+2) { border-bottom: none; }
  .about-explore__grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .about-values__grid { grid-template-columns: 1fr; column-gap: 0; }
  .about-value,
  .about-value:nth-child(odd),
  .about-value:nth-child(even) {
    padding: 1.25rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-value:not(:last-child)::after,
  .about-value:nth-child(odd)::after {
    display: none;
  }
  .about-value:last-child { border-bottom: none; }
}

.about-values__grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 2.25rem;
}

.about-values__grid--five .about-value:not(:last-child)::after {
  right: -1.125rem;
}

.about-values--commit {
  background: var(--surface);
}

.about-cap {
  background: var(--surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-cap__head {
  max-width: 42rem;
  margin: 0 0 2.25rem;
}

.about-cap__head .eyebrow { margin-bottom: 0.5rem; }

.about-cap__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.about-cap__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-cap__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--border-subtle);
  background: var(--surface-alt);
}

.about-cap__item {
  grid-column: span 2;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.15rem, 2vw, 1.6rem);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-cap__item:nth-child(3),
.about-cap__item:nth-child(5) {
  border-right: none;
}

.about-cap__item:nth-child(n+4) {
  border-bottom: none;
}

.about-cap__item--wide {
  grid-column: span 4;
}

.about-cap__item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.about-cap__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.about-cap__item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-journey {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-journey__head {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.about-journey__head .eyebrow { margin-bottom: 0.5rem; }

.about-journey__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-primary);
}

.about-journey__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-subtle);
}

.about-journey__step {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: var(--surface);
  border-right: 1px solid var(--border-subtle);
}

.about-journey__step:last-child { border-right: none; }

.about-journey__step span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.about-journey__step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--text-primary);
}

.about-journey__step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-market {
  background: var(--surface);
  padding: clamp(3.25rem, 5.5vw, 4.75rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.about-market__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.about-market__inner .eyebrow { margin-bottom: 0.5rem; }

.about-market__inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}

.about-market__inner > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-vision {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: min(72vh, 640px);
  background: var(--ink);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.about-vision__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5.5vw, 4.75rem) clamp(1.5rem, 5vw, 4.25rem);
}

.about-vision .eyebrow {
  color: var(--copper-light);
  margin-bottom: 0.65rem;
}

.about-vision h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 18ch;
  margin: 0 0 1.15rem;
  color: #fff;
}

.about-vision p {
  max-width: 46ch;
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.about-vision__media {
  position: relative;
  min-height: 280px;
  background: var(--ink-mid);
}

.about-vision__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  display: block;
}

.about-vision__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 30, 0.12) 0%, transparent 22%, rgba(18, 19, 30, 0.18) 100%);
  pointer-events: none;
}

.about-vision__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
}

.about-vision__cta:hover {
  color: var(--copper-light);
  border-bottom-color: var(--copper-light);
}

@media (max-width: 991.98px) {
  .about-vision {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-vision__media {
    min-height: 240px;
    aspect-ratio: 16 / 10;
    order: -1;
  }
  .about-vision h2 { max-width: none; }
  .about-vision p { max-width: none; }
}

@media (max-width: 1199.98px) {
  .about-values__grid--five {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
  }
  .about-values__grid--five .about-value {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-values__grid--five .about-value:not(:last-child)::after { display: none; }
  .about-values__grid--five .about-value:nth-child(odd)::after {
    display: block;
    right: -1.5rem;
  }
  .about-values__grid--five .about-value:nth-child(n+4) { border-bottom: none; }
}

@media (max-width: 991.98px) {
  .about-values__grid--five {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.5rem;
  }
  .about-values__grid--five .about-value:nth-child(n+4) {
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-values__grid--five .about-value:last-child {
    border-bottom: none;
  }
  .about-cap__grid { grid-template-columns: 1fr 1fr; }
  .about-cap__item,
  .about-cap__item--wide { grid-column: auto; }
  .about-cap__item:nth-child(3),
  .about-cap__item:nth-child(5) { border-right: 1px solid var(--border-subtle); }
  .about-cap__item:nth-child(even) { border-right: none; }
  .about-cap__item:nth-child(n+4) { border-bottom: 1px solid var(--border-subtle); }
  .about-cap__item:nth-last-child(-n+1) { border-bottom: none; }
  .about-journey__grid { grid-template-columns: 1fr; }
  .about-journey__step {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-journey__step:last-child { border-bottom: none; }
  .about-market__inner { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 575.98px) {
  .about-values__grid--five { grid-template-columns: 1fr; column-gap: 0; }
  .about-values__grid--five .about-value,
  .about-values__grid--five .about-value:nth-child(odd),
  .about-values__grid--five .about-value:nth-child(even),
  .about-values__grid--five .about-value:nth-child(n+4) {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-values__grid--five .about-value:not(:last-child)::after,
  .about-values__grid--five .about-value:nth-child(odd)::after {
    display: none;
  }
  .about-values__grid--five .about-value:last-child { border-bottom: none; }
  .about-cap__grid { grid-template-columns: 1fr; }
  .about-cap__item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .about-cap__item:nth-child(even),
  .about-cap__item:nth-child(3),
  .about-cap__item:nth-child(5) { border-right: none; }
  .about-cap__item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .about-intro:hover .about-intro__media img,
  .about-explore__card:hover .about-explore__img img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   Capacity — plant dataplate & production line
   ═══════════════════════════════════════════ */

.cap-plate {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(78vh, 720px);
  background: var(--ink);
}

.cap-plate__photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.cap-plate__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cap-plate__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(18, 19, 30, 0.45) 100%);
  pointer-events: none;
}

.cap-plate__data {
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
}

.cap-plate__stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin: 0 0 1.1rem;
}

.cap-plate__data .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.45rem;
}

.cap-plate__data h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: #fff;
}

.cap-plate__lead {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.6rem;
  max-width: 38rem;
}

.cap-plate__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cap-plate__fields > div {
  padding: 0.85rem 1.1rem 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cap-plate__fields > div:nth-child(odd) {
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cap-plate__fields > div:nth-child(even) {
  padding-left: 1.25rem;
  padding-right: 0;
}

.cap-plate__fields dt {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.2rem;
}

.cap-plate__fields dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.cap-plate__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 1.35rem;
}

.cap-plate__data .rme-link {
  color: #fff;
  align-self: flex-start;
}

.cap-plate__data .rme-link:hover {
  color: var(--copper-light);
}

.cap-line {
  background: var(--surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.cap-line .section-head { margin-bottom: 2rem; }

.cap-line__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.cap-line__rail::before {
  content: '';
  position: absolute;
  top: 0.72rem;
  left: 0.2rem;
  right: 0.2rem;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand) 0 10px,
    transparent 10px 16px
  );
  opacity: 0.35;
}

.cap-line__rail li {
  padding: 0 1.1rem 0 0;
  position: relative;
}

.cap-line__rail li:last-child { padding-right: 0; }

.cap-line__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.cap-line__rail h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  color: var(--text-primary);
}

.cap-line__rail p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cap-output {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.cap-output .section-head { margin-bottom: 1.75rem; }

.cap-output__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.cap-output__card {
  background: var(--surface);
  padding: 1.6rem 1.45rem 1.7rem;
}

.cap-output__card--lead {
  background: var(--ink);
  color: #fff;
}

.cap-output__kicker {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.85rem;
}

.cap-output__card--lead .cap-output__kicker {
  color: var(--copper-light);
}

.cap-output__figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 0.2rem;
  color: var(--text-primary);
}

.cap-output__card--lead .cap-output__figure { color: #fff; }

.cap-output__unit {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 1rem;
}

.cap-output__card--lead .cap-output__unit {
  color: rgba(255, 255, 255, 0.45);
}

.cap-output__card p:last-child {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cap-output__card--lead p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.cap-output__foot {
  margin: 1.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cap-build {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.cap-build__media {
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
}

.cap-build__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cap-build__body {
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cap-build__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.4rem 0 0.9rem;
}

.cap-build__body > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.cap-build__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-subtle);
}

.cap-build__pair h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

.cap-build__pair p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.cap-tech {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.cap-tech .section-head { margin-bottom: 1.85rem; }

.cap-tech__lead {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.15rem;
}

.cap-tech__media {
  min-height: 280px;
  overflow: hidden;
  background: #eef0f6;
}

.cap-tech__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.cap-tech__media--contain img {
  object-fit: contain;
  padding: 1.5rem;
}

.cap-tech__media--cover img {
  object-fit: cover;
}

.cap-tech__copy {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.35rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cap-tech__kicker {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.45rem;
}

.cap-tech__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.cap-tech__copy p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.cap-tech__copy p:last-child { margin-bottom: 0; }

.cap-tech__fact {
  margin-top: 0.35rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.72rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
}

.cap-tech__fact strong {
  color: var(--text-primary);
  font-weight: 600;
}

.cap-tech__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.cap-tech__card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.cap-tech__card .cap-tech__media {
  min-height: 220px;
  aspect-ratio: 16 / 10;
}

.cap-tech__card .cap-tech__copy {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}

.cap-tech__card .cap-tech__copy h3 {
  font-size: 1.12rem;
}

.cap-tech__card .cap-tech__copy p {
  font-size: 0.88rem;
}

.cap-tech__list {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
}

.cap-tech__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
}

.cap-tech__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  background: var(--brand);
}

.cap-range {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.cap-range .spec-table {
  background: var(--surface);
  margin: 0;
}

.cap-assure {
  background: var(--surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.cap-assure__lead {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.cap-assure__lead h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.4rem 0 0;
}

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

.cap-assure__item {
  padding: 2rem 1.5rem 0;
  border-right: 1px solid var(--border-subtle);
}

.cap-assure__item:first-child {
  padding-left: 0;
}

.cap-assure__item:last-child {
  border-right: none;
  padding-right: 0;
}

.cap-assure__item i {
  font-size: 1.15rem;
  color: var(--brand);
  display: block;
  margin-bottom: 0.65rem;
}

.cap-assure__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}

.cap-assure__item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 1199.98px) {
  .cap-output__grid { grid-template-columns: 1fr 1fr; }
  .cap-line__rail { grid-template-columns: repeat(3, 1fr); row-gap: 1.75rem; }
  .cap-line__rail::before { display: none; }
  .cap-line__rail li:nth-child(3n) { padding-right: 0; }
}

@media (max-width: 991.98px) {
  .cap-plate,
  .cap-build,
  .cap-tech__lead,
  .cap-tech__pair { grid-template-columns: 1fr; }
  .cap-tech__lead .cap-tech__media { min-height: 240px; aspect-ratio: 16 / 10; }
  .cap-plate__photo {
    min-height: 280px;
    aspect-ratio: 16 / 9;
  }
  .cap-plate__photo::after { display: none; }
  .cap-build__media { min-height: 280px; aspect-ratio: 16 / 9; }
  .cap-build__pair { grid-template-columns: 1fr; gap: 1.15rem; }
  .cap-assure__grid { grid-template-columns: repeat(2, 1fr); }
  .cap-assure__item {
    padding: 1.75rem 1.25rem 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .cap-assure__item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-subtle);
  }
  .cap-assure__item:nth-child(even) {
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .cap-assure__item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 575.98px) {
  .cap-plate__fields,
  .cap-output__grid,
  .cap-line__rail,
  .cap-assure__grid { grid-template-columns: 1fr; }
  .cap-plate__fields > div,
  .cap-plate__fields > div:nth-child(odd),
  .cap-plate__fields > div:nth-child(even) {
    padding: 0.75rem 0;
    border-right: none;
  }
  .cap-line__rail li { padding-right: 0; padding-left: 2.4rem; }
  .cap-line__rail li::before {
    content: '';
    position: absolute;
    left: 0.68rem;
    top: 1.45rem;
    bottom: -1.75rem;
    width: 1px;
    background: var(--border-light);
  }
  .cap-line__rail li:last-child::before { display: none; }
  .cap-line__num { position: absolute; left: 0; top: 0; margin: 0; }
  .cap-assure__item,
  .cap-assure__item:nth-child(odd),
  .cap-assure__item:nth-child(even) {
    padding: 1.25rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .cap-assure__item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cap-plate__photo img,
  .cap-build__media img,
  .cap-tech__media img { transform: none; }
}

/* ── Equipment / section-head breathing room ── */
.equipment-showcase {
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
}

.equip-feature__body {
  justify-content: center;
  padding-top: clamp(2.85rem, 5vw, 3.85rem);
}

.equip-tile__index {
  top: 1.15rem;
  right: 1.15rem;
}

.equip-feature__index {
  top: 2.15rem;
  left: 2rem;
}

.equip-feature__tag {
  top: 2rem;
  right: 2rem;
}

@media (max-width: 991.98px) {
  .equip-feature__body {
    padding: 2.25rem 1.75rem 2rem;
  }
}

/* ══════════════════════════════════════════
   Project Reference — mill log
   ══════════════════════════════════════════ */
.page-header.page-header--log {
  min-height: clamp(360px, 48vh, 520px);
  padding-top: 3rem !important;
  padding-bottom: 0 !important;
  align-items: flex-end;
}

.page-header.page-header--log::before {
  opacity: 0.78;
  background-position: center 55%;
}

.page-header.page-header--log::after {
  background: linear-gradient(
    180deg,
    rgba(18, 19, 30, 0.22) 0%,
    rgba(18, 19, 30, 0.55) 48%,
    rgba(18, 19, 30, 0.88) 100%
  );
}

.page-header--log .container {
  padding-bottom: 0;
}

.pref-banner-plate {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 1.75rem 0 0;
  padding: 1.1rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pref-banner-plate div {
  padding: 0 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.pref-banner-plate div:first-child { padding-left: 0; }
.pref-banner-plate div:last-child { border-right: none; padding-right: 0; }

.pref-banner-plate dt {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 0.28rem;
}

.pref-banner-plate dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.pref-lead {
  background: var(--surface);
  padding: clamp(3rem, 5.5vw, 4.5rem) 0 0;
}

.pref-lead__head {
  max-width: 40rem;
  margin: 0 0 2rem;
}

.pref-lead__head .eyebrow { margin-bottom: 0.5rem; }

.pref-lead__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
  color: var(--text-primary);
}

.pref-lead__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.pref-lead .dispatch {
  margin-bottom: 0;
}

.pref-index {
  background: var(--surface-alt);
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(4rem, 7vw, 5.5rem);
}

.pref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pref-case {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.pref-case:hover,
.pref-case:focus-visible {
  color: inherit;
  border-color: rgba(31, 33, 136, 0.22);
  box-shadow: 0 16px 40px rgba(18, 19, 30, 0.1);
  transform: translateY(-3px);
}

.pref-case[hidden] { display: none !important; }

.pref-case__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-mid);
}

.pref-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.pref-case:hover .pref-case__media img {
  transform: scale(1.04);
}

.pref-case__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 0;
}

.pref-case__body .field-stamp { margin-bottom: 0.55rem; }

.pref-case__body .news-tag {
  align-self: flex-start;
  margin-bottom: 0.7rem;
}

.pref-case__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: none;
  margin: 0 0 0.55rem;
  color: var(--text-primary);
}

.pref-case:hover .pref-case__title { color: var(--brand); }

.pref-case__excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.4rem;
  max-width: none;
}

.pref-case__plate {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: auto -1.4rem 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-alt);
}

.pref-case__plate div {
  padding: 1.35rem 1.25rem 1.35rem 1.4rem;
  border-right: 1px solid var(--border-subtle);
}

.pref-case__plate div:first-child {
  padding-left: 1.5rem;
}

.pref-case__plate div:last-child {
  border-right: none;
  padding-right: 1.5rem;
}

.pref-case__plate dt {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 0.4rem;
}

.pref-case__plate dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .pref-banner-plate { grid-template-columns: 1fr 1fr; }
  .pref-banner-plate div:nth-child(2) { border-right: none; padding-right: 0; }
  .pref-banner-plate div:nth-child(n+3) {
    padding-top: 0.9rem;
    margin-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .pref-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .page-header.page-header--log {
    min-height: 0;
    padding-top: 2.25rem !important;
  }
  .pref-banner-plate {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }
  .pref-banner-plate div {
    padding: 0.7rem 0;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .pref-banner-plate div:first-child {
    padding-top: 0.9rem;
  }
  .pref-banner-plate div:nth-child(n+3) {
    margin-top: 0;
    padding-top: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pref-case,
  .pref-case__media img { transform: none; }
}

.case-sheet {
  background: var(--surface);
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.case-sheet__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 19.5rem);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.case-sheet__body .story-metrics {
  margin: 0 0 2rem;
}

.case-sheet__body .article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
}

.case-sheet__body .article-body p {
  margin: 0 0 1.15rem;
}

.case-sheet__body .article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  margin: 2.1rem 0 0.85rem;
}

.case-sheet__body .article-body ul {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
}

.case-sheet__body .article-body li + li {
  margin-top: 0.35rem;
}

.case-sheet__gallery {
  margin-top: clamp(2.5rem, 4.5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.case-sheet__gallery h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

@media (max-width: 991.98px) {
  .case-sheet__layout {
    grid-template-columns: 1fr;
  }
  .case-sheet__rail {
    position: static;
  }
}

/* ══════════════════════════════════════════
   Contact — shutdown desk
   ══════════════════════════════════════════ */
.page-header.page-header--contact::before {
  opacity: 0.72;
  background-position: center 42%;
}

.page-header.page-header--contact::after {
  background: linear-gradient(
    180deg,
    rgba(12, 14, 28, 0.38) 0%,
    rgba(12, 14, 28, 0.52) 48%,
    rgba(12, 14, 28, 0.9) 100%
  );
}

.contact-desk {
  padding: clamp(3.5rem, 7vw, 5.75rem) 0 0;
  background: var(--white-smoke);
}

.contact-desk__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(3.25rem, 6vw, 5.25rem);
}

.contact-switch h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 1rem;
}

.contact-switch__lead {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.contact-board {
  border-top: 1px solid var(--border-light);
}

.contact-line {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  transition: background 0.18s;
}

a.contact-line:hover .contact-line__v,
a.contact-line:focus-visible .contact-line__v {
  color: var(--brand);
}

.contact-line__k {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.28rem;
}

.contact-line__v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.4;
  word-break: break-word;
  transition: color 0.18s;
}

.contact-dispatch {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem 1.2rem;
  background: #fff;
  border-left: 3px solid var(--copper);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.contact-dispatch__stamp {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}

.contact-dispatch p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
}

.contact-ticket {
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 50px rgba(18, 19, 30, 0.07);
}

.contact-ticket__head {
  background: var(--ink);
  padding: 1.65rem 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
}

.contact-ticket__head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--copper) 100%);
}

.contact-ticket__head .eyebrow {
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.35rem;
}

.contact-ticket__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.contact-ticket__stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  padding-bottom: 0.15rem;
}

.contact-ticket__body {
  padding: 1.85rem 2rem 2.1rem;
  background: var(--white-smoke);
}

.field-group {
  margin-bottom: 0.15rem;
}

.field-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}

.field-group label .req { color: var(--copper); }

.field-group input,
.field-group textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 0;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 33, 136, 0.08);
  background: #fff;
}

.field-group textarea { resize: vertical; min-height: 128px; }

.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--text-muted); }

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.product-chip {
  padding: 0.38rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--border-subtle);
  background: var(--white-smoke);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  user-select: none;
}

.product-chip.selected,
.product-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(31, 33, 136, 0.05);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.35rem;
  transition: background 0.2s, transform 0.2s;
}

.contact-submit:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

.contact-submit svg { transition: transform 0.2s; }
.contact-submit:hover svg { transform: translateX(3px); }

.contact-privacy {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.7rem 0 0;
  line-height: 1.5;
  max-width: none;
}

.contact-plot {
  position: relative;
  background: var(--ink);
}

.contact-plot iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(0.4) contrast(1.08) saturate(0.85);
}

.contact-plot__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.75rem;
  pointer-events: none;
}

.contact-plot__card {
  pointer-events: auto;
  width: min(22.5rem, 100%);
  background: #fff;
  padding: 1.45rem 1.55rem 1.5rem;
  box-shadow: 0 18px 48px rgba(18, 19, 30, 0.28);
}

.contact-plot__card h2 {
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.contact-plot__card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 0.9rem;
  max-width: none;
}

@media (max-width: 991.98px) {
  .contact-desk__grid {
    grid-template-columns: 1fr;
  }
  .contact-ticket__head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .contact-plot__overlay {
    position: static;
    padding: 0;
  }
  .contact-plot__card {
    width: 100%;
    box-shadow: none;
    border-top: 1px solid var(--border-subtle);
  }
  .contact-plot iframe { height: 320px; }
}

@media (max-width: 575.98px) {
  .contact-line {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .contact-ticket__body {
    padding: 1.4rem 1.25rem 1.6rem;
  }
  .contact-ticket__head {
    padding: 1.35rem 1.25rem 1.2rem;
  }
}

/* ══════════════════════════════════════════
   Honors & Certificates — plant-wall dossier
   ══════════════════════════════════════════ */
.honor-index {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  background: rgba(245, 246, 251, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.honor-index__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.55rem 0;
}

.honor-index a {
  padding: 0.42rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.honor-index a:hover,
.honor-index a:focus-visible {
  color: var(--brand);
  border-color: rgba(31, 33, 136, 0.22);
  background: rgba(31, 33, 136, 0.06);
}

.honor-lead {
  background: var(--surface);
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.honor-lead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: end;
}

.honor-lead__copy .display-title {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin-bottom: 0.85rem;
}

.honor-lead__copy p:last-child {
  margin: 0;
  color: var(--text-secondary);
  max-width: 38rem;
}

.honor-lead__plate {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-light);
}

.honor-lead__plate li {
  margin: 0;
  padding: 0.85rem 0 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: none;
}

.honor-lead__plate li span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.honor-group {
  background: var(--surface-alt);
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.honor-group--alt {
  background: var(--surface);
}

.honor-group__head {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.honor-group__head .display-title {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin-bottom: 0.5rem;
}

.honor-group__head p:last-child {
  margin: 0;
  color: var(--text-muted);
}

.honor-grid {
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
}

.honor-grid--certificates,
.honor-grid--awards,
.honor-grid--patents {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.honor-card {
  position: relative;
  margin: 0;
  padding: 0.75rem 0.75rem 0.8rem;
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(18, 19, 30, 0.03);
}

.honor-card::before,
.honor-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--copper);
  border-style: solid;
  pointer-events: none;
}

.honor-card::before {
  top: 5px;
  left: 5px;
  border-width: 1.5px 0 0 1.5px;
}

.honor-card::after {
  right: 5px;
  bottom: 5px;
  border-width: 0 1.5px 1.5px 0;
}

.honor-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(31, 33, 136, 0.03), transparent 42%),
    var(--surface-alt);
  overflow: hidden;
}

.honor-card--landscape .honor-card__frame {
  aspect-ratio: 1.414 / 1;
}

.honor-card--portrait .honor-card__frame,
.honor-card--patent .honor-card__frame {
  aspect-ratio: 3 / 4;
}

.honor-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1199.98px) {
  .honor-grid--certificates,
  .honor-grid--awards,
  .honor-grid--patents {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .honor-lead__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .honor-grid--certificates,
  .honor-grid--awards,
  .honor-grid--patents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .honor-index {
    overflow-x: auto;
  }

  .honor-index__row {
    flex-wrap: nowrap;
    width: max-content;
  }

  .honor-grid--certificates,
  .honor-grid--awards,
  .honor-grid--patents {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .honor-card--landscape .honor-card__frame {
    aspect-ratio: 4 / 3;
  }
}

/* ══════════════════════════════════════════
   Project List — mill-relining contract ledger
   ══════════════════════════════════════════ */
.plist-overview {
  padding: 3.5rem 0 1.25rem;
  background: var(--surface);
}

.plist-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: stretch;
}

.plist-profile h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.plist-profile__lead {
  color: var(--text-secondary);
  margin: 0 0 1.35rem;
  max-width: 36rem;
}

.plist-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-light);
}

.plist-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.plist-facts li:nth-child(odd) { padding-right: 1.1rem; }
.plist-facts li:nth-child(even) { padding-left: 1.1rem; border-left: 1px solid var(--border-subtle); }

.plist-facts span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plist-facts strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.plist-bays {
  display: grid;
  gap: 0.85rem;
}

.plist-dock {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  min-height: 148px;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.plist-dock:hover,
.plist-dock:focus-visible {
  border-color: var(--brand);
  transform: translateY(-2px);
  color: inherit;
}

.plist-dock__media {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.plist-dock__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plist-dock__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 1.1rem 1.25rem 1.15rem;
}

.plist-dock__series {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.plist-dock__body strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.plist-dock__body span:not(.plist-dock__series) {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.45;
}

.plist-dock__body em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.plist-ledger {
  padding: 1.5rem 0 4rem;
  background: var(--surface-alt);
}

.plist-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) auto auto 1fr;
  gap: 0.85rem 1.25rem;
  align-items: center;
  padding: 0.9rem 0 1.15rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--surface-alt);
  position: sticky;
  top: var(--nav-height);
  z-index: 8;
}

.plist-find {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 0 0.85rem;
  min-height: 2.6rem;
}

.plist-find__k {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  flex-shrink: 0;
}

.plist-find input {
  border: 0;
  outline: none;
  width: 100%;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.plist-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.plist-toolbar .news-index__count {
  justify-self: end;
  margin: 0;
}

.plist-bay {
  background: var(--surface);
  border: 1px solid var(--border-light);
  margin-bottom: 1.35rem;
  overflow: hidden;
}

.plist-bay[hidden] { display: none !important; }

.plist-bay__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.35rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(90deg, rgba(184, 124, 60, 0.12) 0, rgba(184, 124, 60, 0.12) 4px, transparent 4px);
}

.plist-bay__head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.15rem 0 0;
}

.plist-bay__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.plist-bay__n {
  color: var(--brand);
  font-weight: 500;
}

.plist-table-wrap {
  overflow-x: auto;
}

.plist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.plist-table th,
.plist-table td {
  text-align: left;
  vertical-align: middle;
  padding: 0.72rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plist-table thead th {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-alt);
  position: sticky;
  top: 0;
}

.plist-table tbody th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-faint);
  width: 3.4rem;
}

.plist-table tbody tr:hover td,
.plist-table tbody tr:hover th {
  background: rgba(31, 33, 136, 0.035);
}

.plist-table tbody tr[hidden] { display: none; }

.plist-client {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.plist-market {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.12rem;
}

.plist-table code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--brand);
  background: transparent;
}

.plist-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border: 1px solid transparent;
}

.plist-stamp--operational {
  color: #3a6b38;
  background: rgba(58, 107, 56, 0.08);
  border-color: rgba(58, 107, 56, 0.22);
}

.plist-stamp--delivered {
  color: var(--brand);
  background: rgba(31, 33, 136, 0.07);
  border-color: rgba(31, 33, 136, 0.18);
}

.plist-stamp--pending {
  color: #8a5a1c;
  background: rgba(184, 124, 60, 0.12);
  border-color: rgba(184, 124, 60, 0.28);
}

.plist-units {
  display: inline-block;
  margin-left: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .plist-overview__grid {
    grid-template-columns: 1fr;
  }

  .plist-toolbar {
    grid-template-columns: 1fr;
    position: static;
  }

  .plist-toolbar .news-index__count {
    justify-self: start;
  }

  .plist-dock {
    grid-template-columns: 110px minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .plist-dock {
    grid-template-columns: 1fr;
  }

  .plist-dock__media {
    height: 140px;
  }

  .plist-facts {
    grid-template-columns: 1fr;
  }

  .plist-facts li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}
