/* ===========================================================
   FLUIDLINE HYDRO EQUIPMENTS — Production Stylesheet
   Direction B Refined: navy + ink + orange, hi-fi with motion
   =========================================================== */

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

:root {
  --ink:        #0A0E14;
  --ink-2:      #14181F;
  --navy:       #0E2447;
  --navy-2:     #163167;
  --navy-3:     #1E3D7A;
  --paper:      #F2EEE5;
  --paper-2:    #E8E2D3;
  --paper-3:    #FAF7F1;
  --orange:     #FF5C1F;
  --orange-2:   #FF7B40;
  --orange-soft:#FFE4D6;
  --rule:       rgba(13,13,13,0.12);
  --rule-d:     rgba(255,255,255,0.14);

  --ff-sans:    'Archivo', 'Inter Tight', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
}

html { scroll-behavior: smooth; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.mono {
  font-family: var(--ff-mono);
  font-feature-settings: "tnum" 1;
}

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: white;
  padding: 10px 16px; z-index: 9999;
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.skip-link:focus { top: 0; }

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

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(-32px); transition: opacity .9s cubic-bezier(.2,.7,.2,1) .1s, transform .9s cubic-bezier(.2,.7,.2,1) .1s; }
.reveal-x.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1)  { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2)  { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3)  { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4)  { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5)  { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6)  { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7)  { transition-delay: .47s; }
.reveal-stagger.in > *:nth-child(8)  { transition-delay: .54s; }
.reveal-stagger.in > *:nth-child(9)  { transition-delay: .61s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: .68s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============ TOP UTILITY ============ */
.utility {
  background: var(--ink); color: white;
  padding: 10px 48px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 50;
}
.utility .left { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.utility .left span:first-child::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(255,92,31,0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,92,31,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(255,92,31,0); }
}
.utility .right { display: flex; gap: 22px; flex-wrap: wrap; }
.utility .right a { transition: color .2s; }
.utility .right a:hover { color: var(--orange-2); }

/* ============ NAV ============ */
.nav {
  background: var(--ink); color: white;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.04);
  padding: 6px; border-radius: 999px;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px;
  display: inline-block;
  color: rgba(255,255,255,0.78);
  transition: background .25s, color .25s;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: white; }
.nav-links li.active a { background: white; color: var(--ink); }
.nav-cta {
  background: var(--orange); color: white;
  padding: 14px 24px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .25s, transform .25s, box-shadow .25s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-2); transform: translateX(2px); }
.nav-cta .arrow { transition: transform .25s; }
.nav-cta:hover .arrow { transform: translate(2px, -2px); }

.nav-toggle {
  display: none;
  background: transparent; color: white;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.1) saturate(0.85) brightness(0.65);
  transform: scale(1.05);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(255,92,31,0.22), transparent 55%),
    linear-gradient(160deg, rgba(14,36,71,0.78) 0%, rgba(10,14,20,0.65) 50%, rgba(14,36,71,0.85) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 70%);
          mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 3;
  padding: 56px 48px;
  min-height: 920px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
  gap: 64px;
}

.hero-top {
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.hero-tag {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-tag .dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,92,31,0.25);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
.hero-tag .stamp {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px; color: rgba(255,255,255,0.78);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn {
  background: white; color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.hero-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.18); }
.hero-cta .btn.primary { background: var(--orange); color: white; }
.hero-cta .btn.primary:hover { background: var(--orange-2); box-shadow: 0 8px 24px rgba(255,92,31,0.4); }

.hero-h1 {
  font-family: var(--ff-sans);
  font-size: clamp(72px, 13.5vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  margin: auto 0;
  max-width: 1300px;
}
.hero-h1 span { display: block; }
.hero-h1 .accent { color: var(--orange); }
.hero-h1 .outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}

.hero-bottom {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px; align-items: end;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.hero-lede {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}
.hero-stat-l {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-stat-v {
  font-family: var(--ff-sans);
  font-size: clamp(40px, 4.4vw, 56px); font-weight: 700; line-height: 1;
  letter-spacing: -0.04em; color: white;
}
.hero-stat-v em { color: var(--orange); font-style: normal; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--ink-2); color: white;
  padding: 28px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-left: 1px solid rgba(255,255,255,0.10);
}
.trust-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex; gap: 14px; align-items: center;
}
.trust-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,92,31,0.5);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.trust-text {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); line-height: 1.5;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--orange); color: white;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  font-family: var(--ff-sans);
  font-size: clamp(24px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  font-stretch: 110%;
  width: max-content;
  animation: scrollLeft 36s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after {
  content: '◆'; font-size: 16px; opacity: 0.8;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ ABOUT BAND (NAVY) ============ */
.about {
  background: var(--navy);
  color: white;
  padding: 140px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '25';
  position: absolute; top: -180px; right: -80px;
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(360px, 50vw, 800px);
  line-height: 1; letter-spacing: -0.06em;
  color: rgba(255,92,31,0.07);
  pointer-events: none;
}
.about-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.about > * { position: relative; z-index: 2; }
.about-num {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--orange-2);
  text-transform: uppercase;
  margin-bottom: 28px; display: block;
}
.about h2 {
  font-family: var(--ff-sans); font-size: clamp(54px, 7.4vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.04em; font-weight: 700; text-transform: uppercase;
}
.about h2 .accent { color: var(--orange); }
.about h2 .underline { position: relative; display: inline-block; }
.about h2 .underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 8px;
  height: 8px; background: var(--orange);
  z-index: -1;
}

.about-right p {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.82);
  max-width: 560px;
}
.about-right p + p { margin-top: 20px; }
.about-signed {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.about-signed-name { font-family: var(--ff-sans); font-size: 18px; font-weight: 600; }
.about-signed-role {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.6);
  text-transform: uppercase; margin-top: 4px;
}
.about-iso {
  margin-left: auto;
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
}
.about-iso .badge {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 700; font-size: 11px;
}

/* ============ SECTION HEAD (shared) ============ */
.sec-head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 48px; align-items: end;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 56px;
}
.sec-head-num {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
  align-self: end; padding-bottom: 4px;
}
.sec-head h2 {
  font-family: var(--ff-sans);
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.04em; font-weight: 700; text-transform: uppercase;
  font-stretch: 110%;
}
.sec-head h2 .accent { color: var(--orange); }
.sec-head h2 .navy   { color: var(--navy); }
.sec-head-desc {
  font-size: 14px; line-height: 1.55; color: rgba(13,13,13,0.62);
  max-width: 280px;
}
.sec-head.dark { border-color: rgba(255,255,255,0.18); }
.sec-head.dark .sec-head-num { color: var(--orange-2); }
.sec-head.dark h2 { color: white; }
.sec-head.dark .sec-head-desc { color: rgba(255,255,255,0.7); }

/* ============ PRODUCTS ============ */
.products {
  padding: 110px 48px 120px;
  background: var(--paper);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.product {
  position: relative; overflow: hidden;
  background: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .35s ease;
  cursor: pointer;
  text-decoration: none;
}
.product:hover { transform: translateY(-6px); }
.product.hero { grid-column: span 8; min-height: 580px; }
.product.tall { grid-column: span 4; min-height: 580px; }
.product.wide { grid-column: span 6; min-height: 380px; }
.product.std  { grid-column: span 3; min-height: 380px; }

.product-img { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.product:hover .product-img img { transform: scale(1.06); }
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,36,71,0.15) 30%, rgba(10,14,20,0.94));
}

.product-label {
  position: absolute; top: 22px; left: 22px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: white;
  display: flex; gap: 10px; align-items: center;
}
.product-label-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.product-pill {
  position: absolute; top: 22px; right: 22px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--orange); color: white;
  padding: 6px 11px;
}

.product-body {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 28px;
  color: white;
  display: flex; flex-direction: column; gap: 14px;
}
.product.hero .product-body { padding: 44px; }
.product-body h3 {
  font-family: var(--ff-sans); font-size: 28px;
  line-height: 1; letter-spacing: -0.025em;
  font-weight: 700; text-transform: uppercase;
}
.product.hero .product-body h3 { font-size: clamp(38px, 4.4vw, 56px); line-height: 0.95; }
.product-body p {
  font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.82);
  max-width: 480px;
}
.product.hero .product-body p { font-size: 16px; }

.product-specs {
  display: flex; gap: 24px; margin-top: 6px; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.product-specs .s strong {
  color: var(--orange-2); display: block; font-size: 22px;
  font-family: var(--ff-sans); font-weight: 700;
  margin-bottom: 2px;
}

.product-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-2);
  margin-top: 8px;
  align-self: flex-start;
}
.product-more::after { content: '→'; transition: transform .25s; }
.product:hover .product-more::after { transform: translateX(4px); }

/* ============ WORKS / PROCESS ============ */
.works { background: var(--ink); }
.works-row { display: grid; grid-template-columns: 1fr 1fr; }
.works-row.flip .works-img { order: 2; }
.works-row.flip .works-copy { order: 1; }

.works-img { position: relative; min-height: 720px; overflow: hidden; }
.works-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.works-row:hover .works-img img { transform: scale(1.03); }
.works-stamp {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: white; text-transform: uppercase;
  background: rgba(10,14,20,0.6); padding: 8px 12px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 10px;
}
.works-stamp::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.works-copy {
  background: var(--navy);
  color: white;
  padding: 90px 72px;
  display: flex; flex-direction: column; gap: 28px;
  justify-content: center;
  position: relative;
}
.works-copy::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.works-copy > * { position: relative; z-index: 1; }
.works-copy-num {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--orange-2);
  text-transform: uppercase;
}
.works-copy h3 {
  font-family: var(--ff-sans); font-size: clamp(38px, 4.6vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.025em; font-weight: 700;
  text-transform: uppercase;
}
.works-copy h3 .accent { color: var(--orange); }
.works-copy-body {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82);
  max-width: 500px;
}

.works-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.works-specs .s {
  padding: 22px 18px 0 0;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.works-specs .s:nth-child(2) { padding-left: 18px; }
.works-specs .s:last-child { border-right: none; padding-left: 18px; padding-right: 0; }
.works-specs .l {
  font-family: var(--ff-mono); font-size: 9px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.works-specs .v {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 30px; margin-top: 6px;
  letter-spacing: -0.025em;
}
.works-specs .v em {
  color: var(--orange); font-style: normal;
  font-size: 18px; margin-left: 2px;
}

.works-more {
  margin-top: 12px;
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-2);
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 18px;
  transition: background .25s, color .25s, border-color .25s;
}
.works-more:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ============ CAPABILITIES ============ */
.capabilities {
  background: var(--paper-2);
  padding: 110px 48px 120px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.cap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--paper-2);
}
.cap {
  background: var(--paper-2);
  padding: 38px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 300px;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.cap::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}
.cap:hover::before { transform: translateY(0); }
.cap > * { position: relative; z-index: 1; transition: color .3s; }
.cap:hover .cap-num,
.cap:hover h4,
.cap:hover p { color: white; }
.cap:hover .cap-num { color: var(--orange-2); }
.cap:hover .cap-icon { background: var(--orange); color: white; }

.cap-num {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
}
.cap h4 {
  font-family: var(--ff-sans); font-size: 26px; line-height: 1.05;
  letter-spacing: -0.025em; font-weight: 700; text-transform: uppercase;
  color: var(--ink);
}
.cap p { font-size: 13px; line-height: 1.55; color: rgba(13,13,13,0.65); }
.cap-icon {
  width: 64px; height: 64px;
  background: var(--ink); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 800; font-size: 32px;
  margin-top: auto;
  transition: background .3s, color .3s;
}

/* ============ INDUSTRIES ============ */
.industries { padding: 110px 48px; background: var(--paper); }
.ind-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card {
  position: relative; min-height: 540px; overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  text-decoration: none;
}
.ind-card img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.ind-card:hover img { transform: scale(1.06); }
.ind-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,36,71,0.15) 30%, rgba(10,14,20,0.96));
  transition: background .3s;
}
.ind-card:hover::after {
  background: linear-gradient(180deg, rgba(14,36,71,0.35) 30%, rgba(10,14,20,0.98));
}
.ind-top {
  position: absolute; top: 24px; left: 24px; right: 24px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
  color: white;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.ind-top .corner {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .3s, border-color .3s, transform .3s;
}
.ind-card:hover .ind-top .corner {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}
.ind-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
  color: white;
  display: flex; flex-direction: column; gap: 16px;
}
.ind-body h3 {
  font-family: var(--ff-sans); font-size: clamp(36px, 3.6vw, 48px); line-height: 0.95;
  letter-spacing: -0.03em; font-weight: 700; text-transform: uppercase;
}
.ind-body p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 340px; }
.ind-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.ind-pill {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 10px; color: rgba(255,255,255,0.85);
}

/* ============ PROCESS (paper) ============ */
.process {
  background: var(--paper-3);
  padding: 110px 48px;
  border-top: 2px solid var(--ink);
}
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.process-step {
  padding: 32px 26px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-3);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: background .3s;
}
.process-step:hover { background: white; }
.process-step .step-n {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.process-step .step-n::before {
  content: ''; width: 22px; height: 1px; background: var(--orange);
}
.process-step h4 {
  font-family: var(--ff-sans); font-size: 22px;
  line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 700; text-transform: uppercase; color: var(--ink);
}
.process-step p {
  font-size: 13px; line-height: 1.55;
  color: rgba(13,13,13,0.65);
}

/* ============ NUMBERS / PROOF (NAVY) ============ */
.numbers {
  background: var(--navy);
  color: white;
  padding: 110px 48px;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.numbers > * { position: relative; z-index: 1; }
.numbers-header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  gap: 32px; flex-wrap: wrap;
}
.numbers h2 {
  font-family: var(--ff-sans);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.035em; font-weight: 700; text-transform: uppercase;
  max-width: 800px;
}
.numbers h2 .accent { color: var(--orange); }
.numbers-header-right {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.num-cell {
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.num-cell:last-child { border-right: none; }
.num-cell:not(:first-child) { padding-left: 32px; }
.num-cell-v {
  font-family: var(--ff-sans);
  font-size: clamp(82px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.05em; font-weight: 700;
}
.num-cell-v em {
  color: var(--orange);
  font-style: normal;
  font-size: clamp(36px, 4vw, 56px);
  margin-left: 2px;
}
.num-cell-l {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.num-cell-desc {
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* ============ PARTNERS ============ */
.partners {
  background: var(--paper-2);
  padding: 64px 48px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.partners-lead {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; gap: 20px; flex-wrap: wrap;
}
.partners-label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
}
.partners-desc {
  font-family: var(--ff-sans); font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em; text-transform: uppercase;
  color: var(--navy);
}
.partners-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.partner {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.partner::before {
  content: '';
  position: absolute; inset: 0;
  background: white;
  transform: translateY(100%);
  transition: transform .3s;
}
.partner:hover::before { transform: translateY(0); }
.partner img {
  max-height: 64px; max-width: 80%; width: auto;
  filter: grayscale(100%) opacity(0.55);
  transition: filter .3s;
  position: relative; z-index: 1;
}
.partner:hover img { filter: none; }

/* ============ FAQ ============ */
.faq {
  padding: 110px 48px;
  background: var(--paper);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  font-family: var(--ff-sans);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-sans); font-weight: 400; font-size: 32px;
  color: var(--orange);
  transition: transform .3s, color .25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 28px;
  max-width: 880px;
  font-size: 16px; line-height: 1.65;
  color: rgba(13,13,13,0.72);
}

/* ============ INSIGHTS ============ */
.insights { background: var(--paper); padding: 110px 48px 120px; }
.ins-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 16px;
}
.ins-card {
  position: relative;
  background: white;
  display: flex; flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  text-decoration: none;
}
.ins-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,36,71,0.12); border-color: transparent; }
.ins-card.feature .ins-img { height: 320px; }
.ins-img { height: 220px; overflow: hidden; }
.ins-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.ins-card:hover .ins-img img { transform: scale(1.06); }
.ins-body {
  padding: 30px; display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.ins-meta {
  display: flex; gap: 14px;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--orange); text-transform: uppercase;
}
.ins-meta .date { color: rgba(13,13,13,0.5); }
.ins-card h3 {
  font-family: var(--ff-sans); font-size: 28px; line-height: 1.05;
  letter-spacing: -0.02em; font-weight: 700; text-transform: uppercase;
  color: var(--navy);
}
.ins-card.feature h3 { font-size: 36px; }
.ins-card p { font-size: 13px; line-height: 1.6; color: rgba(13,13,13,0.65); }
.ins-read {
  margin-top: auto; padding-top: 14px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--ink); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.ins-read::after { content: '→'; color: var(--orange); transition: transform .25s; }
.ins-card:hover .ins-read::after { transform: translateX(4px); }

/* ============ CTA / CONTACT ============ */
.cta-section {
  background: var(--orange); color: white;
  padding: 130px 48px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -160px; top: -160px;
  width: 760px; height: 760px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; left: -100px; bottom: -200px;
  width: 500px; height: 500px;
  background: rgba(14,36,71,0.16);
  border-radius: 50%;
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 520px;
  gap: 80px; align-items: start;
}
.cta-section h2 {
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(64px, 9.4vw, 132px); line-height: 0.86; letter-spacing: -0.05em;
  text-transform: uppercase;
}
.cta-section h2 .outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.cta-lede {
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,0.95);
  margin-top: 36px; max-width: 540px;
}
.cta-channels {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.35);
}
.cta-ch {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.cta-ch:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.35); }
.cta-ch:nth-child(even) { padding-left: 24px; padding-right: 0; }
.cta-ch-l {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.cta-ch-v {
  font-family: var(--ff-sans); font-size: 22px; font-weight: 600;
  margin-top: 8px; letter-spacing: -0.02em;
  word-break: break-word;
}
.cta-ch-v a { transition: opacity .2s; }
.cta-ch-v a:hover { opacity: 0.8; }

.cta-form {
  background: var(--ink); color: white;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.cta-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange);
}
.cta-form h3 {
  font-family: var(--ff-sans); font-size: 30px; font-weight: 700;
  letter-spacing: -0.025em; text-transform: uppercase; line-height: 1;
}
.cta-form .sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 12px; line-height: 1.5; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.cta-form .field { display: flex; flex-direction: column; gap: 8px; }
.cta-form .field.full { grid-column: span 2; }
.cta-form label {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  padding: 10px 0;
  font-size: 15px; font-family: inherit; color: white;
  transition: border-color .25s;
  width: 100%;
}
.cta-form select option { color: var(--ink); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none; border-bottom-color: var(--orange);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-form textarea { min-height: 80px; resize: vertical; }
.cta-form .consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 18px;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  line-height: 1.5;
}
.cta-form .consent input { width: auto; margin-top: 2px; accent-color: var(--orange); }
.cta-form .submit {
  background: var(--orange); color: white;
  padding: 16px 26px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .25s, transform .25s;
}
.cta-form .submit:hover { background: var(--orange-2); transform: translateX(2px); }
.cta-terms {
  font-size: 11px;
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
}
.form-status {
  margin-top: 18px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-2);
  min-height: 18px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 100px 48px 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: 'FHE';
  position: absolute; left: 48px; bottom: -110px;
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(220px, 30vw, 380px);
  line-height: 1; letter-spacing: -0.06em;
  color: rgba(255,92,31,0.04);
  pointer-events: none;
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand .desc {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-brand .iso {
  margin-top: 22px;
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 14px;
}
.footer h5 {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.78);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange-2); }
.footer-col.contact .v {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
}
.footer-col.contact .v a { color: white; }
.footer-bot {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: relative;
  gap: 16px; flex-wrap: wrap;
}
.footer-bot a:hover { color: var(--orange-2); }

.counter { display: inline-block; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1280px) {
  .hero-h1 { font-size: clamp(64px, 12vw, 160px); }
  .about { padding: 110px 36px; gap: 64px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .footer-col:nth-child(4) { display: none; }
}

@media (max-width: 1080px) {
  .utility { padding: 10px 28px; font-size: 10px; }
  .nav { padding: 16px 28px; gap: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); padding: 16px 28px;
    border-radius: 0; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav.menu-open .nav-links a { padding: 14px 16px; border-radius: 8px; }
  .hero-content { padding: 40px 28px; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-bottom .hero-lede { grid-column: span 2; }
  .trust-strip { padding: 24px 28px; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .marquee { padding: 18px 0; }
  .about { grid-template-columns: 1fr; gap: 36px; padding: 90px 28px; }
  .products, .industries, .capabilities, .insights, .partners, .faq, .process, .numbers, .cta-section {
    padding-left: 28px; padding-right: 28px;
  }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head-num { padding-bottom: 0; }
  .sec-head-desc { max-width: 100%; }
  .products-grid { grid-template-columns: repeat(6, 1fr); }
  .product.hero { grid-column: span 6; }
  .product.tall { grid-column: span 6; min-height: 460px; }
  .product.wide { grid-column: span 6; }
  .product.std { grid-column: span 3; }
  .works-row { grid-template-columns: 1fr; }
  .works-row.flip .works-img { order: 1; }
  .works-row.flip .works-copy { order: 2; }
  .works-img { min-height: 420px; }
  .works-copy { padding: 56px 28px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell { padding: 24px !important; border-right: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); }
  .num-cell:nth-child(2n) { border-right: none; }
  .num-cell:nth-last-child(-n+2) { border-bottom: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .ins-grid { grid-template-columns: 1fr 1fr; }
  .ins-card.feature { grid-column: span 2; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-section { padding: 90px 28px; }
  .footer { padding: 80px 28px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .utility { flex-direction: column; gap: 8px; align-items: flex-start; padding: 12px 20px; }
  .utility .left, .utility .right { gap: 16px; }
  .nav { padding: 14px 20px; }
  .nav-brand img { height: 38px; }
  .nav-cta { padding: 12px 18px; font-size: 12px; }
  .nav-cta .arrow { display: none; }
  .hero { min-height: 720px; }
  .hero-content { min-height: 720px; padding: 32px 20px; gap: 36px; }
  .hero-h1 { font-size: clamp(56px, 16vw, 110px); }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom .hero-lede { grid-column: span 1; }
  .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); padding: 16px 0 0; }
  .trust-strip { padding: 20px; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 14px 18px; }
  .about { padding: 72px 20px; }
  .about h2 { font-size: clamp(44px, 10vw, 64px); }
  .products, .industries, .capabilities, .insights, .partners, .faq, .process, .numbers, .cta-section {
    padding-left: 20px; padding-right: 20px;
  }
  .products, .industries, .capabilities, .insights, .faq, .process, .numbers { padding-top: 80px; padding-bottom: 80px; }
  .products-grid { grid-template-columns: 1fr; }
  .product.hero, .product.tall, .product.wide, .product.std { grid-column: span 1; min-height: 360px; }
  .product.hero { min-height: 460px; }
  .cap-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .num-cell { padding: 20px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .num-cell:last-child { border-bottom: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner { height: 110px; }
  .ins-grid { grid-template-columns: 1fr; }
  .ins-card.feature { grid-column: span 1; }
  .cta-section { padding: 72px 20px; }
  .cta-form { padding: 28px 22px; }
  .cta-form .row { grid-template-columns: 1fr; }
  .cta-form .field.full { grid-column: span 1; }
  .cta-channels { grid-template-columns: 1fr; }
  .cta-ch:nth-child(odd) { border-right: none; }
  .cta-ch:nth-child(even) { padding-left: 0; }
  .footer { padding: 64px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}


/* ===========================================================
   SUBPAGE COMPONENTS
   Breadcrumb · page-hero · prose · spec-table · variants
   gallery · application list · related-grid · sub-CTA · 404
   =========================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--ink-2);
  color: rgba(255,255,255,0.7);
  padding: 14px 48px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb ol {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--orange);
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange-2); }
.breadcrumb [aria-current="page"] { color: white; }

/* ---------- Page hero (sub-page) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 110px 48px 100px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.1) saturate(0.85) brightness(0.55);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,92,31,0.20), transparent 55%),
    linear-gradient(160deg, rgba(14,36,71,0.85) 0%, rgba(10,14,20,0.7) 50%, rgba(14,36,71,0.92) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 75%);
          mask-image: linear-gradient(180deg, black 0%, transparent 75%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1240px;
  display: grid; grid-template-columns: 1.7fr 1fr;
  gap: 64px; align-items: end;
}
.page-hero-eyebrow {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--orange);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.page-hero-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--orange);
}
.page-hero h1 {
  font-family: var(--ff-sans);
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-transform: uppercase;
  font-stretch: 110%;
}
.page-hero h1 .accent  { color: var(--orange); }
.page-hero h1 .outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.page-hero-sub {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-top: 24px;
}
.page-hero-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 40px;
  align-self: end;
}
.page-hero-meta .m {
  padding: 18px 18px 0 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.page-hero-meta .m:nth-child(2n) { padding-left: 18px; padding-right: 0; border-right: none; }
.page-hero-meta .m:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
.page-hero-meta .m-l {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.page-hero-meta .m-v {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 30px; letter-spacing: -0.025em;
  margin-top: 6px;
}
.page-hero-meta .m-v em { color: var(--orange); font-style: normal; font-size: 18px; margin-left: 2px; }

/* ---------- Generic content section + prose ---------- */
.section {
  padding: 110px 48px;
  background: var(--paper);
}
.section.alt    { background: var(--paper-2); }
.section.cream  { background: var(--paper-3); }
.section.navy   { background: var(--navy); color: white; position: relative; overflow: hidden; }
.section.navy::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.section.navy > * { position: relative; z-index: 1; }
.section.ink { background: var(--ink); color: white; }

.container { max-width: 1240px; margin: 0 auto; }
.container.narrow { max-width: 880px; }
.container.wide   { max-width: 1480px; }

.split {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: start;
}
.split.even { grid-template-columns: 1fr 1fr; }
.split.flip > *:first-child { order: 2; }

.eyebrow {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--orange);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--orange);
}
.section.navy .eyebrow { color: var(--orange-2); }

.section h2 {
  font-family: var(--ff-sans);
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.035em; font-weight: 700;
  text-transform: uppercase;
  font-stretch: 110%;
}
.section h2 .accent { color: var(--orange); }
.section h2 .navy   { color: var(--navy); }

.section h3 {
  font-family: var(--ff-sans);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.025em; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.prose p {
  font-size: 17px; line-height: 1.65;
  color: rgba(13,13,13,0.78);
  max-width: 680px;
}
.section.navy .prose p,
.section.ink  .prose p { color: rgba(255,255,255,0.82); }
.prose p + p { margin-top: 18px; }
.prose p strong { color: var(--ink); font-weight: 600; }
.section.navy .prose p strong,
.section.ink  .prose p strong { color: white; }

.prose-tight p { font-size: 15px; line-height: 1.6; max-width: 580px; }

.prose ul, .prose ol {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  max-width: 680px;
}
.prose ul li, .prose ol li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid var(--rule);
  font-size: 15px; line-height: 1.55;
  color: rgba(13,13,13,0.78);
}
.prose ul li:last-child, .prose ol li:last-child { border-bottom: 1px solid var(--rule); }
.prose ul li::before {
  content: '◆';
  color: var(--orange);
  font-size: 10px;
  position: absolute; left: 0; top: 16px;
}
.prose ol { counter-reset: oli; }
.prose ol li { counter-increment: oli; }
.prose ol li::before {
  content: counter(oli, decimal-leading-zero);
  position: absolute; left: 0; top: 12px;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.section.navy .prose ul li,
.section.navy .prose ol li,
.section.ink  .prose ul li,
.section.ink  .prose ol li {
  color: rgba(255,255,255,0.82);
  border-top-color: rgba(255,255,255,0.18);
}
.section.navy .prose ul li:last-child,
.section.navy .prose ol li:last-child,
.section.ink  .prose ul li:last-child,
.section.ink  .prose ol li:last-child { border-bottom-color: rgba(255,255,255,0.18); }

.lede {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: rgba(13,13,13,0.85);
  letter-spacing: -0.015em;
  max-width: 880px;
  margin-top: 24px;
}
.section.navy .lede,
.section.ink  .lede { color: rgba(255,255,255,0.92); }

/* ---------- Spec table ---------- */
.spec-table {
  width: 100%;
  border-top: 1px solid var(--rule);
  border-collapse: collapse;
  margin-top: 24px;
}
.spec-table tr { border-bottom: 1px solid var(--rule); }
.spec-table th, .spec-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(13,13,13,0.55);
  font-weight: 500;
  width: 38%;
}
.spec-table td {
  font-family: var(--ff-sans); font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.section.navy .spec-table,
.section.ink  .spec-table { border-top-color: rgba(255,255,255,0.18); }
.section.navy .spec-table tr,
.section.ink  .spec-table tr { border-bottom-color: rgba(255,255,255,0.18); }
.section.navy .spec-table th,
.section.ink  .spec-table th { color: rgba(255,255,255,0.55); }
.section.navy .spec-table td,
.section.ink  .spec-table td { color: white; }

/* ---------- Variant cards ---------- */
.variants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.variant {
  background: white;
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.variant:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,36,71,0.10);
  border-color: transparent;
}
.variant .v-num {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
}
.variant h3 {
  font-family: var(--ff-sans); font-size: 24px;
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.variant p {
  font-size: 14px; line-height: 1.55;
  color: rgba(13,13,13,0.7);
}
.variant .v-img {
  margin: -32px -32px 8px;
  height: 200px; overflow: hidden;
}
.variant .v-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.variant:hover .v-img img { transform: scale(1.05); }
.variant .v-more {
  margin-top: auto; padding-top: 14px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--ink); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.variant .v-more::after {
  content: '→'; color: var(--orange);
  transition: transform .25s;
}
.variant:hover .v-more::after { transform: translateX(4px); }

/* ---------- Feature grid (4-up tiles) ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 36px;
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-grid.two   { grid-template-columns: repeat(2, 1fr); }
.feature-grid .f {
  background: var(--paper-3);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.section.navy .feature-grid,
.section.navy .feature-grid .f {
  border-color: rgba(255,255,255,0.16);
  background: transparent;
}
.feature-grid .f-n {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
}
.feature-grid .f h4 {
  font-family: var(--ff-sans); font-size: 20px;
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; text-transform: uppercase;
  color: var(--ink);
}
.section.navy .feature-grid .f h4 { color: white; }
.feature-grid .f p {
  font-size: 13px; line-height: 1.55;
  color: rgba(13,13,13,0.65);
}
.section.navy .feature-grid .f p { color: rgba(255,255,255,0.75); }

/* ---------- Application chip list ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.chip {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 8px 14px;
  color: var(--ink);
  background: white;
}
.section.navy .chip,
.section.ink  .chip {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  background: transparent;
}

/* ---------- Image gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 32px;
}
.gallery .g-cell {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.gallery .g-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery .g-cell:hover img { transform: scale(1.06); }
.gallery .g-cell.tall  { grid-row: span 2; }
.gallery .g-cell.wide  { grid-column: span 2; }
.gallery .g-cell.hero  { grid-column: span 2; grid-row: span 2; }

/* ---------- Sub-page CTA banner (orange) ---------- */
.sub-cta {
  background: var(--orange);
  color: white;
  padding: 90px 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.sub-cta::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.sub-cta::after {
  content: '';
  position: absolute; left: -120px; bottom: -160px;
  width: 400px; height: 400px;
  background: rgba(14,36,71,0.16);
  border-radius: 50%;
}
.sub-cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 64px; align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.sub-cta h2 {
  font-family: var(--ff-sans);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800; text-transform: uppercase;
}
.sub-cta h2 .outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.sub-cta p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.95);
  max-width: 560px; margin-top: 20px;
}
.sub-cta-actions {
  display: flex; flex-direction: column; gap: 12px;
}
.sub-cta-btn {
  background: var(--ink); color: white;
  padding: 18px 28px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .25s, transform .25s;
}
.sub-cta-btn:hover { background: var(--navy); transform: translateX(2px); }
.sub-cta-btn.alt { background: white; color: var(--ink); }
.sub-cta-btn.alt:hover { background: rgba(255,255,255,0.92); }

/* ---------- Related / cross-link grid ---------- */
.related {
  padding: 90px 48px;
  background: var(--paper-2);
  border-top: 2px solid var(--ink);
}
.related-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap; gap: 16px;
}
.related-head h3 {
  font-family: var(--ff-sans);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1; letter-spacing: -0.025em;
  font-weight: 700; text-transform: uppercase;
  color: var(--ink);
}
.related-head .e {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.related-card {
  position: relative; overflow: hidden;
  background: var(--ink);
  min-height: 320px;
  text-decoration: none;
  color: white;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: transform .3s;
}
.related-card:hover { transform: translateY(-4px); }
.related-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.related-card:hover img { transform: scale(1.05); }
.related-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,36,71,0.05) 0%, rgba(10,14,20,0.92) 90%);
}
.related-card > * { position: relative; z-index: 1; }
.related-card .r-num {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.related-card h4 {
  font-family: var(--ff-sans); font-size: 26px;
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; text-transform: uppercase;
}
.related-card .r-more {
  margin-top: 14px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.related-card .r-more::after { content: '→'; transition: transform .25s; }
.related-card:hover .r-more::after { transform: translateX(4px); }

/* ---------- 404 page ---------- */
.error-page {
  min-height: 70vh;
  background: var(--ink);
  color: white;
  padding: 110px 48px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '404';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(280px, 40vw, 540px);
  color: rgba(255,92,31,0.05);
  pointer-events: none;
  letter-spacing: -0.06em;
}
.error-page-content { position: relative; z-index: 1; max-width: 640px; }
.error-page .e-eyebrow {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.error-page h1 {
  font-family: var(--ff-sans);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96; letter-spacing: -0.04em;
  font-weight: 800; text-transform: uppercase;
}
.error-page h1 .accent { color: var(--orange); }
.error-page p {
  margin-top: 24px;
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.error-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- Map embed wrapper ---------- */
.map-embed {
  position: relative;
  background: var(--ink-2);
  min-height: 480px;
  border: 1px solid var(--rule);
}
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ---------- Big-numbers strip (sub-pages) ---------- */
.bignums {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.bignums .bn {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.bignums .bn:last-child { border-right: none; }
.bignums .bn:not(:first-child) { padding-left: 24px; }
.bignums .bn-v {
  font-family: var(--ff-sans);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.9; letter-spacing: -0.04em;
  font-weight: 700; color: var(--ink);
}
.bignums .bn-v em { color: var(--orange); font-style: normal; font-size: 0.55em; margin-left: 2px; }
.bignums .bn-l {
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.2em; color: rgba(13,13,13,0.55);
  text-transform: uppercase;
}
.section.navy .bignums,
.section.navy .bignums .bn { border-color: rgba(255,255,255,0.18); }
.section.navy .bignums .bn-v { color: white; }
.section.navy .bignums .bn-l { color: rgba(255,255,255,0.55); }

/* ---------- Range table (engineering) ---------- */
.range-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: white;
  border: 1px solid var(--rule);
}
.range-table thead th {
  background: var(--ink); color: white;
  padding: 14px 18px; text-align: left;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.range-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  font-size: 15px; line-height: 1.5;
  color: var(--ink);
}
.range-table tbody td:first-child {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(13,13,13,0.7);
  width: 40%;
}

/* ---------- Compact contact block (used on Contact page) ---------- */
.contact-block {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 32px;
}
.contact-block .cb {
  background: white;
  padding: 36px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-block .cb-icon {
  width: 48px; height: 48px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-weight: 800; font-size: 22px;
}
.contact-block .cb h3 {
  font-family: var(--ff-sans); font-size: 22px;
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; text-transform: uppercase;
  color: var(--navy);
}
.contact-block .cb-line {
  font-size: 15px; line-height: 1.6;
  color: rgba(13,13,13,0.78);
}
.contact-block .cb-line a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.contact-block .cb-line a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ===========================================================
   SUBPAGE RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .breadcrumb { padding: 12px 28px; }
  .page-hero { padding: 80px 28px; }
  .page-hero-content { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-meta { align-self: stretch; }
  .section, .related, .sub-cta { padding-left: 28px; padding-right: 28px; }
  .split, .split.even { grid-template-columns: 1fr; gap: 36px; }
  .split.flip > *:first-child { order: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.three { grid-template-columns: repeat(2, 1fr); }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery .g-cell.hero, .gallery .g-cell.wide { grid-column: span 2; }
  .gallery .g-cell.tall { grid-row: span 1; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .sub-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .bignums { grid-template-columns: repeat(2, 1fr); }
  .bignums .bn { padding: 20px !important; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .bignums .bn:nth-child(2n) { border-right: none; }
  .bignums .bn:nth-last-child(-n+2) { border-bottom: none; }
  .contact-block { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .breadcrumb { padding: 12px 20px; font-size: 10px; letter-spacing: 0.12em; }
  .page-hero { padding: 64px 20px; }
  .section, .related, .sub-cta { padding-top: 64px; padding-bottom: 64px; padding-left: 20px; padding-right: 20px; }
  .feature-grid, .feature-grid.three { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery .g-cell.hero, .gallery .g-cell.wide { grid-column: span 1; }
  .related-grid { grid-template-columns: 1fr; }
  .bignums { grid-template-columns: 1fr; }
  .bignums .bn { border-right: none !important; }
  .page-hero-meta { grid-template-columns: 1fr; }
  .page-hero-meta .m { padding: 16px 0 !important; border-right: none !important; }
}

