/* D&A Granulation — industrial palette, Archivo + Inter + JetBrains Mono */

:root {
  /* Industrial palette: white + cool gray + navy from logo */
  --navy: #1a3a5c;            /* primary navy from logo */
  --navy-deep: #122a44;
  --navy-darker: #0a1c2f;
  --steel: #2e5a8f;           /* secondary accent blue */
  --steel-soft: #4a78ad;
  --ink: #0d1827;             /* deepest text */
  --ink-soft: #1f2a3a;
  --text: #4a5568;            /* body text */
  --muted: #6b7280;
  --muted-soft: #8a93a3;
  --line: #d8dde5;            /* sharp cool-gray border */
  --line-soft: #e8ecf1;
  --surface: #f3f5f8;         /* cool gray panel */
  --surface-2: #e8ecf1;
  --white: #ffffff;
  --off-white: #fbfcfd;

  /* Legacy aliases — keep old class names working during transition */
  --brand: var(--navy);
  --brand-deep: var(--navy-deep);
  --brand-darker: var(--navy-darker);
  --copper: var(--steel);
  --copper-soft: var(--steel-soft);
  --copper-deep: var(--navy-deep);
  --cream-soft: var(--off-white);

  --shadow-sm: 0 1px 2px rgba(13, 24, 39, 0.04), 0 1px 3px rgba(13, 24, 39, 0.05);
  --shadow-md: 0 4px 14px rgba(13, 24, 39, 0.08), 0 2px 4px rgba(13, 24, 39, 0.04);
  --shadow-lg: 0 16px 40px rgba(13, 24, 39, 0.12), 0 4px 12px rgba(13, 24, 39, 0.06);

  --radius: 0;                /* sharp by default — industrial */
  --radius-sm: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --container: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Angular cut-corner clip-paths */
  --cut-tl: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
  --cut-tr: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  --cut-br: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  --cut-bl: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --cut-corners: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--steel); }

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

h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.875rem, 3.6vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h3 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* === MONO TECHNICAL LABEL === */
.mono-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mono-tag::before {
  content: "[ " counter(none) " ]";
  display: none;
}

/* === NAVIGATION (white industrial bar) === */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.75rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 2.5rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu > li { position: relative; }
.menu a, .menu .menu-trigger {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu a:hover, .menu .menu-trigger:hover { color: var(--navy); }
.menu a.active { color: var(--navy); }
.menu a.cta-button {
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0.625rem;
}
.menu a.cta-button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--navy);
  min-width: 260px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.15s var(--ease);
  box-shadow: var(--shadow-md);
}
.menu > li:hover > .submenu,
.menu > li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.submenu a:hover { background: var(--surface); }

/* === CTA BUTTONS (sharp, industrial) === */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 0;
  border: 1px solid var(--navy);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.005em;
  text-transform: none;
}
.cta-button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}
.cta-button.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.cta-button.ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.cta-button.lg {
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
.cta-button.white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.cta-button.white:hover { background: var(--surface); color: var(--navy); }

.cta-button .arrow-icon {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.2s var(--ease);
}
.cta-button:hover .arrow-icon { transform: translateX(3px); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--ink);
}

.topbar { display: none; }

/* === HERO (industrial, oversized display) === */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  min-height: 680px;
  border-bottom: 4px solid var(--navy);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(105deg, rgba(13,24,39,0.92) 0%, rgba(13,24,39,0.7) 55%, rgba(13,24,39,0.45) 100%),
    url('https://www.dandagranulation.com/images/slide-1.jpg');
}
/* Slab 1: bottom-left, wide, gentle diagonal up to the right */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64%;
  height: 72%;
  max-width: 860px;
  background:
    linear-gradient(115deg, rgba(46,90,143,0.6) 0%, rgba(46,90,143,0.1) 60%, transparent 100%);
  clip-path: polygon(0 38%, 72% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

/* Slab 2: top-right mirror, fades toward the lower-left */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 68%;
  max-width: 780px;
  background:
    linear-gradient(295deg, rgba(46,90,143,0.55) 0%, rgba(46,90,143,0.08) 55%, transparent 100%);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

/* (cross-diagonal band removed) */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.75rem 5rem;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card { max-width: 820px; }
.hero .mono-tag {
  color: var(--steel-soft);
  margin-bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 .accent {
  color: var(--steel-soft);
  font-weight: 800;
}
.hero .lede {
  font-size: 1.1875rem;
  max-width: 640px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.75rem;
  line-height: 1.55;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-meta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta .creds { display: flex; gap: 2.25rem; }
.hero-meta .creds span { position: relative; color: rgba(255,255,255,0.6); }

/* === STATS BAR (Belpak-style: huge number + line) === */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0 5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.stat {
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  gap: 1rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat.featured {
  background: var(--navy);
  color: var(--white);
  padding: 2.25rem 2rem;
  border-left: none;
  position: relative;
  clip-path: var(--cut-tr);
}
/* stat.featured decorative tick removed */
.stat .num {
  font-family: var(--display);
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0;
}
.stat.featured .num {
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.stat .label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.stat.featured .label {
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 280px;
}

/* === SECTION === */
.section { padding: 6.5rem 0; background: var(--white); }
.section.tight { padding: 4.5rem 0; }
.section.dark {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
}
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.brand {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
}
.section.brand h2, .section.brand h3 { color: var(--white); }
.section.surface { background: var(--surface); }

.section-head { max-width: 820px; margin-bottom: 4rem; }
.section-head .mono-tag {
  margin-bottom: 1.5rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

/* Eyebrow — mono technical label, neutral muted tone */
.eyebrow {
  font-family: var(--mono);
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero .eyebrow { color: rgba(255,255,255,0.55); }
.page-head .eyebrow { color: rgba(255,255,255,0.55); }
.section.dark .eyebrow { color: rgba(255,255,255,0.55); }

/* === SECTION ANCHOR (oversized outlined numeral as graphic) === */
.section-anchor {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(12rem, 26vw, 26rem);
  font-weight: 900;
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  opacity: 0.1;
  z-index: 0;
  top: 2.5rem;
  right: 1rem;
}
.section.surface .section-anchor {
  -webkit-text-stroke: 1.5px var(--navy);
  opacity: 0.09;
}
.section-anchor.left { right: auto; left: -1rem; }
.section.dark .section-anchor,
.industries-strip .section-anchor,
.cta-block .section-anchor {
  -webkit-text-stroke: 1.5px var(--white);
  opacity: 0.14;
}
.section { position: relative; }
.section.has-anchor { overflow: hidden; }
.section .container { position: relative; z-index: 1; }
.process-section { position: relative; }
.process-section.has-anchor { overflow: hidden; }
.process-section .container { position: relative; z-index: 1; }

/* === MARQUEE (industrial scroll strip) === */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 1.25rem 0;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee-scroll 55s linear infinite;
  width: max-content;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--steel);
  display: inline-block;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* === ANCHOR MOMENT (full-viewport big-number section) === */
.anchor-moment {
  background: var(--white);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.anchor-moment .container { position: relative; z-index: 1; }
.anchor-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.anchor-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(5rem, 11.5vw, 10.5rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  color: var(--ink);
  margin: 0;
}
.anchor-num .plus { color: var(--steel); margin-left: -0.04em; }
.anchor-line {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  color: var(--text);
  max-width: 520px;
  margin-top: 1.75rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}
.anchor-meta {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}
.anchor-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  clip-path: var(--cut-tl);
  isolation: isolate;
}
.anchor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.04);
  display: block;
}
.anchor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}
.anchor-photo .photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* === DUOTONE PHOTO TREATMENT === */
.split-image,
.equipment-photo,
.insight-image-wrap {
  position: relative;
  isolation: isolate;
}
.split-image::after,
.equipment-photo::after,
.insight-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}
.split-image img,
.equipment-photo img,
.insight-image {
  filter: grayscale(1) contrast(1.06) brightness(1.04);
}
.insight-card:hover .insight-image { transform: scale(1.04); }
.material-card-img {
  filter: grayscale(0.7) contrast(1.05);
}

/* === MOTION: line-draw hovers === */
.read-more, .arrow {
  position: relative;
  padding-bottom: 2px;
}
.read-more::after,
.arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
}
.insight-card:hover .read-more::after,
.service-card:hover .arrow::after { transform: scaleX(1); }

/* === REVEAL ON SCROLL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === INDUSTRIES STRIP (darker navy band) === */
.industries-strip {
  background: var(--navy-darker);
  padding: 4.5rem 0;
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}
/* industries-strip grid removed — marquee above supplies enough motion */
.industries-strip .container { position: relative; z-index: 2; }
.industries-strip h2 {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* industries strip heading underline removed */
.industry-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--navy-darker);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.industry-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 1.25rem;
  background: var(--navy-darker);
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s var(--ease);
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  min-height: 140px;
  position: relative;
  z-index: 1;
}
.industry-tile:hover {
  background: var(--white);
  color: var(--navy);
}
.industry-tile:hover svg { color: var(--navy); stroke-width: 1.5; }
.industry-tile svg {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s var(--ease), stroke-width 0.2s var(--ease);
  stroke-width: 1.25;
}
.industry-tile span { line-height: 1.3; }

/* === PROCESS FLOW DIAGRAM (blueprint feel) === */
.process-section {
  padding: 6.5rem 0;
  background: var(--surface);
  background-image:
    linear-gradient(90deg, rgba(13,24,39,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,24,39,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.process-intro { max-width: 820px; margin-bottom: 4rem; }
.process-intro h2 { margin-bottom: 1rem; }
.process-intro p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: visible;
}
.process-step {
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  border-right: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--navy);
  transition: height 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.process-step:hover {
  background: linear-gradient(180deg, rgba(46,90,143,0.06) 0%, rgba(46,90,143,0.01) 100%);
  box-shadow: 0 8px 30px rgba(46,90,143,0.12);
  z-index: 2;
}
.process-step:hover::before { height: 3px; }
.process-step:hover h4 { color: var(--navy); }
.process-step:hover .process-num { color: var(--navy); }
.process-step:hover .step-links a { color: var(--navy); }
/* process-step connector arrows removed */
.process-num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1.75rem;
  display: block;
  text-transform: uppercase;
  font-style: normal;
}
.process-num::before { content: "/ "; color: var(--muted); }
.process-step h4 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.process-step p {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.process-step .step-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: auto;
}
.process-step .step-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  display: inline-block;
  width: max-content;
  transition: all 0.2s var(--ease);
}
.process-step .step-links a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* === INSIGHTS GRID === */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.insight-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.insight-card:hover .insight-image { transform: scale(1.04); }
.insight-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  background: var(--surface-2);
  filter: saturate(0.85) contrast(1.02);
}
.insight-body { padding: 1.875rem; }
.insight-body .eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.insight-body .eyebrow::before { display: none; }
.insight-card h3 {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.insight-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.insight-card .read-more {
  font-family: var(--mono);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.insight-card:hover .read-more { color: var(--steel); }

/* === SERVICE CARDS (cut-corner industrial tiles) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.25rem 2rem;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.service-card:hover::before { width: 100%; }
.service-card:hover .arrow { color: var(--steel); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--surface);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.75rem;
  border-radius: 0;
}
.service-icon svg { width: 28px; height: 28px; stroke-width: 1.25; }
.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1.375rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.55;
}
.service-card .arrow {
  font-family: var(--mono);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* === SPLIT === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: stretch;
}
.split.tight { gap: 3rem; }
.split-image {
  overflow: hidden;
  min-height: 100%;
  position: relative;
  clip-path: var(--cut-tl);
}
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.split-content h2 { margin-bottom: 1.25rem; }

/* === FEATURE LIST === */
.feature-list { list-style: none; padding: 0; margin: 1.75rem 0; }
.feature-list li {
  padding: 0.875rem 0;
  padding-left: 2.25rem;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 1rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 18px;
  height: 1px;
  background: var(--navy);
}

/* === INDUSTRY CARDS === */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--white);
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--line);
  transition: all 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--navy);
  transition: height 0.3s var(--ease);
}
.industry-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.industry-card:hover::before { height: 100%; }
.industry-card h3 {
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-size: 1.625rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.industry-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.industry-card .tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.industry-card .tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  padding: 0.375rem 0.75rem;
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === CREDENTIALS === */
.credentials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.credential {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.credential-mark {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.credential-text strong {
  display: block;
  font-family: var(--display);
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
}
.credential-text span {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* === CTA BLOCK === */
.cta-block {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%),
    radial-gradient(at 18% 30%, rgba(46,90,143,0.3) 0%, transparent 55%);
  color: var(--white);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--display);
}
.cta-block p {
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HEAD === */
.page-head {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--navy);
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy-deep) 100%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 {
  color: var(--white);
  max-width: 920px;
  margin-bottom: 1.25rem;
  font-weight: 800;
  font-family: var(--display);
  letter-spacing: -0.035em;
}
.page-head .lede {
  color: rgba(255,255,255,0.8);
  font-size: 1.1875rem;
  max-width: 720px;
  margin: 0;
  line-height: 1.55;
}
.breadcrumb {
  font-family: var(--mono);
  color: rgba(255,255,255,0.55);
  font-size: 0.6875rem;
  margin-bottom: 1.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.78); }
.breadcrumb a:hover { color: var(--steel-soft); }

/* === SERVICE PAGE LAYOUT === */
.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.service-nav {
  position: sticky;
  top: 100px;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.service-nav h4 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.service-nav ul { list-style: none; padding: 0; margin: 0; }
.service-nav li { margin-bottom: 0.125rem; }
.service-nav a {
  display: block;
  padding: 0.625rem 0.875rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
}
.service-nav a:hover { background: var(--white); color: var(--navy); }
.service-nav a.active {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  border-left: 2px solid var(--navy);
  padding-left: calc(0.875rem - 2px);
}

.prose { max-width: 780px; }
.equipment-photo {
  margin: 0 0 2.5rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  clip-path: var(--cut-tl);
}
.equipment-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.equipment-photo figcaption {
  padding: 0.75rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.7;
}
.prose ul { padding-left: 1.25rem; }
.prose ul li {
  margin-bottom: 0.625rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}
.prose ol { padding-left: 1.25rem; }
.prose ol li {
  margin-bottom: 0.625rem;
  color: var(--text);
}

/* === PROSE ASIDE (mono technical callout) === */
.prose-aside {
  margin: 2.75rem 0;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  background: var(--surface);
  border-left: 2px solid var(--navy);
  position: relative;
}
.prose-aside::before {
  content: "SPEC / 01";
  position: absolute;
  top: -10px;
  left: 1.75rem;
  background: var(--white);
  padding: 0 0.625rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.prose-aside p {
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}
.prose-aside p + p { margin-top: 0.875rem; }
.prose-aside .aside-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.spec-card { margin: 2.5rem 0; padding: 0 0 0 1.75rem; border-left: 1px solid var(--steel); }
.spec-card h4 { display: none; }
.spec-card p {
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* === MATERIALS LIST === */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.material-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  align-items: stretch;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
}
.material-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.material-card-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: var(--surface-2);
  display: block;
  filter: saturate(0.85) contrast(1.02);
}
.material-card-img:not([src]),
.material-card-img[src=""] { background: var(--surface-2); }
.material-card-body {
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.material-card-body h4 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.25rem;
}
.material-card-body .material-meta {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.material-pill {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.375rem;
  border-radius: 0;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9375rem;
}

/* === ACCORDION (US Pharma Lab inspired) === */
.accordion {
  margin: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.15s var(--ease);
}
.accordion-trigger:hover { color: var(--navy); }
.accordion-trigger .accordion-num {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-right: 1.75rem;
  text-transform: uppercase;
  flex-shrink: 0;
}
.accordion-trigger .accordion-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  margin-left: auto;
}
.accordion-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-65%, -50%) rotate(-45deg);
}
.accordion-item.open .accordion-icon { transform: rotate(90deg); }
.accordion-item.open .accordion-trigger { color: var(--navy); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-item.open .accordion-body { max-height: 1500px; }
.accordion-body-inner {
  padding: 0 0 1.75rem 0;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.accordion-body-inner p { margin: 0 0 1rem; }
.accordion-body-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}
.accordion-body-inner li {
  padding: 0.375rem 0;
  font-family: var(--sans);
  color: var(--text);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line-soft);
}

/* === ABOUT === */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 3rem 0;
}
.about-stat .num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.about-stat .num { margin-bottom: 0.875rem; }
.about-stat .label {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.25rem;
}
.contact-card h3 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.125rem;
  font-weight: 500;
}
.contact-value {
  color: var(--ink);
  font-weight: 500;
  font-size: 1.0625rem;
  font-family: var(--display);
  letter-spacing: -0.005em;
}
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--navy); }

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* === FOOTER (breathe) === */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 8rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "D&A";
  position: absolute;
  bottom: -3rem;
  right: -0.5rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(12rem, 28vw, 28rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  color: transparent;
  pointer-events: none;
  user-select: none;
}
.footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.footer-brand .footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0;
  margin-bottom: 1.75rem;
}
.footer-brand .footer-logo-wrap img { height: 42px; width: auto; }
.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  max-width: 380px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
}

.footer h4 {
  color: rgba(255,255,255,0.4);
  font-family: var(--mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li {
  margin-bottom: 0.875rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
}
.footer a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9375rem;
  position: relative;
}
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.footer a:hover { color: var(--white); }
.footer a:hover::after { transform: scaleX(1); }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* === LEADERSHIP CARDS (square tiles, angular) === */
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem 2.5rem 2.25rem;
  transition: all 0.2s var(--ease);
  position: relative;
}
.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--navy);
  transition: height 0.3s var(--ease);
}
.leader-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.leader-card:hover::before { height: 100%; }
.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  clip-path: var(--cut-tl);
}
.leader-eyebrow {
  font-family: var(--mono);
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.leader-name {
  font-family: var(--display);
  font-size: 1.875rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.leader-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.leader-email {
  display: inline-block;
  font-family: var(--mono);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.leader-email:hover {
  color: var(--steel);
  border-bottom-color: var(--steel);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat.featured { grid-column: 1 / 3; clip-path: none; }
  .anchor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .service-layout { grid-template-columns: 1fr; }
  .service-nav { position: static; }
  .industry-tiles { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-last-child(-n+2):not(:only-child) { border-bottom: none; }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .menu.open { display: flex; }
  .menu > li { width: 100%; }
  .menu > li > a, .menu > li > .menu-trigger {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    padding-left: 1rem;
    border-left: 2px solid var(--line);
    margin-left: 1rem;
    border-radius: 0;
    display: none;
  }
  .menu > li.open > .submenu { display: block; }

  .brand-logo { height: 44px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 1.75rem 5rem; min-height: auto; }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-meta {
    position: static;
    padding: 0 0 2rem;
  }
  .hero-meta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .section { padding: 4rem 0; }
  .stats { padding: 3rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat:not(.featured) { padding: 1.25rem 0.75rem 1.25rem 1.25rem; gap: 0.75rem; }
  .stat:not(.featured) .num { font-size: 1.875rem; }
  .anchor-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .anchor-photo { aspect-ratio: 4 / 3; clip-path: none; }
  .stat:not(.featured) .label { font-size: 0.625rem; letter-spacing: 0.08em; }
  .stat.featured {
    grid-column: 1 / -1;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.5rem;
    clip-path: none;
  }
  .stat.featured .num { font-size: 2.75rem; }
  .stat.featured .label { font-size: 0.9375rem; }
  .services-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-image { clip-path: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-tiles { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .credentials-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card { padding: 1.75rem 1.25rem; }
  .contact-row { gap: 0.75rem; padding: 0.875rem 0; }
  .contact-icon { width: 36px; height: 36px; }
  .contact-value { font-size: 0.9375rem; min-width: 0; }
  .contact-value a[href^="mailto:"] {
    font-size: 0.8125rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .map-frame { width: 100%; }
  .map-frame iframe { width: 100%; height: 320px; min-height: 320px; display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .materials-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 3.5rem 1.5rem; }
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-actions .cta-button {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    box-sizing: border-box;
  }
  .cta-label { display: none; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-card { padding: 2rem 1.75rem; }
  .leader-card .leader-avatar { clip-path: none; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
  .material-card { grid-template-columns: 80px 1fr; }
  .material-card-img { width: 80px; height: 80px; }
  .equipment-photo { clip-path: none; }
  .accordion-body-inner ul { grid-template-columns: 1fr; }
  .accordion-trigger { font-size: 1rem; padding: 1.25rem 0; }
  .accordion-trigger .accordion-num { margin-right: 0.875rem; font-size: 0.625rem; }
}
