/* ==========================================================================
   M&N MultiBrands — Corporate Industrial Engineering Site
   v2 — Reference-aligned redesign
   Mobile-first, system-font fallback with Montserrat
   ========================================================================== */

/* --- Design tokens ----------------------------------------------------- */
:root {
  /* Official brand palette per M&N MultiBrands logo brand board */
  --c-navy: #16274F;
  --c-navy-900: #0e1a35;
  --c-navy-800: #1d2f5e;
  --c-navy-700: #25406f;
  --c-steel-dark: #0c1830;   /* deep industrial steel-navy */
  --c-steel: #e6e9ef;        /* cool light steel for light sections */
  --c-cream: #faf6f0;        /* warm off-white (mockup About bg) */
  --c-grey: #6a7280;
  --c-grey-400: #9aa3b2;
  --c-grey-300: #d6d9df;
  --c-grey-200: #e8eaef;
  --c-grey-100: #eef1f5;
  --c-white: #ffffff;
  --c-gold: #D28A29;          /* brand orange (kept token name for backwards-compat) */
  --c-orange: #D28A29;
  --c-orange-light: #E5A14B;
  --c-gold-700: #a86c1f;
  --c-ink: #1a1f2b;

  --ff-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
             Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-base: 16px;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-hero: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);

  --lh-tight: 1.15;
  --lh-body: 1.6;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 6rem;
  --sp-14: 7rem;

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 8px rgba(22, 39, 79, 0.08);
  --shadow-md: 0 6px 20px rgba(22, 39, 79, 0.10);
  --shadow-lg: 0 16px 40px rgba(22, 39, 79, 0.14);
  --container: 1280px;
  --container-narrow: 920px;
}

/* --- Reset / base ------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--c-gold-700); }

h1, h2, h3, h4 {
  font-family: var(--ff-sans);
  color: var(--c-navy);
  line-height: var(--lh-tight);
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-hero); font-weight: 800; }
h2 { font-size: var(--fs-2xl); }
@media (min-width: 800px) { h2 { font-size: var(--fs-3xl); } }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--sp-4); color: var(--c-grey); }
.section--dark p, .section--dark { color: rgba(255,255,255,0.85); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }
hr { border: 0; border-top: 1px solid var(--c-grey-300); margin: var(--sp-8) 0; }

/* --- Accessibility ----------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-navy); color: var(--c-white);
  padding: var(--sp-3) var(--sp-4); z-index: 1000;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; }

/* --- Layout helpers ---------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-5); }

.section { padding: var(--sp-10) 0; }
@media (min-width: 800px) { .section { padding: var(--sp-12) 0; } }

/* Deep navy industrial section — clean gradient for depth */
.section--dark {
  background-color: var(--c-navy);
  background-image: linear-gradient(160deg, #283d72 0%, var(--c-navy) 45%, var(--c-navy-900) 100%);
  color: rgba(255,255,255,0.85);
  position: relative;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }
.section--dark .eyebrow { color: var(--c-gold); }

/* Even deeper steel section for maximum industrial contrast */
.section--steel-dark {
  background-color: var(--c-steel-dark);
  background-image: linear-gradient(160deg, #152843 0%, var(--c-steel-dark) 55%, #06101e 100%);
  color: rgba(255,255,255,0.85);
}
.section--steel-dark h1, .section--steel-dark h2, .section--steel-dark h3, .section--steel-dark h4 { color: var(--c-white); }
.section--steel-dark .eyebrow { color: var(--c-gold); }

/* Light steel section (replaces soft white-grey) */
.section--grey { background: var(--c-steel); }
.section--tight { padding: var(--sp-8) 0; }

/* Gold hairline accent at top of a section */
.section--gold-top { border-top: 3px solid var(--c-gold); }

/* Text colour fixes inside dark sections */
.section--dark p, .section--steel-dark p,
.section--dark li, .section--steel-dark li,
.section--dark .section-intro p, .section--steel-dark .section-intro p { color: rgba(255,255,255,0.82); }
.section--dark .muted, .section--steel-dark .muted { color: rgba(255,255,255,0.55); }
/* Industry pills invert on dark sections */
.section--dark .industry-pills li,
.section--steel-dark .industry-pills li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
/* Service-block + capabilities invert on dark wraps */
.service-block-wrap.section--dark .capabilities-heading,
.service-block-wrap.section--steel-dark .capabilities-heading { color: var(--c-gold); }
.service-block-wrap.section--dark .capabilities-list li,
.service-block-wrap.section--steel-dark .capabilities-list li { color: rgba(255,255,255,0.9); }
.service-block-wrap.section--dark .btn--outline,
.service-block-wrap.section--steel-dark .btn--outline { color: var(--c-white); border-color: rgba(255,255,255,0.5); }
.service-block-wrap.section--dark .btn--outline:hover,
.service-block-wrap.section--steel-dark .btn--outline:hover { background: var(--c-white); color: var(--c-navy); border-color: var(--c-white); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-orange);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}
.eyebrow--navy { color: var(--c-navy); }

/* --- Centered section heading block ----------------------------------- */
/* Used for any section that has cards/grid/gallery below the heading.
   Provides consistent spacing + alignment across all pages. */
.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-7);
}
.section-intro h2 {
  margin-bottom: var(--sp-3);
  font-weight: 800;
  letter-spacing: -0.015em;
}
/* (Gold accent rule under centered headings removed) */
.section-intro p { margin: 0 auto; max-width: 680px; }
.section-intro + .grid,
.section-intro + .gallery,
.section-intro + .service-grid,
.section-intro + .client-grid,
.section-intro + .logo-strip,
.section-intro + .industry-pills { margin-top: var(--sp-6); }
.section-intro .industry-pills { justify-content: center; }

/* --- Top utility bar --------------------------------------------------- */
.utility-bar {
  background: var(--c-navy-900);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-xs);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2) var(--sp-5);
}
.utility-bar a { color: rgba(255,255,255,0.92); text-decoration: none; display: inline-flex; align-items: center; gap: var(--sp-2); }
.utility-bar a:hover { color: var(--c-gold); }
.utility-bar__group { display: inline-flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.utility-bar__item { display: inline-flex; align-items: center; gap: var(--sp-2); }
.utility-bar svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--c-gold); }
.utility-bar strong { color: var(--c-gold); font-weight: 700; letter-spacing: 0.04em; }

@media (max-width: 700px) {
  .utility-bar__hide-mobile { display: none; }
}

/* --- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-grey-200);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-5);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--sp-4);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand__logo { height: 64px; width: auto; display: block; }
@media (min-width: 800px) { .brand__logo { height: 96px; } }
@media (min-width: 1200px) { .brand__logo { height: 110px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-grey-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--c-navy);
}
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.site-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-grey-200);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none; padding: var(--sp-4) var(--sp-5); margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  padding: var(--sp-3) 0;
  text-decoration: none;
  color: var(--c-navy);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--c-grey-100);
  position: relative;
}
.site-nav a[aria-current="page"] {
  color: var(--c-gold);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 24px; height: 2px;
  background: var(--c-gold);
}

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
  }
  .site-nav > ul {
    flex-direction: row;
    padding: 0;
    gap: var(--sp-7);
    align-items: center;
  }
  .site-nav a {
    border-bottom: 0;
    padding: var(--sp-3) 0;
    font-size: var(--fs-xs);
  }
  .site-nav a:hover { color: var(--c-gold); }
  .site-nav a[aria-current="page"]::after {
    bottom: -4px;
    width: 100%;
  }
}

/* --- Nav dropdown (click-to-toggle) ----------------------------------- */
.has-dropdown { position: relative; }

.dropdown-toggle__indicator {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7em;
  transition: transform 0.2s ease;
}
.has-dropdown[data-open="true"] .dropdown-toggle__indicator {
  transform: rotate(180deg);
}

.nav-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none !important;  /* hidden by default — only data-open="true" reveals */
}
.has-dropdown[data-open="true"] > .nav-dropdown {
  display: block !important;
}

/* Highlighted "View All Services" item */
.nav-dropdown__view-all a {
  color: var(--c-gold) !important;
}
.nav-dropdown__divider {
  list-style: none;
  height: 1px;
  background: var(--c-grey-200);
  margin: var(--sp-2) 0;
}

/* Mobile: dropdown expands inline, indented under parent */
@media (max-width: 999px) {
  .nav-dropdown {
    padding-left: var(--sp-4);
    border-left: 2px solid var(--c-gold);
    margin: var(--sp-2) 0 var(--sp-3);
  }
  .nav-dropdown a {
    padding: var(--sp-2) 0 !important;
    border-bottom: 1px dashed var(--c-grey-200) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.06em !important;
  }
  .nav-dropdown li:last-child a { border-bottom: 0 !important; }
  .nav-dropdown__divider { margin: var(--sp-3) 0; }
}

/* Desktop: floating dropdown panel */
@media (min-width: 1000px) {
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: -16px;
    min-width: 320px;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-3);
    z-index: 50;
    border-top: 3px solid var(--c-gold);
  }
  /* Hover-to-open on desktop (in addition to click) */
  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown {
    display: block !important;
  }
  .has-dropdown:hover .dropdown-toggle__indicator,
  .has-dropdown:focus-within .dropdown-toggle__indicator {
    transform: rotate(180deg);
  }
  /* Bridge the gap so cursor can move from link → dropdown without closing */
  .has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
  }
  .nav-dropdown a {
    display: block;
    padding: var(--sp-3) var(--sp-3) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    border-radius: var(--radius-sm);
    border: none !important;
    transition: background-color 0.15s, color 0.15s;
  }
  .nav-dropdown a:hover {
    background: var(--c-grey-100);
    color: var(--c-gold);
  }
  .nav-dropdown a[aria-current="page"]::after { display: none; }
}

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-left: var(--sp-2);
  font-size: 12px;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-navy-900);
  border-color: var(--c-gold);
}
.btn--primary:hover { background: var(--c-gold-700); border-color: var(--c-gold-700); color: var(--c-white); }
.btn--navy {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn--navy:hover { background: var(--c-navy-900); color: var(--c-white); }
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: var(--c-white); color: var(--c-navy); border-color: var(--c-white); }
.btn--outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn--outline:hover { background: var(--c-navy); color: var(--c-white); }
.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn--outline-light:hover { background: var(--c-white); color: var(--c-navy); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }

/* --- Hero (split-screen) ----------------------------------------------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-white);
  color: var(--c-ink);
  position: relative;
  overflow: hidden;
}
.hero-split__content {
  padding: var(--sp-10) var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}
.hero-split__media {
  position: relative;
  min-height: 320px;
  background: var(--c-navy-900);
}
.hero-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Slideshow: stacked crossfading images */
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
/* (Dark navy overlay removed — hero now on white background) */
/* Slideshow dots */
.hero-dots {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 3;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--c-gold); border-color: var(--c-gold); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1.25fr 1fr; min-height: 520px; }
  .hero-split__content {
    padding: var(--sp-10) var(--sp-7) var(--sp-10) calc((100vw - var(--container)) / 2 + var(--sp-5));
    max-width: none;
    margin: 0;
    background: var(--c-cream);
  }
  .hero-split__media { min-height: 520px; }
}
@media (min-width: 1280px) {
  .hero-split__content {
    padding-left: calc((100vw - var(--container)) / 2 + var(--sp-5));
  }
}

.hero-split h1 {
  color: var(--c-navy);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: var(--sp-5);
}
.hero-split h1 .gold-line { color: var(--c-orange); }
.hero-split p.lead {
  font-size: var(--fs-lg);
  max-width: 520px;
  color: var(--c-grey);
  margin-bottom: var(--sp-6);
}

/* Page-level (sub-page) hero — single column */
.hero-page {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-10) 0;
  position: relative;
  border-bottom: 4px solid var(--c-gold);
  text-align: center;
}
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}
/* Darker industrial gradient wash over inner-page hero image */
.hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,53,0.55) 0%, rgba(14,26,53,0.10) 50%, rgba(14,26,53,0.45) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page h1 {
  color: var(--c-white);
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 auto var(--sp-4);
  max-width: 880px;
}
.hero-page p.lead {
  font-size: var(--fs-lg);
  max-width: 720px;
  margin: 0 auto var(--sp-5);
  color: rgba(255,255,255,0.9);
}
.hero-page .btn-group { justify-content: center; }
.hero-page--about::before    { background-image: url("../img/work/tradeshow-booth.jpg"); }
.hero-page--services::before { background-image: url("../img/work/services/welding.jpg"); }
.hero-page--projects::before { background-image: url("../img/work/originals/pipe-spool-fabrication.jpg"); }
.hero-page--sheq::before     { background-image: url("../img/work/concrete-pipeline-installation.jpg"); }

/* --- Trust bar (boxed navy panel inside container with orange border) - */
.trust-bar {
  background: transparent;
  padding: var(--sp-7) 10%;
  max-width: none;
}
@media (min-width: 800px) { .trust-bar { padding: var(--sp-8) 10%; } }
.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-5);
  background: var(--c-navy-800);
  border-bottom: 3px solid var(--c-orange);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: 0 6px 18px rgba(22,39,79,0.10);
}
@media (min-width: 900px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); padding: var(--sp-6) var(--sp-7); }
}
.trust-bar__item { display: flex; align-items: center; gap: var(--sp-3); }
.trust-bar__icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--c-orange);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--c-orange);
}
.trust-bar__icon svg { width: 20px; height: 20px; }
.trust-bar__text {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
}
.trust-bar__text strong { display: block; color: var(--c-white); font-weight: 700; }

/* --- Services: cards with overlapping circle icon ---------------------- */
.services-section { background: var(--c-cream); }

.service-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-top: var(--sp-7);
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-grey-300);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body {
  padding: var(--sp-5);
  flex: 1;
  border-top: 2px solid var(--c-orange);
}
.service-card h3 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-navy);
  font-weight: 800;
  margin-bottom: var(--sp-2);
  line-height: 1.25;
}
.service-card p {
  color: var(--c-grey);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.service-card h3 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--c-grey);
  margin: 0;
  line-height: 1.55;
}

/* --- About split section ----------------------------------------------- */
.about-split {
  background: var(--c-navy);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.about-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.about-split__content {
  padding: var(--sp-10) var(--sp-5);
  max-width: 640px;
  margin: 0 auto;
}
.about-split__media {
  position: relative;
  min-height: 320px;
  background: var(--c-navy-900);
}
.about-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .about-split__grid { grid-template-columns: 1.05fr 1fr; }
  .about-split__content {
    padding: var(--sp-12) var(--sp-8) var(--sp-12) calc((100vw - var(--container)) / 2 + var(--sp-5));
    max-width: none;
    margin: 0;
  }
  .about-split__media { min-height: 0; }
  .about-split__media img {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.about-split h2 {
  color: var(--c-white);
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
}
.about-split p { color: rgba(255,255,255,0.85); }

/* Stats grid (inside about-split) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin: var(--sp-6) 0;
}
@media (min-width: 700px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.stat__icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__value {
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.stat__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* --- Client project cards (Projects section) -------------------------- */
.client-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-top: var(--sp-6);
}
@media (min-width: 600px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .client-grid { grid-template-columns: repeat(4, 1fr); }
}

.client-card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-grey-100);
}
.client-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.client-card__body {
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-white);
  border-top: 3px solid var(--c-gold);
}
.client-card h3 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.client-card p {
  font-size: var(--fs-xs);
  color: var(--c-grey);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- CTA banner (horizontal) ------------------------------------------ */
.cta-banner {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-7) 0;
  border-top: 4px solid var(--c-gold);
}
.cta-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-items: flex-start;
}
.cta-banner__text {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.cta-banner__icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--c-gold);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.cta-banner__icon svg { width: 28px; height: 28px; }
.cta-banner h3 {
  color: var(--c-white);
  margin: 0 0 4px;
  font-size: var(--fs-xl);
}
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }
@media (min-width: 800px) {
  .cta-banner__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* --- Generic content cards (used on inner pages) ---------------------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-top: 4px solid var(--c-gold);
  padding: var(--sp-5);
  border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.card p { color: var(--c-grey); margin: 0; font-size: 0.95rem; }

/* --- Grid helpers ----------------------------------------------------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Service block (Services page long-form) -------------------------- */
.service-block-wrap { padding: var(--sp-10) 0; }
.service-block-wrap--grey { background: var(--c-grey-100); }
@media (min-width: 800px) { .service-block-wrap { padding: var(--sp-12) 0; } }

.service-block {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 900px) {
  .service-block { grid-template-columns: 1.1fr 1fr; align-items: center; gap: var(--sp-10); }
  .service-block--reverse { grid-template-columns: 1fr 1.1fr; }
  .service-block--reverse .service-block__body { order: 2; }
  .service-block--reverse .service-block__media { order: 1; }
}

.service-block__body { position: relative; z-index: 1; }
.service-block__number {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.18;
  letter-spacing: -0.03em;
  position: absolute;
  top: -0.4em;
  left: -0.15em;
  pointer-events: none;
  z-index: -1;
}
.service-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.service-block__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--c-gold);
}
.service-block h2 {
  margin-bottom: var(--sp-4);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
}

.capabilities-heading {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-navy);
  font-weight: 700;
  margin: var(--sp-5) 0 var(--sp-3);
}
.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2) var(--sp-4);
}
@media (min-width: 500px) {
  .capabilities-list { grid-template-columns: repeat(2, 1fr); }
}
.capabilities-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-ink);
  font-weight: 500;
}
.capabilities-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 16px;
  height: 16px;
  background-color: var(--c-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.service-block__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.service-block__media {
  position: relative;
  z-index: 0;
}
.service-block__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-md);
}
/* Decorative gold accent frame behind image — visible on any background */
.service-block__media::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 3px solid var(--c-gold);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}
.service-block--reverse .service-block__media::before {
  inset: 24px 24px -24px -24px;
}
@media (max-width: 899px) {
  .service-block__media::before { display: none; }
}

/* --- Project gallery (Projects page) --------------------------------- */
.gallery {
  display: grid; gap: var(--sp-4);
  grid-template-columns: 1fr;
  margin-top: var(--sp-6);
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--c-grey-100); aspect-ratio: 4/3;
  border: 1px solid var(--c-grey-200);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,35,71,0.95) 0%, rgba(0,35,71,0) 100%);
  color: var(--c-white); padding: var(--sp-5) var(--sp-4) var(--sp-3);
  font-size: var(--fs-sm); font-weight: 600;
}
.gallery__caption span {
  display: block; color: var(--c-gold);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; margin-bottom: 2px;
}

/* --- Industry pills (used on About) ----------------------------------- */
.industry-pills {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  list-style: none; padding: 0; margin-top: var(--sp-5);
}
.industry-pills--center { justify-content: center; }
.industry-pills li {
  margin: 0;
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* --- Value list with gold square --------------------------------------- */
.value-list {
  list-style: none; padding: 0;
  display: grid; gap: var(--sp-4);
}
.value-list li { padding-left: 2.25rem; position: relative; margin: 0; }
.value-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 14px; height: 14px;
  background: var(--c-gold); border-radius: 2px;
  transform: rotate(45deg);
}
.value-list strong { color: var(--c-navy); display: block; margin-bottom: var(--sp-1); }

/* --- Leader card ------------------------------------------------------ */
.leader-card { border-left: 4px solid var(--c-gold); padding-left: var(--sp-5); }
.leader-card h3 { margin-bottom: var(--sp-1); }
.leader-card .role {
  color: var(--c-gold-700); font-weight: 600; margin-bottom: var(--sp-3);
  display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em;
}

/* --- Two-column helper ------------------------------------------------- */
.two-col {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 2fr 1fr; }
  .two-col--reverse { grid-template-columns: 1fr 2fr; }
}

/* --- Forms ------------------------------------------------------------ */
.rfq-form {
  background: var(--c-white);
  padding: var(--sp-6);
  border: 1px solid var(--c-grey-200);
  border-top: 4px solid var(--c-gold);
  border-radius: var(--radius);
}
.form-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-field label { font-weight: 600; color: var(--c-navy); font-size: var(--fs-sm); }
.form-field label .req { color: var(--c-gold-700); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: var(--sp-3);
  border: 1px solid var(--c-grey-300);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-ink);
  min-height: 44px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--c-navy);
  outline: 3px solid rgba(22, 39, 79, 0.2);
}
.form-note { font-size: var(--fs-sm); color: var(--c-grey); margin-top: var(--sp-3); }

/* --- Contact panel ---------------------------------------------------- */
.contact-panel {
  background: var(--c-grey-100);
  padding: var(--sp-6);
  border-radius: var(--radius);
  border-left: 4px solid var(--c-navy);
}
.contact-panel h3 { margin-top: 0; }
.contact-panel dl { margin: 0; }
.contact-panel dt {
  font-weight: 700; color: var(--c-navy); margin-top: var(--sp-3);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em;
}
.contact-panel dd { margin: 0; }

/* --- Footer (multi-column with gear watermark) ------------------------ */
.site-footer {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-10) 0 var(--sp-5);
  margin-bottom: 64px; /* clear sticky mobile bar */
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  background: url("../img/logo/mn-logo-white.png") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-8); }
}
.footer-logo { height: 120px; width: auto; display: block; margin-bottom: var(--sp-4); }
.footer-tagline {
  color: var(--c-gold);
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-3);
  line-height: 1.5;
}
.site-footer h4 {
  color: var(--c-white);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--sp-2); font-size: var(--fs-sm); }

.footer-contact-list li {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  margin-bottom: var(--sp-3); font-size: var(--fs-sm);
}
.footer-contact-list svg {
  width: 16px; height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-white);
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-navy); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--sp-8);
  padding-top: var(--sp-4);
  font-size: var(--fs-xs);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  color: rgba(255, 255, 255, 0.6);
  position: relative; z-index: 1;
}

@media (min-width: 900px) {
  .site-footer { margin-bottom: 0; }
}

/* --- Brand C-ring decorations (half-circle / D-shape) ---------------- */
.swirl-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.swirl-deco svg { width: 100%; height: 100%; overflow: visible; }
.swirl-deco--hero {
  width: 320px;
  height: 520px;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 899px) {
  .swirl-deco--hero { display: none; }
}

/* --- About preview stats (home) --------------------------------------- */
.about-preview {
  background: var(--c-white);
  padding: var(--sp-10) 0;
}
@media (min-width: 800px) { .about-preview { padding: var(--sp-12) 0; } }
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 1000px) {
  .about-preview__grid { grid-template-columns: 1.05fr 1.4fr; align-items: center; gap: var(--sp-10); }
}
.about-preview h2 {
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: var(--sp-4);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-navy);
}
.about-preview h2 br + *,
.about-preview h2 { white-space: normal; }
@media (min-width: 900px) {
  .about-preview h2 { white-space: nowrap; }
}
.about-preview p { margin-bottom: var(--sp-5); }

.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 600px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stats-row__item + .stats-row__item {
    border-left: 1px solid var(--c-grey-300);
  }
}
.stats-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-4);
}
.stats-row__icon {
  width: 52px;
  height: 52px;
  color: var(--c-orange);
  margin-bottom: var(--sp-3);
  stroke-width: 1.5;
}
.stats-row__icon svg { width: 100%; height: 100%; }
.stats-row__value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.stats-row__label {
  color: var(--c-grey);
  font-size: 0.95rem;
  margin-top: var(--sp-1);
}

/* --- Featured Projects (home) ----------------------------------------- */
.featured-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (min-width: 700px) { .featured-projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .featured-projects { grid-template-columns: repeat(4, 1fr); } }

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--c-navy-900);
  text-decoration: none;
  display: block;
  border-top: 3px solid var(--c-orange);
  transition: transform 0.25s ease;
}
.project-card:hover { transform: translateY(-4px); color: var(--c-white); }
.project-card__media {
  position: absolute;
  inset: 0;
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,39,79,0.95) 0%, rgba(22,39,79,0.55) 45%, rgba(22,39,79,0.10) 100%);
}
.project-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-5);
  color: var(--c-white);
  z-index: 1;
}
.project-card__title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-2);
  color: var(--c-white);
  line-height: 1.25;
}
.project-card__location {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}
.project-card__location svg {
  width: 16px;
  height: 16px;
  color: var(--c-orange);
  flex-shrink: 0;
}

/* --- Floating WhatsApp button ----------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--c-white);
  z-index: 95;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
  color: var(--c-white);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float__label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--c-white);
  color: var(--c-navy);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  white-space: nowrap;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
}
@media (min-width: 900px) {
  .wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
}
@media (max-width: 899px) {
  .wa-float { bottom: 78px; right: 16px; width: 52px; height: 52px; }
  .wa-float__label { display: none; }
}

/* --- Sticky mobile CTA bar -------------------------------------------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; z-index: 90;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}
.mobile-cta-bar a {
  flex: 1; text-align: center;
  padding: var(--sp-3); font-weight: 700;
  text-decoration: none; font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 0.06em;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
}
.mobile-cta-bar .cta-call { background: var(--c-gold); color: var(--c-navy-900); }
.mobile-cta-bar .cta-email { background: var(--c-navy); color: var(--c-white); }
.mobile-cta-bar svg { width: 18px; height: 18px; }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }

/* --- Client logo strip (used on inner pages) -------------------------- */
.logo-strip {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: var(--sp-4) var(--sp-8);
  padding: var(--sp-5) 0;
}
.client-logo {
  height: 56px; width: auto; max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%); opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.client-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.04); }
@media (min-width: 700px) { .client-logo { height: 64px; } }

/* --- Utilities --------------------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--c-grey); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--sp-6); } .mb-6 { margin-bottom: var(--sp-6); }

/* =====================================================================
   HOME "WOW" PASS — brand-orange focal blocks
   ===================================================================== */

/* --- Stats row: bigger, orange numerals (About preview on home) ------- */
.about-preview .stats-row__value {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--c-orange);
  font-weight: 800;
  line-height: 1;
}
.about-preview .stats-row__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-navy);
  opacity: 0.7;
  margin-top: var(--sp-2);
}
.about-preview .stats-row__icon {
  width: 36px;
  height: 36px;
  color: var(--c-orange);
  opacity: 0.85;
}

/* --- Value Promise Band (orange full-width strip) --------------------- */
.promise-band {
  background: var(--c-orange);
  color: #fff;
  padding: var(--sp-6) 0;
  position: relative;
}
.promise-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 780px) {
  .promise-band__list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }
}
.promise-band__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: #fff;
}
.promise-band__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
}
.promise-band__icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}
.promise-band__list li strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}
.promise-band__list li span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
}

/* --- Bold Orange CTA block (final section) ---------------------------- */
.cta-orange {
  background: var(--c-orange);
  color: #fff;
  padding: var(--sp-7) 0 var(--sp-7);
  position: relative;
  text-align: center;
}
.cta-orange__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: var(--sp-2);
}
.cta-orange__title {
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.25;
  margin: 0 auto var(--sp-4);
  max-width: 30ch;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-orange__phone {
  display: inline-block;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 var(--sp-5);
  transition: opacity 0.2s ease;
}
.cta-orange__phone:hover,
.cta-orange__phone:focus {
  opacity: 0.88;
}
.cta-orange__btns {
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Buttons inside the orange CTA */
.cta-orange .btn--navy {
  background: var(--c-navy);
  color: #fff;
  border: 2px solid var(--c-navy);
}
.cta-orange .btn--navy:hover,
.cta-orange .btn--navy:focus {
  background: #0e1d3d;
  border-color: #0e1d3d;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn--ghost-light:hover,
.btn--ghost-light:focus {
  background: #fff;
  color: var(--c-orange);
}

/* =====================================================================
   HOME PAGE — TRUE TWO-COLOR BRAND IDENTITY (navy + orange + white)
   Scoped via body.page-home so inner pages (already approved) untouched.
   ===================================================================== */

/* Kill cream from home — clean two-color rhythm */
.page-home .services-section { background: var(--c-white); }
.page-home .section--industries { background: #f5f7fa; }

/* --- Home service cards: ORANGE BOX style ------------------------------ */
.page-home .services-section .service-card {
  background: var(--c-orange);
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(22, 39, 79, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.page-home .services-section .service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}
.page-home .services-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(22, 39, 79, 0.45);
}
.page-home .services-section .service-card:hover::before {
  transform: scaleX(1);
}
.page-home .services-section .service-card__body { padding: var(--sp-5); }
.page-home .services-section .service-card h3 {
  color: var(--c-white);
  font-weight: 700;
}
.page-home .services-section .service-card p {
  color: var(--c-white);
  opacity: 0.92;
  line-height: 1.55;
}

/* =====================================================================
   FULL-BLEED IMMERSIVE HERO (social-pack aligned)
   ===================================================================== */
.hero-immersive {
  position: relative;
  min-height: 380px;
  background: var(--c-navy-900);
  color: var(--c-white);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-immersive { min-height: auto; }
}

.hero-immersive__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-immersive__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-immersive__bg.is-active { opacity: 1; }

.hero-immersive__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg,
      rgba(14, 26, 53, 0.94) 0%,
      rgba(22, 39, 79, 0.78) 50%,
      rgba(22, 39, 79, 0.55) 100%);
}

/* Orange angular accent in the bottom-right corner (social-pack signature) */
.hero-immersive__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 280px;
  height: 180px;
  background: var(--c-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  opacity: 0.95;
}
@media (max-width: 700px) {
  .hero-immersive__accent {
    width: 160px;
    height: 110px;
  }
}

/* Hero inner uses the standard .container (max-width 1280px, centered).
   Content inside is left-aligned to the container's left edge. */
.hero-immersive__inner {
  position: relative;
  z-index: 3;
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-10);
  text-align: left;
}
@media (min-width: 900px) {
  .hero-immersive__inner {
    padding-top: var(--sp-12);
    padding-bottom: var(--sp-12);
  }
}
/* Constrain text blocks for readability — still left-aligned to container edge */
.hero-immersive__title { max-width: 22ch; }
.hero-immersive__lead { max-width: 56ch; }

.hero-immersive__eyebrow {
  display: inline-block;
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: var(--sp-4);
}

.hero-immersive__title {
  color: var(--c-white);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4);
}
.hero-immersive__title--accent {
  color: var(--c-orange);
}

.hero-immersive__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.2rem);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 0 var(--sp-5);
}

.hero-immersive__btns {
  gap: var(--sp-3);
  flex-wrap: wrap;
}
/* Primary button on dark hero — keep brand orange */
.hero-immersive__btns .btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}
.hero-immersive__btns .btn--primary:hover,
.hero-immersive__btns .btn--primary:focus {
  background: var(--c-gold-700);
  border-color: var(--c-gold-700);
}

/* =====================================================================
   TRUSTED BY INDUSTRY LEADERS STRIP (right after hero)
   ===================================================================== */
.page-home .trusted-strip {
  background: var(--c-white);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--c-grey-200);
}
.page-home .trusted-strip__label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-navy);
  opacity: 0.65;
  margin-bottom: var(--sp-4);
}
.page-home .trusted-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-5) var(--sp-7);
}
.page-home .trusted-strip__logos img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.page-home .trusted-strip__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
@media (min-width: 700px) {
  .page-home .trusted-strip__logos img { height: 56px; }
}

/* --- ABOUT preview: NAVY background + white text -------------------- */
.page-home .about-preview { background: var(--c-navy); }
.page-home .about-preview h2 { color: var(--c-white); }
.page-home .about-preview p { color: rgba(255, 255, 255, 0.85); }

/* 3-column layout on desktop: text | trust list | orange numbers panel */
@media (min-width: 1000px) {
  .page-home .about-preview__grid {
    grid-template-columns: 1fr 1.1fr 0.85fr;
    gap: var(--sp-6);
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .page-home .about-preview__grid {
    grid-template-columns: 1fr 1.15fr 0.9fr;
    gap: var(--sp-7);
  }
}

/* Numbers column — ORANGE panel on navy */
.page-home .about-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--c-orange);
  padding: var(--sp-5) var(--sp-5);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.4);
}
.page-home .about-stats__item {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.page-home .about-stats__item:first-child { padding-top: 0; }
.page-home .about-stats__item:last-child { border-bottom: none; padding-bottom: 0; }
.page-home .about-stats__value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.015em;
}
.page-home .about-stats__plus {
  font-size: 0.65em;
  vertical-align: top;
  margin-left: 2px;
  opacity: 0.85;
}
.page-home .about-stats__label {
  font-size: 0.78rem;
  color: var(--c-white);
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.3;
}

/* Below 1000px: stats panel becomes 2×2 grid under the trust list, still orange */
@media (max-width: 999px) {
  .page-home .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4) var(--sp-5);
    margin-top: var(--sp-6);
    padding: var(--sp-5) var(--sp-5);
  }
  .page-home .about-stats__item {
    border-bottom: none;
    padding: 0;
    border-top: none;
  }
}
/* Learn More button: navy on navy = invisible. Use orange. */
.page-home .about-preview .btn--navy {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}
.page-home .about-preview .btn--navy:hover,
.page-home .about-preview .btn--navy:focus {
  background: var(--c-gold-700);
  border-color: var(--c-gold-700);
  color: var(--c-white);
}

/* --- ABOUT trust list (right column): stacked, navy-bg friendly ---- */
.page-home .about-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-home .about-trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .about-trust li:first-child { padding-top: 0; }
.page-home .about-trust li:last-child { border-bottom: none; padding-bottom: 0; }
.page-home .about-trust__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  background: rgba(210, 138, 41, 0.18);
  border: 1.5px solid var(--c-orange);
  border-radius: 50%;
  color: var(--c-orange);
}
.page-home .about-trust__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
.page-home .about-trust__text strong {
  display: block;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
}
.page-home .about-trust__text span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 2px;
}

/* Industries section: bolder orange-accented pills (more brand presence) */
.page-home .section--industries .industry-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 2px solid var(--c-navy);
  color: var(--c-navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-home .section--industries .industry-pills li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-orange);
  transition: color 0.2s ease;
}
.page-home .section--industries .industry-pills li:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}
.page-home .section--industries .industry-pills li:hover svg {
  color: var(--c-white);
}

/* Consistent orange eyebrow on home (no muddy variations) */
.page-home .eyebrow {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Orange accent bar — sits BETWEEN eyebrow and h2 (after "What we do") */
.page-home .section-intro h2::before,
.page-home .about-preview h2::before,
.page-home .about-split__content h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-orange);
  margin-bottom: var(--sp-3);
  border-radius: 2px;
}
.page-home .section-intro h2::before {
  margin-left: auto;
  margin-right: auto;
}

/* Tighter section dividers — thin orange separator between sections */
.page-home main > section + section.section--industries {
  border-top: 1px solid var(--c-grey-200);
}

/* (stats-row removed from home; about-trust list takes its place) */

/* =====================================================================
   ABOUT PAGE — align with home design direction (navy + orange + white)
   ===================================================================== */

/* Orange accent line — sits AFTER (below) headings in centered sections
   on About page (Core Values, Leadership). For sections with eyebrows
   (Objective, Vision), line stays ABOVE the h2 between eyebrow and heading. */
.page-about .two-col h2::before,
.page-about .about-split__content h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-orange);
  margin-bottom: var(--sp-3);
  border-radius: 2px;
}
.page-about .section-intro h2 { display: inline-block; }
.page-about .section-intro h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-orange);
  margin: var(--sp-3) auto 0;
  border-radius: 2px;
}

/* Light background on Core Values section (Leadership returns to white) */
.page-about .section--grey { background: var(--c-white); }
.page-about .section.section--gold-top { background: #f5f7fa; }

/* SHEQ governance cards (moved from contact page): orange + white text */
.page-about .sheq-cards .card {
  background: var(--c-orange);
  color: var(--c-white);
  border: none;
  border-radius: 6px;
  padding: var(--sp-5);
  box-shadow: 0 8px 24px -12px rgba(22, 39, 79, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-about .sheq-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(22, 39, 79, 0.45);
}
.page-about .sheq-cards .card h3 {
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.page-about .sheq-cards .card p {
  color: var(--c-white);
  opacity: 0.92;
  line-height: 1.55;
}

/* Consistent bold orange eyebrows */
.page-about .eyebrow {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Remove the muddy grey Leadership section bg — clean white */
.page-about .section--grey { background: var(--c-white); }

/* Leader cards: confident white cards with orange left bar */
.page-about .leader-card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-left: 4px solid var(--c-orange);
  border-radius: 4px;
  padding: var(--sp-5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-about .leader-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(22, 39, 79, 0.25);
}
.page-about .leader-card h3 {
  color: var(--c-navy);
  margin-bottom: 4px;
}
.page-about .leader-card .role {
  display: block;
  color: var(--c-orange);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

/* Core Values pills — match home Industries treatment (icons + hover) */
.page-about .section--gold-top .industry-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 2px solid var(--c-navy);
  color: var(--c-navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-about .section--gold-top .industry-pills li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-orange);
  transition: color 0.2s ease;
}
.page-about .section--gold-top .industry-pills li:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}
.page-about .section--gold-top .industry-pills li:hover svg {
  color: var(--c-white);
}

/* Vision & Mission stat grid: ORANGE panel (mirrors home About numbers) */
.page-about .about-split .stat-grid {
  background: var(--c-orange);
  padding: var(--sp-5);
  border-radius: 6px;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.35);
}
.page-about .about-split .stat__icon {
  border-color: var(--c-white);
  color: var(--c-white);
}
.page-about .about-split .stat__value { color: var(--c-white); }
.page-about .about-split .stat__label { color: rgba(255, 255, 255, 0.85); }

/* Contact panel aside on Objective section — orange-accented */
.page-about .contact-panel {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-5);
  border-radius: 6px;
  border-top: 4px solid var(--c-orange);
}
.page-about .contact-panel h3 { color: var(--c-white); margin-top: 0; }
.page-about .contact-panel .muted { color: rgba(255, 255, 255, 0.75); }
.page-about .contact-panel .btn--navy {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}
.page-about .contact-panel .btn--navy:hover {
  background: var(--c-gold-700);
  border-color: var(--c-gold-700);
}

/* =====================================================================
   SERVICES PAGE — align with home design direction
   ===================================================================== */

.page-services .eyebrow {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Section--dark service blocks: orange eyebrow visible on navy */
.page-services .service-block-wrap.section--dark .eyebrow { color: var(--c-orange); }


/* =====================================================================
   PROJECTS PAGE — align with home design direction
   ===================================================================== */

.page-projects .eyebrow {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Orange accent line above all h2 (centered for section-intro) */
.page-projects .section-intro h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-orange);
  margin: 0 auto var(--sp-3);
  border-radius: 2px;
}

/* Typical scopes (grey middle section) → light navy-tinted grey */
.page-projects .section--grey { background: #f5f7fa; }

/* Typical scope cards: ORANGE bg + white text (matches home service cards) */
.page-projects .section--grey .card {
  background: var(--c-orange);
  border: none;
  border-radius: 6px;
  padding: var(--sp-5);
  box-shadow: 0 8px 24px -12px rgba(22, 39, 79, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-projects .section--grey .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(22, 39, 79, 0.45);
}
.page-projects .section--grey .card h3 {
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.page-projects .section--grey .card p {
  color: var(--c-white);
  opacity: 0.92;
  line-height: 1.55;
}


/* =====================================================================
   CONTACT (SHEQ) PAGE — align with home design direction
   ===================================================================== */

.page-contact .eyebrow {
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Orange accent line above h2 in centered intros */
.page-contact .section-intro h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--c-orange);
  margin: 0 auto var(--sp-3);
  border-radius: 2px;
}

/* Contact / RFQ section background: light navy-tinted grey */
.page-contact .section--grey { background: #f5f7fa; }

/* SHEQ governance cards: ORANGE bg + white text (matches home service cards) */
.page-contact .section--dark .card {
  background: var(--c-orange);
  color: var(--c-white);
  border: none;
  border-radius: 6px;
  padding: var(--sp-5);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-contact .section--dark .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.45);
}
.page-contact .section--dark .card h3 {
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.page-contact .section--dark .card p {
  color: var(--c-white);
  opacity: 0.92;
  line-height: 1.55;
}

/* Contact panel aside — navy with orange top border, matching About */
.page-contact .contact-panel {
  background: var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-5);
  border-radius: 6px;
  border-top: 4px solid var(--c-orange);
}
.page-contact .contact-panel h3 { color: var(--c-white); margin-top: 0; }
.page-contact .contact-panel dt {
  color: var(--c-orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: var(--sp-3);
}
.page-contact .contact-panel dd {
  color: var(--c-white);
  margin-left: 0;
}
.page-contact .contact-panel a {
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-contact .contact-panel .btn--primary {
  background: var(--c-orange);
  border-color: var(--c-orange);
}
.page-contact .contact-panel .btn--primary:hover {
  background: var(--c-gold-700);
  border-color: var(--c-gold-700);
}
.page-contact .contact-panel .btn--outline {
  color: var(--c-white);
  border-color: var(--c-white);
}
.page-contact .contact-panel .btn--outline:hover {
  background: var(--c-white);
  color: var(--c-navy);
}

/* --- Print ------------------------------------------------------------- */
@media print {
  .utility-bar, .site-header, .mobile-cta-bar, .nav-toggle { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: none; }
  .promise-band, .cta-orange { background: #fff !important; color: #000 !important; }
  .cta-orange__phone, .cta-orange__title, .cta-orange__eyebrow, .promise-band__list li strong { color: #000 !important; }
}
