/* ===================================================================
   RLR Sales and Service Corporation — SKF Distributor homepage
   Industrial / B2B art direction. Plain CSS, mobile-first.
   Fonts: Archivo (display) + IBM Plex Sans (body).
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand & neutrals (grounded in the chrome-blue logo) */
  --ink:        #0e1a26;   /* primary text */
  --ink-2:      #36485a;   /* secondary text */
  --muted:      #5f7184;   /* muted captions */
  --navy:       #0a1726;   /* dark header / footer */
  --navy-2:     #0c2138;   /* dark band */
  --navy-line:  #1d3450;   /* hairlines on dark */
  --blue:       #1657c4;   /* brand royal blue */
  --blue-700:   #11459b;   /* deep blue (links/headings accent) */
  --blue-50:    #eef3fe;   /* tint */
  --steel-50:   #f6f8fa;
  --steel-100:  #eef1f5;
  --steel-200:  #e2e8ee;
  --line:       #dde4ea;   /* borders */
  --amber:      #f5a300;   /* CTA accent — primary actions only */
  --amber-600:  #db8f00;
  --white:      #ffffff;

  /* Type */
  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing (4px base) */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --radius: 10px;
  --radius-sm: 7px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 38, .06), 0 6px 16px rgba(14, 26, 38, .05);
  --shadow-md: 0 2px 6px rgba(14, 26, 38, .07), 0 18px 40px rgba(14, 26, 38, .09);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue); }

/* Branded "SKF" wordmark in copy — vivid SKF blue so it pops everywhere */
.skf {
  font-family: var(--font-display); font-weight: 800; letter-spacing: .01em;
  color: #0f58d6;
  background-image: linear-gradient(95deg, #2f80ff, #0a3aa0);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* On dark bands, switch to a bright solid blue for contrast */
.topbar .skf, .rangebar .skf, .image-band .skf, .authenticity .skf,
.site-footer .skf, .cta-band .skf {
  background-image: none; -webkit-text-fill-color: #7fb3ff; color: #7fb3ff;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--amber); color: var(--ink); font-weight: 600;
  padding: 10px 16px; border-radius: 0 0 8px 8px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Shared section primitives ---------- */
.section { padding-block: clamp(64px, 8vw, 104px); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .8125rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-700);
  margin-bottom: 18px;
}
.eyebrow__rule { width: 34px; height: 2px; background: var(--amber); display: inline-block; }
.eyebrow--center { justify-content: center; }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-lead {
  margin-top: 18px;
  color: var(--ink-2);
  max-width: 56ch;
  font-size: 1.0625rem;
}
.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-title { max-width: none; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 14px; --btn-pad-x: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; letter-spacing: .005em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn--sm { --btn-pad-y: 10px; --btn-pad-x: 18px; font-size: .9375rem; }

.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 8px 18px -10px rgba(245,163,0,.7); }
.btn--primary:hover { background: var(--amber-600); color: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(245,163,0,.78); }
.btn--primary:active { transform: translateY(0); box-shadow: 0 6px 14px -8px rgba(245,163,0,.7); }

.btn--ghost {
  background: transparent; color: var(--blue-700);
  border-color: var(--steel-200);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }
.btn--ghost svg { transition: transform .18s var(--ease); }
.btn--ghost:hover svg { transform: translateX(3px); }

/* ===================================================================
   TOP UTILITY BAR
   =================================================================== */
.topbar {
  background: #06101c;
  color: #aebccb;
  font-size: .8125rem;
  border-bottom: 1px solid var(--navy-line);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar__lead { display: flex; align-items: center; gap: 9px; font-weight: 500; color: #c6d2df; }
.topbar__lead .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px rgba(245,163,0,.18); }
.topbar__contacts { display: flex; align-items: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.topbar__contacts a { color: #c6d2df; }
.topbar__contacts a:hover { color: #fff; }
.topbar__contacts .sep { color: #3a4f66; }

/* ===================================================================
   STICKY HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  transition: box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 88px;
}

/* Logo: the source JPG sits on black; screen-blend drops the black onto
   the dark header so the chrome-blue mark reads cleanly. */
.brand { display: inline-flex; align-items: center; }
.brand__img {
  height: 56px; width: auto;
  /* Uses the transparent PNG (assets/RLRLOGO-mark.png) so it sits cleanly on the
     dark bar with no visible box — no blend mode needed. */
}
.brand__text {
  font-family: var(--font-display); font-weight: 700;
  color: #fff; font-size: 1.05rem; letter-spacing: -0.01em;
}
.brand__text strong { color: #fff; }

/* RLR + SKF authorized-distributor lockup */
.brand-lockup { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-div { flex: none; width: 1px; height: 40px; background: var(--navy-line); }
.skf-badge { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.skf-badge img { flex: none; height: 46px; width: 46px; border-radius: 6px; display: block; transition: transform .2s var(--ease); }
.skf-badge:hover img { transform: scale(1.05); }
.skf-badge:hover .skf-badge__txt { color: #c6d2df; }
.skf-badge__txt {
  font-family: var(--font-display); font-weight: 700;
  font-size: .66rem; letter-spacing: .09em; text-transform: uppercase;
  color: #9fb1c4; line-height: 1.2;
}
@media (max-width: 600px) {
  .brand-lockup { gap: 10px; }
  .skf-badge__txt { display: none; }
  .skf-badge img { height: 40px; width: 40px; }
}

/* Nav */
.nav { display: flex; align-items: center; }
.nav__menu {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu > li > a:not(.btn) {
  display: inline-block; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  color: #d4dde7; border-radius: 6px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav__menu > li > a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__cta-li { margin-left: 10px; }

.nav__toggle {
  display: none; background: transparent; border: 1px solid var(--navy-line);
  border-radius: 7px; width: 46px; height: 42px; cursor: pointer; padding: 0;
}
.nav__toggle-bars { display: inline-flex; flex-direction: column; gap: 5px; align-items: center; }
.nav__toggle-bars span { width: 22px; height: 2px; background: #d4dde7; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% 0%, var(--steel-50) 0%, var(--white) 55%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(56px, 7vw, 96px);
}
.hero__copy { max-width: 36rem; }
.hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 34rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  list-style: none; margin: 30px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.hero__chips li {
  position: relative; padding-left: 24px;
  font-size: .9375rem; font-weight: 500; color: var(--ink-2);
}
.hero__chips li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12l5 5L20 6' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat,
    var(--blue);
}

/* Hero technical figure */
.hero__figure { position: relative; margin: 0; }
.bearing-panel {
  position: relative;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  background: var(--steel-100);
  box-shadow: var(--shadow-md);
  padding: 0;
  overflow: hidden;
}
.hero-photo {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1.04;
  object-fit: cover; object-position: center 45%;
}
.bearing-svg { width: 100%; height: auto; color: var(--blue-700); }
.bp-faint   { fill: none; stroke: var(--steel-200); stroke-width: 1; }
.bp-ring    { fill: none; stroke: var(--blue-700); stroke-width: 2.4; }
.bp-bore    { fill: var(--blue-50); stroke: var(--blue-700); stroke-width: 2.4; }
.bp-dash    { fill: none; stroke: var(--blue); stroke-width: 1.4; stroke-dasharray: 6 7; opacity: .8; }
.bp-ball circle { fill: #fff; stroke: var(--blue-700); stroke-width: 2.4; }
.bp-dim     { stroke: var(--ink-2); }
.bp-dim line { stroke-width: 1.2; }
.bp-dim path { fill: var(--ink-2); stroke: none; }
.bp-dim text { fill: var(--ink-2); stroke: none; font-family: var(--font-display); font-size: 17px; }
.bp-callout line { stroke: var(--muted); stroke-width: 1.2; }
.bp-callout circle { fill: var(--amber); stroke: none; }
.bp-callout text {
  fill: var(--ink); stroke: none; font-family: var(--font-display);
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
}

.spec-tag {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1px;
  border-left: 4px solid var(--amber);
}
.spec-tag__label { font-family: var(--font-display); font-weight: 700; font-size: .9rem; letter-spacing: .01em; }
.spec-tag__value { font-size: .8125rem; color: #b9c6d4; font-variant-numeric: tabular-nums; }

/* ===================================================================
   PRODUCT LINES — asymmetric grid
   =================================================================== */
.products { background: var(--white); }
.prod-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.prod-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; z-index: 2;
  transition: transform .3s var(--ease);
}
.prod-card:hover { border-color: var(--steel-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prod-card:hover::after { transform: scaleX(1); }
.prod-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.prod-card p { color: var(--ink-2); font-size: .9875rem; line-height: 1.6; }

/* Photo on top, content below (regular cards) */
.prod-card__media {
  position: relative; flex: 1 1 auto; min-height: 190px;
  overflow: hidden; background: var(--steel-100); margin: 0;
}
.prod-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .55s var(--ease);
}
.prod-card:hover .prod-card__media img { transform: scale(1.05); }
.prod-card__body { flex: 0 0 auto; padding: 20px 24px 24px; }

/* Flagship tile: photo left, content right; spans two columns */
.prod-card--feature {
  grid-column: span 2;
  flex-direction: row;
  border-color: var(--steel-200);
}
.prod-card--feature .prod-card__media { flex: 0 0 42%; min-height: 240px; background: var(--white); }
.prod-card--feature .prod-card__media img { object-fit: contain; }
.prod-card--feature .prod-card__body {
  flex: 1;
  padding: 28px clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, var(--steel-50), var(--white));
}
.prod-card--feature h3 { font-size: 1.5rem; margin-bottom: 10px; }
.prod-sublist {
  list-style: none; margin: 14px 0 0; padding: 0;
}
.prod-sublist li {
  position: relative; padding: 8px 0 8px 20px;
  font-size: .9375rem; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.prod-sublist li:last-child { border-bottom: 0; }
.prod-sublist li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border: 2px solid var(--amber); border-radius: 50%;
}

/* ===================================================================
   WHY RLR — light steel band, two columns
   =================================================================== */
.why { background: var(--steel-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.why__intro { position: sticky; top: 96px; }
.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.why__item {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
}
.why__item:last-child { border-bottom: 0; }
.why__num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--blue); padding-top: 4px; font-variant-numeric: tabular-nums;
}
.why__item h3 { font-size: 1.2rem; margin-bottom: 7px; }
.why__item p { color: var(--ink-2); font-size: 1rem; max-width: 48ch; }

/* ===================================================================
   IMAGE BAND — full-bleed industrial photo with dark overlay
   =================================================================== */
.image-band {
  position: relative;
  background:
    linear-gradient(90deg, rgba(8,15,24,.94) 0%, rgba(8,15,24,.80) 45%, rgba(8,15,24,.45) 100%),
    #0a1726 url("assets/industrial-band.jpg") center / cover no-repeat;
  color: #fff;
  padding-block: clamp(76px, 11vw, 150px);
  border-block: 1px solid var(--navy-line);
}
.image-band__inner { max-width: 620px; }
.image-band .eyebrow { color: var(--amber); }
.image-band h2 {
  color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.08; max-width: 17ch;
}
.image-band p { margin-top: 16px; color: #c4d0dd; max-width: 52ch; font-size: 1.0625rem; }
.image-band__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ===================================================================
   INDUSTRIES — compact grid
   =================================================================== */
.industries { background: var(--white); }
.ind-grid {
  margin-top: clamp(36px, 5vw, 52px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  list-style: none; padding: 0;
}
.ind-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 4 / 3; background: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ind-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ind-item__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .55s var(--ease);
}
.ind-item:hover .ind-item__img { transform: scale(1.06); }
.ind-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 32px 20px 18px;
  background: linear-gradient(transparent, rgba(8,15,24,.5) 32%, rgba(6,12,20,.92));
  color: #fff;
}
.ind-item__cap h3 { color: #fff; font-size: 1.15rem; letter-spacing: -.01em; }
.ind-item__cap p { margin-top: 4px; color: #d4dde7; font-size: .9rem; line-height: 1.45; }
.ind-item::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; z-index: 2;
  transition: transform .35s var(--ease);
}
.ind-item:hover::after { transform: scaleX(1); }

/* ===================================================================
   WAREHOUSE GALLERY — RLR's own Lipa City stock photos
   =================================================================== */
.warehouse { background: var(--white); }
.wh-gallery {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.wh-shot {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--steel-200);
  background: var(--steel-100); box-shadow: var(--shadow-sm);
}
.wh-shot:nth-child(2) { margin-top: 32px; }   /* gentle editorial stagger */
.wh-shot img {
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center;
  transition: transform .55s var(--ease);
}
.wh-shot:hover img { transform: scale(1.045); }
.wh-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 16px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #fff;
  background: linear-gradient(transparent, rgba(7,13,22,.88));
}
.wh-gallery .reveal:nth-child(2) { transition-delay: .07s; }
.wh-gallery .reveal:nth-child(3) { transition-delay: .14s; }

/* ===================================================================
   CLIENTS — "trusted by" customer name wall
   =================================================================== */
.clients { background: var(--steel-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-wall {
  margin-top: clamp(34px, 5vw, 50px);
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.client-wall li {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 98px; padding: 18px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height: 1.3;
  color: var(--ink-2); letter-spacing: -0.01em;
  transition: border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.client-wall li:hover {
  border-color: var(--blue); color: var(--navy);
  box-shadow: var(--shadow-sm); transform: translateY(-3px);
}
.client-wall li.has-logo { padding: 12px 16px; }
.client-wall li.has-logo img {
  max-height: 46px; max-width: 84%; width: auto; height: auto;
  object-fit: contain; border-radius: 4px;
  transition: transform .2s var(--ease);
}
.client-wall li.has-logo:hover img { transform: scale(1.04); }
.clients__note {
  margin-top: 22px; text-align: center; color: var(--muted); font-size: .82rem;
  max-width: 72ch; margin-inline: auto; line-height: 1.5;
}

@media (max-width: 980px) { .client-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .wh-shot:nth-child(2) { margin-top: 0; } }
@media (max-width: 620px) {
  .wh-gallery { grid-template-columns: 1fr; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .wh-shot figcaption { font-size: .9rem; }
}
@media (max-width: 380px) { .client-wall { grid-template-columns: 1fr; } }

/* ===================================================================
   TESTIMONIALS — customer voice (real, user-supplied quotes)
   =================================================================== */
.testimonials { background: var(--white); }
.quote-feature {
  margin: clamp(34px, 5vw, 56px) auto 0; max-width: 900px;
  text-align: center; position: relative;
}
.quote-mark {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 4.6rem; line-height: .5; color: var(--blue); height: 38px;
}
.quote-feature blockquote { margin: 0; }
.quote-feature blockquote p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.35rem, 2.7vw, 2rem); line-height: 1.34;
  letter-spacing: -0.01em; color: var(--ink); text-wrap: balance;
}
.quote-by { margin-top: 26px; }
.quote-by__name {
  font-family: var(--font-display); font-weight: 700;
  color: var(--blue-700); font-size: 1rem; letter-spacing: .01em;
}
.quote-by__role { display: block; margin-top: 2px; font-size: .9rem; color: var(--muted); }

/* ===================================================================
   OUR LEGACY — company history (since 2013)
   =================================================================== */
.legacy { background: var(--white); }
.legacy__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.legacy__intro { position: sticky; top: 96px; }
.legacy__kicker {
  margin-top: 18px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.0625rem; color: var(--ink-2);
}
.legacy__kicker strong { color: var(--blue-700); }
.legacy__est {
  margin-top: 28px; display: flex; align-items: center; gap: 16px;
  max-width: 360px; padding: 16px 22px;
  border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: var(--radius); background: var(--steel-50);
}
.legacy__est-num {
  flex: none; font-family: var(--font-display); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--blue-700); letter-spacing: -0.02em;
}
.legacy__est-label { font-size: .88rem; color: var(--muted); line-height: 1.35; }

.legacy__body > p { color: var(--ink-2); font-size: 1.0625rem; }
.legacy__body > p + p { margin-top: 16px; }
.legacy__body strong { color: var(--ink); }

.legacy__timeline { list-style: none; margin: 32px 0 0; padding: 0; }
.legacy__timeline li {
  position: relative; display: grid; grid-template-columns: 110px 1fr;
  gap: 18px; align-items: baseline;
  padding: 16px 0 16px 28px; border-left: 2px solid var(--steel-200);
}
.legacy__timeline li::before {
  content: ""; position: absolute; left: -8px; top: 20px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--amber);
}
.legacy__timeline li:last-child::before { background: var(--amber); }
.legacy__year {
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  color: var(--blue-700); text-transform: uppercase; letter-spacing: .04em;
}
.legacy__milestone { color: var(--ink); font-size: .98rem; line-height: 1.5; }

/* Footer brand tagline */
.site-footer__tagline {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: 1.05rem; letter-spacing: .01em; margin-bottom: 10px;
}
/* Footer social links */
.social-row { display: flex; gap: 10px; list-style: none; margin: 18px 0 0; padding: 0; }
.social-row a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 9px; background: rgba(255,255,255,.06);
  border: 1px solid var(--navy-line); color: #aebccb;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.social-row a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .legacy__grid { grid-template-columns: 1fr; }
  .legacy__intro { position: static; }
}
@media (max-width: 560px) {
  .legacy__timeline li { grid-template-columns: 1fr; gap: 4px; }
}

/* ===================================================================
   AUTHENTICITY STRIP — dark band
   =================================================================== */
.authenticity {
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(12,33,56,.90) 0%, rgba(8,16,26,.97) 62%),
    #0a1726 url("assets/parts-flatlay.jpg") center / cover no-repeat;
  color: #e7eef6;
  padding-block: clamp(54px, 7vw, 86px);
}
.auth__inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 52px); align-items: center;
}
.auth__mark { width: clamp(72px, 9vw, 104px); color: var(--amber); }
.auth__mark svg { width: 100%; height: auto; }
.auth__title {
  color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800;
  letter-spacing: -0.02em; max-width: 24ch; line-height: 1.12;
}
.auth__copy p { margin-top: 16px; color: #b8c6d6; max-width: 62ch; }
.auth__copy strong { color: #fff; }
.auth__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-family: var(--font-display); font-weight: 700; color: var(--amber);
}
.auth__link:hover { color: #ffc14d; }
.auth__link svg { transition: transform .18s var(--ease); }
.auth__link:hover svg { transform: translate(2px, -2px); }

/* ===================================================================
   CONTACT / QUOTE
   =================================================================== */
.contact { background: var(--white); }
.contact__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

/* Form */
.quote-form {
  margin-top: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); }
.req { color: var(--blue); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--steel-50); transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa8b6; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(22,87,196,.12);
}
.field textarea { resize: vertical; min-height: 112px; }
.field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 40px 12px 14px; width: 100%;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background-color: var(--steel-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235f7184' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field select:focus {
  outline: none; border-color: var(--blue); background-color: #fff;
  box-shadow: 0 0 0 4px rgba(22,87,196,.12);
}

.quote-form__submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: .9rem; color: var(--blue-700); font-weight: 500; margin: 0; }
.form-note.is-error { color: #c0392b; }

/* Contact info card */
.info-card {
  background: var(--navy);
  color: #d8e2ec;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--amber);
}
.info-card h3 { color: #fff; font-size: 1.25rem; }
.info-card__tag { color: #9fb1c4; font-size: .95rem; margin-top: 4px; margin-bottom: 22px; }
.info-list { display: grid; gap: 20px; margin: 0; }
.info-list dt {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 5px;
}
.info-list dt svg { width: 18px; height: 18px; }
.info-list dd { margin: 0; color: #d8e2ec; font-size: .975rem; line-height: 1.55; }
.info-list dd a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 3px; }
.info-list dd a:hover { text-decoration-color: var(--amber); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: #06101c; color: #93a4b6; padding-top: clamp(48px, 6vw, 72px); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid var(--navy-line);
}
.site-footer .brand__img { height: 52px; margin-bottom: 16px; }
.site-footer__blurb { font-size: .95rem; max-width: 38ch; line-height: 1.6; }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__nav a { color: #aebccb; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__contact address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.site-footer__contact a { color: #aebccb; }
.site-footer__contact a:hover { color: #fff; }

.site-footer__legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 24px; font-size: .85rem; color: #6f8195;
}
.site-footer__tm { max-width: 60ch; }
.site-footer__credits { flex-basis: 100%; max-width: 96ch; margin-top: 2px; line-height: 1.5; }

/* ===================================================================
   REVEAL ON SCROLL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Stagger items within a group */
.prod-grid .reveal:nth-child(2) { transition-delay: .05s; }
.prod-grid .reveal:nth-child(3) { transition-delay: .1s; }
.prod-grid .reveal:nth-child(4) { transition-delay: .05s; }
.prod-grid .reveal:nth-child(5) { transition-delay: .1s; }
.prod-grid .reveal:nth-child(6) { transition-delay: .15s; }
.ind-grid .reveal:nth-child(2), .why__list .reveal:nth-child(2) { transition-delay: .06s; }
.ind-grid .reveal:nth-child(3), .why__list .reveal:nth-child(3) { transition-delay: .12s; }
.ind-grid .reveal:nth-child(4), .why__list .reveal:nth-child(4) { transition-delay: .18s; }
.ind-grid .reveal:nth-child(5) { transition-delay: .24s; }
.ind-grid .reveal:nth-child(6) { transition-delay: .3s; }

/* ===================================================================
   STATS — credibility band
   =================================================================== */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);   /* thin separators between cells */
}
.stat { background: var(--white); padding: clamp(30px, 4vw, 48px) 24px; text-align: center; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem); color: var(--blue-700);
  letter-spacing: -0.02em; line-height: 1;
}
.stat__label { display: block; margin-top: 10px; font-size: .92rem; color: var(--ink-2); line-height: 1.45; }

/* ===================================================================
   PRODUCT-RANGE MARQUEE — slim auto-scrolling breadth signal
   =================================================================== */
.rangebar {
  background: var(--navy); color: #cbd7e4;
  border-bottom: 1px solid var(--navy-line);
  padding: 13px 0; overflow: hidden;
}
.rangebar__inner { display: flex; align-items: center; gap: 24px; }
.rangebar__label {
  flex: none; font-family: var(--font-display); font-weight: 700;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber);
}
.rangebar__viewport {
  position: relative; overflow: hidden; flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.rangebar__track {
  display: flex; align-items: center; list-style: none; margin: 0; padding: 0;
  width: max-content; animation: rangebar-scroll 48s linear infinite;
}
.rangebar:hover .rangebar__track { animation-play-state: paused; }
.rangebar__track li { padding: 0 22px; font-size: .9rem; white-space: nowrap; }
.rangebar__track li::before {
  content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); margin-right: 14px; vertical-align: middle;
}
@keyframes rangebar-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 620px) {
  .rangebar__inner { flex-direction: column; align-items: flex-start; gap: 9px; }
  .rangebar__viewport { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .rangebar__track { animation: none; } }

/* ===================================================================
   SCROLL PROGRESS BAR + BACK-TO-TOP (injected by main.js)
   =================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--amber); z-index: 200; pointer-events: none;
  transition: width .08s linear;
}
.to-top {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff; border: 1px solid var(--navy-line);
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, background .2s var(--ease);
  z-index: 95;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue); }
.to-top svg { width: 20px; height: 20px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__figure { order: -1; max-width: 460px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__intro { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card--feature { grid-column: span 2; }
}

@media (max-width: 860px) {
  /* Mobile nav */
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__menu {
    position: absolute; top: 100%; right: var(--gutter); left: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--navy); border: 1px solid var(--navy-line);
    border-radius: var(--radius); padding: 12px; margin-top: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
    display: none;
  }
  .nav__menu.open { display: flex; }
  .nav__menu > li > a:not(.btn) { padding: 13px 14px; font-size: 1.05rem; }
  .nav__cta-li { margin-left: 0; margin-top: 6px; }
  .nav__cta-li .btn { width: 100%; justify-content: center; --btn-pad-y: 14px; font-size: 1rem; }
}

@media (max-width: 720px) {
  .topbar__lead { font-size: .78rem; }
  .hide-sm { display: none !important; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card--feature { grid-column: 1; flex-direction: column; }
  .prod-card--feature .prod-card__media { flex: 1 1 auto; min-height: 200px; }
  .prod-card--feature .prod-card__body { flex: 0 0 auto; padding: 20px 24px 24px; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .auth__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__legal { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .ind-grid { grid-template-columns: 1fr; }
  .hero__chips { gap: 10px 16px; }
}

/* ===================================================================
   SUB-PAGES (products.html, contact.html)
   =================================================================== */

/* Active nav link */
.nav__menu > li > a:not(.btn).is-active { color: #fff; position: relative; }
.nav__menu > li > a:not(.btn).is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--amber);
}

/* Page header band */
.page-header {
  background: linear-gradient(180deg, var(--steel-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(34px, 5vw, 60px);
}
.breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: .85rem; color: var(--muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--blue-700); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb i { font-style: normal; color: var(--steel-300); }
.page-header__title {
  font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800;
  letter-spacing: -0.025em; max-width: 22ch; line-height: 1.05;
}
.page-header__lead {
  margin-top: 16px; color: var(--ink-2); max-width: 64ch;
  font-size: 1.125rem; line-height: 1.55;
}
.page-header__actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-note {
  font-size: .9rem; color: var(--muted); margin-top: 24px;
  padding-left: 14px; border-left: 3px solid var(--amber); max-width: 66ch; line-height: 1.55;
}

/* Inline arrow text-link */
.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; color: var(--blue-700);
}
.text-link svg { transition: transform .18s var(--ease); }
.text-link:hover { color: var(--blue); }
.text-link:hover svg { transform: translateX(3px); }
.section-head .text-link { margin-top: 20px; }

/* Light-outline button for dark bands */
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* Product-line blocks */
.prodline { padding-block: clamp(40px, 5vw, 66px); border-bottom: 1px solid var(--line); }
.prodline:last-of-type { border-bottom: 0; }
.prodline__grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.prodline__intro { position: sticky; top: 108px; }
.prodline__icon {
  width: 56px; height: 56px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--blue-50); color: var(--blue-700); border: 1px solid #dde6fb;
}
.prodline__icon svg { width: 32px; height: 32px; }
/* Products page: photo banner replaces the line icon */
.prodline__icon { display: none; }
.prodline__media {
  margin: 0 0 22px; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--steel-100);
  aspect-ratio: 16 / 10;
}
.prodline__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.prodline__media:hover img { transform: scale(1.04); }

/* ===================================================================
   INDUSTRIES sub-page — alternating image/content blocks
   (deliberately distinct from the Products page's uniform layout)
   =================================================================== */
.ind-block { padding-block: clamp(46px, 7vw, 84px); border-bottom: 1px solid var(--line); }
.ind-blocks .ind-block:nth-child(even) { background: var(--steel-50); }
.ind-blocks .ind-block:last-child { border-bottom: 0; }
.ind-block__inner {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(30px, 5vw, 62px); align-items: center;
}
.ind-blocks .ind-block:nth-child(even) .ind-block__media { order: 2; }
.ind-block__media {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 1px solid var(--steel-200); aspect-ratio: 4 / 3;
}
.ind-block__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.ind-block:hover .ind-block__media img { transform: scale(1.045); }
.ind-block__num {
  position: absolute; left: 0; top: 0; z-index: 1;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: #fff; background: var(--blue); padding: 7px 15px;
  border-bottom-right-radius: var(--radius);
}
.ind-block__kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-700);
  display: flex; align-items: center; gap: 11px; margin-bottom: 12px;
}
.ind-block__kicker::before { content: ""; width: 26px; height: 2px; background: var(--amber); }
.ind-block__body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; }
.ind-block__desc { margin-top: 14px; color: var(--ink-2); font-size: 1.0625rem; max-width: 48ch; }
.ind-apps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ind-apps li {
  padding: 15px 17px; border-radius: var(--radius-sm);
  background: var(--steel-50); border: 1px solid var(--line); border-left: 3px solid var(--blue);
}
.ind-blocks .ind-block:nth-child(even) .ind-apps li { background: var(--white); }
.ind-apps__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: .97rem; color: var(--ink); }
.ind-apps__tag {
  display: inline-block; margin-top: 4px;
  font-size: .72rem; font-weight: 600; color: var(--blue-700);
  background: var(--blue-50); border: 1px solid #dde6fb; padding: 2px 9px; border-radius: 20px;
}
.ind-apps__desc { display: block; margin-top: 8px; font-size: .88rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 880px) {
  .ind-block__inner { grid-template-columns: 1fr; gap: 26px; }
  .ind-blocks .ind-block:nth-child(even) .ind-block__media { order: 0; }
}
@media (max-width: 520px) { .ind-apps { grid-template-columns: 1fr; } }
.prodline__num {
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.prodline h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.prodline__intro > p { margin-top: 12px; color: var(--ink-2); max-width: 40ch; }

.type-list { display: grid; }
.type-item {
  display: grid; grid-template-columns: 1fr auto; align-items: start;
  gap: 4px 18px; padding: 18px 0; border-top: 1px solid var(--line);
}
.type-item:first-child { border-top: 0; padding-top: 0; }
.type-item__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.type-item__tag {
  justify-self: end; align-self: center;
  font-size: .76rem; font-weight: 600; color: var(--blue-700);
  background: var(--blue-50); border: 1px solid #dde6fb;
  padding: 4px 10px; border-radius: 20px; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.type-item__desc { grid-column: 1 / -1; color: var(--ink-2); font-size: .95rem; line-height: 1.55; max-width: 66ch; }

/* CTA band (reusable, dark) */
.cta-band {
  background: radial-gradient(120% 140% at 100% 0%, var(--navy-2) 0%, var(--navy) 60%);
  color: #e7eef6; padding-block: clamp(48px, 6vw, 78px);
}
.cta-band__inner { display: grid; grid-template-columns: 1.3fr auto; gap: 28px 48px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; max-width: 24ch; line-height: 1.12; }
.cta-band p { margin-top: 12px; color: #b8c6d6; max-width: 58ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact page coverage chips */
.coverage { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.coverage li {
  font-size: .82rem; font-weight: 600; color: var(--ink-2);
  background: var(--steel-100); border: 1px solid var(--line); padding: 6px 12px; border-radius: 20px;
}
.contact__grid--page { align-items: start; }
.map-embed {
  margin-top: 22px; overflow: hidden; line-height: 0;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-placeholder {
  margin-top: 22px; border: 1px dashed var(--steel-300); border-radius: var(--radius);
  background:
    linear-gradient(var(--steel-100) 1px, transparent 1px) 0 0 / 100% 30px,
    linear-gradient(90deg, var(--steel-100) 1px, transparent 1px) 0 0 / 30px 100%,
    var(--steel-50);
  min-height: 180px; display: grid; place-items: center; text-align: center;
  color: var(--muted); font-size: .9rem; padding: 20px;
}

@media (max-width: 980px) {
  .prodline__grid { grid-template-columns: 1fr; gap: 24px; }
  .prodline__intro { position: static; }
  .cta-band__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .type-item { grid-template-columns: 1fr; }
  .type-item__tag { justify-self: start; }
}

/* ===================================================================
   BRAND WATERMARK (transparent assets/RLRLOGO-mark.png)
   "overflow: clip" keeps the watermark contained WITHOUT breaking the
   sticky intros (unlike overflow: hidden).
   =================================================================== */
.has-wm { position: relative; overflow: clip; }
.has-wm > .container { position: relative; z-index: 2; }
.watermark {
  position: absolute; z-index: 1; pointer-events: none; user-select: none;
  opacity: .07; width: min(520px, 58%); height: auto;
}
.watermark--right        { right: -36px; top: 50%; transform: translateY(-50%); }
.watermark--bottom-right { right: -28px; bottom: -34px; }
.watermark--left         { left: -44px; bottom: -28px; }
/* On dark bands the mark reads light — nudge it up slightly so it stays visible */
.cta-band .watermark, .site-footer .watermark { opacity: .09; }
@media (max-width: 760px) {
  .watermark { opacity: .06; width: min(340px, 72%); }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
