/* ACR North — About Us
   Compiled from the Claude Design component "About Us.dc.html"
   (plus the shared "Site Header" and "Site Footer" components).
   Values below are carried over verbatim from the design's inline styles. */

:root {
  --accent: #f5b81c;
  --blue: #1657c4;
  --blue-dark: #0e3f96;
  --navy: #0a1424;
  --navy-deep: #070e1c;
  --ink: #10151f;
  --slate: #51607a;
  --slate-mid: #3a4658;
  --hairline: #e5e9f0;
  --hairline-soft: #dde3ec;
  --surface: #f4f6fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Switzer', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
::selection { background: var(--blue); color: #fff; }

@keyframes acrFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

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

/* ── Site header ───────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(10, 20, 36, .97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header-inner {
  margin: 0 auto;
  padding: 14px clamp(20px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-width: 0;
}

.logo-link { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.logo { height: clamp(76px, 11.7vw, 135px); width: auto; display: block; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-item { position: relative; }

.nav-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .01em;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color .2s ease;
}
.nav-link:hover { color: #fff; border-bottom-color: var(--accent); }
.nav-link.is-active { border-bottom-color: var(--accent); }
.nav-chevron { margin-left: 6px; vertical-align: -1px; }

.nav-drop {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 8px;
  z-index: 70;
  display: none;
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop { display: block; }

.nav-drop-inner {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  min-width: 225px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.nav-drop-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 20px;
  display: block;
  transition: background .18s ease, color .18s ease;
}
.nav-drop-link:hover { background: rgba(245, 184, 28, .1); color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.header-cta {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: filter .2s ease;
}
.header-cta:hover { filter: brightness(.93); color: var(--navy); }

.burger {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #fff;
  transition: border-color .2s ease, color .2s ease;
}
.burger:hover { border-color: var(--accent); color: var(--accent); }
.burger .icon-close { display: none; }
.burger[aria-expanded="true"] .icon-open { display: none; }
.burger[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 4px clamp(20px, 3vw, 44px) 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.mobile-nav.is-open { display: flex; }

.mobile-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16.5px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-link:hover { color: var(--accent); }
.mobile-link.is-active { color: var(--accent); }

.mobile-sub {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 2px 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.mobile-sub:hover { color: var(--accent); }

.mobile-cta {
  margin-top: 18px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .03em;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mobile-cta:hover { filter: brightness(.93); color: var(--navy); }

@media (max-width: 939px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}

/* Tablets. The Services dropdown opens on :hover / :focus-within, which a touch
   device cannot drive - on an iPad in landscape the viewport is wide enough for
   the desktop nav, so its four sub-pages would be unreachable. Any pointer that
   cannot hover gets the burger menu instead, which lists them. */
@media (hover: none) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 539px) {
  .header-cta-number { display: none; }
  .header-cta { padding: 13px 15px; }
}

/* ── Shared page furniture ─────────────────────────────────────────────── */

.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 52px); }
.section-white { background: #fff; }
.section-surface { background: var(--surface); }
.section-navy { background: var(--navy); }
.inner { max-width: 1340px; margin: 0 auto; }

.tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
}
.tag-accent { background: var(--accent); color: var(--navy); }

.h2 {
  margin: 26px 0 0;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h2-light { color: #fff; }

.lede {
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  color: var(--slate);
}
.lede-light { color: rgba(255, 255, 255, .72); }

.section-head { margin-bottom: clamp(36px, 4vw, 56px); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 18px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  background: var(--navy);
  padding: clamp(190px, 17vw, 250px) clamp(20px, 5vw, 52px) clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 24, .84), rgba(14, 18, 26, .6) 48%, rgba(16, 18, 22, .3));
}
.page-hero-scrim-deep {
  background: linear-gradient(90deg, rgba(12, 16, 24, .86), rgba(14, 18, 26, .62) 48%, rgba(16, 18, 22, .34));
}
.page-hero-body {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  animation: acrFade .8s ease both;
}

.eyebrow-pair { display: inline-flex; align-items: center; gap: 0; margin-bottom: 20px; }
.eyebrow-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 9px 15px;
}
.eyebrow-accent {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 15px;
}

.page-hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -.022em;
  color: #fff;
  text-transform: uppercase;
  max-width: 900px;
}
.page-hero-lede {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

/* ── Our story ─────────────────────────────────────────────────────────── */

.story-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 72px);
  align-items: flex-start;
}
.story-copy { flex: 1.1 1 460px; min-width: 300px; }
.story-copy .lede { max-width: 760px; }
.story-copy .lede + .lede { margin-top: 20px; }

.rule { height: 1px; background: var(--hairline); margin: clamp(30px, 3.4vw, 44px) 0; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(26px, 3vw, 44px);
}
.story-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 16px;
}
.story-grid-head h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: -.01em;
  color: var(--ink);
}
.chip-blue {
  width: 14px;
  height: 14px;
  background: var(--blue);
  display: block;
  flex: 0 0 auto;
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}
.story-grid p { margin: 18px 0 0; font-size: 15px; line-height: 1.65; color: var(--slate); }

.story-media { flex: 1 1 440px; min-width: min(340px, 100%); }
.story-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(10, 26, 51, .14);
}

.stat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.stat {
  border-radius: 10px;
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.stat-blue { background: var(--blue); }
.stat-accent { background: var(--accent); }
.stat-mark { width: 22px; height: 22px; border: 2.5px solid #fff; display: block; }
.stat-mark-diamond { transform: rotate(45deg); }
.stat-accent .stat-mark { border-color: var(--navy); }
.stat-value {
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.stat-label {
  margin-top: 12px;
  font-size: 13.5px;
  color: #fff;
  border-bottom: 1.5px solid #fff;
  display: inline-block;
  padding-bottom: 2px;
}
.stat-accent .stat-value,
.stat-accent .stat-label { color: var(--navy); }
.stat-accent .stat-label { border-bottom-color: var(--navy); }

/* ── Pillars ───────────────────────────────────────────────────────────── */

.pillar {
  background: #fff;
  border-radius: 10px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  margin-bottom: 20px;
}
.pillar-icon-accent { background: var(--accent); }
.pillar-icon-mark { width: 15px; height: 15px; border: 2.5px solid #fff; display: block; }
.pillar-icon-accent .pillar-icon-mark { border-color: var(--navy); }
.tf-diamond { transform: rotate(45deg); }
.tf-skew { transform: skewX(-12deg); }

.pillar h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.rule-soft { height: 1px; background: var(--hairline-soft); margin: 20px 0 22px; }
.pillar p { margin: 0 0 22px; font-size: 15px; line-height: 1.65; color: var(--slate); flex: 1; }

.link-blue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}
.link-blue:hover { color: var(--blue-dark); }
.arrow-ne { display: inline-block; transform: rotate(-45deg); }

/* ── Industries ────────────────────────────────────────────────────────── */

.industry {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
  text-decoration: none;
  transition: filter .25s ease;
}
.industry:hover { filter: brightness(1.06); }
.industry img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.industry-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, .05) 30%, rgba(10, 20, 36, .88));
}
.industry-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px, 2.4vw, 30px); }
.industry-body h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  color: #fff;
  letter-spacing: -.01em;
}
.industry-body p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}

/* ── Partners ──────────────────────────────────────────────────────────── */

.partners-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 84px);
  align-items: flex-start;
}
.partners-copy { flex: 1.2 1 440px; min-width: 300px; }
.partners-copy .lede { max-width: 640px; }

.partners-list {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.partner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  padding: 24px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.partner-logo {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
}
.partner-logo-tall { padding: 12px 18px; }
.partner-logo img { width: auto; display: block; }
.partner p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .66);
}

/* ── Safety & compliance ───────────────────────────────────────────────── */

.safety-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 84px);
  align-items: flex-start;
}
.safety-copy { flex: 1.4 1 480px; min-width: 300px; }
.safety-copy .lede { max-width: 700px; }

.safety-grid {
  flex: 1 1 320px;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.safety-card { background: #fff; border-radius: 10px; padding: clamp(20px, 2.4vw, 30px); }
.safety-value {
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--blue);
}
.safety-card p { margin: 10px 0 0; font-size: 14px; line-height: 1.55; color: var(--slate); }

/* ── CTA ───────────────────────────────────────────────────────────────── */

.cta { background: var(--blue); padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 52px); }
.cta-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-copy { max-width: 640px; }
.cta-copy h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -.018em;
  color: #fff;
  line-height: 1.06;
}
.cta-copy p { margin: 16px 0 0; font-size: 1.05rem; line-height: 1.6; color: rgba(255, 255, 255, .85); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.btn-accent {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  transition: filter .2s ease;
}
.btn-accent:hover { filter: brightness(.93); color: var(--navy); }

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

/* ── Site footer ───────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .66);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 52px) 34px;
}
.footer-inner { max-width: 1340px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { flex: 1 1 320px; max-width: 430px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
.footer-logo { height: 64px; width: auto; display: block; }
.footer-tagline {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: #fff;
  max-width: 380px;
}
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); }
.footer-col-title {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.footer-link { color: rgba(255, 255, 255, .62); text-decoration: none; font-size: 14.5px; }
.footer-link:hover { color: var(--accent); }
.footer-address { color: rgba(255, 255, 255, .62); }
.break { word-break: break-all; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-ack {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  max-width: 680px;
  line-height: 1.6;
}
.footer-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-meta p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .45); }
.footer-credit { color: rgba(255, 255, 255, .62); text-decoration: underline; }
.footer-credit:hover { color: var(--accent); }

@media (max-width: 560px) {
  .footer-meta { align-items: flex-start; }
}

/* ── Intro + side card (inner pages) ───────────────────────────────────── */

.intro-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 84px);
  align-items: flex-start;
}
.intro-copy { flex: 1.4 1 480px; min-width: 300px; }
.intro-copy .lede { max-width: 700px; }
.intro-copy .lede + .lede { margin-top: 20px; }

.side-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--navy);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 36px);
}
.side-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  margin-bottom: 18px;
}
.side-card-icon-mark { width: 15px; height: 15px; border: 2.5px solid var(--navy); display: block; }
.side-card h3 { margin: 0; font-weight: 700; font-size: 1.35rem; color: #fff; letter-spacing: -.01em; }
.side-card p { margin: 14px 0 22px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .7); }
.btn-accent-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: filter .2s ease;
}
.btn-accent-sm:hover { filter: brightness(.93); color: var(--navy); }

/* ── Stat band (navy, gold rule) ───────────────────────────────────────── */

.statband { background: var(--navy); padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 52px); }
.statband-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.statband-item { border-left: 2px solid var(--accent); padding-left: clamp(16px, 2vw, 24px); }
.statband-value {
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.statband-item p { margin: 10px 0 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .62); }

/* ── Equipment list cards ──────────────────────────────────────────────── */

.cards-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-start; }
.cards-col { flex: 1 1 340px; min-width: 300px; display: flex; flex-direction: column; gap: 18px; }

.card { background: var(--surface); overflow: hidden; border-radius: 10px; }
.card-wide { flex: 1 1 380px; min-width: 300px; }
.card-below { margin-top: 18px; }
.card-pad { padding: clamp(24px, 3vw, 40px); }
.card h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  margin-bottom: 20px;
}
.card-icon-blue { background: var(--blue); }
.card-icon-accent { background: var(--accent); }
.card-icon-mark { width: 15px; height: 15px; border: 2.5px solid #fff; display: block; }
.card-icon-mark-dark { border-color: var(--navy); }

.bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bullets-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 14px 48px;
}
.bullets li { display: flex; gap: 12px; align-items: flex-start; }
.bullets span:last-child { color: var(--slate-mid); line-height: 1.45; font-size: .99rem; }
.bullet {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
}
.tf-diamond-sm { transform: rotate(45deg) scale(.85); }

/* ── Plain gradient hero (Location, Contact) ───────────────────────────── */

.page-hero-plain { padding-bottom: clamp(56px, 7vw, 90px); }
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1424, #12233f 55%, #16305a);
}

/* ── Info cards (light, icon + copy) ───────────────────────────────────── */

.info-col { flex: 1 1 320px; min-width: 280px; display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--surface); border-radius: 10px; padding: clamp(24px, 3vw, 36px); }
.info-card h3 { margin: 0; font-weight: 700; font-size: 1.3rem; color: var(--ink); letter-spacing: -.01em; }
.info-card p { margin: 14px 0 0; font-size: 15px; line-height: 1.6; color: var(--slate); }
.info-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  margin-bottom: 18px;
}

/* ── Map ───────────────────────────────────────────────────────────────── */

.map-wrap {
  position: relative;
  overflow: hidden;
  background: #dfe5ee;
  box-shadow: 0 24px 60px rgba(10, 26, 51, .12);
  height: clamp(420px, 58vh, 600px);
  border-radius: 10px;
}
.map-frame { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }
.map-badge {
  position: absolute;
  top: clamp(16px, 2.5vw, 26px);
  left: clamp(16px, 2.5vw, 26px);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 11px 16px;
  border-radius: 6px;
}
.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -118%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-card { background: #fff; border-radius: 10px; box-shadow: 0 12px 30px rgba(10, 26, 51, .3); padding: 8px 12px; }
.map-pin-card img { height: 52px; width: auto; display: block; }
.map-pin-tip {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  filter: drop-shadow(0 4px 6px rgba(10, 26, 51, .25));
}
.map-card {
  position: absolute;
  top: clamp(16px, 2.5vw, 26px);
  right: clamp(16px, 2.5vw, 26px);
  max-width: 330px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 26, 51, .2);
}
.map-card-top { height: 6px; background: var(--accent); }
.map-card-body { padding: 26px 26px 28px; }
.map-card-title { font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 18px; letter-spacing: -.01em; }
.map-card-rows { display: flex; flex-direction: column; gap: 15px; margin-bottom: 22px; }
.map-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.map-card-value { font-size: 15px; line-height: 1.45; color: var(--slate-mid); display: block; }
a.map-card-value { text-decoration: none; font-weight: 600; }
a.map-card-value:hover { color: var(--blue); }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 22px;
  text-decoration: none;
  transition: background .2s ease;
}
.btn-blue:hover { background: var(--blue-dark); color: #fff; }
.map-legend {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 26px);
  left: clamp(16px, 2.5vw, 26px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 26, 51, .18);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.map-legend div { display: flex; align-items: center; gap: 9px; }
.map-legend span:last-child { font-size: 12.5px; font-weight: 600; color: var(--slate-mid); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 auto; }
.legend-dot-blue { background: var(--blue); }
.legend-dot-accent { background: var(--accent); }

@media (max-width: 900px) {
  .map-wrap { height: auto; }
  .map-frame { height: clamp(340px, 46vh, 460px); }
  .map-card { position: static; max-width: none; }
  .map-pin, .map-legend { display: none; }
}

/* ── Contact ───────────────────────────────────────────────────────────── */

.contact-section {
  background: var(--navy);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 52px) clamp(72px, 9vw, 128px);
}
.contact-cols { max-width: 1340px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 80px); }
.contact-details { flex: 1 1 340px; }
.contact-lede { margin: 0 0 34px; font-size: 1.1rem; line-height: 1.62; color: rgba(255, 255, 255, .76); max-width: 440px; }
.contact-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  transition: padding-left .2s ease;
}
a.contact-row:hover { padding-left: 8px; }
.contact-row-static { flex-direction: column; align-items: flex-start; gap: 4px; }
.contact-row-text { display: flex; flex-direction: column; gap: 4px; }
.contact-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.contact-row-value { font-size: 1.18rem; font-weight: 700; color: #fff; }
.contact-row-arrow { color: var(--accent); font-size: 20px; }

.contact-form-col { flex: 1 1 400px; }
.form { display: flex; flex-direction: column; gap: 16px; background: #fff; padding: clamp(26px, 3vw, 42px); }
.form-row { display: flex; flex-wrap: wrap; gap: 16px; }
.field { flex: 1 1 160px; display: flex; flex-direction: column; gap: 7px; }
.field-block { flex: 1 1 100%; }
.field-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--slate);
}
.form input, .form textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #d4dbe6;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form textarea { resize: vertical; }
.form input:focus, .form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 87, 196, .14);
}
.btn-submit { margin-top: 4px; border: none; cursor: pointer; justify-content: center; }

/* ── Capability strip ──────────────────────────────────────────────────── */

.cap-strip {
  background: #fff;
  border-bottom: 1px solid #e9edf3;
  padding: clamp(30px, 4vw, 46px) clamp(20px, 5vw, 52px);
}
.cap-strip-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.cap { display: flex; flex-direction: column; align-items: center; }
.cap-label {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: -.01em;
  color: var(--ink);
  text-transform: uppercase;
}
/* The strip wraps to two rows on a tablet; space-between would leave the last
   item flush left on its own. */
@media (max-width: 939px) { .cap-strip-inner { justify-content: center; } }
@media (max-width: 639px) { .cap-strip { display: none; } }

/* ── Service cards (light, image | copy) ───────────────────────────────── */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.svc-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 26, 51, .1);
  border-radius: 10px;
  overflow: hidden;
}
.svc-card-media { padding: clamp(14px, 1.6vw, 22px); }
.svc-card-media img { display: block; width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.svc-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 44px) clamp(22px, 2.6vw, 40px);
}
.svc-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}
.svc-card-icon-mark { width: 18px; height: 18px; border: 2.5px solid #fff; display: block; }
.svc-card-body h3 {
  margin: 22px 0 0;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
.rule-hair { height: 1px; background: var(--hairline); margin: 20px 0; }
.svc-card-body p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--slate); }
.svc-card-body .link-blue { margin-top: 22px; }

/* ── Inner-page blocks ─────────────────────────────────────────────────── */

.intro-block { margin-bottom: clamp(48px, 5vw, 72px); }

.photo-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.photo-pair img {
  width: 100%;
  height: clamp(240px, 30vw, 420px);
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 18px;
  margin-top: 18px;
}
.panel { background: var(--surface); border-radius: 10px; padding: clamp(24px, 3vw, 40px); }
.panel h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.page-hero-scrim-deepest {
  background: linear-gradient(90deg, rgba(12, 16, 24, .88), rgba(14, 18, 26, .64) 48%, rgba(16, 18, 22, .36));
}
.page-hero-scrim-services {
  background: linear-gradient(90deg, rgba(12, 16, 24, .86), rgba(14, 18, 26, .6) 48%, rgba(16, 18, 22, .32));
}
.page-hero-img-30 { object-position: center 30%; }
/* The About hero photo is ~1.69:1 in a hero band that runs wider than that, so
   cover drops rows off it. Pin it to its bottom edge to keep the utes in. */
.page-hero-img-about { object-position: center bottom; }
.page-hero-title-wide { max-width: 980px; font-size: clamp(2.2rem, 4.6vw, 3.8rem); }

/* ── Numbered process steps (Fabrication) ──────────────────────────────── */

.steps { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-direction: column; gap: clamp(24px, 3vw, 34px); }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 2px solid var(--accent);
  padding-left: clamp(16px, 2vw, 24px);
}
.step-num {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--accent);
}
.step h3 { margin: 0; font-weight: 700; font-size: 1.15rem; color: #fff; letter-spacing: -.01em; }
.step p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .62); }

.split { display: flex; flex-wrap: wrap; gap: clamp(40px, 5vw, 72px); align-items: stretch; }
.split-copy { flex: 1.3 1 440px; min-width: 300px; }
.split-copy .lede { max-width: 640px; margin-top: 24px; }
.split-media { flex: 1 1 320px; min-width: 280px; display: flex; }
.split-media img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.head-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.head-row-copy { max-width: 720px; }
.head-row .link-blue { white-space: nowrap; }

.photo-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
}
.photo-trio img {
  width: 100%;
  height: clamp(240px, 26vw, 380px);
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ── Sugar product cards ───────────────────────────────────────────────── */

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}
.feature-media {
  flex: 1.2 1 400px;
  min-width: 300px;
  background: #fff;
  margin: 18px 0 18px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 28px);
}
.feature-media img { max-width: 100%; max-height: 340px; object-fit: contain; display: block; }
.feature-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 44px);
}
.feature-copy .tag { align-self: flex-start; }
.feature-copy h3 {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.1;
}
.feature-copy p { margin: 16px 0 0; font-size: 15px; line-height: 1.65; color: var(--slate); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 18px;
}
.product {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-media {
  background: #fff;
  margin: 14px 14px 0;
  border-radius: 6px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-media img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.product-body { padding: 18px 22px 24px; }
.product-body h4 { margin: 0; font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.product-body p { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: var(--slate); }

.panel-split { display: flex; flex-wrap: wrap; gap: clamp(28px, 3.4vw, 48px); }
.panel-split-copy { flex: 1.6 1 440px; min-width: 300px; }
.panel-photo {
  flex: 1 1 260px;
  min-width: 240px;
  position: relative;
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
}
.panel-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panel-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 20, 36, 0), rgba(10, 20, 36, .78));
  padding: 34px 18px 14px;
}
.panel-photo-caption span { font-size: 13px; font-weight: 600; color: #fff; }

.statcard-value {
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.block-below { margin-top: clamp(48px, 5vw, 72px); }
.block-gap { margin-bottom: clamp(48px, 5vw, 72px); }
.h2-sm { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* Portrait photos in the landscape trio frames: bias the crop toward the work
   (the cut, the component) rather than the machine's upper structure. */
.photo-trio img.crop-low   { object-position: center 66%; }
.photo-trio img.crop-lower { object-position: center 78%; }
