/* ==========================================================================
   Heritage Water Systems — 2026 rebuild  ·  v2 "high contrast"
   Single stylesheet. No build step, no dependencies.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* structure */
  --ink:        #03101c;
  --ink-2:      #071d31;
  --ink-3:      #0b2b47;

  /* primary accent — electric cyan/blue */
  --accent:     #00b8d9;
  --accent-2:   #22d3ee;
  --accent-3:   #38e8ff;
  --accent-dk:  #0284a8;
  --blue:       #2563eb;

  /* contrast accent — safety orange. used sparingly, for punch */
  --hot:        #ff6a2b;
  --hot-2:      #ff9142;
  --hot-dk:     #d94e12;

  --surface:    #ffffff;
  --surface-2:  #e4eff7;
  --surface-3:  #cfe0ec;
  --surface-4:  #aec8db;

  /* tinted section washes — the site should never be a wall of white */
  --wash-cool:  linear-gradient(170deg, #eaf4fa 0%, #dceaf5 100%);
  --wash-steel: linear-gradient(165deg, #123954 0%, #0a2740 55%, #08213a 100%);

  --text:       #071d31;
  --text-mute:  #4a627a;
  --text-dim:   #7b93a8;
  --on-dark:    #eaf6fb;
  --on-dark-mute: #c3dae9;

  /* per-card category colour, overridden inline */
  --c:  #2563eb;
  --c2: #60a5fa;

  --radius:     16px;
  --radius-lg:  26px;
  --radius-sm:  10px;

  --shadow-sm:  0 1px 2px rgba(3,16,28,.07), 0 3px 10px rgba(3,16,28,.06);
  --shadow:     0 6px 16px rgba(3,16,28,.09), 0 18px 46px rgba(3,16,28,.12);
  --shadow-lg:  0 10px 30px rgba(3,16,28,.13), 0 34px 80px rgba(3,16,28,.20);

  --wrap:       1220px;
  --wrap-narrow: 880px;

  --font-display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease:       cubic-bezier(.22,.68,.32,1);
  --nav-h:      78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0 0 .5em; font-family: var(--font-display);
  line-height: 1.14; letter-spacing: -.018em; font-weight: 700;
}
h1, .h-xl { letter-spacing: -.026em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent-2); color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent-3); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { position: relative; padding: clamp(66px, 9vw, 124px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--muted { background: var(--surface-2); }

/* soft cool wash — the default "second" background */
.section--tint { background: var(--wash-cool); }
.section--tint::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 52% at 88% 8%, rgba(0,184,217,.14), transparent 68%),
              radial-gradient(52% 46% at 6% 96%, rgba(37,99,235,.11), transparent 68%);
}
.section--tint > .wrap { position: relative; z-index: 1; }

/* mid-tone steel — lighter than --ink, used to break up long pages */
.section--steel { background: var(--wash-steel); color: var(--on-dark); overflow: hidden; }
.section--steel::before {
  content: ""; position: absolute; inset: -30% -10%; pointer-events: none;
  background: radial-gradient(44% 44% at 16% 26%, rgba(0,184,217,.24), transparent 70%),
              radial-gradient(40% 40% at 86% 74%, rgba(37,99,235,.24), transparent 70%);
}
.section--steel > .wrap { position: relative; z-index: 1; }
.section--steel p { color: var(--on-dark-mute); }
.section--steel .eyebrow { color: var(--accent-3); }
.section--steel .lede { color: var(--on-dark-mute); }
.section--steel .checklist li { color: var(--on-dark-mute); }

/* dark sections get a live gradient mesh */
.section--dark { background: var(--ink); color: var(--on-dark); overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: -30% -10%; pointer-events: none;
  background:
    radial-gradient(46% 46% at 12% 22%, rgba(0,184,217,.30), transparent 70%),
    radial-gradient(40% 40% at 88% 20%, rgba(37,99,235,.32), transparent 70%),
    radial-gradient(45% 45% at 62% 92%, rgba(255,106,43,.09), transparent 70%);
}
.section--dark > .wrap { position: relative; z-index: 1; }
.section--dark p { color: var(--on-dark-mute); }

/* thin gradient rule between light sections */
.section--muted + .section::before,
.section + .section--muted::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 45%, var(--blue));
  opacity: .9;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-dk); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}
.section--dark .eyebrow, .pagehead .eyebrow, .hero .eyebrow { color: var(--accent-3); }

.h-xl { font-size: clamp(2.4rem, 5.6vw, 4.3rem); font-weight: 800; }
.h-lg { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.05rem); font-weight: 700; }
.lede { font-size: clamp(1.04rem, 1.5vw, 1.21rem); color: var(--text-mute); max-width: 68ch; }
.section--dark .lede { color: var(--on-dark-mute); }
.section--dark h2, .section--steel h2 { color: #ffffff; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* gradient text for key words */
.grad {
  background: linear-gradient(100deg, var(--accent-3), var(--accent) 35%, var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  font-size: 15px; font-weight: 680; letter-spacing: .012em; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .22s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 45%, var(--blue));
  color: #fff; box-shadow: 0 6px 18px rgba(0,184,217,.40);
}
.btn--primary:hover { box-shadow: 0 14px 36px rgba(0,184,217,.55); }

.btn--hot {
  background: linear-gradient(120deg, var(--hot-2), var(--hot) 60%, var(--hot-dk));
  color: #fff; box-shadow: 0 6px 18px rgba(255,106,43,.42);
}
.btn--hot:hover { box-shadow: 0 14px 36px rgba(255,106,43,.58); }

.btn--ghost { border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: var(--accent-3); color: #fff; }

.btn--outline { border-color: var(--surface-4); color: var(--ink-2); background: var(--surface); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-dk); box-shadow: 0 8px 24px rgba(0,184,217,.22); }

.btn--sm { padding: 11px 21px; font-size: 14px; border-width: 2px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h); overflow: visible;
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header { border-bottom-color: transparent; }
.site-header.is-stuck { border-bottom-color: rgba(255,255,255,.10); }
.site-header::before {
  content: ""; position: absolute; inset: 0 0 -52px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg,
      rgba(16,58,84,.92) 0%,
      rgba(14,52,78,.80) 38%,
      rgba(12,45,69,.52) 64%,
      rgba(11,40,62,.22) 84%,
      rgba(11,40,62,0)  100%);
  backdrop-filter: blur(20px) saturate(1.45);
  -webkit-backdrop-filter: blur(20px) saturate(1.45);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0,0,0,.6) 72%, rgba(0,0,0,.22) 88%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 50%, rgba(0,0,0,.6) 72%, rgba(0,0,0,.22) 88%, transparent 100%);
  transition: background .35s var(--ease), inset .35s var(--ease);
}
.site-header::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 45%, var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.site-header.is-stuck::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(12,44,67,.97), rgba(9,35,56,.95));
  -webkit-mask-image: none; mask-image: none;
}
.site-header.is-stuck::after { transform: scaleX(1); }
.site-header.is-stuck { box-shadow: 0 4px 26px rgba(3,16,28,.10); }

.nav {
  position: relative; z-index: 0;
  display: flex; align-items: center; gap: 20px; width: 100%;
  max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
}
.nav__logo { display: flex; align-items: center; margin-right: auto; }
/* the supplied lockup, used as artwork */
.nav__logo { flex: none; display: flex; align-items: center; }
.nav__logo img { height: 52px; width: auto; transition: height .3s var(--ease); }
.site-header.is-stuck .nav__logo img { height: 44px; }

.nav__links { display: flex; align-items: center; gap: 2px; flex: 0 1 auto; flex-wrap: nowrap; }
.nav__links a {
  position: relative; padding: 10px 13px; border-radius: 999px; white-space: nowrap;
  font-size: 14.4px; font-weight: 660; letter-spacing: .008em; color: #dbeaf5;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 3px;
  border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:hover { color: #ffffff; background: rgba(255,255,255,.13); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: #ffffff; }

/* the frosted bar is light in both states, so type and mark stay full colour */
.nav__links a[aria-current="page"] { background: rgba(255,255,255,.12); }

.nav__burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 12px; position: relative; }
.nav__burger span {
  position: absolute; left: 11px; width: 22px; height: 2.5px; border-radius: 3px;
  background: #eaf4fa; transition: transform .3s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: #eaf4fa !important; }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: #eaf4fa !important; }

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(600px, 92vh, 900px); color: #fff; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.08);
  animation: heroDrift 24s var(--ease) forwards;
  filter: brightness(1.16) saturate(1.08) contrast(1.02);
}
@keyframes heroDrift { to { transform: scale(1); } }
/* lighter scrim than v2 — the photo should read as daylight, with darkening
   concentrated at the bottom where the headline sits */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 62% at 14% 32%, rgba(0,184,217,.20), transparent 70%),
    radial-gradient(50% 55% at 86% 26%, rgba(37,99,235,.22), transparent 72%),
    linear-gradient(180deg, rgba(3,16,28,.46) 0%, rgba(3,16,28,.06) 34%, rgba(3,16,28,.60) 74%, rgba(3,16,28,.90) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: calc(var(--nav-h) + 60px) clamp(60px, 8vw, 112px); width: 100%; }
.hero h1 { max-width: 16ch; margin-bottom: 22px; text-wrap: balance; }
.hero .lede { color: rgba(255,255,255,.9); max-width: 58ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px;
  padding: 8px 18px 8px 13px; border-radius: 999px;
  background: rgba(0,184,217,.16); border: 1px solid rgba(56,232,255,.42);
  backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #d6f7ff;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 0 5px rgba(56,232,255,.26); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(56,232,255,.30); } 50% { box-shadow: 0 0 0 9px rgba(56,232,255,0); } }

.hero__cue { position: absolute; left: 50%; bottom: 26px; z-index: 2; transform: translateX(-50%); }
.hero__cue span { display: block; width: 24px; height: 38px; border: 2px solid rgba(56,232,255,.6); border-radius: 13px; position: relative; }
.hero__cue span::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 8px; border-radius: 2px;
  background: var(--accent-3); transform: translateX(-50%); animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Page header (interior) ---------- */
.pagehead { position: relative; color: #fff; padding-block: calc(var(--nav-h) + 80px) 82px; overflow: hidden; background: var(--ink); }
.pagehead__media { position: absolute; inset: 0; z-index: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 62% at 10% 26%, rgba(0,184,217,.46), transparent 70%),
    radial-gradient(48% 56% at 90% 30%, rgba(37,99,235,.46), transparent 72%),
    radial-gradient(40% 50% at 70% 100%, rgba(255,106,43,.12), transparent 72%),
    linear-gradient(165deg, rgba(3,16,28,.80), rgba(3,16,28,.60));
}
.pagehead::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 40%, var(--blue));
}
.pagehead__inner { position: relative; z-index: 1; }
.pagehead h1 { max-width: 20ch; text-wrap: balance; }
.pagehead .lede { color: rgba(255,255,255,.86); }
.crumbs { font-size: 13.5px; color: rgba(255,255,255,.66); margin-bottom: 16px; letter-spacing: .02em; }
.crumbs a:hover { color: var(--accent-3); }
.crumbs span { opacity: .5; margin-inline: 8px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.stat {
  position: relative; overflow: hidden; padding: 34px 28px; text-align: center;
  border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--surface-3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stat::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--c), var(--c2));
}
.stat::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 130px; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 18%, transparent), transparent);
  opacity: 0; transition: opacity .35s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.stat:hover::after { opacity: 1; }
.stat__n {
  position: relative; z-index: 1;
  font-size: clamp(2.3rem, 4vw, 3.15rem); font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--c), var(--c2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__l { position: relative; z-index: 1; display: block; margin-top: 12px; font-size: 13.5px; font-weight: 620; color: var(--text-mute); letter-spacing: .04em; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--surface-3);
  border-radius: var(--radius); padding: 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--c), var(--c2));
  transform: scaleX(0); transform-origin: left; transition: transform .38s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: -50% -40% auto auto; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 16%, transparent), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }
.card h3 { font-size: 1.17rem; margin-bottom: .45em; }
.card p { color: var(--text-mute); font-size: 15.4px; margin-bottom: 0; }

.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--c), var(--c2));
  color: #fff; box-shadow: 0 6px 16px color-mix(in srgb, var(--c) 40%, transparent);
  transition: transform .32s var(--ease);
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon svg { width: 25px; height: 25px; }

/* ---------- Product / brand cards ---------- */
.brand {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--surface-3); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.brand:hover { transform: translateY(-8px); box-shadow: 0 20px 50px color-mix(in srgb, var(--c) 26%, rgba(3,16,28,.16)); border-color: transparent; }

/* logo-first art panel: the manufacturer's mark is the hero,
   the equipment illustration drops back to a tinted watermark */
/* Clean, neutral logo plate. Vendor logos arrive on white with their own
   palettes — a tinted, patterned panel makes them look pasted on. A near-white
   plate with one thin category rule is what reads as professional. */
.brand__art {
  position: relative; aspect-ratio: 8/5; overflow: hidden;
  display: grid; place-items: stretch; padding: 16px 20px 20px;
  background: linear-gradient(180deg, #fdfefe 0%, #f6fafc 55%, #eef5fa 100%);
  border-bottom: 1px solid var(--surface-3);
}
.brand__art::after { /* single hairline of category colour */
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--c), var(--c2));
  opacity: .85;
}
/* the logo owns the plate: fills it, contain keeps proportions honest */
.brand__logo-main {
  position: relative; z-index: 1;
  width: 100%; height: 100%; max-width: 100%; max-height: 100%;
  object-fit: contain; object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.06);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.brand:hover .brand__logo-main { transform: scale(1.03); filter: contrast(1.14) saturate(1.12); }
.brand:hover .brand__art { background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #f7fbfd 100%); }

/* ---------- RACO band (contact page) ---------- */
.raco-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px);
  background: linear-gradient(135deg, #08243a 0%, #0d3d5c 52%, #082a44 100%);
  border: 1px solid rgba(56,232,255,.34);
  box-shadow: 0 22px 60px rgba(3,16,28,.38), inset 0 1px 0 rgba(255,255,255,.10);
  display: grid; gap: clamp(24px, 3vw, 40px); align-items: center; text-align: left;
}
@media (min-width: 860px) { .raco-band { grid-template-columns: 250px 1fr; } }
.raco-band::before {
  content: ""; position: absolute; inset: -40% -20% auto -20%; height: 320px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(0,184,217,.34), transparent 72%);
}
.raco-band::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 5px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent) 45%, var(--blue));
}
.raco-band > * { position: relative; z-index: 1; }
.raco-band__logo { display: grid; place-items: center; }
.raco-band__logo img { width: 100%; max-width: 232px; height: auto; opacity: .96; }
.raco-band h2 { color: #fff; margin-bottom: .4em; }
.raco-band p { color: #cfe6f4; margin-bottom: 0; }
.raco-band .eyebrow { color: var(--accent-3); }
.raco-band__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.raco-band__actions .btn svg { width: 17px; height: 17px; }

/* Crane family: every mark renders at the SAME height regardless of its aspect
   ratio, so the six cards read as a set rather than six random sizes. */
.brand--family .brand__art {
  aspect-ratio: 15/8; padding: 30px 34px;
  display: grid; place-items: center; place-content: center;
}
.brand--family .brand__logo-main {
  width: auto; height: auto; max-height: 86px; max-width: 92%;
  margin: auto; justify-self: center; align-self: center;
}
.brand--family .brand__wordmark { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.brand--family .brand__body { padding: 26px 28px 28px; }
.brand--family h3 { font-size: 1.42rem; }

/* the parent company mark, sitting above the six brands */
.parentmark {
  width: auto; height: auto; max-height: 64px; max-width: 340px;
  margin: 0 auto 26px; opacity: .97;
}
@media (max-width: 620px) { .parentmark { max-height: 46px; } }

/* two vendor logos arrive with heavy white padding baked in — scale them up
   optically so they match the weight of the rest of the grid */
.brand__logo-main--zoom {
  position: absolute; top: 50%; left: 50%;
  width: calc(100% * var(--zoom, 1.34));
  height: auto; max-width: none; max-height: none;
  transform: translate(-50%, -50%);
  image-rendering: -webkit-optimize-contrast;
}
/* hard stop so a zoom value can never clip the artwork again */
.brand__art { --plate-safe: 1; }
.brand__logo-main--zoom { max-width: calc(100% * var(--zoom, 1.34)); }
.brand:hover .brand__logo-main--zoom { transform: translate(-50%, -50%) scale(1.03); }

/* founding year, sat beside the category tag on the Crane family cards */
.brand__est {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c); background: color-mix(in srgb, var(--c) 11%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 26%, transparent);
}

/* ---------- Photo-backed section ---------- */
.section--photo { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); }
.section__bg { position: absolute; inset: 0; z-index: 0; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .20; }
.section__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(48% 52% at 14% 24%, rgba(0,184,217,.24), transparent 70%),
    radial-gradient(44% 48% at 88% 72%, rgba(37,99,235,.24), transparent 70%),
    linear-gradient(180deg, rgba(3,16,28,.84), rgba(3,16,28,.93));
}
.section--photo > .wrap { position: relative; z-index: 1; }
.section--photo > .wrap > .center h2, .section--photo > .wrap > .center h3 { color: #ffffff; }
.section--photo > .wrap > .center p, .section--photo > .wrap > .center .lede { color: #e2f0f8; }
/* light cards keep their own dark type wherever they sit */
.section--photo .card h3, .section--dark .card h3, .section--steel .card h3 { color: var(--text); }
.section--photo .card p,  .section--dark .card p,  .section--steel .card p  { color: var(--text-mute); }
.section--photo .eyebrow { color: var(--accent-3); }
.section--photo .checklist li { color: var(--on-dark-mute); }

/* ---------- Full-bleed photo divider band ---------- */
.band-photo { position: relative; height: clamp(190px, 24vw, 320px); overflow: hidden; background: var(--ink); }
.band-photo img { width: 100%; height: 100%; object-fit: cover; }
.band-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,16,28,.88) 0%, rgba(3,16,28,.40) 45%, rgba(3,16,28,.78) 100%);
}
.band-photo::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 40%, var(--blue));
}
.band-photo__label {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center;
  padding-inline: 24px;
}
.band-photo__label span {
  display: block; color: #fff; font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 760; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(3,16,28,.7);
}
.band-photo__label small {
  display: block; margin-top: 8px; color: var(--accent-3);
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

.brand__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
/* .section--steel sets a near-white inherited colour; brand cards are white,
   so their headings must reclaim the dark text colour explicitly. */
.brand__body h3 { font-size: 1.14rem; margin-bottom: .45em; color: var(--text); }
.brand__body p { font-size: 14.9px; color: var(--text-mute); margin-bottom: 0; }
.brand__spec {
  margin: 12px 0 0; font-size: 13.2px; font-weight: 620; letter-spacing: .01em;
  color: var(--c); padding-top: 11px; border-top: 1px solid var(--surface-3);
}
/* stand-in for a brand whose logo artwork we do not hold yet */
.brand__wordmark {
  display: grid; place-items: center; width: 100%; height: 100%;
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase; color: var(--c); opacity: .85;
}

.brand__terr {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  padding: 5px 11px; border-radius: 7px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-mute); background: var(--surface-2); border: 1px solid var(--surface-3);
}
.brand__terr svg { width: 12px; height: 12px; flex: none; opacity: .7; }
.brand__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: auto; }
.brand__meta .brand__tag, .brand__meta .brand__terr { margin-top: 0; }

.brand__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 7px;
  margin-top: 18px; padding: 6px 13px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: linear-gradient(120deg, var(--c), var(--c2)); border-radius: 8px;
}

/* ---------- Filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  padding: 11px 22px; border-radius: 999px; border: 2px solid var(--surface-4);
  background: var(--surface); color: var(--ink-2);
  font-size: 14.5px; font-weight: 680; letter-spacing: .015em;
  box-shadow: 0 2px 6px rgba(3,16,28,.06);
  transition: all .22s var(--ease);
}
.filter:hover { border-color: var(--accent); color: var(--accent-dk); transform: translateY(-2px); }
.filter.is-on {
  border-color: transparent; color: #fff;
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 45%, var(--blue));
  box-shadow: 0 6px 18px rgba(0,184,217,.38);
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(34px, 5vw, 70px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .65s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, rgba(0,184,217,.20), transparent 55%);
  mix-blend-mode: overlay;
}

/* product renders arrive on white with dead space around them — they need a
   panel and contain-fit, not a photographic cover crop */
.split__media--product {
  display: grid; place-items: center;
  padding: clamp(22px, 3.4vw, 44px);
  background: linear-gradient(160deg, #ffffff 0%, #f4f9fc 55%, #e9f2f8 100%);
  border: 1px solid var(--surface-3);
  box-shadow: var(--shadow);
}
.split__media--product::after {
  background: none; box-shadow: none; mix-blend-mode: normal;
}
.split__media--product img {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain;
  /* background is knocked out, so the shadow now traces the casting itself */
  filter: drop-shadow(0 18px 30px rgba(3,16,28,.22));
}
.split__media--product:hover img { transform: scale(1.03); }

.checklist { display: grid; gap: 14px; margin: 28px 0 0; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.8px; color: var(--text-mute); }
.checklist li::before {
  content: ""; flex: none; width: 23px; height: 23px; margin-top: 2px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 3px 9px rgba(0,184,217,.36);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), var(--blue));
  background-size: 13px, cover; background-position: center; background-repeat: no-repeat;
}
.section--dark .checklist li { color: var(--on-dark-mute); }

/* ---------- Downloads ---------- */
.dl-group + .dl-group { margin-top: 50px; }
.dl-group__title {
  display: flex; align-items: center; gap: 14px; font-size: 1.3rem; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--c), var(--c2), transparent 70%) 1;
}
.dl-group__title .n { font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: .04em; margin-left: auto;
  background: linear-gradient(120deg, var(--c), var(--c2)); padding: 4px 12px; border-radius: 999px; }

.dl {
  display: flex; align-items: center; gap: 18px; padding: 18px 22px;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.dl:hover {
  transform: translateX(6px); border-color: transparent;
  box-shadow: -4px 0 0 0 var(--c), var(--shadow-sm);
  background: color-mix(in srgb, var(--c) 5%, #fff);
}
.dl__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c), var(--c2)); color: #fff;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--c) 38%, transparent); }
.dl__ic svg { width: 19px; height: 19px; }
.dl__txt { flex: 1; min-width: 0; }
.dl__txt strong { display: block; font-size: 15.5px; font-weight: 650; letter-spacing: -.008em; }
.dl__txt span { display: block; font-size: 13.4px; color: var(--text-mute); margin-top: 2px; }
.dl__meta { flex: none; font-size: 12px; font-weight: 700; color: var(--text-dim); letter-spacing: .05em; text-transform: uppercase; }
.dl__arrow { flex: none; color: var(--surface-4); transition: transform .22s var(--ease), color .22s var(--ease); }
.dl__arrow svg { width: 19px; height: 19px; }
.dl:hover .dl__arrow { color: var(--c); transform: translateY(3px); }
.dl-list { display: grid; gap: 10px; }

/* brand sub-heading inside a download group */
.dl-brand {
  display: flex; align-items: center; gap: 12px;
  margin: 26px 0 12px; font-size: 13px; font-weight: 750;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c);
}
.dl-brand::after { content: ""; flex: 1; height: 1px; background: color-mix(in srgb, var(--c) 26%, transparent); }
.dl-group .dl-brand:first-of-type { margin-top: 8px; }

/* state banner that opens a run of download groups */
.dl-state {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin: 0 0 30px; padding: 18px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--c), var(--c2)); color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--c) 30%, transparent);
}
.dl-state h2 { margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: #fff; }
.dl-state span { font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.dl-section + .dl-section { margin-top: 68px; }

/* ---------- Video grid ---------- */
.video {
  border-radius: var(--radius); overflow: hidden; background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.video:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(0,0,0,.5), 0 0 0 1px var(--accent); border-color: transparent; }
.video__frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__cap { padding: 18px 22px 20px; border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--c), var(--c2), transparent) 1; }
.video__cap h3 { font-size: 1.02rem; color: #fff; margin-bottom: 4px; }
.video__cap span { font-size: 12.5px; font-weight: 620; letter-spacing: .05em; text-transform: uppercase; color: var(--c2); }

/* ---------- Video page: brand groups + filters ---------- */
.vbrand + .vbrand { margin-top: 54px; }
.vbrand__head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px; padding-bottom: 13px;
  border-bottom: 2px solid color-mix(in srgb, var(--c2) 40%, transparent);
}
.vbrand__head h2 { margin: 0; font-size: clamp(1.15rem, 2.1vw, 1.5rem); color: #fff; }
.vbrand__tag {
  padding: 4px 12px; border-radius: 7px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: linear-gradient(120deg, var(--c), var(--c2));
}
.vbrand__n { margin-left: auto; font-size: 12.5px; font-weight: 650; letter-spacing: .05em;
  color: var(--on-dark-mute); text-transform: uppercase; }

.vfilter {
  padding: 11px 22px; border-radius: 999px; border: 2px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.07); color: #dbeaf5;
  font-size: 14.5px; font-weight: 680; letter-spacing: .015em;
  transition: all .22s var(--ease);
}
.vfilter:hover { border-color: var(--accent-3); color: #fff; transform: translateY(-2px); }
.vfilter.is-on {
  border-color: transparent; color: #fff;
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 45%, var(--blue));
  box-shadow: 0 6px 18px rgba(0,184,217,.38);
}

/* ---------- Case study source line ---------- */
.case__src {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 12.8px; color: var(--text-dim);
}
.case__src svg { width: 13px; height: 13px; flex: none; }
.case__src a { color: var(--accent-dk); font-weight: 620; text-decoration: underline; text-underline-offset: 2px; }
.case__quote {
  margin: 18px 0 0; padding: 14px 18px; border-left: 4px solid var(--c, var(--accent));
  background: color-mix(in srgb, var(--c, #00b8d9) 6%, #fff);
  border-radius: 0 10px 10px 0; font-size: 15.4px; font-style: italic; color: var(--text);
}
.case__quote cite { display: block; margin-top: 7px; font-style: normal; font-size: 13px;
  font-weight: 650; color: var(--text-mute); }
.case--mini {
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.case--mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.case--mini h3 { font-size: 1.1rem; margin-bottom: .35em; }
.case--mini > p { color: var(--text-mute); font-size: 15px; margin-bottom: 0; }
.case__where {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; margin-bottom: 12px;
  padding: 5px 12px; border-radius: 7px; font-size: 11.5px; font-weight: 720;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: linear-gradient(120deg, var(--c), var(--c2));
}
.case__stat { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 16px; }
.case__stat div strong { display: block; font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 800; color: var(--c); line-height: 1.1; }
.case__stat div span { font-size: 12.5px; color: var(--text-mute); }

/* ---------- Case studies ---------- */
.case {
  display: grid; grid-template-columns: 1fr; gap: 0; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius-lg);
  transition: box-shadow .32s var(--ease), transform .32s var(--ease);
}
.case:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
@media (min-width: 880px) {
  .case { grid-template-columns: 1.05fr 1fr; }
  .case--flip .case__media { order: 2; }
}
.case__media { position: relative; min-height: 320px; background: var(--ink); overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.case__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(215deg, rgba(0,184,217,.30), transparent 58%);
  mix-blend-mode: overlay;
}
.case:hover .case__media img { transform: scale(1.06); }
.case__body { padding: clamp(30px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.case__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; margin-bottom: 16px;
  padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(120deg, var(--hot-2), var(--hot));
  box-shadow: 0 5px 14px rgba(255,106,43,.35);
}
.case__body h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.case__body p { color: var(--text-mute); font-size: 16px; margin-bottom: 0; }
.case__result { margin-top: 26px; padding-top: 24px; border-top: 2px solid var(--surface-3); display: flex; flex-wrap: wrap; gap: 30px; }
.case__result div strong {
  display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  background: linear-gradient(120deg, var(--accent), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case__result div span { font-size: 12.8px; color: var(--text-mute); }

/* ---------- Team / contact ---------- */
.person {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.person::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--c), var(--c2)); }
.person:hover { transform: translateY(-6px); box-shadow: 0 18px 44px color-mix(in srgb, var(--c) 22%, rgba(3,16,28,.14)); border-color: transparent; }
.person__av {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  font-size: 18px; font-weight: 750; letter-spacing: .02em; color: #fff;
  background: linear-gradient(135deg, var(--c), var(--c2));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--c) 42%, transparent);
}
.person h3 { font-size: 1.1rem; margin-bottom: 3px; }
.person__role { font-size: 12px; color: var(--c); letter-spacing: .09em; text-transform: uppercase; font-weight: 720; margin-bottom: 10px; }

/* territory chip */
.person__terr {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  padding: 5px 12px; border-radius: 8px; font-size: 12.5px; font-weight: 640;
  color: var(--c); background: color-mix(in srgb, var(--c) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--c) 22%, transparent);
}
.person__terr svg { width: 13px; height: 13px; flex: none; opacity: .85; }

/* a second, quieter chip for a line or specialty that sits outside territory */
.person__also {
  display: inline-flex; align-items: center; gap: 7px; margin: -8px 0 16px;
  padding: 5px 12px; border-radius: 8px; font-size: 12.5px; font-weight: 620;
  color: var(--text-mute); background: var(--surface-2);
  border: 1px solid var(--surface-3);
}
.person__also svg { width: 13px; height: 13px; flex: none; opacity: .7; }
.person__also b { color: var(--text); font-weight: 720; }
.person__links { display: grid; gap: 9px; }
.person__links a { display: flex; align-items: center; gap: 10px; font-size: 14.6px; color: var(--text-mute); transition: color .2s var(--ease); word-break: break-all; }
.person__links a:hover { color: var(--c); }
.person__links svg { width: 15px; height: 15px; flex: none; color: var(--c); opacity: .8; }

/* ---------- Form ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-dk); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15.5px; padding: 14px 16px; color: var(--text);
  background: var(--surface); border: 2px solid var(--surface-3); border-radius: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 138px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,184,217,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.form__note { font-size: 13px; color: var(--text-dim); margin: 0; }

.contact-panel {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow);
}
.contact-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 40%, var(--blue));
}

.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--surface-3); }
.info-row:last-child { border-bottom: 0; }
.info-row__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c), var(--c2)); color: #fff;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--c) 38%, transparent); }
.info-row__ic svg { width: 20px; height: 20px; }
.info-row strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--c); margin-bottom: 3px; font-weight: 720; }
.info-row a, .info-row p { font-size: 16px; color: var(--text); margin: 0; }
.info-row a:hover { color: var(--accent-dk); }

/* ---------- Coverage chips ---------- */
.coverage { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.coverage li {
  padding: 10px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 650;
  border: 2px solid rgba(56,232,255,.36); color: #fff;
  background: rgba(0,184,217,.14); backdrop-filter: blur(6px);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.coverage li:hover { transform: translateY(-3px); background: rgba(0,184,217,.28); border-color: var(--accent-3); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10%;
  background:
    radial-gradient(40% 50% at 22% 42%, rgba(0,184,217,.46), transparent 66%),
    radial-gradient(38% 46% at 62% 56%, rgba(37,99,235,.42), transparent 66%),
    radial-gradient(34% 42% at 88% 40%, rgba(255,106,43,.22), transparent 66%);
  pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 40%, var(--blue));
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { max-width: 22ch; text-wrap: balance; }
.cta-band .lede { color: rgba(255,255,255,.86); }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: space-between; padding-block: clamp(58px, 7vw, 92px); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; overflow: hidden; padding-top: 76px; font-size: 15px;
  color: #d3e5f1;
  background: linear-gradient(180deg, #16455f 0%, #0d3048 44%, #082032 100%);
}
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent) 40%, var(--blue));
}
.site-footer::after {
  content: ""; position: absolute; inset: auto -20% -40% -20%; height: 300px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(0,184,217,.16), transparent);
}
.site-footer .wrap { position: relative; z-index: 1; }
.site-footer h4 { color: var(--accent-3); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 720; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }
.footer__logo {
  display: block; margin-bottom: 26px;
}
/* brand cell: mark centred, tagline centred beneath it */
.footer__brand { text-align: center; }
.footer__brand .footer__logo { display: flex; justify-content: center; }
.footer__brand p { max-width: 34ch; margin-inline: auto; }
.footer__logo img {
  height: 72px; width: auto; opacity: 1; margin: 0;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.4));
}
.footer__grid p { font-size: 14.8px; line-height: 1.7; margin-bottom: 0; }
.footer__grid a { color: #cfe3f0; transition: color .2s var(--ease); }
.footer__grid a:hover { color: var(--accent-3); }
.footer__grid li { margin-bottom: 11px; font-size: 14.8px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0 28px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 13.4px; color: #92adbf;
}
.footer__bar a { color: #92adbf; }
.footer__bar a:hover { color: var(--accent-3); }
.footer__bar-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
.reveal[data-d="5"] { transition-delay: .35s; }

/* ---------- Video facade (thumbnail until clicked) ---------- */
.video__frame img.video__thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .35s var(--ease);
}
.video:hover .video__thumb { transform: scale(1.05); filter: brightness(1.06); }
.video__play {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2;
  display: grid; place-items: center; border: 0; padding: 0;
  background: linear-gradient(180deg, rgba(3,16,28,.10), rgba(3,16,28,.55));
  transition: background .3s var(--ease);
}
.video__play:hover { background: linear-gradient(180deg, rgba(3,16,28,.04), rgba(3,16,28,.42)); }
.video__play span {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c, var(--accent)), var(--c2, var(--blue)));
  box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video__play:hover span { transform: scale(1.1); box-shadow: 0 14px 38px rgba(0,0,0,.55), 0 0 0 12px rgba(255,255,255,.18); }
.video__play svg { width: 26px; height: 26px; margin-left: 4px; color: #fff; }

/* ---------- Line cards ---------- */
.linecard {
  display: grid; grid-template-columns: 1fr; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-3); border-radius: var(--radius-lg);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.linecard:hover { transform: translateY(-6px); box-shadow: 0 22px 54px color-mix(in srgb, var(--c) 24%, rgba(3,16,28,.16)); border-color: transparent; }
@media (min-width: 820px) { .linecard { grid-template-columns: 300px 1fr; } }

.linecard__preview {
  position: relative; background: linear-gradient(150deg, var(--c), var(--c2));
  padding: 26px 26px 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.linecard__preview::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 80% 6%, rgba(255,255,255,.26), transparent 62%);
}
.linecard__preview img {
  position: relative; z-index: 1; width: 100%; max-width: 230px; height: auto;
  border-radius: 8px 8px 0 0; box-shadow: 0 -2px 0 rgba(255,255,255,.5), 0 18px 40px rgba(3,16,28,.42);
  transition: transform .45s var(--ease);
}
.linecard:hover .linecard__preview img { transform: translateY(-8px); }

.linecard__body { padding: clamp(26px, 3.4vw, 40px); display: flex; flex-direction: column; }
.linecard__state {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; margin-bottom: 14px;
  padding: 7px 15px; border-radius: 999px; font-size: 12px; font-weight: 720;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(120deg, var(--c), var(--c2));
  box-shadow: 0 5px 14px color-mix(in srgb, var(--c) 40%, transparent);
}
.linecard__body h3 { font-size: clamp(1.35rem, 2.3vw, 1.7rem); margin-bottom: .35em; }
.linecard__body > p { color: var(--text-mute); font-size: 15.6px; }

.linecard__lines { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 24px; }
.linecard__lines li {
  padding: 6px 13px; border-radius: 8px; font-size: 13.2px; font-weight: 600;
  color: var(--c); background: color-mix(in srgb, var(--c) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--c) 24%, transparent);
}
.linecard__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

.linecard__meta {
  display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 20px;
  padding-bottom: 18px; border-bottom: 1px solid var(--surface-3);
  font-size: 13px; color: var(--text-dim); font-weight: 600; letter-spacing: .03em;
}
.linecard__meta b { color: var(--c); font-weight: 720; }

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
  .nav { gap: 14px; }
  .nav__links a { padding: 9px 10px; font-size: 13.8px; }
  .nav__logo img { height: 48px; }
  .nav__cta { padding: 10px 16px; font-size: 13.4px; }
}
@media (max-width: 1040px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 1180px) {
  :root { --nav-h: 70px; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,40,62,.98); backdrop-filter: blur(22px);
    padding: 14px 24px 26px; box-shadow: 0 22px 48px rgba(3,16,28,.42);
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  body.nav-open .nav__links { transform: none; opacity: 1; visibility: visible; }
  .site-header:not(.is-stuck) .nav--over .nav__links a { color: var(--ink-2); }
  .nav__links a { padding: 15px 6px; font-size: 16.5px; border-bottom: 1px solid rgba(255,255,255,.10); border-radius: 0; }
  .nav__links a::after { display: none; }
  .nav__links a[aria-current="page"] { color: var(--accent-3); background: none; }
  .nav__logo img { height: 44px; }
  .site-header.is-stuck .nav__logo img { height: 40px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header::before { opacity: 1; }
  body.nav-open .site-header::after { transform: scaleX(1); }
  body.nav-open .nav--over .nav__logo img { filter: none !important; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .dl { flex-wrap: wrap; gap: 12px; }
  .dl__meta { margin-left: 60px; }
  .hero__actions .btn { width: 100%; }
  .case__result { gap: 20px; }
  .filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; margin-inline: -20px; padding-inline: 20px; }
  .filter { flex: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Full state names run long in the territory pills — let them wrap instead of
   forcing the card wider. */
.brand__terr {
  white-space: normal; line-height: 1.35; text-align: left;
  font-size: 11.6px; letter-spacing: .02em;
}
.brand__meta { flex-wrap: wrap; row-gap: 8px; align-items: flex-start; }

/* Compact line-card previews (home page): the panel is sized by the sheet, so
   there is no dead colour block and the proportions match the real document. */
.linecard--mini { grid-template-columns: 1fr; }
@media (min-width: 820px) { .linecard--mini { grid-template-columns: 1fr; } }
.linecard--mini .linecard__preview { padding: 20px 20px 0; }
.linecard--mini .linecard__preview img { max-width: 100%; }
.linecard--mini .linecard__body { padding: 18px 20px 22px; }

/* Legal pages carry the brand block on its own, full width. */
.footer__grid--slim { grid-template-columns: 1fr; padding-bottom: 38px; }

/* Photograph in the split panel: real photo treatment, not the white product
   panel — cover crop at the picture's own proportions, no drop shadow. */
/* Photograph sits in a soft mat rather than butting straight against the page:
   a light frame, a hairline around the image, and a shadow that fades out. */
.split__media--photo {
  padding: 9px;
  background: linear-gradient(158deg, #ffffff 0%, #f3f9fc 55%, #e8f1f8 100%);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(3,16,28,.06), 0 16px 40px rgba(3,16,28,.13);
  align-self: center;
}
.split__media--photo::after {
  inset: 9px;
  border-radius: calc(var(--radius-lg) - 9px);
  background: linear-gradient(200deg, rgba(0,184,217,.13), transparent 62%);
  mix-blend-mode: overlay; box-shadow: none;
}
.split__media--photo img {
  width: 100%; height: 100%; aspect-ratio: 16/9;
  object-fit: cover; object-position: center 50%; filter: none;
  border-radius: calc(var(--radius-lg) - 9px);
  box-shadow: 0 0 0 1px rgba(3,16,28,.13);
}
@media (max-width: 620px) { .split__media--photo { padding: 6px; } }

/* Give the photograph a bigger share of the row than the text — enough to
   carry the section without dominating it. */
@media (min-width: 940px) {
  .split--media-wide { grid-template-columns: 1fr 1.34fr; }
}

/* "Who we are" runs as its own tinted band across the full width, behind the
   text and the photograph alike, so the section stops floating on white.
   A plant photo sits underneath at low opacity — kept sharp, never blurred,
   and masked so it fades out well before it reaches the copy. */
.section--intro { background: var(--wash-cool); overflow: hidden; }
.section--intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("img/plant-aerial-rect-basins.jpg") center 38% / cover no-repeat;
  opacity: .085;
  filter: grayscale(.4) contrast(1.04);
  -webkit-mask-image: linear-gradient(108deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.62) 38%, rgba(0,0,0,.18) 66%, transparent 84%);
          mask-image: linear-gradient(108deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.62) 38%, rgba(0,0,0,.18) 66%, transparent 84%);
}
.section--intro::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(56% 60% at 88% 6%, rgba(0,184,217,.13), transparent 66%),
              radial-gradient(50% 46% at 4% 94%, rgba(37,99,235,.10), transparent 68%);
}
.section--intro > .wrap { position: relative; z-index: 1; }

/* the photo mat is now sitting on tint, not white — lighten its frame to suit */
.section--intro .split__media--photo {
  background: linear-gradient(158deg, #ffffff 0%, #f7fbfd 60%, #eef6fb 100%);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 2px 6px rgba(3,16,28,.07), 0 18px 46px rgba(3,16,28,.15);
}

/* The heading now spans the whole band, above both the copy and the photo,
   instead of being squeezed into the left column. */
.intro__head { max-width: 100%; margin-bottom: clamp(30px, 4vw, 48px); }
.intro__head h2 { margin-bottom: 0; max-width: 24ch; }
@media (min-width: 940px) { .intro__head h2 { max-width: 100%; } }
.section--intro .split { align-items: start; }
.section--intro .split__media--photo { align-self: start; }

/* "Who we are" without a photograph: copy on the left, the four points on the
   right, so the section stays balanced instead of one long column of text. */
.intro__cols { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 900px) { .intro__cols { grid-template-columns: 1.05fr 1fr; } }
.intro__cols .checklist { margin-top: 4px; }
.intro__cols .lede { margin-bottom: 0; }
