﻿/**
 * iCEM theme â€” light UI contrasting the black/orange logo
 * Logo orange (#E68A2E) on charcoal (#333) / black; site uses light surfaces + orange accent
 */

:root {
  --icem-primary: #2b2b2b;       /* Charcoal from logo "ic" */
  --icem-accent: #e68a2e;        /* Logo earthy orange â€” primary CTA */
  --icem-accent-warm: #d47820;   /* Deeper orange for hover */
  --icem-silver: #8a8a8a;        /* Logo secondary text gray */
  --icem-lime: #e68a2e;          /* Mapped to brand orange */
  --icem-tan: #c4a574;
  --icem-muted: #5f5c57;
  --icem-surface-soft: #f3f1ee;  /* Warm light gray â€” contrast to logo black */
  --background-color: #faf9f7;
  --default-color: #2b2b2b;
  --heading-color: #1a1a1a;
  --accent-color: #e68a2e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #3d3a34;
  --nav-hover-color: #e68a2e;
  --nav-dropdown-hover-color: #e68a2e;
  --default-font: "IBM Plex Sans", "Segoe UI", Tahoma, sans-serif;
  --heading-font: "IBM Plex Sans", "Segoe UI", Tahoma, sans-serif;
  --nav-font: "IBM Plex Sans", "Segoe UI", Tahoma, sans-serif;
  --btn-radius: 8px;
  --btn-padding-x: 1.55rem;
  --btn-padding-y: 0.9rem;
  --btn-font-size: 0.94rem;
  --btn-shadow-3d: 0 4px 0 #b8681a, 0 10px 24px rgba(184, 104, 26, 0.28);
  --btn-shadow-3d-hover: 0 6px 0 #a35a14, 0 14px 32px rgba(184, 104, 26, 0.34);
  --btn-shadow-3d-active: 0 2px 0 #a35a14, 0 6px 14px rgba(184, 104, 26, 0.22);
  --btn-letter-spacing: 0.03em;
  --btn-transition: transform 0.2s cubic-bezier(0.22, 0.84, 0.28, 1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

body.icem-index-page {
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--background-color);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.icem-index-page,
body.icem-index-page button,
body.icem-index-page input,
body.icem-index-page select,
body.icem-index-page textarea,
body.icem-index-page .btn,
body.icem-index-page .footer,
body.icem-index-page .footer a,
body.icem-index-page .footer p,
body.icem-index-page .footer li,
body.icem-index-page .navmenu a {
  font-family: var(--default-font);
}

/* Title Case via content — keep brand casing (iCEM); no forced uppercase */
h1, h2, h3, h4, h5, h6,
.icem-hero-title,
.icem-hero-subtitle,
.icem-kicker,
.icem-page-banner h1,
.icem-pillar-body h3,
.icem-section h2,
.icem-cta-band h2,
.icem-shift-label,
.icem-focus-tile h3,
.icem-footer-heading,
.footer h4 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.3;
}

h1, h2,
.icem-section h2,
.icem-page-banner h1,
.icem-cta-band h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* =========================================================
   Site chrome — topbar + single header (logos + menu)
   ========================================================= */
.icem-site-chrome {
  z-index: 1100;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.icem-topbar {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.icem-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
}

.icem-topbar a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.icem-topbar a:hover { color: var(--icem-accent); }

.icem-topbar i {
  color: var(--icem-accent);
  margin-right: 0.3rem;
  font-size: 0.75rem;
}

.icem-topbar-email {
  display: inline-flex;
  align-items: center;
}

.icem-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.icem-topbar-social a {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease;
}

.icem-topbar-social a:hover {
  background: var(--icem-accent);
  color: #fff;
}

.icem-topbar-social i {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
}

.icem-topbar-note {
  color: var(--icem-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.icem-topbar-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 0.85rem;
}

/* Zoom / text-size controls */
.icem-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.icem-zoom-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  min-width: 1.55rem;
  height: 1.45rem;
  padding: 0 0.25rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.icem-zoom-btn.is-default { font-size: 0.8rem; }

.icem-zoom-btn:hover,
.icem-zoom-btn.is-active {
  background: var(--icem-accent);
  color: #fff;
}

/* Compact topbar search */
.icem-topbar-search {
  display: inline-flex;
  align-items: center;
  height: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  min-width: 11rem;
  max-width: 15rem;
}

.icem-topbar-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  padding: 0 0.75rem 0 0.85rem;
  height: 100%;
}

.icem-topbar-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.icem-topbar-search-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--icem-accent);
  width: 2rem;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.icem-topbar-search-btn:hover { color: #fff; }
.icem-topbar-search-btn i { margin: 0; font-size: 0.85rem; color: inherit; }

/* Search results page */
.icem-search-page-row {
  display: flex;
  gap: 0.65rem;
  max-width: 36rem;
}

.icem-search-page-row input {
  flex: 1 1 auto;
  border: 1px solid rgba(43, 43, 43, 0.14);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  background: #fff;
}

.icem-search-result {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.icem-search-result a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--icem-primary);
  text-decoration: none;
}

.icem-search-result a:hover { color: var(--icem-accent); }

.icem-search-result p {
  margin: 0.35rem 0 0;
  color: var(--icem-muted);
  font-size: 0.95rem;
}

/* =========================================================
   Header: brand column (left) + menu rail over hero (right)
   Brand NEVER covers menus — diagonal starts BELOW the menu row
   ========================================================= */
#icem-header.icem-header {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 0 !important;
  min-height: 0;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

.icem-header-shell {
  --icem-rail-h: 56px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: var(--icem-rail-h) auto;
  align-items: start;
  width: 100%;
  position: relative;
  background: transparent;
}

/* White brand column — hangs into hero; vertical edge beside menus */
.icem-brand-panel {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 0.45rem 1.35rem 1.35rem 1.25rem;
  margin: 0 0 -2.25rem;
  /* Top = full rectangle next to menus; diagonal only below rail height */
  clip-path: polygon(
    0 0,
    100% 0,
    100% var(--icem-rail-h),
    calc(100% - 42px) 100%,
    0 100%
  );
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(4px 12px 22px rgba(0, 0, 0, 0.2));
}

.icem-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem 0.9rem;
  line-height: 1;
  min-height: calc(var(--icem-rail-h) - 0.5rem);
  padding-top: 0.15rem;
}

.icem-header-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.icem-brand-divider {
  display: block;
  align-self: stretch;
  width: 1px;
  min-height: 3.5rem;
  background: rgba(43, 43, 43, 0.22);
  flex: 0 0 1px;
}

.icem-brand-slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  font-family: var(--default-font);
  font-size: clamp(0.68rem, 0.85vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--icem-accent);
  white-space: nowrap;
}

.icem-brand-slogan span { display: block; }

/* Menu rail: light bar like reference (logo slant + light nav) */
.icem-header-rail {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: var(--icem-rail-h);
  min-height: var(--icem-rail-h);
  padding: 0 4.25rem 0 0.75rem;
  overflow: visible;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.icem-brand-gmdc {
  flex: 0 0 auto;
  display: block;
  padding: 0.08rem;
  background: #0a0a0a;
  border-radius: 5px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  opacity: 0.95;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.icem-brand-gmdc:hover {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.icem-gmdc-logo-img {
  display: block;
  max-height: 32px;
  width: auto;
}

/* Mobile menu header (Menu + X) — hidden unless mobile drawer is open */
.icem-mobile-menu-head {
  display: none !important;
}

#icem-navmenu {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: transparent !important;
  overflow: visible;
  position: relative;
  z-index: 31;
}

#icem-navmenu .icem-mobile-nav-toggle {
  position: static;
  transform: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  line-height: 1;
  color: #2b2b2b;
  font-size: 1.65rem;
}

/* Top-level links only (not dropdown items) */
#icem-navmenu > ul > li > a {
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 0.8rem;
  color: #2b2b2b;
  letter-spacing: 0;
}

#icem-navmenu > ul > li > a:hover,
#icem-navmenu > ul > li > a.active {
  color: var(--icem-accent);
}

.icem-wordmark {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  display: flex;
  align-items: baseline;
}

.icem-wm-ic { color: #2b2b2b; }
.icem-wm-em { color: var(--icem-accent); }

.icem-brand-title {
  margin-top: 0.1rem;
  font-family: var(--heading-font);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.2;
  color: #2b2b2b;
  text-transform: none;
}

@media (min-width: 1200px) {
  .icem-hero,
  .icem-page-banner {
    margin-top: calc(var(--icem-rail-h, 56px) * -1);
  }

  .icem-page-banner {
    padding-top: calc(5.5rem + var(--icem-rail-h, 56px));
  }

  #icem-header .icem-navmenu {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    flex: 0 1 auto !important;
    order: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
  }

  #icem-header .icem-navmenu > ul {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap;
    width: auto !important;
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
    float: none !important;
    list-style: none;
    gap: 0.35rem;
    height: 100% !important;
  }

  #icem-header .icem-navmenu > ul > li {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    height: 100%;
  }

  /* Mobile-only menu chrome — never show on desktop/laptop nav */
  #icem-header .icem-navmenu > ul > li.icem-mobile-menu-head {
    display: none !important;
  }

  #icem-header .icem-navmenu > ul > li > a {
    padding: 0 0.65rem !important;
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
    white-space: nowrap;
    color: #2b2b2b !important;
    text-shadow: none;
    transition: color 0.2s ease;
  }

  #icem-header .icem-navmenu > ul > li > a i {
    font-size: 0.65rem;
    margin-left: 0.18rem;
    color: inherit;
  }

  #icem-header .icem-navmenu > ul > li:first-child > a,
  #icem-header .icem-navmenu > ul > li:last-child > a {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }

  #icem-header .icem-navmenu > ul > li > a::after {
    bottom: 0.55rem !important;
    height: 2px;
    background: var(--icem-accent);
  }

  #icem-header .icem-navmenu > ul > li > a.active,
  #icem-header .icem-navmenu > ul > li > a:hover {
    color: var(--icem-accent) !important;
  }

  #icem-header .icem-navmenu > ul > li > a.active::after,
  #icem-header .icem-navmenu > ul > li > a:hover::after {
    width: 55%;
  }

  #icem-header .icem-navmenu .dropdown ul {
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 1000 !important;
    background: #ffffff !important;
    border: 1px solid rgba(43, 43, 43, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    padding: 0.45rem 0 !important;
    visibility: hidden;
    opacity: 0;
  }

  #icem-header .icem-navmenu .dropdown:hover > ul,
  #icem-header .icem-navmenu .dropdown:focus-within > ul {
    visibility: visible !important;
    opacity: 1 !important;
    top: 100% !important;
  }

  #icem-header .icem-navmenu .dropdown ul a {
    color: #2b2b2b !important;
    text-shadow: none !important;
    font-size: 0.88rem !important;
    padding: 0.55rem 1.1rem !important;
    height: auto !important;
    display: block !important;
    white-space: nowrap;
  }

  #icem-header .icem-navmenu .dropdown ul a:hover,
  #icem-header .icem-navmenu .dropdown ul a.active {
    color: var(--icem-accent) !important;
    background: rgba(230, 138, 46, 0.08);
  }

  #icem-header .icem-navmenu > ul > li.dropdown {
    position: relative;
    overflow: visible;
  }

  body.scrolled .icem-header-rail {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  }
}

@media (min-width: 1400px) {
  .icem-header-shell { --icem-rail-h: 58px; }

  .icem-brand-panel {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  }

  .icem-header-logo-img { height: 80px; }

  .icem-brand-slogan { font-size: 0.84rem; }

  .icem-header-rail { padding-right: 4.5rem; }

  .icem-hero,
  .icem-page-banner {
    margin-top: -58px;
  }

  .icem-page-banner {
    padding-top: calc(5.5rem + 58px);
  }

  #icem-header .icem-navmenu > ul > li > a {
    padding: 0 0.75rem !important;
    font-size: 0.82rem !important;
  }
}

@media (min-width: 1600px) {
  #icem-header .icem-navmenu > ul > li > a {
    padding: 0 0.85rem !important;
    font-size: 0.84rem !important;
  }
}

@media (max-width: 1199.98px) {
  .icem-header-shell {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
    padding-inline: 0.25rem;
    position: relative;
    z-index: 20;
  }

  .icem-brand-panel {
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
    filter: none;
    margin-bottom: 0;
    padding: 0.45rem 0.85rem;
    box-shadow: none;
    flex: 1 1 auto;
    min-width: 0;
    grid-column: auto;
    grid-row: auto;
  }

  .icem-header-rail {
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
    height: auto;
    min-height: 0;
    border-bottom: 0;
    box-shadow: none;
    padding: 0.35rem 0.65rem 0.35rem 0;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    z-index: 30;
  }

  #icem-navmenu {
    flex: 0 0 auto;
    justify-content: flex-end;
    width: auto;
    min-width: 2.75rem;
    position: static;
    overflow: visible;
    z-index: 40;
  }

  /* Always-visible hamburger */
  #icem-navmenu .icem-mobile-nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10002;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(43, 43, 43, 0.14);
    border-radius: 8px;
    background: #fff;
    color: #2b2b2b !important;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  #icem-header .icem-navmenu > ul {
    display: none;
    top: auto;
  }

  .icem-header-logo-img { height: 56px; }

  .icem-brand-divider { min-height: 2.75rem; }

  .icem-brand-slogan {
    font-size: 0.6rem;
    gap: 0.06rem;
  }

  .icem-gmdc-logo-img { max-height: 28px; }

  .icem-brand-gmdc {
    position: static;
    transform: none;
    flex-shrink: 0;
  }

  .icem-brand-gmdc:hover { transform: translateY(-1px); }

  /* Full-screen mobile menu panel */
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active .icem-site-chrome {
    z-index: 10050;
  }

  body.mobile-nav-active .icem-navmenu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(20, 18, 14, 0.55) !important;
    z-index: 10060 !important;
    overflow: hidden !important;
    display: block !important;
  }

  /* Hide header hamburger while open — panel has its own close control */
  body.mobile-nav-active #icem-navmenu .icem-mobile-nav-toggle,
  body.mobile-nav-active .icem-mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.mobile-nav-active .icem-navmenu > ul {
    display: block !important;
    position: absolute !important;
    top: 4.75rem !important;
    left: 0.85rem !important;
    right: 0.85rem !important;
    bottom: 1rem !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 1rem !important;
    border-radius: 12px !important;
    background: #fff !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
    z-index: 10070 !important;
    visibility: visible !important;
    opacity: 1 !important;
    float: none !important;
  }

  body.mobile-nav-active .icem-navmenu > ul > li.icem-mobile-menu-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 0.75rem;
    padding: 0.85rem 1rem !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(43, 43, 43, 0.1) !important;
    background: #f7f4ef !important;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  body.mobile-nav-active .icem-mobile-menu-head span {
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(43, 43, 43, 0.55);
    margin-right: auto;
  }

  body.mobile-nav-active .icem-mobile-nav-close {
    appearance: none;
    border: 0;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
    flex: 0 0 auto;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2b2b2b;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  body.mobile-nav-active .icem-mobile-nav-close:hover,
  body.mobile-nav-active .icem-mobile-nav-close:focus-visible {
    background: var(--icem-accent, #e68a2e);
    outline: none;
  }

  body.mobile-nav-active .icem-mobile-nav-close i {
    margin: 0;
    color: inherit;
  }

  body.mobile-nav-active .icem-navmenu > ul > li {
    display: block !important;
    float: none !important;
    width: 100%;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  }

  body.mobile-nav-active .icem-navmenu > ul > li.icem-mobile-menu-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 0.75rem;
    padding: 0.85rem 1rem !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(43, 43, 43, 0.1) !important;
    background: #f7f4ef !important;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  body.mobile-nav-active .icem-navmenu > ul > li.icem-mobile-menu-head > span {
    flex: 0 0 auto;
    margin: 0 !important;
  }

  body.mobile-nav-active .icem-navmenu > ul > li.icem-mobile-menu-head > .icem-mobile-nav-close {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  body.mobile-nav-active .icem-navmenu > ul > li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1.15rem !important;
    color: #2b2b2b !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background: transparent !important;
  }

  body.mobile-nav-active .icem-navmenu > ul > li > a:hover,
  body.mobile-nav-active .icem-navmenu > ul > li > a.active {
    color: var(--icem-accent) !important;
  }

  body.mobile-nav-active .icem-navmenu .dropdown ul {
    position: static !important;
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    left: auto !important;
    top: auto !important;
    margin: 0 0.85rem 0.75rem !important;
    padding: 0.35rem 0 !important;
    background: #f7f4ef !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
  }

  body.mobile-nav-active .icem-navmenu .dropdown > ul.dropdown-active {
    display: block !important;
  }

  body.mobile-nav-active .icem-navmenu .dropdown ul a {
    padding: 0.7rem 1rem !important;
    color: #3f3c37 !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
  }
}


@media (max-width: 991.98px) {
  .icem-topbar-note { display: none; }
  .icem-topbar-tools > a { display: none; }
}

@media (max-width: 767.98px) {
  .icem-topbar-left a:first-child { display: none; }

  .icem-topbar-inner {
    justify-content: center;
  }

  .icem-topbar-tools {
    justify-content: center;
    width: 100%;
  }

  .icem-topbar-search {
    min-width: 8.5rem;
    max-width: 11rem;
  }

  .icem-brand-lockup { gap: 0.45rem; }

  .icem-header-logo-img { height: 54px; }

  .icem-brand-divider { min-height: 2.75rem; }

  .icem-brand-slogan { font-size: 0.55rem; }

  .icem-gmdc-logo-img { max-height: 24px; }
}

@media (max-width: 575.98px) {
  .icem-topbar-left { display: none !important; }

  .icem-topbar-inner {
    justify-content: center;
  }

  .icem-topbar-tools {
    justify-content: center;
    width: 100%;
  }

  .icem-topbar-search {
    min-width: 7.5rem;
    max-width: 9.5rem;
  }

  .icem-brand-lockup {
    gap: 0.35rem;
    min-width: 0;
  }

  .icem-brand-divider {
    display: block;
    min-height: 2.35rem;
  }

  .icem-brand-slogan {
    display: flex;
    font-size: 0.5rem;
    gap: 0.04rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .icem-header-logo-img { height: 44px; }

  .icem-gmdc-logo-img { max-height: 22px; }
}

/* Hero clearance handled in home.css (viewport-fit hero) */


/* ---------- Theme cursor: defined gold/charcoal pointer ---------- */
.icem-cursor-enabled,
.icem-cursor-enabled * {
  cursor: none !important;
}

.icem-theme-cursor {
  --cx: 50%;
  --cy: 50%;
  --rx: 50%;
  --ry: 50%;
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 100000;
  transform: translate(var(--cx), var(--cy));
  will-change: transform;
}

.icem-theme-cursor-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  transition: transform 0.15s ease;
  transform-origin: 4px 2px;
}

.icem-theme-cursor-arrow {
  transition: fill 0.15s ease;
}

.icem-theme-cursor-dot {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2b2b2b;
  border: 1.5px solid #e68a2e;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.icem-theme-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(230, 138, 46, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(var(--rx), var(--ry)) scale(0.55);
  opacity: 0;
  transition: opacity 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  will-change: transform;
}

.icem-theme-cursor.is-hover .icem-theme-cursor-svg {
  transform: scale(0.92);
}

.icem-theme-cursor.is-hover .icem-theme-cursor-dot {
  opacity: 1;
  transform: scale(1);
}

.icem-theme-cursor.is-hover ~ .icem-theme-cursor-ring,
.icem-theme-cursor.is-hover .icem-theme-cursor-ring {
  opacity: 1;
}

/* ring is child of cursor in HTML */
.icem-theme-cursor .icem-theme-cursor-ring {
  position: absolute;
  top: 4px;
  left: 4px;
  margin: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.icem-theme-cursor.is-hover .icem-theme-cursor-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: icem-ptr-ring 0.9s ease-out infinite;
}

.icem-theme-cursor.is-press .icem-theme-cursor-svg {
  transform: scale(0.82);
}

.icem-theme-cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  overflow: hidden;
}

.icem-theme-trail-mote {
  position: fixed;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: rgba(230, 138, 46, 0.55);
  pointer-events: none;
  animation: icem-ptr-mote 0.4s ease-out forwards;
}

@keyframes icem-ptr-ring {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(1.35); opacity: 0; }
}

@keyframes icem-ptr-mote {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(0.2); opacity: 0; }
}

@media (max-width: 991.98px), (pointer: coarse) {
  .icem-theme-cursor,
  .icem-theme-cursor-trail {
    display: none !important;
  }
  .icem-cursor-enabled,
  .icem-cursor-enabled * {
    cursor: auto !important;
  }
}

/* Hide previous mineral / gear cursor remnants */
.icem-mineral-cursor,
.icem-mineral-trail,
.icem-mineral-label,
.icem-ore-dust,
.icem-gear-cursor,
.icem-trail,
.icem-cursor-label {
  display: none !important;
}

/* ---------- iCEM branded preloader ---------- */
#icem-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(230, 138, 46, 0.18), transparent 60%),
    linear-gradient(160deg, #141210 0%, #1c1916 45%, #12100e 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#icem-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.015) 22px,
      rgba(255, 255, 255, 0.015) 23px
    );
  pointer-events: none;
}

#icem-preloader.icem-preloader-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.icem-preloader-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.25rem;
  max-width: 18rem;
}

.icem-loader {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.35rem;
}

.icem-loader-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--icem-accent, #e68a2e);
  border-right-color: rgba(230, 138, 46, 0.25);
  animation: icem-loader-spin 1.1s linear infinite;
}

.icem-loader-orbit-2 {
  inset: 0.7rem;
  border-top-color: rgba(255, 255, 255, 0.55);
  border-right-color: rgba(255, 255, 255, 0.12);
  animation-duration: 1.65s;
  animation-direction: reverse;
}

.icem-loader-core {
  position: absolute;
  inset: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #f7f4ef 55%, #ebe6df 100%);
  box-shadow:
    0 0 0 4px rgba(230, 138, 46, 0.45),
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -8px 18px rgba(43, 43, 43, 0.08);
  animation: icem-loader-pulse 1.8s ease-in-out infinite;
}

.icem-loader-mark {
  width: 5.25rem;
  height: auto;
  max-width: 78%;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(43, 43, 43, 0.18));
}

.icem-preloader-brand {
  margin: 0 0 0.35rem;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
}

.icem-preloader-caption {
  margin: 0 0 1.15rem;
  font-family: var(--default-font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: rgba(255, 236, 210, 0.72);
}

.icem-preloader-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.icem-preloader-bar {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c97828, #e68a2e, #f0b46a);
  animation: icem-loader-bar 1.15s ease-in-out infinite;
}

@keyframes icem-loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes icem-loader-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes icem-loader-bar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@media (prefers-reduced-motion: reduce) {
  .icem-loader-orbit,
  .icem-loader-orbit-2,
  .icem-loader-core,
  .icem-preloader-bar {
    animation: none;
  }

  .icem-loader-orbit,
  .icem-loader-orbit-2 {
    border-top-color: var(--icem-accent, #e68a2e);
    border-right-color: var(--icem-accent, #e68a2e);
  }

  .icem-preloader-bar {
    width: 70%;
    transform: none;
  }
}

/* Legacy spinner classname kept for safety */
.icem-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid rgba(43, 43, 43, 0.12);
  border-top-color: var(--icem-accent, #e68a2e);
  animation: icem-loader-spin 0.75s linear infinite;
}

/* Scroll top */
.icem-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--icem-primary);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 990;
  transition: 0.25s ease;
}

.icem-scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.icem-scroll-top:hover {
  background: var(--icem-accent);
  color: #fff;
}

/* Footer — light surface contrasting dark logo-light mark */
.footer.icem-footer-light {
  background:
    linear-gradient(180deg, #f7f4ef 0%, #f0ebe3 55%, #ebe5db 100%);
  color: #3d3a34;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
  margin-top: 0;
  padding: 0 !important;
  font-size: 0.95rem;
}

.icem-footer-main {
  padding: 3.25rem 0 2.5rem;
}

.icem-footer-brand {
  max-width: 22rem;
}

/* Fixed layout footprint — logo can scale up without growing the footer */
.icem-footer-logo-slot {
  display: block;
  height: 88px;
  width: min(280px, 72vw);
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.icem-footer-logo {
  position: absolute;
  left: 0;
  top: 50%;
  height: 88px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-50%) scale(2.05);
  transform-origin: left center;
}

.icem-footer-slogan {
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--icem-accent);
  letter-spacing: 0.01em;
}

.icem-footer-about {
  margin: 0;
  max-width: 28rem;
  color: var(--icem-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer.icem-footer-light .icem-footer-heading {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin: 0 0 1rem;
  padding-bottom: 0;
  letter-spacing: 0.02em;
}

.footer.icem-footer-light .icem-footer-heading:after {
  display: none;
}

.icem-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icem-footer-list li {
  margin: 0 0 0.55rem;
}

.icem-footer-list a {
  color: #4a4640;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.icem-footer-list a:hover {
  color: var(--icem-accent);
}

.icem-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.icem-footer-contact li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.9rem;
  color: #4a4640;
  line-height: 1.45;
}

.icem-footer-contact i {
  color: var(--icem-accent);
  margin-top: 0.15rem;
}

.icem-footer-contact a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 600;
}

.icem-footer-contact a:hover {
  color: var(--icem-accent);
}

.icem-footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(43, 43, 43, 0.1);
  color: #2b2b2b;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.icem-footer-social a:hover {
  background: var(--icem-accent);
  border-color: var(--icem-accent);
  color: #fff;
  transform: translateY(-2px);
}

.icem-footer-bar {
  background: #2b2b2b;
  color: rgba(255, 255, 255, 0.82);
  padding: 1rem 0;
  font-size: 0.84rem;
}

.icem-footer-bar strong {
  color: #fff;
}

.icem-footer-bar-note {
  color: rgba(255, 255, 255, 0.55);
}

/* Legacy dark footer hooks (kept harmless if referenced) */
.icem-footer-dark {
  background: linear-gradient(180deg, #141210 0%, #0d0c0a 100%);
  color: rgba(255, 255, 255, 0.86);
}

.icem-footer-dark h4 {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
}

.icem-footer-dark a {
  color: rgba(255, 255, 255, 0.82);
}

.icem-footer-dark a:hover {
  color: var(--icem-accent);
}

.icem-footer-dark .icem-logo-img {
  border-radius: 6px;
}

.icem-wordmark-footer {
  font-size: 2.35rem;
}

.icem-wordmark-footer .icem-wm-ic {
  color: #d0d0d0;
}

.icem-footer-brand .icem-brand-title {
  color: rgba(255, 255, 255, 0.65);
  max-width: 16rem;
}

.icem-footer-dark .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

/* Shared page banner */
.icem-page-banner {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  background:
    linear-gradient(120deg, rgba(20, 18, 14, 0.88), rgba(230, 138, 46, 0.42)),
    url('../img/icem-hero.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.icem-page-banner h1 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 0.65rem;
}

.icem-page-banner p {
  max-width: 42rem;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}

.icem-section {
  padding: 4.5rem 0;
}

.icem-section-soft {
  background: var(--icem-surface-soft);
}

.icem-kicker {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--icem-accent-warm);
  margin-bottom: 0.75rem;
}

.icem-section h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--icem-primary);
  margin-bottom: 1rem;
}

.icem-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--btn-padding-y, 0.9rem) var(--btn-padding-x, 1.55rem);
  border-radius: var(--btn-radius, 8px);
  border: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: var(--btn-font-size, 0.94rem);
  letter-spacing: var(--btn-letter-spacing, 0.03em);
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transform: translateY(0);
  transition: var(--btn-transition);
  isolation: isolate;
}

.icem-btn::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
  opacity: 0.85;
}

.icem-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #f0a04a 0%, #e68a2e 48%, #d47820 100%);
  box-shadow: var(--btn-shadow-3d);
  text-shadow: 0 1px 0 rgba(120, 60, 10, 0.25);
}

.icem-btn-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #f4ad5c 0%, #eb9338 48%, #db8124 100%);
  transform: translateY(-3px);
  box-shadow: var(--btn-shadow-3d-hover);
  filter: saturate(1.05);
}

.icem-btn-primary:active {
  transform: translateY(1px);
  box-shadow: var(--btn-shadow-3d-active);
  filter: none;
}

.icem-btn-ghost {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.28),
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.icem-btn-ghost:hover {
  color: var(--icem-primary, #2b2b2b);
  background: linear-gradient(180deg, #ffffff 0%, #f3f0ea 100%);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 5px 0 rgba(0, 0, 0, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.icem-btn-ghost:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 6px 14px rgba(0, 0, 0, 0.18);
}

.icem-btn-outline {
  color: #2b2b2b;
  background: linear-gradient(180deg, #ffffff 0%, #f4f1ec 100%);
  border: 1.5px solid rgba(43, 43, 43, 0.18);
  box-shadow:
    0 4px 0 #2b2b2b,
    0 10px 22px rgba(43, 43, 43, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.icem-btn-outline:hover {
  color: #fff;
  background: linear-gradient(180deg, #3a3a3a 0%, #2b2b2b 100%);
  border-color: #2b2b2b;
  transform: translateY(-3px);
  box-shadow:
    0 5px 0 #1a1a1a,
    0 14px 28px rgba(43, 43, 43, 0.22);
}

.icem-btn-outline:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 #1a1a1a,
    0 6px 14px rgba(43, 43, 43, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .icem-btn,
  .icem-btn-primary,
  .icem-btn-ghost,
  .icem-btn-outline {
    transition: none;
  }

  .icem-btn:hover,
  .icem-btn-primary:hover,
  .icem-btn-ghost:hover,
  .icem-btn-outline:hover,
  .icem-btn:active,
  .icem-btn-primary:active,
  .icem-btn-ghost:active,
  .icem-btn-outline:active {
    transform: none;
  }
}

/* Shared content helpers */
.icem-lead {
  color: var(--icem-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 42rem;
}

.icem-fact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.icem-fact-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.15rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--default-color);
}

.icem-fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--icem-accent);
}

.icem-initiative {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--icem-primary);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.icem-initiative:hover {
  background: var(--icem-primary);
  color: var(--icem-accent);
  transform: translateY(-3px);
}

.icem-initiative-grid .icem-initiative {
  cursor: default;
}

.icem-pillar {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.icem-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
  color: inherit;
}

.icem-pillar-visual {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.icem-pillar-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.4), transparent 55%);
}

.icem-pillar-mining {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.25), rgba(230, 138, 46, 0.2)), url('../img/icem-hero.png');
  background-position: 8% center;
}

.icem-pillar-process {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.25), rgba(230, 138, 46, 0.2)), url('../img/icem-hero.png');
  background-position: 48% center;
}

.icem-pillar-energy {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.25), rgba(230, 138, 46, 0.2)), url('../img/icem-hero.png');
  background-position: 72% center;
}

.icem-pillar-digital {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.25), rgba(230, 138, 46, 0.2)), url('../img/icem-hero.png');
  background-position: 92% center;
}

.icem-pillar-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.icem-pillar-body h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--icem-primary);
  margin-bottom: 0.55rem;
}

.icem-pillar-body p {
  color: var(--icem-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.icem-pillar-link {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--icem-accent-warm);
}
