/* ============================================================
   EMS DESIGN SYSTEM — Enterprise Management Solutions
   Version: 2.0
   Architecture: Bootstrap 5 base + custom layer
   Fonts: DM Serif Display + Plus Jakarta Sans
   ============================================================ */


/* ============================================================
   01. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Gold Palette */
  --gold-primary:    #C9993A;
  --gold-light:      #E0BB67;
  --gold-pale:       #F5EDD6;
  --gold-muted:      rgba(201, 153, 58, 0.15);
  --gold-border:     rgba(201, 153, 58, 0.3);

  /* Dark Palette */
  --dark-base:       #0A0A0A;
  --dark-surface:    #111111;
  --dark-elevated:   #1A1A1A;
  --dark-card:       #161616;

  /* Light Palette */
  --off-white:       #FAFAF7;
  --surface-light:   #F2F1EC;
  --surface-warm:    #EDE9E0;
  --surface-card:    #FFFFFF;

  /* Text */
  --text-primary:    #141414;
  --text-secondary:  #3D3B35;
  --text-muted:      #6E6B63;
  --text-light:      #A8A49C;
  --text-inverse:    #FAFAF7;

  /* Borders */
  --border-light:    #E5E3DC;
  --border-medium:   #D4D1C8;
  --border-dark:     rgba(255, 255, 255, 0.07);
  --border-dark-hover: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display:    'DM Serif Display', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   96px;
  --space-xxl:  140px;

  /* Radius */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 40px rgba(201,153,58,0.18);
  --shadow-gold-lg: 0 16px 64px rgba(201,153,58,0.25);

  /* Transitions */
  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.18s var(--ease-out);
  --t-base:  0.35s var(--ease-out);
  --t-slow:  0.6s  var(--ease-out);

  /* Z-index */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   1000;
  --z-nav:     1100;
}


/* ============================================================
   02. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Override Bootstrap body default */
body.navbar-light { background-color: var(--off-white) !important; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.75;
}

a { text-decoration: none; }
img { display: block; }


/* ============================================================
   03. TYPOGRAPHY SCALE
   ============================================================ */
.ems-h1  { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); line-height: 1.08; letter-spacing: -0.03em; }
.ems-h2  { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1;  letter-spacing: -0.025em; }
.ems-h3  { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; letter-spacing: -0.02em; }
.ems-h4  { font-family: var(--font-body);    font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;  line-height: 1.25; }
.ems-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-primary); }
.ems-lead  { font-size: 18px; font-weight: 400; color: var(--text-muted); line-height: 1.8; }
.ems-body  { font-family: var(--font-body); font-size: 16px; color: var(--text-secondary); line-height: 1.75; }


/* ============================================================
   04. CONTACT INFO BAR (TOP)
   ============================================================ */
.contact-info-bar {
  background: var(--dark-base);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(201,153,58,0.15);
}

.contact-info-bar .contact-item a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--t-fast);
}

.contact-info-bar .contact-item a:hover { color: var(--gold-light); }

.contact-info-bar .contact-item a i {
  color: var(--gold-primary);
  font-size: 11px;
}

.contact-info-bar .contact-item + .contact-item::before {
  content: '';
  width: 1px;
  height: 12px;
  background: rgba(201,153,58,0.3);
  display: inline-block;
  margin-right: 32px;
}

@media (max-width: 991px) {
  .contact-info-bar { gap: 20px; }
  .contact-item-address { display: none; }
}

@media (max-width: 575px) {
  .contact-info-bar { gap: 0; justify-content: center; }
  .contact-item-email  { display: none; }
  .contact-item + .contact-item::before { display: none; }
}


/* ============================================================
   05. NAVBAR
   ============================================================ */
.navbar.navbar-dark {
  background: var(--dark-base) !important;
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 0;
  height: 76px;
  transition: top var(--t-base), background var(--t-base), box-shadow var(--t-base);
}

.navbar.navbar-dark.scrolled {
  top: 0;
  background: rgba(10,10,10,0.96) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.4);
}

.navbar .container { height: 100%; }

/* Logo */
.navbar-brand img.logo {
  height: 68px !important;
  width: auto;
  transition: opacity var(--t-fast);
}
.navbar-brand:hover img.logo { opacity: 0.85; }

/* Nav Links */
.navbar .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  padding: 0 18px !important;
  height: 76px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color var(--t-fast);
}

.navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover { color: #fff !important; }
.navbar .navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar .navbar-nav .nav-link.active { color: var(--gold-light) !important; }
.navbar .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Dropdown toggle arrow */
.navbar .dropdown-toggle::after {
  border: none;
  content: '↓';
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
  background: var(--dark-surface) !important;
  border: none !important;
  border-top: 2px solid var(--gold-primary) !important;
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5) !important;
  padding: 8px 0 12px !important;
  min-width: 260px;
  margin-top: 0 !important;
  animation: dropdownIn 0.2s var(--ease-out) forwards;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65) !important;
  padding: 10px 22px !important;
  letter-spacing: 0.01em;
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.navbar .dropdown-item::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--t-base);
}

.navbar .dropdown-item:hover {
  background: rgba(201,153,58,0.08) !important;
  color: var(--gold-light) !important;
  padding-left: 28px !important;
}

.navbar .dropdown-item:hover::before { width: 12px; }

/* --- Services Mega-Dropdown --- */
.navbar .services-mega-menu {
  min-width: 540px;
  padding: 20px 0 16px !important;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 12px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}

.mega-menu-item:hover {
  background: rgba(201,153,58,0.08);
}

.mega-menu-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.1);
  border: 1px solid rgba(201,153,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.mega-menu-item:hover .mega-menu-icon {
  background: rgba(201,153,58,0.2);
  border-color: var(--gold-primary);
}

.mega-menu-icon i {
  font-size: 14px;
  color: var(--gold-primary);
}

.mega-menu-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

.mega-menu-text span {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Navbar CTA Button */
.navbar .btn-nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold-primary);
  color: var(--dark-base) !important;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar .btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.navbar .btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--dark-base) !important;
}

.navbar .btn-nav-cta:hover::before { left: 150%; }

/* Hamburger */
.navbar-toggler {
  border: 1px solid rgba(201,153,58,0.4) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 10px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(224,187,103,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar offset for fixed nav */
.navbar-spacer {
  height: 114px; /* 38px info bar + 76px nav */
}

@media (max-width: 991px) {
  /* bar is visible; navbar inherits global top: 38px and scrolled: top: 0 */
}

/* ── Desktop: ensure nav items right-align ── */
@media (min-width: 992px) {
  .navbar .navbar-collapse { justify-content: flex-end; }
}

/* ── Mobile panel header / footer — hidden on desktop ── */
.mobile-panel-header,
.mobile-panel-footer,
.navbar-mobile-close { display: none; }

/* Mob chevron: hidden on desktop, shown only in mobile panel */
.mob-chevron { display: none; }

/* ============================================================
   Mobile off-canvas panel
   ============================================================ */
@media (max-width: 991px) {

  /* Panel shell */
  .navbar .navbar-collapse {
    display: flex !important;          /* override Bootstrap display:none on .collapse */
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 92vw);
    height: 100vh;
    background: var(--dark-surface);
    border-left: 1px solid var(--border-dark);
    padding: 0;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: var(--z-modal);
    box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  }

  .navbar .navbar-collapse.show { right: 0; }

  /* ── Panel header ── */
  .mobile-panel-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 18px 70px 18px 24px;   /* right gap reserves space under close btn */
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255,255,255,0.02);
  }

  /* ── Nav list (scrollable middle section) ── */
  .navbar .navbar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px 0;
    -webkit-overflow-scrolling: touch;
  }

  .navbar .navbar-nav .nav-link {
    height: auto;
    padding: 13px 0 !important;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85) !important;
  }

  .navbar .navbar-nav .nav-link::after { display: none; }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active { color: var(--gold-light) !important; }

  /* Dropdowns — accordion (collapsed by default) */
  .navbar .dropdown-toggle::after { display: none !important; }

  /* Make toggle a flex row so chevron right-aligns */
  .navbar .navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Chevron icon */
  .mob-chevron {
    display: inline-block;
    font-size: 10px;
    opacity: 0.45;
    margin-left: 8px;
    transition: transform 0.25s ease, opacity 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }
  .nav-item.dropdown.mobile-expanded > .dropdown-toggle .mob-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--gold-light);
  }

  .navbar .dropdown-menu {
    position: static !important;
    background: transparent !important;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    padding: 0 0 0 16px !important;
    animation: none !important;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.32s ease;
  }

  .nav-item.dropdown.mobile-expanded > .dropdown-menu {
    max-height: 900px;
    padding-top: 4px !important;
    padding-bottom: 6px !important;
  }

  .navbar .dropdown-item {
    padding: 9px 0 !important;
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    white-space: normal;
  }

  .navbar .dropdown-item:hover {
    color: var(--gold-light) !important;
    padding-left: 6px !important;
    background: transparent !important;
  }

  /* Services mega-menu in panel */
  .services-mega-menu { min-width: unset !important; }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .mega-menu-item {
    padding: 9px 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 10px;
  }

  .mega-menu-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .mega-menu-text strong { font-size: 13px; }
  .mega-menu-text span   { font-size: 11.5px; }

  .mega-menu-footer {
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .mega-menu-view-all { font-size: 12px; }

  /* ── Panel footer ── */
  .mobile-panel-footer {
    display: block;
    flex-shrink: 0;
    padding: 18px 24px 30px;
    border-top: 1px solid var(--border-dark);
    background: rgba(255,255,255,0.02);
  }

  .mobile-panel-footer .btn-nav-cta {
    display: block;
    text-align: center;
    margin-bottom: 18px;
    width: 100%;
  }

  /* “Get in Touch” label */
  .mobile-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin: 0 0 12px;
    opacity: 0.8;
  }

  /* Contact card rows */
  .mobile-panel-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: background var(--t-fast), border-color var(--t-fast);
  }

  .mobile-contact-item:hover {
    background: rgba(201,153,58,0.07);
    border-color: rgba(201,153,58,0.2);
  }

  .mci-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201,153,58,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mci-icon i {
    color: var(--gold-primary);
    font-size: 11px;
  }

  .mci-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
  }

  .mci-type {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    line-height: 1;
  }

  .mci-value {
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
  }

  .mobile-contact-item:hover .mci-value { color: var(--gold-light); }

  /* ── Backdrop ── */
  .navbar-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: calc(var(--z-modal) - 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .navbar-mobile-backdrop.active { display: block; }

  /* ── Close button — absolute top-right of panel ── */
  .navbar-mobile-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    z-index: 10;
    flex-shrink: 0;
  }

  .navbar-mobile-close:hover {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(201,153,58,0.1);
    transform: rotate(90deg);
  }
}


/* ============================================================
   06. BUTTON SYSTEM
   ============================================================ */
.btn-ems-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold-primary);
  color: var(--dark-base);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-ems-primary .btn-arrow {
  font-size: 16px;
  transition: transform var(--t-base);
  display: inline-block;
}

.btn-ems-primary:hover {
  background: var(--gold-light);
  color: var(--dark-base);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-ems-primary:hover .btn-arrow { transform: translateX(4px); }

/* Shimmer */
.btn-ems-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.55s ease;
}
.btn-ems-primary:hover::before { left: 150%; }

/* Outlined */
.btn-ems-outline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--t-fast);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-ems-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
  z-index: -1;
}

.btn-ems-outline:hover {
  color: var(--dark-base);
  border-color: var(--gold-primary);
}

.btn-ems-outline:hover::before { transform: scaleX(1); }

/* Light variant */
.btn-ems-outline-light {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}

.btn-ems-outline-light::before { background: rgba(255,255,255,0.1); }

.btn-ems-outline-light:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* Small modifier */
.btn-ems-sm { padding: 10px 22px; font-size: 12px; }


/* ============================================================
   07. SECTION ANATOMY HELPERS
   ============================================================ */
.ems-section {
  padding: var(--space-xl) 0;
}

.ems-section-sm { padding: var(--space-lg) 0; }
.ems-section-lg { padding: var(--space-xxl) 0; }

/* Section header */
.ems-section-header {
  margin-bottom: 64px;
}

.ems-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.ems-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.ems-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
  margin-top: 20px;
}

/* Dark section */
.ems-dark {
  background: var(--dark-base);
  color: var(--text-inverse);
}

.ems-dark h1, .ems-dark h2, .ems-dark h3 { color: var(--text-inverse); }
.ems-dark p { color: rgba(255,255,255,0.6); }
.ems-dark .ems-section-label { color: var(--gold-light); }
.ems-dark .ems-section-label::before { background: var(--gold-light); }

/* Warm section */
.ems-warm { background: var(--surface-light); }

/* Dot matrix pattern background */
.ems-dotmatrix {
  background-image: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 28px 28px;
}


/* ============================================================
   08. ANIMATION SYSTEM
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes revealLine {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(24px) rotateX(-12deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* Scroll-reveal system */
.ems-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.ems-reveal.reveal-from-left  { transform: translateX(-28px); }
.ems-reveal.reveal-from-right { transform: translateX(28px); }
.ems-reveal.reveal-scale      { transform: scale(0.94); }

.ems-reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.ems-reveal-delay-1 { transition-delay: 0.1s; }
.ems-reveal-delay-2 { transition-delay: 0.2s; }
.ems-reveal-delay-3 { transition-delay: 0.3s; }
.ems-reveal-delay-4 { transition-delay: 0.4s; }
.ems-reveal-delay-5 { transition-delay: 0.5s; }
.ems-reveal-delay-6 { transition-delay: 0.6s; }


/* ============================================================
   09. HERO — EDITORIAL SPLIT PANEL (homepage)
   ============================================================ */

/* ── Layout shell ── */
.ems-hv3 {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: row;
  background: #070707;
  overflow: hidden;
}

/* ── LEFT PANEL ── */
.ems-hv3-left {
  position: relative;
  width: 56%;
  display: flex;
  align-items: center;
  padding: 136px 0 112px;
  background: #070707;
}

/* Vertical gold rail */
.ems-hv3-gold-rail {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold-primary) 20%,
    var(--gold-light) 55%,
    var(--gold-primary) 80%,
    transparent 100%
  );
}

/* Content block */
.ems-hv3-content {
  padding-left: 72px;
  padding-right: 56px;
  max-width: 700px;
}

/* Credential row */
.ems-hv3-cred-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeRight 0.6s var(--ease-out) 0.1s forwards;
}
.ems-hv3-cred {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.ems-hv3-cred-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}

/* Headline */
.ems-hv3-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.8vw, 90px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}
.ems-hv3-headline span {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: hv3LineIn 0.75s var(--ease-out) forwards;
}
@keyframes hv3LineIn {
  to { opacity: 1; transform: none; }
}
.ems-hv3-gold-word {
  color: var(--gold-light) !important;
}
.ems-hv3-period {
  color: var(--gold-primary);
}

/* Subtitle */
.ems-hv3-sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.44);
  line-height: 1.78;
  max-width: 490px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.55s forwards;
}

/* CTAs */
.ems-hv3-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.72s forwards;
}

/* Primary button — sharp, gold fill */
.ems-hv3-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 15px 38px;
  background: var(--gold-primary);
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.28s var(--ease-out),
              transform 0.25s var(--ease-out),
              box-shadow 0.25s;
}
.ems-hv3-btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,153,58,0.3);
}

/* Ghost button — underline style */
.ems-hv3-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.ems-hv3-btn-text svg { transition: transform 0.25s var(--ease-out); }
.ems-hv3-btn-text:hover {
  color: var(--gold-light);
  border-color: var(--gold-primary);
}
.ems-hv3-btn-text:hover svg { transform: translateX(4px); }

/* Trust strip */
.ems-hv3-trust {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 36px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.9s forwards;
}
.ems-hv3-trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}
.ems-hv3-trust-rule {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.09);
  margin-right: 40px;
  flex-shrink: 0;
  margin-top: 5px;
}
.ems-hv3-trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ems-hv3-trust-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ── RIGHT PANEL ── */
.ems-hv3-right {
  position: relative;
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px 80px 32px;
  background: #070707;
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* Image frame */
.ems-hv3-img-frame {
  position: relative;
  width: 100%;
  height: calc(100dvh - 140px);
  max-height: 720px;
  overflow: visible;
}
.ems-hv3-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%) contrast(1.06) brightness(0.92);
}

/* Subtle gold-warm tint overlay */
.ems-hv3-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(201,153,58,0.08) 0%,
    rgba(0,0,0,0.40) 100%
  );
  pointer-events: none;
}

/* L-bracket corner accents */
.ems-hv3-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.ems-hv3-corner-tl {
  top: -6px; left: -6px;
  border-top: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
}
.ems-hv3-corner-br {
  bottom: -6px; right: -6px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

/* Floating credential badge */
.ems-hv3-float-badge {
  position: absolute;
  bottom: 108px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(7,7,7,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,153,58,0.2);
  padding: 16px 22px 16px 16px;
  opacity: 0;
  animation: fadeRight 0.7s var(--ease-out) 1.1s forwards;
}
.ems-hv3-badge-icon {
  width: 40px; height: 40px;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ems-hv3-badge-icon i { color: #070707; font-size: 16px; }
.ems-hv3-badge-head {
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.ems-hv3-badge-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
}

/* ── SERVICES TICKER ── */
.ems-hv3-ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 36px;
  background: rgba(201,153,58,0.06);
  border-top: 1px solid rgba(201,153,58,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 20;
}
.ems-hv3-ticker-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: hv3Ticker 30s linear infinite;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-left: 40px;
}
.ems-hv3-dot {
  color: var(--gold-primary);
  font-size: 6px;
  opacity: 0.8;
}
@keyframes hv3Ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── KEEP SUB-PAGE HERO CLASSES ── */
.ems-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--dark-base);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.ems-hero-sub-page { min-height: 60vh; }
.ems-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.70) 50%,
    rgba(10,10,10,0.40) 100%
  );
  z-index: 1;
}
.ems-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative; z-index: 2;
  margin-bottom: 20px;
}
.ems-hero-title em { color: var(--gold-light); font-style: italic; }
.ems-hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
  position: relative; z-index: 2;
}
.ems-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ems-hv3-left  { width: 58%; }
  .ems-hv3-right { width: 42%; }
  .ems-hv3-content { padding-left: 56px; padding-right: 40px; }
}

@media (max-width: 991px) {
  .ems-hv3 { flex-direction: column; min-height: auto; }
  .ems-hv3-left  { width: 100%; padding: 150px 0 60px; }
  .ems-hv3-content { padding-left: 48px; padding-right: 24px; max-width: 100%; }
  .ems-hv3-right { width: 100%; padding: 0 24px 80px; }
  .ems-hv3-img-frame { height: 380px; max-height: none; }
  .ems-hv3-float-badge { bottom: 96px; left: 12px; }
}

@media (max-width: 575px) {
  .ems-hv3-content { padding-left: 28px; padding-right: 20px; }
  .ems-hv3-cred-row { gap: 10px; }
  .ems-hv3-ctas { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ems-hv3-trust-item { padding-right: 24px; }
  .ems-hv3-trust-rule { margin-right: 24px; }
  .ems-hv3-float-badge { display: none; }
  .ems-hv3-img-frame { height: 280px; }
}


/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.ems-about-section {
  background: var(--off-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.ems-about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.ems-about-pullquote em {
  font-style: italic;
  color: var(--gold-primary);
}

.ems-about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ems-about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 0.8s var(--ease-out);
}

.ems-about-image-wrap:hover img { transform: scale(1.03); }

/* Corner gold accents */
.ems-about-image-wrap::before,
.ems-about-image-wrap::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 5;
  pointer-events: none;
}

.ems-about-image-wrap::before {
  top: -1px; left: -1px;
  border-top: 3px solid var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-lg) 0 0 0;
}

.ems-about-image-wrap::after {
  bottom: -1px; right: -1px;
  border-bottom: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
  border-radius: 0 0 var(--radius-lg) 0;
}

/* Quick stats row */
.ems-stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

.ems-stat-item {}

.ems-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.ems-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ============================================================
   11. BENTO GRID — SERVICES
   ============================================================ */
.ems-services-section {
  background: var(--surface-light);
  padding: var(--space-xl) 0;
}

.ems-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

/* Featured wide card */
.bento-card-featured {
  grid-column: span 2;
}

/* Full width banner card */
.bento-card-full {
  grid-column: span 3;
}

/* Base card */
.ems-bento-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
  cursor: default;
  display: flex;
  flex-direction: column;
}

/* Gold top bar */
.ems-bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px 3px 0 0;
  transition: width 0.5s var(--ease-out);
}

.ems-bento-card:hover::before { width: 100%; }

.ems-bento-card:hover {
  background: var(--dark-base);
  border-color: var(--dark-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Card icon */
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background var(--t-base), border-color var(--t-base);
}

.bento-icon i {
  font-size: 20px;
  color: var(--gold-primary);
  transition: color var(--t-fast);
}

.ems-bento-card:hover .bento-icon {
  background: rgba(201,153,58,0.15);
  border-color: rgba(201,153,58,0.4);
}

/* Featured card: larger icon */
.bento-card-featured .bento-icon {
  width: 60px; height: 60px;
}

.bento-card-featured .bento-icon i { font-size: 24px; }

/* Card title */
.bento-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color var(--t-fast);
}

.bento-card-featured .bento-title { font-size: 28px; }

.ems-bento-card:hover .bento-title { color: #fff; }

/* Card body */
.bento-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  transition: color var(--t-fast);
}

.ems-bento-card:hover .bento-body { color: rgba(255,255,255,0.55); }

/* Card arrow */
.bento-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-primary);
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
  align-self: flex-start;
}

.bento-arrow i { transition: transform var(--t-fast); }
.bento-arrow:hover, .ems-bento-card:hover .bento-arrow { gap: 14px; }
.ems-bento-card:hover .bento-arrow { color: var(--gold-light); }
.ems-bento-card:hover .bento-arrow i { transform: translateX(4px); }

/* Full-width HR card horizontal layout */
.bento-card-full {
  flex-direction: row !important;
  align-items: center;
  gap: 40px;
  padding: 40px 48px;
}

.bento-card-full .bento-icon { margin-bottom: 0; flex-shrink: 0; }
.bento-card-full .bento-content { flex: 1; }
.bento-card-full .bento-title { margin-bottom: 8px; }
.bento-card-full .bento-arrow { margin-top: 16px; }

.bento-card-full .bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  transition: background var(--t-fast), color var(--t-fast);
}

.ems-bento-card:hover .bento-badge {
  background: rgba(201,153,58,0.15);
  color: var(--gold-light);
  border-color: rgba(201,153,58,0.4);
}

@media (max-width: 991px) {
  .ems-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card-featured { grid-column: span 2; }
  .bento-card-full { grid-column: span 2; flex-direction: column !important; gap: 20px; padding: 32px; }
}

@media (max-width: 575px) {
  .ems-bento-grid { grid-template-columns: 1fr; }
  .bento-card-featured, .bento-card-full { grid-column: span 1; }
  .bento-card-full { flex-direction: column !important; }
}


/* ============================================================
   12. CTA BANNER SECTION
   ============================================================ */
.ems-cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  background: var(--dark-base);
}

/* Dot matrix overlay */
.ems-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,153,58,0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* Gold top/bottom lines */
.ems-cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  z-index: 1;
}

.ems-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ems-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.ems-cta-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ems-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.ems-why-section {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.ems-why-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px 32px;
  height: 100%;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

/* Giant watermark number */
.ems-why-number {
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  color: var(--gold-primary);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.ems-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold-border); }
.ems-why-card:hover .ems-why-number { opacity: 0.14; }

/* Left gold accent bar */
.ems-why-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  border-radius: 3px;
  opacity: 0;
  transition: opacity var(--t-base);
}

.ems-why-card:hover::before { opacity: 1; }

.ems-why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.ems-why-icon i { font-size: 18px; color: var(--gold-primary); }

.ems-why-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ems-why-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   14. LEADERSHIP CARDS
   ============================================================ */
.ems-leader-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.ems-leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.ems-leader-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.ems-leader-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
}

.ems-leader-card:hover .ems-leader-photo img { transform: scale(1.05); }

/* Name overlay (always visible) */
.ems-leader-name-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 50px 22px 18px;
}

.ems-leader-name-bar h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.ems-leader-name-bar span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
}

/* Role tag ribbon */
.ems-leader-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-base);
  background: var(--gold-primary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 5;
}

/* Frosted glass hover overlay */
.ems-leader-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold-primary);
  overflow: hidden;
  transition: height 0.45s var(--ease-out);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 22px;
}

.ems-leader-card:hover .ems-leader-overlay { height: 45%; }

.ems-leader-overlay-inner {
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.ems-leader-card:hover .ems-leader-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Contact strip below photo */
.ems-leader-contacts {
  padding: 18px 22px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ems-leader-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.ems-leader-contact-link i {
  width: 16px;
  font-size: 12px;
  color: var(--gold-primary);
}

.ems-leader-contact-link:hover { color: var(--gold-primary); }

/* Bottom gold line */
.ems-leader-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.ems-leader-card:hover::after { transform: scaleX(1); }

/* Staff/division cards */
.ems-staff-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  height: 100%;
}

.ems-staff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

/* Monogram placeholder */
.ems-staff-monogram {
  height: 220px;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold-primary);
  letter-spacing: -0.04em;
  opacity: 0.7;
}

.ems-staff-photo-wrap {
  height: 220px;
  overflow: hidden;
}

.ems-staff-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
}

.ems-staff-card:hover .ems-staff-photo-wrap img { transform: scale(1.05); }

.ems-staff-info {
  padding: 18px 20px;
}

.ems-staff-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ems-staff-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.ems-staff-employer {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.ems-staff-contacts { display: flex; flex-direction: column; gap: 6px; }

.ems-staff-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.ems-staff-contact-link i { color: var(--gold-primary); font-size: 11px; width: 14px; }
.ems-staff-contact-link:hover { color: var(--gold-primary); }

/* Division section headers */
.ems-division-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.ems-division-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.ems-division-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary);
  white-space: nowrap;
}


/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.ems-contact-section {
  background: var(--surface-light);
  padding: var(--space-xl) 0;
}

.ems-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.ems-contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ems-contact-icon i { color: var(--gold-primary); font-size: 16px; }

.ems-contact-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ems-contact-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.ems-contact-value:hover { color: var(--gold-primary); }

.ems-contact-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.2);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  letter-spacing: 0.04em;
}


/* ============================================================
   16. SERVICE PAGES
   ============================================================ */

/* Service intro split */
.ems-service-intro {
  padding: var(--space-xl) 0;
  background: var(--off-white);
}

.ems-service-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ems-service-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.ems-service-image:hover img { transform: scale(1.03); }

.ems-service-image::before,
.ems-service-image::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  z-index: 5;
}

.ems-service-image::before {
  top: -1px; left: -1px;
  border-top: 3px solid var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-lg) 0 0 0;
}

.ems-service-image::after {
  bottom: -1px; right: -1px;
  border-bottom: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
  border-radius: 0 0 var(--radius-lg) 0;
}

/* Why Fractional split card */
.ems-fractional-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  border: 1px solid var(--border-light);
}

.ems-fractional-dark {
  background: var(--dark-elevated);
  padding: 48px 36px;
  flex: 1;
}

.ems-fractional-light {
  padding: 48px 36px;
  flex: 1;
}

.ems-fractional-dark h3 { color: #fff; font-size: 28px; }
.ems-fractional-dark p  { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75; }

.ems-fractional-bullets {
  list-style: none;
  padding: 0; margin: 20px 0 0;
}

.ems-fractional-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.5;
}

.ems-fractional-bullets li::before {
  content: '→';
  color: var(--gold-primary);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ems-fractional-card { flex-direction: column; }
}

/* Service cards grid (on service pages) */
.ems-service-cards {
  padding: var(--space-lg) 0;
  background: var(--off-white);
}

.ems-service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
}

.ems-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.ems-service-card:hover::before { transform: scaleX(1); }

.ems-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: var(--dark-base);
  border-color: transparent;
}

.service-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1px solid rgba(201,153,58,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t-base), border-color var(--t-base);
}

.service-card-icon img { width: 26px; height: 26px; object-fit: contain; }

.ems-service-card:hover .service-card-icon {
  background: rgba(201,153,58,0.15);
  border-color: rgba(201,153,58,0.4);
}

.service-card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color var(--t-fast);
}

.ems-service-card:hover .service-card-title { color: #fff; }

.service-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  transition: color var(--t-fast);
}

.ems-service-card:hover .service-card-text { color: rgba(255,255,255,0.5); }


/* ============================================================
   17. MODALS
   ============================================================ */
.modal-content {
  border: none !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--shadow-lg) !important;
}

.modal-header {
  background: var(--dark-base) !important;
  border-bottom: none !important;
  padding: 20px 28px !important;
  border-left: 4px solid var(--gold-primary);
}

.modal-header .modal-title {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}

.modal-header .btn-close-modal {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--t-fast);
  margin-left: auto;
}

.modal-header .btn-close-modal:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.modal-body { padding: 0 !important; }

/* ── Ensure modal layers above the fixed navbar (z-nav: 1100) ── */
.modal-backdrop {
  z-index: 1150 !important;
}
.modal {
  z-index: 1200 !important;
}
body.modal-open .navbar {
  z-index: 1050 !important;
}
/* ── Prevent page scroll shift / padding jump on modal open ── */
body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}
/* ── Center modal vertically with breathing room ── */
.modal-dialog.modal-dialog-centered {
  min-height: calc(100% - 60px);
  margin: 30px auto;
}
/* ── Responsive: full-width on small screens ── */
@media (max-width: 575px) {
  .modal-dialog {
    margin: 12px;
    max-width: calc(100% - 24px);
  }
  .modal-header { padding: 16px 18px !important; }
}


/* ============================================================
   18. CAREERS PAGE
   ============================================================ */
.ems-careers-intro {
  background: var(--off-white);
  padding: var(--space-lg) 0;
}

.ems-offering-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.ems-offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.ems-offering-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.ems-offering-icon i { color: var(--gold-primary); font-size: 18px; }

.ems-offering-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ems-offering-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Job listing card */
.ems-job-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.ems-job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-primary), var(--gold-light));
  transform: scaleY(0);
  transition: transform var(--t-base);
  border-radius: 3px 0 0 3px;
}

.ems-job-card:hover::before { transform: scaleY(1); }

.ems-job-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.ems-job-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.ems-job-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ems-job-type,
.ems-job-location {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ems-job-type { color: var(--gold-primary); }
.ems-job-location { color: var(--text-muted); }
.ems-job-type i, .ems-job-location i { font-size: 11px; }

.ems-job-empty {
  text-align: center;
  padding: var(--space-xl) 0;
  color: var(--text-muted);
}

.ems-job-empty i { font-size: 48px; color: var(--border-medium); margin-bottom: 16px; display: block; }
.ems-job-empty p { font-size: 16px; }

@media (max-width: 575px) {
  .ems-job-card { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   19. DIRECTORY PAGE
   ============================================================ */
.ems-directory-section {
  background: var(--off-white);
  padding: var(--space-lg) 0;
}

.ems-directory-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.ems-directory-table thead tr th {
  background: var(--dark-base) !important;
  color: var(--gold-light) !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
}

.ems-directory-table thead tr th:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.ems-directory-table thead tr th:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.ems-directory-table tbody tr td {
  background: var(--surface-card);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast);
}

.ems-directory-table tbody tr td:first-child {
  border-left: 1px solid var(--border-light);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-weight: 600;
}

.ems-directory-table tbody tr td:last-child {
  border-right: 1px solid var(--border-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ems-directory-table tbody tr:hover td {
  background: var(--gold-pale);
  border-color: var(--gold-border);
}

.ems-directory-table tbody tr td a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.ems-directory-table tbody tr td a:hover { color: var(--gold-primary); text-decoration: underline; }


/* ============================================================
   20. FOOTER
   ============================================================ */
#footer-3 {
  background: linear-gradient(160deg, #0A0A0A 0%, #111111 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Ghost watermark */
#footer-3::before {
  content: 'EMS';
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 400;
  color: var(--gold-primary);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* Gold top line */
#footer-3::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
}

#footer-3 h5 {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--gold-primary) !important;
  margin-bottom: 20px !important;
}

#footer-3 .top-footer { padding-bottom: 48px; }

#footer-3 ul { list-style: none; padding: 0; margin: 0; }

#footer-3 ul li { margin-bottom: 8px; }

#footer-3 ul li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}

#footer-3 ul li a:hover {
  color: var(--gold-light) !important;
  padding-left: 4px;
}

#footer-3 .bottom-footer {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 24px 30px !important;
}

#footer-3 .bottom-footer p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35) !important;
  margin: 0;
}

#footer-3 .bottom-footer a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  transition: color var(--t-fast);
}

#footer-3 .bottom-footer a:hover { color: var(--gold-light) !important; }

/* Footer contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold-primary);
  font-size: 13px;
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-item a, .footer-contact-item span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--t-fast);
}

.footer-contact-item a:hover { color: var(--gold-light) !important; }


/* ============================================================
   21. MAP SECTION
   ============================================================ */
.webmap { width: 100%; line-height: 0; }
.webmap iframe { width: 100% !important; height: 420px; display: block; }


/* ============================================================
   22. LEGACY OVERRIDES (neutralize old inline-style defaults)
   ============================================================ */

/* Nuke old hero section inline styles */
section#hero-3.hero-section {
  margin: 0 !important;
}

/* Old fbox elements — suppress */
.fbox-2, .fbox-wrapper { all: unset; }

/* Old contact-info ul */
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info ul li + li { margin-top: 20px; }

/* Old .service-card containers */
.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }

/* old .careers-list */
.careers-list { all: unset; display: block; }

/* old .emsdirectory */
.emsdirectory { background: var(--off-white); }

/* Career banner */
.careerbanner {
  background: var(--dark-base) !important;
  min-height: 200px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

.careerbanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,153,58,0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.15;
}

.careerbanner h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #fff !important;
  z-index: 2;
  position: relative;
  letter-spacing: -0.02em;
}


/* ============================================================
   23. UTILITY CLASSES
   ============================================================ */
.text-gold    { color: var(--gold-primary) !important; }
.text-gold-lt { color: var(--gold-light) !important; }
.bg-dark-base { background: var(--dark-base) !important; }
.bg-off-white { background: var(--off-white) !important; }
.bg-surface   { background: var(--surface-light) !important; }
.border-gold  { border-color: var(--gold-primary) !important; }

.ems-gap-sm { gap: 12px; }
.ems-gap-md { gap: 24px; }
.ems-gap-lg { gap: 40px; }

/* Smooth parallax helper (fixed BG) */
.ems-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}


/* ============================================================
   24. SCROLL PROGRESS BAR
   ============================================================ */
.ems-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  z-index: calc(var(--z-nav) + 1);
  transition: width 0.1s linear;
}


/* ============================================================
   25. RESPONSIVE GLOBAL ADJUSTMENTS
   ============================================================ */
@media (max-width: 991px) {
  .ems-section   { padding: 72px 0; }
  .ems-section-lg { padding: 96px 0; }
}

@media (max-width: 767px) {
  .ems-section  { padding: 56px 0; }
  .ems-about-pullquote { font-size: 24px; }
  .ems-cta-title { font-size: 32px; }
  .ems-fractional-card { flex-direction: column; }
}


/* ============================================================
   26. LEADER CARD – PREMIUM (leadership page)
   ============================================================ */
.ems-leader-card {
  background: var(--dark-base);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.42s ease;
  border: 1px solid rgba(201,153,58,0.12);
}
.ems-leader-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 36px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,153,58,0.35),
    0 0 70px rgba(201,153,58,0.06);
  border-color: rgba(201,153,58,0.35);
}

/* Photo area */
.ems-leader-img {
  position: relative;
  overflow: hidden;
  height: 400px;
  flex-shrink: 0;
}
.ems-leader-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.88) saturate(0.95);
}
.ems-leader-card:hover .ems-leader-img img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

/* Permanent gradient at image bottom */
.ems-leader-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s;
}
.ems-leader-card:hover .ems-leader-img::after { opacity: 0.4; }

/* Info panel */
.ems-leader-info {
  padding: 22px 24px 26px;
  background: var(--dark-base);
  border-top: 1px solid rgba(201,153,58,0.1);
  transition: border-color 0.35s ease, background 0.35s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ems-leader-card:hover .ems-leader-info {
  border-top-color: rgba(201,153,58,0.32);
  background: #0d0b08;
}
.ems-leader-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--off-white);
  margin: 0 0 6px;
  transition: color 0.25s;
}
.ems-leader-card:hover .ems-leader-name { color: #fff; }
.ems-leader-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  margin: 0 0 14px;
  transition: color 0.25s;
}
.ems-leader-card:hover .ems-leader-title { color: var(--gold-light); }
.ems-leader-contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ems-leader-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.22s ease;
}
.ems-leader-meta i { color: var(--gold-primary); width: 14px; flex-shrink: 0; font-size: 11px; }
.ems-leader-meta:hover { color: var(--gold-light); }

/* Bottom gold line sweeps in on reveal */
.ems-leader-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light), transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.56s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--ci, 0) * 0.08s);
  z-index: 3;
  pointer-events: none;
}
.ems-leader-card.visible::after { transform: scaleX(1); }


/* ============================================================
   27. STAFF CARD (division members) – UPGRADED
   ============================================================ */
.ems-staff-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.38s ease;
  border: 1px solid rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ems-ldr-div-section--dark .ems-staff-card,
.ems-ldr-csuite-section .ems-staff-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,153,58,0.12);
}
.ems-staff-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 56px rgba(201,153,58,0.14),
    0 0 0 1px rgba(201,153,58,0.22),
    0 6px 18px rgba(0,0,0,0.06);
  border-color: rgba(201,153,58,0.28);
}
.ems-ldr-div-section--dark .ems-staff-card:hover {
  box-shadow:
    0 24px 56px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,153,58,0.32);
}

/* Photo area */
.ems-staff-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--dark-surface);
  flex-shrink: 0;
}
.ems-staff-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
  filter: brightness(0.92);
}
.ems-staff-card:hover .ems-staff-img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Gradient on image bottom */
.ems-staff-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.35) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ems-staff-card:hover .ems-staff-img-wrap::after { opacity: 1; }

.ems-staff-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 34px; height: 34px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.25);
  z-index: 2;
  transition: transform 0.32s ease, background 0.32s ease;
}
.ems-staff-card:hover .ems-staff-badge {
  transform: scale(1.15);
  background: var(--gold-light);
}

/* Card body */
.ems-staff-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0 0 5px;
  transition: color 0.25s;
}
.ems-ldr-div-section--dark .ems-staff-name { color: var(--off-white); }
.ems-staff-card:hover .ems-staff-name { color: var(--gold-primary); }
.ems-ldr-div-section--dark .ems-staff-card:hover .ems-staff-name { color: var(--gold-light); }
.ems-staff-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin: 0 0 14px;
  transition: color 0.25s;
}
.ems-staff-card:hover .ems-staff-title { color: var(--gold-light); }
.ems-staff-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.ems-ldr-div-section--dark .ems-staff-contacts { border-top-color: rgba(255,255,255,0.07); }
.ems-staff-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-muted);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.01em;
}
.ems-ldr-div-section--dark .ems-staff-link { color: rgba(255,255,255,0.42); }
.ems-staff-link i { color: var(--gold-primary); width: 13px; flex-shrink: 0; font-size: 11px; }
.ems-staff-link:hover { color: var(--gold-primary); gap: 10px; }
.ems-ldr-div-section--dark .ems-staff-link:hover { color: var(--gold-light); }

/* Bottom gold line on reveal */
.ems-staff-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light), transparent 75%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--ci, 0) * 0.04s);
  pointer-events: none;
}
.ems-staff-card.visible::after { transform: scaleX(1); }


/* ============================================================
   28. JOB CARD (careers page)
   ============================================================ */
.ems-job-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.ems-job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,153,58,0.12);
  border-color: rgba(201,153,58,0.3);
}
.ems-job-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ems-job-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ems-job-icon i { color: var(--gold-primary); font-size: 20px; }
.ems-job-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}
.ems-job-type {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.ems-job-location {
  font-size: 13px;
  color: #777;
}
.ems-job-location i { color: var(--gold-primary); margin-right: 4px; }
.ems-job-card-body { flex: 1; }
.ems-job-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark-base);
  margin: 0;
  line-height: 1.3;
}
.ems-job-card-footer { margin-top: auto; }
.ems-btn-sm { padding: 10px 22px; font-size: 14px; }


/* ============================================================
   29. DIRECTORY TABLE (directory page)
   ============================================================ */
.ems-directory-table-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}
.ems-directory-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: var(--off-white);
}
.ems-dir-search-icon { color: var(--gold-primary); font-size: 15px; flex-shrink: 0; }
.ems-dir-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-base);
}
.ems-dir-search-input::placeholder { color: #aaa; }
.ems-dir-count {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  font-weight: 500;
}
.ems-directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ems-directory-table thead tr {
  background: var(--dark-base);
}
.ems-directory-table thead th {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 20px;
  white-space: nowrap;
}
.ems-directory-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.055);
  transition: background 0.18s;
}
.ems-directory-table tbody tr:hover { background: var(--gold-pale); }
.ems-directory-table tbody td {
  padding: 14px 20px;
  vertical-align: middle;
  color: #333;
}
.ems-dir-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark-base);
}
.ems-dir-avatar {
  width: 36px; height: 36px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.ems-dir-title-badge {
  font-size: 12.5px;
  color: #555;
}
.ems-dir-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  word-break: break-all;
}
.ems-dir-contact-link i { color: var(--gold-primary); flex-shrink: 0; }
.ems-dir-contact-link:hover { color: var(--gold-primary); }
.ems-dir-empty { padding: 48px; text-align: center; color: #999; }
.ems-dir-empty-state i { font-size: 48px; color: var(--gold-primary); margin-bottom: 12px; display: block; }
.ems-dir-empty-state p { color: #888; margin: 0; }

@media (max-width: 767px) {
  .ems-directory-table thead { display: none; }
  .ems-directory-table tbody tr {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .ems-directory-table tbody td {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    border: none;
  }
  .ems-directory-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-width: 80px;
    padding-top: 2px;
  }
}


/* ============================================================
   30. OFFERING CARD (careers / leadership)
   ============================================================ */
.ems-offering-card {
  animation-delay: var(--delay, 0s);
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  height: 100%;
}
.ems-dark .ems-offering-card {
  background: var(--dark-elevated);
  border-color: rgba(201,153,58,0.12);
}
.ems-offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,153,58,0.12);
}
.ems-offering-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.ems-offering-card:hover .ems-offering-icon { background: var(--gold-primary); }
.ems-offering-icon i { color: var(--gold-primary); font-size: 26px; transition: color 0.3s; }
.ems-offering-card:hover .ems-offering-icon i { color: #fff; }
.ems-offering-card h5 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark-base);
}
.ems-dark .ems-offering-card h5 { color: #fff; }
.ems-offering-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}
.ems-dark .ems-offering-card p { color: rgba(255,255,255,0.6); }


/* ============================================================
   31. HOMEPAGE v3 — ABOUT V2
   ============================================================ */
.ems-about-v2 {
  background: #0b0b0b;
  overflow: hidden;
}
.ems-abt-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 100px 6%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ems-abt-left {
  width: 44%;
  flex-shrink: 0;
  position: relative;
}
.ems-abt-ghost-num {
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: -60px;
  margin-left: -10px;
  user-select: none;
  pointer-events: none;
}
.ems-abt-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 48px);
  font-style: italic;
  color: #fff;
  line-height: 1.22;
  margin: 0;
  padding: 0;
  border: none;
  letter-spacing: -0.02em;
}
.ems-abt-right {
  flex: 1;
  padding-top: 52px;
}
.ems-abt-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.ems-abt-right p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 18px;
}
.ems-abt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,153,58,0.25);
  padding-bottom: 3px;
  margin-top: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.ems-abt-link svg { transition: transform 0.25s; }
.ems-abt-link:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.ems-abt-link:hover svg { transform: translateX(4px); }

/* Stats bar */
.ems-abt-statsbar {
  display: flex;
  align-items: center;
  padding: 52px 6% 88px;
}
.ems-abt-stat { flex: 1; text-align: center; }
.ems-abt-stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 56px);
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.ems-abt-stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.ems-abt-stat-rule {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .ems-abt-inner { flex-direction: column; gap: 40px; padding: 80px 6% 56px; }
  .ems-abt-left { width: 100%; }
  .ems-abt-ghost-num { font-size: 120px; margin-bottom: -30px; }
  .ems-abt-right { padding-top: 0; }
}
@media (max-width: 575px) {
  .ems-abt-statsbar { flex-wrap: wrap; gap: 32px; padding: 40px 6%; }
  .ems-abt-stat { min-width: 40%; }
  .ems-abt-stat-rule { display: none; }
}


/* ============================================================
   32. HOMEPAGE v3 — SERVICES ACCORDION
   ============================================================ */
.ems-svc-section { background: #fff; }

.ems-svc-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 96px 6% 56px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ems-svc-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.ems-svc-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 66px);
  color: #080808;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.ems-svc-hd-sub {
  font-size: 15px;
  color: #999;
  max-width: 300px;
  text-align: right;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 8px;
}

/* List */
.ems-svc-list { border-top: 1px solid rgba(0,0,0,0.07); }
.ems-svc-row {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  transition: background 0.2s;
}
.ems-svc-row::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
}
.ems-svc-row.active::after,
.ems-svc-row:hover::after { transform: scaleY(1); }
.ems-svc-row:hover { background: rgba(0,0,0,0.015); }

/* Row header */
.ems-svc-row-hd {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 6%;
  cursor: pointer;
  user-select: none;
}
.ems-svc-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  min-width: 28px;
  flex-shrink: 0;
}
.ems-svc-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 38px);
  color: #0a0a0a;
  line-height: 1.1;
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.ems-svc-row.active .ems-svc-name { color: var(--gold-primary); }
.ems-svc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
}
.ems-svc-plus {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #ccc;
  font-size: 14px;
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.ems-svc-row.active .ems-svc-plus { transform: rotate(45deg); color: var(--gold-primary); }

/* Expand body */
.ems-svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.ems-svc-row.active .ems-svc-body { grid-template-rows: 1fr; }
.ems-svc-body-in { overflow: hidden; }
.ems-svc-body-wrap {
  padding: 0 6% 48px calc(6% + 56px);
}
.ems-svc-desc p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 24px;
}
.ems-svc-tags {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ems-svc-tags li {
  padding: 6px 16px;
  border: 1px solid rgba(201,153,58,0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.ems-svc-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  padding: 13px 28px;
  border: 1.5px solid #0a0a0a;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.ems-svc-explore:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #fff;
}

@media (max-width: 767px) {
  .ems-svc-hd { flex-direction: column; align-items: flex-start; gap: 16px; padding: 64px 6% 40px; }
  .ems-svc-hd-sub { text-align: left; max-width: 100%; }
  .ems-svc-tag { display: none; }
  .ems-svc-body-wrap { padding: 0 6% 36px; }
  .ems-svc-row-hd { padding: 24px 6%; gap: 16px; }
}


/* ============================================================
   33. PROOF BAR
   ============================================================ */
.ems-proof-bar {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  padding: 60px 6%;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ems-proof-item { flex: 1; text-align: center; }
.ems-proof-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ems-proof-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.ems-proof-rule {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .ems-proof-bar { flex-wrap: wrap; gap: 36px; padding: 48px 6%; }
  .ems-proof-item { min-width: 42%; }
  .ems-proof-rule { display: none; }
}


/* ============================================================
   34. MANIFESTO (Why EMS)
   ============================================================ */
.ems-manifesto-section {
  background: var(--off-white);
  padding: 100px 6%;
}
.ems-mfst-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.ems-mfst-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.ems-mfst-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 58px);
  color: #0a0a0a;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}
.ems-mfst-title em { color: var(--gold-primary); font-style: italic; }
.ems-mfst-intro {
  font-size: 15px;
  color: #888;
  max-width: 300px;
  text-align: right;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 6px;
}
/* Rows */
.ems-mfst-list { border-top: 1px solid rgba(0,0,0,0.1); }
.ems-mfst-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  transition: padding-left 0.3s var(--ease-out);
}
.ems-mfst-row::before {
  content: '';
  position: absolute;
  left: -6%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease-out);
}
.ems-mfst-row:hover::before { transform: scaleY(1); }
.ems-mfst-num {
  min-width: 56px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  padding-top: 6px;
  flex-shrink: 0;
}
.ems-mfst-title-col {
  min-width: 220px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 30px);
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ems-mfst-body {
  flex: 1;
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  padding-top: 5px;
}
@media (max-width: 991px) {
  .ems-mfst-hd { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ems-mfst-intro { text-align: left; max-width: 100%; }
  .ems-mfst-title-col { min-width: 160px; }
}
@media (max-width: 767px) {
  .ems-mfst-row { flex-wrap: wrap; gap: 12px; }
  .ems-mfst-title-col { min-width: 100%; font-size: 22px; }
  .ems-mfst-num { min-width: auto; }
}


/* ============================================================
   35. LEADERSHIP FEATURE (dark left + photo grid)
   ============================================================ */
.ems-lead-feature {
  display: flex;
  min-height: 700px;
}
.ems-lead-left {
  width: 28%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 52px;
  background: #070707;
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.ems-lead-left::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-primary) 35%, var(--gold-light) 65%, transparent 100%);
}
.ems-lead-ghost {
  position: absolute;
  top: 24px; left: 44px;
  font-family: var(--font-display);
  font-size: 130px;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.ems-lead-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}
.ems-lead-hl {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 44px);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.ems-lead-hl em { color: var(--gold-light); font-style: italic; }
.ems-lead-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 36px;
}
.ems-lead-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,153,58,0.22);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.ems-lead-link svg { transition: transform 0.25s; }
.ems-lead-link:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.ems-lead-link:hover svg { transform: translateX(4px); }

/* Photo grid */
.ems-lead-pgrid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.ems-lead-pitem {
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.03);
  cursor: pointer;
}
.ems-lead-pitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(18%) brightness(0.88) contrast(1.04);
  transition: filter 0.45s, transform 0.6s var(--ease-out);
}
.ems-lead-pitem:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}
.ems-lead-pbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(calc(100% - 48px));
  transition: transform 0.35s var(--ease-out);
}
.ems-lead-pitem:hover .ems-lead-pbar { transform: translateY(0); }
.ems-lead-pname {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.ems-lead-ptitle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.ems-lead-pcontacts {
  display: flex;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.25s 0.1s;
}
.ems-lead-pitem:hover .ems-lead-pcontacts { opacity: 1; }
.ems-lead-pcontacts a {
  width: 28px; height: 28px;
  background: rgba(201,153,58,0.18);
  border: 1px solid rgba(201,153,58,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 11px;
  transition: background 0.2s;
  text-decoration: none;
}
.ems-lead-pcontacts a:hover { background: var(--gold-primary); color: #fff; }

@media (max-width: 991px) {
  .ems-lead-feature { flex-direction: column; }
  .ems-lead-left { width: 100%; padding: 56px 6%; min-height: auto; }
  .ems-lead-pgrid { grid-template-columns: repeat(3, 1fr); min-height: 400px; }
}
@media (max-width: 575px) {
  .ems-lead-pgrid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   36. BOLD CTA
   ============================================================ */
.ems-bold-cta {
  background: #080808;
  padding: 128px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ems-bold-cta::before {
  content: 'EMS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 320px);
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}
.ems-bold-cta-inner { position: relative; z-index: 2; }
.ems-bold-cta-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.ems-bold-cta-hl {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ems-bold-cta-hl em { color: var(--gold-light); font-style: italic; }
.ems-bold-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  max-width: 420px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.ems-bold-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}


/* ============================================================
   37. CONTACT V2
   ============================================================ */
.ems-contact-v2 {
  background: var(--off-white);
  padding: 100px 6%;
}
.ems-cv2-hd { margin-bottom: 64px; }
.ems-cv2-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.ems-cv2-hl {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 66px);
  color: #0a0a0a;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
}
.ems-cv2-hl em { color: var(--gold-primary); font-style: italic; }
.ems-cv2-body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.ems-cv2-info {
  width: 34%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ems-cv2-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ems-cv2-item:first-child { padding-top: 0; }
.ems-cv2-item:last-child { border-bottom: none; }
.ems-cv2-icon {
  width: 44px; height: 44px;
  background: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ems-cv2-icon i { color: var(--gold-light); font-size: 16px; }
.ems-cv2-item-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.ems-cv2-item-val {
  font-size: 16px;
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.45;
  display: block;
  transition: color 0.2s;
}
a.ems-cv2-item-val:hover { color: var(--gold-primary); }
.ems-cv2-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}
.ems-cv2-form { flex: 1; }

@media (max-width: 991px) {
  .ems-cv2-body { flex-direction: column; gap: 48px; }
  .ems-cv2-info { width: 100%; }
}


/* ============================================================
   38. GLOBAL CONTAINER UTILITY
   ============================================================ */
.ems-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 991px) {
  .ems-container { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 575px) {
  .ems-container { padding-left: 20px; padding-right: 20px; }
}


/* ============================================================
   39. VIDEO HERO  (.ems-herv)
   ============================================================ */
.ems-herv {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  margin-top: -106px;
}

/* Hide the navbar spacer on any page that contains the video hero */
body:has(.ems-herv) .navbar-spacer { display: none !important; }
body:has(.ems-herv) .ems-herv { margin-top: 0; }

/* Background video */
.ems-herv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  /* When no video file: the poster acts as background image */
}

/* Gradient overlay — dark left to semi-transparent right */
.ems-herv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(5,5,5,0.90) 0%,
      rgba(5,5,5,0.72) 45%,
      rgba(5,5,5,0.40) 75%,
      rgba(5,5,5,0.22) 100%
    ),
    linear-gradient(
      to top,
      rgba(5,5,5,0.70) 0%,
      transparent 50%
    ),
    linear-gradient(
      to bottom,
      rgba(5,5,5,0.55) 0%,
      transparent 30%
    );
  pointer-events: none;
}

/* Inner wrapper that grows to fill height */
.ems-herv-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 48px;
  padding-left: 8%;
  padding-right: 8%;
}

/* Content block — max-width so text stays readable */
.ems-herv-content {
  max-width: 780px;
}

/* Credential row */
.ems-herv-cred-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeRight 0.6s var(--ease-out) 0.1s forwards;
}
.ems-herv-cred {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ems-herv-dot {
  color: var(--gold-primary);
  font-size: 6px;
  opacity: 0.8;
}

/* Headline */
.ems-herv-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}
.ems-herv-headline span,
.ems-herv-headline em {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: hv3LineIn 0.75s var(--ease-out) forwards;
  font-style: normal;
}
.ems-herv-headline em {
  color: var(--gold-light);
  font-style: italic;
}

/* Subtitle */
.ems-herv-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.48);
  line-height: 1.78;
  max-width: 560px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.55s forwards;
}

/* CTAs */
.ems-herv-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.72s forwards;
}

/* Primary button */
.ems-herv-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 42px;
  background: var(--gold-primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ems-herv-btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,153,58,0.32);
}

/* Ghost button */
.ems-herv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.ems-herv-btn-ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(201,153,58,0.08);
}
.ems-herv-btn-ghost svg { transition: transform 0.25s; }
.ems-herv-btn-ghost:hover svg { transform: translateX(4px); }

/* Trust strip */
.ems-herv-trust {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 36px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.9s forwards;
}
.ems-herv-trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}
.ems-herv-trust-rule {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  margin-right: 40px;
  flex-shrink: 0;
  margin-top: 4px;
}
.ems-herv-trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ems-herv-trust-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Scroll indicator */
.ems-herv-scroll {
  position: absolute;
  bottom: 52px;
  right: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 1.3s forwards;
}
.ems-herv-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.ems-herv-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-primary);
  animation: scrollLine 2s var(--ease-out) 1.5s infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0;    }
  100% { left: 100%; }
}
.ems-herv-scroll span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* Ticker */
.ems-herv-ticker {
  position: relative;
  z-index: 3;
  height: 38px;
  background: rgba(201,153,58,0.06);
  border-top: 1px solid rgba(201,153,58,0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ems-herv-ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: hv3Ticker 30s linear infinite;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding-left: 48px;
}
.ems-herv-tdot {
  color: var(--gold-primary);
  font-size: 6px;
  opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .ems-herv { margin-top: -68px; }
  .ems-herv-inner { padding-top: 88px; padding-left: 6%; padding-right: 6%; padding-bottom: 40px; }
  .ems-herv-scroll { display: none; }
}
@media (max-width: 575px) {
  .ems-herv-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ems-herv-trust-item { padding-right: 24px; }
  .ems-herv-trust-rule { margin-right: 24px; }
}


/* ============================================================
   40. CONTAINED OVERRIDES — sections that previously used 6% padding
       now delegate spacing to .ems-container inside them
   ============================================================ */
/* About — strip 6% horizontal, keep original vertical */
.ems-about-v2 .ems-abt-inner   { padding-left: 0; padding-right: 0; }
.ems-about-v2 .ems-abt-statsbar { padding-left: 0; padding-right: 0; }
.ems-about-v2 > .ems-container  { padding-top: 0; padding-bottom: 0; }

/* Services — strip 6% horizontal */
.ems-svc-section .ems-svc-hd   { padding-left: 0; padding-right: 0; }
.ems-svc-section > .ems-container { padding-top: 0; padding-bottom: 96px; }
.ems-svc-section .ems-svc-row-hd  { padding-left: 20px; padding-right: 0; }
.ems-svc-section .ems-svc-body-wrap { padding-left: 76px; padding-right: 0; }

/* Proof bar */
.ems-proof-bar { padding-left: 0; padding-right: 0; }
.ems-proof-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.ems-proof-inner .ems-proof-item { flex: 1; }

/* Manifesto */
.ems-manifesto-section > .ems-container { padding-top: 100px; padding-bottom: 100px; }
.ems-mfst-row::before { left: -48px; }
@media (max-width: 991px) {
  .ems-mfst-row::before { left: -32px; }
}
@media (max-width: 575px) {
  .ems-mfst-row::before { left: -20px; }
}

/* Bold CTA */
.ems-bold-cta { padding-left: 0; padding-right: 0; }
.ems-bold-cta > .ems-container { padding-top: 0; padding-bottom: 0; }
.ems-bold-cta-inner { padding-top: 128px; padding-bottom: 128px; }

/* Contact */
.ems-contact-v2 > .ems-container { padding-top: 100px; padding-bottom: 100px; }
.ems-contact-v2 { padding: 0; }


/* ============================================================
   41. CONTAINER SPACING CLEANUP (strips leftover 6% horizontal)
   ============================================================ */
/* Manifesto: section has 100px vertical padding, strip horizontal */
.ems-manifesto-section { padding-left: 0; padding-right: 0; }
.ems-manifesto-section > .ems-container { padding-top: 100px; padding-bottom: 100px; }
/* Row left accent relative to container edge, not 6% */
.ems-manifesto-section .ems-mfst-row::before { left: -48px; }
@media (max-width: 991px) {
  .ems-manifesto-section .ems-mfst-row::before { left: -32px; }
}
@media (max-width: 575px) {
  .ems-manifesto-section .ems-mfst-row::before { left: -20px; }
}

/* Services: row header left padding creates gap between accent bar and number */

/* Proof bar: remove horizontal padding, inner handles flex */
.ems-proof-bar { padding-left: 0 !important; padding-right: 0 !important; }
.ems-proof-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}
.ems-proof-inner .ems-proof-item { flex: 1; }
.ems-proof-inner .ems-proof-rule {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .ems-proof-inner { flex-wrap: wrap; gap: 36px; }
  .ems-proof-inner .ems-proof-item { min-width: 42%; }
  .ems-proof-inner .ems-proof-rule { display: none; }
}


/* ============================================================
   42. ABOUT US PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.ems-about-hero {
  position: relative;
  min-height: 100dvh;
  background: var(--dark-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#ems-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.ems-about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 72% 50%, rgba(201,153,58,0.05) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.65) 100%);
  z-index: 1;
}
body:has(.ems-about-hero) .navbar-spacer { display: none !important; }

.ems-container { position: relative; }
.ems-about-hero .ems-container { flex: 1; display: flex; flex-direction: column; }

.ems-about-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 56px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 64px;
}

/* Left column: stacked text */
.ems-about-hero-content {
  display: flex;
  flex-direction: column;
}

/* Right column: image panel */
.ems-about-hero-img-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--d, 0s);
}
.ems-about-hero-img-wrap.visible { opacity: 1; transform: translateX(0); }

.ems-about-hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201,153,58,0.2);
}
.ems-about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}
.ems-about-hero-img-frame:hover .ems-about-hero-img { transform: scale(1.04); }

.ems-about-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    transparent 40%,
    rgba(10,10,10,0.55) 100%
  );
  pointer-events: none;
}

/* Gold accent box behind/offset the frame */
.ems-about-hero-img-accent {
  position: absolute;
  top: 20px;
  right: -16px;
  bottom: -16px;
  left: 20px;
  border: 1px solid rgba(201,153,58,0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* Small badge overlaid on image */
.ems-about-hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 18px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,153,58,0.22);
  border-radius: var(--radius-sm);
}

.ems-about-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.ems-about-hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.ems-about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--off-white);
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ems-ahr-line--gold { color: var(--gold-primary); }

.ems-ahr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: ahrWordIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: calc(var(--d, 0s) + var(--wi, 0) * 0.1s + 0.3s);
}
@keyframes ahrWordIn {
  to { opacity: 1; transform: translateY(0); }
}

.ems-about-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(250,250,247,0.5);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.ems-about-hero-sub.visible { opacity: 1; transform: translateY(0); }

.ems-about-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.ems-about-hero-cta.visible { opacity: 1; transform: translateY(0); }

.ems-about-hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ems-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 20px;
  border: 1px solid rgba(201,153,58,0.18);
  background: rgba(201,153,58,0.04);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s, background 0.3s;
  transition-delay: var(--d, 0s);
  cursor: default;
}
.ems-chip.visible { opacity: 1; transform: translateY(0); }
.ems-chip:hover { border-color: rgba(201,153,58,0.45); background: rgba(201,153,58,0.09); }
.ems-chip-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  line-height: 1;
}
.ems-chip-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.38);
}

.ems-about-scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 8%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.ems-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollLinePulse 2.2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%      { opacity: 1;    transform: scaleY(1.12); }
}

/* ── Shared section primitives ───────────────────────────── */
.ems-dark-section {
  background: var(--dark-base);
  color: var(--off-white);
}
.ems-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.ems-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}
.ems-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ems-section-title.ems-on-dark { color: var(--off-white); }
.ems-section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.ems-section-header.text-center .ems-section-sub { margin: 0 auto; }

/* ── Button primitives (about-page additions) ────────────── */
.ems-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.ems-btn-primary:hover {
  background: transparent;
  color: var(--gold-primary);
  transform: translateY(-2px);
}
.ems-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(250,250,247,0.7);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(250,250,247,0.2);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.ems-btn-ghost:hover {
  border-color: rgba(250,250,247,0.6);
  color: #fff;
  transform: translateY(-2px);
}
.ems-btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.ems-btn-ghost-dark:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(201,153,58,0.05);
}
.ems-btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(201,153,58,0.4);
  border-radius: var(--radius-sm);
  transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.25s;
}
.ems-btn-gold-outline:hover {
  background: rgba(201,153,58,0.1);
  border-color: var(--gold-primary);
  gap: 14px;
}

/* ── Mission + Vision ────────────────────────────────────── */
.ems-about-mv {
  background: var(--dark-base);
  padding: 0;
  overflow: hidden;
  color: var(--off-white);
}

/* Section header */
.ems-mv-header { padding: 100px 0 64px; text-align: center; }
.ems-mv-header .ems-section-label { justify-content: center; color: rgba(201,153,58,0.8); margin-bottom: 20px; }
.ems-mv-header-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--off-white);
  margin: 0;
}
.ems-mv-header-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Band wrap + two-column grid */
.ems-mv-band-wrap { padding: 0 0 100px; }
.ems-mv-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Vertical column divider */
.ems-mv-col-divider {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201,153,58,0.18) 20%,
    rgba(201,153,58,0.25) 50%,
    rgba(201,153,58,0.18) 80%,
    transparent 100%);
  width: 1px;
  align-self: stretch;
  margin: 40px 0;
}

/* Individual card */
.ems-mv-band {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 72px 60px;
  overflow: hidden;
  transition: background 0.4s ease;
}
.ems-mv-band:hover { background: rgba(255,255,255,0.015); }

/* Ghost watermark — single big letter, top-right */
.ems-mv-band-ghost {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,153,58,0.06);
  text-stroke: 1px rgba(201,153,58,0.06);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.4s ease;
}
.ems-mv-band:hover .ems-mv-band-ghost {
  -webkit-text-stroke-color: rgba(201,153,58,0.11);
}

/* Top border reveal line */
.ems-mv-band-border-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ems-mv-band.visible .ems-mv-band-border-line { transform: scaleX(1); }

/* Thin separator between header and body */
.ems-mv-band-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 0;
}

/* Left column (unused in new markup but kept for safety) */
.ems-mv-band-left { display: flex; flex-direction: column; gap: 16px; }

.ems-mv-badge {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,153,58,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,153,58,0.05);
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.ems-mv-band:hover .ems-mv-badge {
  border-color: rgba(201,153,58,0.55);
  background: rgba(201,153,58,0.1);
}

.ems-mv-band-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.ems-mv-band-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--off-white);
  margin: 4px 0 0;
}

.ems-mv-band-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(224,187,103,0.75);
  border-left: 2px solid rgba(201,153,58,0.35);
  padding-left: 18px;
  margin: 4px 0 0;
}

/* Right column */
.ems-mv-band-right { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }

.ems-mv-band-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250,250,247,0.55);
  margin: 0;
}

.ems-mv-band-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.ems-mv-band-pills span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(201,153,58,0.7);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.ems-mv-band-pills span:hover {
  color: var(--gold-primary);
  border-color: rgba(201,153,58,0.5);
  background: rgba(201,153,58,0.06);
}

/* Responsive */
@media (max-width: 991px) {
  .ems-mv-cols {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .ems-mv-col-divider {
    width: auto;
    height: 1px;
    margin: 0 40px;
    background: linear-gradient(to right, transparent, rgba(201,153,58,0.25), transparent);
  }
  .ems-mv-band { padding: 56px 32px; }
  .ems-mv-header { padding: 72px 0 48px; }
}
@media (max-width: 767px) {
  .ems-mv-band-ghost { display: none; }
  .ems-mv-band { padding: 48px 20px; }
  .ems-mv-header { padding: 60px 0 40px; }
  .ems-mv-band-wrap { padding-bottom: 72px; }
}

/* ── Who We Are ──────────────────────────────────────────── */
.ems-about-who { padding: 100px 0; position: relative; overflow: hidden; }
.ems-about-who-orb--1 {
  position: absolute; top: -80px; left: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ems-about-who-orb--2 {
  position: absolute; bottom: -80px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ems-about-who-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.ems-about-who-left { position: sticky; top: 120px; }
.ems-about-who-rule { width: 40px; height: 2px; background: var(--gold-primary); margin: 26px 0; }
.ems-about-who-tagline {
  font-family: var(--font-display); font-size: clamp(15px, 1.3vw, 19px);
  color: rgba(250,250,247,0.5); line-height: 1.6; margin-bottom: 32px;
}
.ems-about-who-tagline em { color: var(--gold-light); font-style: italic; }
.ems-about-who-right { display: flex; flex-direction: column; }
.ems-who-block {
  display: grid; grid-template-columns: 52px 1fr; gap: 24px;
  padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.ems-who-block:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.ems-who-block:hover { background: rgba(255,255,255,0.02); }
.ems-who-block-num { font-family: var(--font-display); font-size: 13px; color: var(--gold-primary); padding-top: 4px; letter-spacing: 0.06em; }
.ems-who-block-title { font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 24px); color: var(--off-white); margin-bottom: 11px; font-weight: 400; }
.ems-who-block-text { font-family: var(--font-body); font-size: 15px; line-height: 1.75; color: rgba(250,250,247,0.48); margin: 0; }

/* ── Core Values ─────────────────────────────────────────── */
.ems-about-values { padding: 100px 0; background: #f7f7f5; }
.ems-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.ems-value-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s, border-color 0.35s;
  opacity: 0; transform: translateY(24px);
}
.ems-value-card.visible {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i,0) * 0.08s);
}
.ems-value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ems-value-card:hover::before { transform: scaleX(1); }
.ems-value-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(201,153,58,0.1); border-color: rgba(201,153,58,0.2); }
.ems-value-card-icon {
  width: 52px; height: 52px; border: 1px solid rgba(201,153,58,0.2); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; background: rgba(201,153,58,0.04);
  transition: background 0.3s, border-color 0.3s;
}
.ems-value-card:hover .ems-value-card-icon { background: rgba(201,153,58,0.1); border-color: rgba(201,153,58,0.4); }
.ems-value-card-title { font-family: var(--font-display); font-size: 21px; color: var(--text-primary); margin-bottom: 11px; font-weight: 400; }
.ems-value-card-text { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.ems-value-card-tag {
  display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-primary);
  border: 1px solid rgba(201,153,58,0.25); border-radius: 100px; padding: 3px 10px;
}

/* ── What Makes Us Different ─────────────────────────────── */
.ems-about-diff { padding: 100px 0; position: relative; overflow: hidden; }
.ems-about-diff-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.ems-diff-track-wrap { position: relative; }
.ems-diff-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px; cursor: grab;
}
.ems-diff-track::-webkit-scrollbar { display: none; }
.ems-diff-track.dragging { cursor: grabbing; user-select: none; scroll-snap-type: none; }
.ems-diff-item {
  flex: 0 0 340px; scroll-snap-align: start;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 36px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.ems-diff-item:hover { border-color: rgba(201,153,58,0.25); background: rgba(201,153,58,0.04); }
.ems-diff-item-num {
  font-family: var(--font-display); font-size: 48px; color: rgba(201,153,58,0.13);
  line-height: 1; margin-bottom: 20px; transition: color 0.3s;
}
.ems-diff-item:hover .ems-diff-item-num { color: rgba(201,153,58,0.32); }
.ems-diff-item-title { font-family: var(--font-display); font-size: 22px; color: var(--off-white); margin-bottom: 12px; font-weight: 400; }
.ems-diff-item-text { font-family: var(--font-body); font-size: 14px; line-height: 1.75; color: rgba(250,250,247,0.48); margin: 0; }
.ems-diff-nav { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.ems-diff-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  color: rgba(255,255,255,0.45); display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.ems-diff-nav-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); background: rgba(201,153,58,0.08); }
.ems-diff-progress { flex: 1; height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.ems-diff-progress-fill { height: 100%; background: var(--gold-primary); border-radius: 2px; width: 0%; transition: width 0.2s ease; }

/* ── Service Overview ────────────────────────────────────── */
.ems-about-services { padding: 100px 0; background: var(--off-white); }
.ems-svc-overview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 56px; }
.ems-svc-overview-card {
  display: flex; flex-direction: column;
  padding: 28px 24px; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s, border-color 0.35s, background 0.35s;
  opacity: 0; transform: translateY(20px);
}
.ems-svc-overview-card.visible {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i,0) * 0.07s);
}
.ems-svc-overview-card:hover { background: var(--dark-base); border-color: transparent; transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.2); }
.ems-svc-ov-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ems-svc-overview-card:hover .ems-svc-ov-bar { transform: scaleX(1); }
.ems-svc-ov-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.ems-svc-ov-icon {
  width: 44px; height: 44px; border: 1px solid rgba(201,153,58,0.22); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,153,58,0.05); transition: background 0.3s, border-color 0.3s;
}
.ems-svc-ov-icon svg, .ems-svc-ov-icon i { stroke: var(--gold-primary); width: 18px; height: 18px; color: var(--gold-primary); }
.ems-svc-overview-card:hover .ems-svc-ov-icon { background: rgba(201,153,58,0.14); border-color: rgba(201,153,58,0.4); }
.ems-svc-ov-arrow { color: rgba(0,0,0,0.2); transition: color 0.3s, transform 0.3s; margin-top: 2px; }
.ems-svc-ov-arrow svg { stroke: currentColor; }
.ems-svc-overview-card:hover .ems-svc-ov-arrow { color: var(--gold-primary); transform: translate(3px,-3px); }
.ems-svc-ov-sub { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 6px; }
.ems-svc-ov-title { font-family: var(--font-display); font-size: 18px; color: var(--text-primary); margin-bottom: 10px; font-weight: 400; transition: color 0.35s; }
.ems-svc-overview-card:hover .ems-svc-ov-title { color: var(--off-white); }
.ems-svc-ov-desc { font-family: var(--font-body); font-size: 13px; line-height: 1.65; color: var(--text-muted); margin: 0; flex: 1; transition: color 0.35s; }
.ems-svc-overview-card:hover .ems-svc-ov-desc { color: rgba(250,250,247,0.48); }

/* ── Leadership Teaser ───────────────────────────────────── */
.ems-about-leadership { padding: 100px 0; position: relative; overflow: hidden; }
.ems-about-leadership-orb {
  position: absolute; bottom: -120px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ems-about-leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ems-on-dark-muted { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: rgba(250,250,247,0.48); margin-bottom: 28px; }
.ems-leadership-teaser-stats {
  display: flex; align-items: center;
  padding: 24px 0; margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ems-lt-stat { display: flex; flex-direction: column; gap: 4px; flex: 1; text-align: center; }
.ems-lt-stat-num { font-family: var(--font-display); font-size: 28px; color: var(--gold-light); line-height: 1; }
.ems-lt-stat-lbl { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.ems-lt-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }
.ems-exec-strip {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.ems-exec-strip:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.ems-exec-strip:hover { background: rgba(255,255,255,0.02); }
.ems-exec-strip-mono {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.12); border: 1px solid rgba(201,153,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; color: var(--gold-light); flex-shrink: 0;
}
.ems-exec-strip-info { flex: 1; overflow: hidden; }
.ems-exec-strip-name { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--off-white); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ems-exec-strip-title { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.ems-exec-strip-cta {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: transparent;
  color: rgba(255,255,255,0.38); display: flex; align-items: center;
  justify-content: center; text-decoration: none; flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.ems-exec-strip-cta:hover { border-color: var(--gold-primary); color: var(--gold-primary); background: rgba(201,153,58,0.08); }
.ems-exec-strip-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-family: var(--font-body); font-size: 13px;
  font-weight: 600; color: var(--gold-primary); text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.ems-exec-strip-more:hover { gap: 10px; color: var(--gold-light); }

/* ── Contact + Map ───────────────────────────────────────── */
/* ── CTA Banner ──────────────────────────────────────────── */
.ems-about-cta-banner {
  position: relative;
  background: var(--dark-base);
  padding: 100px 0;
  overflow: hidden;
  color: var(--off-white);
}
.ems-about-cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,153,58,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,153,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ems-about-cta-banner-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  top: 50%; right: -160px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,153,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ems-about-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
}
.ems-about-cta-text { flex: 1; min-width: 280px; }
.ems-about-cta-text .ems-section-label { margin-bottom: 16px; }

.ems-about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--off-white);
  margin: 0 0 16px;
}
.ems-about-cta-title em {
  font-style: italic;
  color: var(--gold-light);
}
.ems-about-cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,247,0.5);
  max-width: 480px;
  margin: 0;
}

.ems-about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA buttons */
.ems-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.ems-cta-btn:hover { transform: translateY(-2px); }

.ems-cta-btn--primary {
  background: var(--gold-primary);
  color: #0A0A0A;
  border: none;
  box-shadow: 0 4px 24px rgba(201,153,58,0.3);
}
.ems-cta-btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(201,153,58,0.45);
  color: #0A0A0A;
}

.ems-cta-btn--ghost {
  background: rgba(201,153,58,0.08);
  color: var(--gold-light);
  border: 1px solid rgba(201,153,58,0.25);
}
.ems-cta-btn--ghost:hover {
  background: rgba(201,153,58,0.14);
  border-color: rgba(201,153,58,0.5);
  color: var(--gold-light);
}

.ems-cta-btn--outline {
  background: transparent;
  color: rgba(250,250,247,0.6);
  border: 1px solid rgba(250,250,247,0.14);
}
.ems-cta-btn--outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(250,250,247,0.3);
  color: var(--off-white);
}

@media (max-width: 767px) {
  .ems-about-cta-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .ems-about-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .ems-about-cta-banner { padding: 72px 0; }
}

/* ── Contact + Map ───────────────────────────────────────── */
.ems-about-contact { padding: 100px 0; background: #f7f7f5; }
.ems-about-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; margin-top: 56px; }
.ems-about-contact-info { display: flex; flex-direction: column; gap: 24px; }
.ems-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ems-contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.08); border: 1px solid rgba(201,153,58,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ems-contact-lbl { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 4px; }
.ems-contact-val { font-family: var(--font-body); font-size: 15px; color: var(--text-primary); text-decoration: none; line-height: 1.5; transition: color 0.3s; }
a.ems-contact-val:hover { color: var(--gold-primary); }
.ems-about-contact-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.ems-about-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 400px; border: 1px solid var(--border-light); }
.ems-about-map iframe { display: block; width: 100%; height: 100%; min-height: 400px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199px) {
  .ems-svc-overview-grid { grid-template-columns: repeat(3,1fr); }
  .ems-about-who-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .ems-about-leadership-grid { gap: 48px; }
}
@media (max-width: 991px) {
  .ems-about-mv-grid { grid-template-columns: 1fr; }
  .ems-mv-divider { flex-direction: row; height: 40px; padding: 0; }
  .ems-mv-card, .ems-mv-card:last-of-type { padding: 32px 0; }
  .ems-about-who-grid { grid-template-columns: 1fr; }
  .ems-about-who-left { position: static; margin-bottom: 40px; }
  .ems-values-grid { grid-template-columns: repeat(2,1fr); }
  .ems-svc-overview-grid { grid-template-columns: repeat(2,1fr); }
  .ems-about-leadership-grid { grid-template-columns: 1fr; }
  .ems-about-contact-grid { grid-template-columns: 1fr; }
  .ems-about-hero-inner { padding-top: 140px; grid-template-columns: 1fr; }
  .ems-about-hero-img-wrap { display: none; }
}
@media (max-width: 767px) {
  .ems-about-hero-inner { padding-left: 5%; padding-right: 5%; padding-top: 120px; grid-template-columns: 1fr; }
  .ems-about-hero-img-wrap { display: none; }
  .ems-about-hero-headline { font-size: clamp(28px, 8vw, 48px); }
  .ems-chip { padding: 10px 14px; }
  .ems-chip-num { font-size: 18px; }
  .ems-diff-item { flex: 0 0 275px; }
  .ems-about-scroll-cue { display: none; }
  .ems-values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ems-svc-overview-grid { grid-template-columns: 1fr; }
  .ems-about-hero-chips { gap: 8px; }
  .ems-about-contact-ctas { flex-direction: column; }
  .ems-about-map { min-height: 260px; }
  .ems-about-map iframe { min-height: 260px; }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 43 — Services Overview Page
═══════════════════════════════════════════════════════════════ */

/* ── Services hero override (reuses .ems-about-hero styles) ─ */
body:has(.ems-svc-hero) .navbar-spacer { display: none !important; }

/* ── Services grid section ───────────────────────────────── */
.ems-svc-grid-section {
  padding: 100px 0;
  background: var(--off-white);
}
.ems-svc-section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ── Bento grid ──────────────────────────────────────────── */
.ems-svc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

/* Featured card (first): spans full 3 columns, horizontal layout */
.ems-svc-card--featured {
  grid-column: 1 / -1;
  flex-direction: row !important;
}
.ems-svc-card--featured .ems-svc-card-img-wrap {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: unset;
  min-height: 340px;
}
.ems-svc-card--featured .ems-svc-card-body {
  padding: 48px 52px;
  justify-content: center;
}
.ems-svc-card--featured .ems-svc-card-title {
  font-size: clamp(24px, 2.8vw, 38px);
}
.ems-svc-card--featured .ems-svc-card-sub {
  font-size: 16px;
  max-width: 520px;
}

/* All cards base */
.ems-svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s;
}
.ems-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.09), 0 2px 8px rgba(201,153,58,0.06);
  border-color: rgba(201,153,58,0.28);
}

/* Card image */
.ems-svc-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.ems-svc-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ems-svc-card:hover .ems-svc-card-img { transform: scale(1.06); }
.ems-svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.ems-svc-card:hover .ems-svc-card-img-overlay { opacity: 0.7; }

/* Number overlay on image */
.ems-svc-card-num-overlay {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  line-height: 1;
  background: rgba(10,10,10,0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Card body */
.ems-svc-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.ems-svc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ems-svc-card-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,153,58,0.22);
  border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.ems-svc-card:hover .ems-svc-card-icon {
  background: rgba(201,153,58,0.12);
  border-color: rgba(201,153,58,0.5);
  transform: scale(1.08);
}
.ems-svc-card-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(201,153,58,0.7);
  background: rgba(201,153,58,0.07);
  border: 1px solid rgba(201,153,58,0.18);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.ems-svc-card:hover .ems-svc-card-role {
  color: var(--gold-primary);
  background: rgba(201,153,58,0.1);
  border-color: rgba(201,153,58,0.35);
}
.ems-svc-card-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-primary);
  margin: 4px 0 0;
}
.ems-svc-card-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.ems-svc-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.ems-svc-card-pills span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ems-svc-card:hover .ems-svc-card-pills span {
  color: var(--gold-primary);
  border-color: rgba(201,153,58,0.28);
  background: rgba(201,153,58,0.04);
}

.ems-svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--gold-primary);
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  transition: gap 0.22s, color 0.22s;
}
.ems-svc-card-cta:hover { gap: 13px; color: var(--gold-light); }

/* Bottom accent line reveal on scroll */
.ems-svc-card-border-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light), transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  transition-delay: calc(var(--ci, 0) * 0.05s);
}
.ems-svc-card.visible .ems-svc-card-border-line { transform: scaleX(1); }

/* ── Why EMS section ─────────────────────────────────────── */
.ems-svc-why {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ems-svc-why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(201,153,58,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(201,153,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ems-svc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.ems-svc-why-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s, border-color 0.3s;
}
.ems-svc-why-card:hover {
  background: rgba(201,153,58,0.04);
  border-color: rgba(201,153,58,0.2);
}
.ems-svc-why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ems-svc-why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0;
}
.ems-svc-why-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,247,0.5);
  margin: 0;
}

/* Mega-menu footer */
.mega-menu-footer {
  padding: 12px 16px 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4px;
}
.mega-menu-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.mega-menu-view-all:hover { gap: 10px; color: var(--gold-light); }

/* Responsive — Services page */
@media (max-width: 1199px) {
  .ems-svc-bento { grid-template-columns: repeat(2, 1fr); }
  .ems-svc-card--featured { grid-column: 1 / -1; }
  .ems-svc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .ems-svc-card--featured { flex-direction: column !important; }
  .ems-svc-card--featured .ems-svc-card-img-wrap { width: 100%; min-height: unset; aspect-ratio: 16/9; }
  .ems-svc-card--featured .ems-svc-card-body { padding: 28px 24px; }
  .ems-svc-card--featured .ems-svc-card-title { font-size: clamp(20px, 4vw, 28px); }
}
@media (max-width: 767px) {
  .ems-svc-bento { grid-template-columns: 1fr; }
  .ems-svc-why-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   44. LEADERSHIP PAGE — Sections & Cards
   ============================================================ */

/* ── Navbar spacer removed (hero is full-bleed) ── */
body:has(.ems-ldr-hero) .navbar-spacer { display: none !important; }

/* ── Gold dot variant ── */
.ems-label-dot--gold {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}

/* ── Philosophy section ── */
.ems-ldr-philosophy-section {
  background: var(--off-white);
  padding: 100px 0;
}
.ems-ldr-section-header {
  margin-bottom: 64px;
}

/* Philosophy value cards grid */
.ems-ldr-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ems-ldr-value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 0.36s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.36s ease,
              border-color 0.36s ease;
}
.ems-ldr-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(201,153,58,0.1), 0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(201,153,58,0.28);
}
.ems-ldr-value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,153,58,0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.36s;
}
.ems-ldr-value-card:hover::before { opacity: 1; }

.ems-ldr-value-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,153,58,0.22);
  border-radius: var(--radius-sm);
  background: rgba(201,153,58,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: background 0.32s, border-color 0.32s, transform 0.32s;
}
.ems-ldr-value-card:hover .ems-ldr-value-icon {
  background: rgba(201,153,58,0.1);
  border-color: rgba(201,153,58,0.45);
  transform: scale(1.08);
}
.ems-ldr-value-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-primary);
  margin: 0;
}
.ems-ldr-value-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.ems-ldr-value-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  transition-delay: calc(var(--ci, 0) * 0.07s);
}
.ems-ldr-value-card.visible .ems-ldr-value-line { transform: scaleX(1); }

/* ── C-Suite section ── */
.ems-ldr-csuite-section {
  background: var(--dark-base);
  padding: 100px 0;
}
.ems-ldr-csuite-section .ems-ldr-section-header { margin-bottom: 64px; }

/* ── Division sections ── */
.ems-ldr-div-section {
  padding: 88px 0;
}
.ems-ldr-div-section--light {
  background: var(--off-white);
}
.ems-ldr-div-section--dark {
  background: #0e0c0a;
}
.ems-ldr-div-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── CTA headline (leadership page reuses ems-about-cta-banner) ── */
.ems-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--off-white);
  margin: 0 0 16px;
}
.ems-cta-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.ems-cta-subline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250,250,247,0.52);
  margin: 0;
  max-width: 420px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ems-ldr-philosophy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ems-ldr-philosophy-grid { grid-template-columns: 1fr; }
  .ems-ldr-csuite-section  { padding: 72px 0; }
  .ems-ldr-div-section     { padding: 64px 0; }
  .ems-leader-img          { height: 300px; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  45 · CEO / BUSINESS CONSULTING PAGE                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Navbar spacer hide ── */
body:has(.ems-ceo-hero) .navbar-spacer { display: none !important; }
body:has(.ems-tp-hero)  .navbar-spacer { display: none !important; }

/* ════════════════════════════════════════════════════════
   § Why-Fractional / Offerings section
════════════════════════════════════════════════════════ */
.ems-ceo-why-section {
  padding: 96px 0;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.ems-ceo-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,153,58,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* 2×2 grid */
.ems-ceo-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ems-ceo-offering-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: background .28s ease, border-color .28s ease;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, background .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.1s);
}
.ems-ceo-offering-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-ceo-offering-card:hover {
  background: rgba(201,153,58,.06);
  border-color: rgba(201,153,58,.22);
}
.ems-ceo-offering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity .28s ease;
}
.ems-ceo-offering-card:hover::after { opacity: 1; }

.ems-ceo-offering-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: rgba(201,153,58,.18);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transition: color .28s ease;
  padding-top: 4px;
}
.ems-ceo-offering-card:hover .ems-ceo-offering-num {
  color: rgba(201,153,58,.38);
}

.ems-ceo-offering-body { flex: 1; min-width: 0; }

.ems-ceo-offering-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,153,58,.1);
  border: 1px solid rgba(201,153,58,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
  transition: background .28s ease;
}
.ems-ceo-offering-card:hover .ems-ceo-offering-icon {
  background: rgba(201,153,58,.18);
}

.ems-ceo-offering-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 10px;
}

.ems-ceo-offering-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,247,.5);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   § Service Areas section
════════════════════════════════════════════════════════ */
.ems-ceo-areas-section {
  padding: 96px 0;
  background: var(--surface-light, #F5F3EE);
  position: relative;
}

/* 3-col grid */
.ems-ceo-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ems-ceo-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.08s);
}
.ems-ceo-area-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-ceo-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(201,153,58,.25);
}

.ems-ceo-area-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,58,.08);
  border: 1px solid rgba(201,153,58,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: background .28s ease, transform .28s ease;
}
.ems-ceo-area-card:hover .ems-ceo-area-icon {
  background: rgba(201,153,58,.14);
  transform: scale(1.08);
}

.ems-ceo-area-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-base);
  margin: 0 0 10px;
}

.ems-ceo-area-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted, #6b7280);
  margin: 0 0 22px;
}

.ems-ceo-area-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s ease;
}
.ems-ceo-area-card:hover .ems-ceo-area-line {
  opacity: 1;
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════
   § Deep Dive section
════════════════════════════════════════════════════════ */
.ems-ceo-deepdive-section {
  padding: 96px 0;
  background: var(--dark-elevated, #141414);
  position: relative;
  overflow: hidden;
}
.ems-ceo-deepdive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,153,58,.06) 0%, transparent 65%);
  pointer-events: none;
}

.ems-ceo-deepdive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ems-ceo-deepdive-content {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ems-ceo-deepdive-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.ems-ceo-deepdive-content .ems-section-title {
  color: var(--off-white);
  margin-bottom: 24px;
}
.ems-ceo-deepdive-content .ems-section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.ems-ceo-deepdive-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,250,247,.55);
  margin: 0 0 28px;
}

.ems-ceo-deepdive-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.ems-ceo-deepdive-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,250,247,.65);
}
.ems-ceo-deepdive-list li svg {
  flex-shrink: 0;
  color: var(--gold-primary);
}

/* Quote card */
.ems-ceo-quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,153,58,.18);
  border-left: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 44px 40px;
  position: relative;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}
.ems-ceo-quote-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.ems-ceo-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,153,58,.18);
  margin-bottom: -20px;
  user-select: none;
}

.ems-ceo-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0 0 28px;
}

.ems-ceo-quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ems-ceo-quote-line {
  flex: 1;
  height: 1px;
  background: rgba(201,153,58,.25);
}
.ems-ceo-quote-attr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.ems-ceo-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ems-ceo-quote-pills span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(250,250,247,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Section 45 Responsive ── */
@media (max-width: 1199px) {
  .ems-ceo-deepdive-inner { gap: 56px; }
  .ems-ceo-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .ems-ceo-offering-grid { grid-template-columns: 1fr; }
  .ems-ceo-deepdive-inner { grid-template-columns: 1fr; gap: 40px; }
  .ems-ceo-quote-card { transform: none; }
}
@media (max-width: 767px) {
  .ems-ceo-why-section,
  .ems-ceo-areas-section,
  .ems-ceo-deepdive-section { padding: 64px 0; }
  .ems-ceo-offering-card { gap: 18px; padding: 28px 24px; }
  .ems-ceo-areas-grid { grid-template-columns: 1fr; }
  .ems-ceo-quote-card { padding: 32px 28px; }
  .ems-ceo-quote-text { font-size: 1.05rem; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  46 · HR SOLUTIONS PAGE                                             ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Navbar spacer hide ── */
body:has(.ems-hr-hero) .navbar-spacer { display: none !important; }

/* ════════════════════════════════════════════════════════
   § Why-Fractional / Offerings section
════════════════════════════════════════════════════════ */
.ems-hr-why-section {
  padding: 96px 0;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.ems-hr-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,153,58,.07) 0%, transparent 65%);
  pointer-events: none;
}

.ems-hr-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ems-hr-offering-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, background .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.1s);
}
.ems-hr-offering-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-hr-offering-card:hover {
  background: rgba(201,153,58,.06);
  border-color: rgba(201,153,58,.22);
}
.ems-hr-offering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity .28s ease;
}
.ems-hr-offering-card:hover::after { opacity: 1; }

.ems-hr-offering-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: rgba(201,153,58,.18);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transition: color .28s ease;
  padding-top: 4px;
}
.ems-hr-offering-card:hover .ems-hr-offering-num {
  color: rgba(201,153,58,.38);
}

.ems-hr-offering-body { flex: 1; min-width: 0; }

.ems-hr-offering-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,153,58,.1);
  border: 1px solid rgba(201,153,58,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
  transition: background .28s ease;
}
.ems-hr-offering-card:hover .ems-hr-offering-icon {
  background: rgba(201,153,58,.18);
}

.ems-hr-offering-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 10px;
}

.ems-hr-offering-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,247,.5);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   § Service Areas section
════════════════════════════════════════════════════════ */
.ems-hr-areas-section {
  padding: 96px 0;
  background: var(--surface-light, #F5F3EE);
}

.ems-hr-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ems-hr-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.08s);
}
.ems-hr-area-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-hr-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(201,153,58,.25);
}

.ems-hr-area-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,58,.08);
  border: 1px solid rgba(201,153,58,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: background .28s ease, transform .28s ease;
}
.ems-hr-area-card:hover .ems-hr-area-icon {
  background: rgba(201,153,58,.14);
  transform: scale(1.08);
}

.ems-hr-area-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-base);
  margin: 0 0 10px;
}

.ems-hr-area-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted, #6b7280);
  margin: 0 0 22px;
}

.ems-hr-area-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s ease;
}
.ems-hr-area-card:hover .ems-hr-area-line {
  opacity: 1;
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════
   § Deep Dive section
════════════════════════════════════════════════════════ */
.ems-hr-deepdive-section {
  padding: 96px 0;
  background: var(--dark-elevated, #141414);
  position: relative;
  overflow: hidden;
}
.ems-hr-deepdive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,153,58,.06) 0%, transparent 65%);
  pointer-events: none;
}

.ems-hr-deepdive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ems-hr-deepdive-content {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ems-hr-deepdive-content.visible {
  opacity: 1;
  transform: translateX(0);
}
.ems-hr-deepdive-content .ems-section-title {
  color: var(--off-white);
  margin-bottom: 24px;
}
.ems-hr-deepdive-content .ems-section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.ems-hr-deepdive-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,250,247,.55);
  margin: 0 0 28px;
}

.ems-hr-deepdive-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.ems-hr-deepdive-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,250,247,.65);
}
.ems-hr-deepdive-list li svg {
  flex-shrink: 0;
  color: var(--gold-primary);
}

.ems-hr-quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,153,58,.18);
  border-left: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 44px 40px;
  position: relative;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}
.ems-hr-quote-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.ems-hr-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,153,58,.18);
  margin-bottom: -20px;
  user-select: none;
}

.ems-hr-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0 0 28px;
}

.ems-hr-quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ems-hr-quote-line {
  flex: 1;
  height: 1px;
  background: rgba(201,153,58,.25);
}
.ems-hr-quote-attr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.ems-hr-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ems-hr-quote-pills span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(250,250,247,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Section 46 Responsive ── */
@media (max-width: 1199px) {
  .ems-hr-deepdive-inner { gap: 56px; }
  .ems-hr-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .ems-hr-offering-grid { grid-template-columns: 1fr; }
  .ems-hr-deepdive-inner { grid-template-columns: 1fr; gap: 40px; }
  .ems-hr-quote-card { transform: none; }
}
@media (max-width: 767px) {
  .ems-hr-why-section,
  .ems-hr-areas-section,
  .ems-hr-deepdive-section { padding: 64px 0; }
  .ems-hr-offering-card { gap: 18px; padding: 28px 24px; }
  .ems-hr-areas-grid { grid-template-columns: 1fr; }
  .ems-hr-quote-card { padding: 32px 28px; }
  .ems-hr-quote-text { font-size: 1.05rem; }
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  47 · FINANCE & CFO SERVICES PAGE                                   ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Navbar spacer hide ── */
body:has(.ems-fin-hero) .navbar-spacer { display: none !important; }

/* ════════════════════════════════════════════════════════
   § Why-Fractional / Offerings section
════════════════════════════════════════════════════════ */
.ems-fin-why-section {
  padding: 96px 0;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.ems-fin-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,153,58,.07) 0%, transparent 65%);
  pointer-events: none;
}

.ems-fin-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ems-fin-offering-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, background .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.1s);
}
.ems-fin-offering-card.visible { opacity: 1; transform: translateY(0); }
.ems-fin-offering-card:hover {
  background: rgba(201,153,58,.06);
  border-color: rgba(201,153,58,.22);
}
.ems-fin-offering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity .28s ease;
}
.ems-fin-offering-card:hover::after { opacity: 1; }

.ems-fin-offering-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: rgba(201,153,58,.18);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transition: color .28s ease;
  padding-top: 4px;
}
.ems-fin-offering-card:hover .ems-fin-offering-num { color: rgba(201,153,58,.38); }

.ems-fin-offering-body { flex: 1; min-width: 0; }

.ems-fin-offering-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,153,58,.1);
  border: 1px solid rgba(201,153,58,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
  transition: background .28s ease;
}
.ems-fin-offering-card:hover .ems-fin-offering-icon { background: rgba(201,153,58,.18); }

.ems-fin-offering-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 10px;
}
.ems-fin-offering-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,247,.5);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   § Service Areas section
════════════════════════════════════════════════════════ */
.ems-fin-areas-section {
  padding: 96px 0;
  background: var(--surface-light, #F5F3EE);
}

.ems-fin-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ems-fin-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.08s);
}
.ems-fin-area-card.visible { opacity: 1; transform: translateY(0); }
.ems-fin-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(201,153,58,.25);
}

.ems-fin-area-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,58,.08);
  border: 1px solid rgba(201,153,58,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: background .28s ease, transform .28s ease;
}
.ems-fin-area-card:hover .ems-fin-area-icon {
  background: rgba(201,153,58,.14);
  transform: scale(1.08);
}

.ems-fin-area-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-base);
  margin: 0 0 10px;
}
.ems-fin-area-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted, #6b7280);
  margin: 0 0 22px;
}

.ems-fin-area-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s ease;
}
.ems-fin-area-card:hover .ems-fin-area-line { opacity: 1; transform: scaleX(1); }

/* ════════════════════════════════════════════════════════
   § Deep Dive section
════════════════════════════════════════════════════════ */
.ems-fin-deepdive-section {
  padding: 96px 0;
  background: var(--dark-elevated, #141414);
  position: relative;
  overflow: hidden;
}
.ems-fin-deepdive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,153,58,.06) 0%, transparent 65%);
  pointer-events: none;
}

.ems-fin-deepdive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ems-fin-deepdive-content {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ems-fin-deepdive-content.visible { opacity: 1; transform: translateX(0); }
.ems-fin-deepdive-content .ems-section-title { color: var(--off-white); margin-bottom: 24px; }
.ems-fin-deepdive-content .ems-section-title em { font-style: italic; color: var(--gold-light); }

.ems-fin-deepdive-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,250,247,.55);
  margin: 0 0 28px;
}

.ems-fin-deepdive-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.ems-fin-deepdive-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,250,247,.65);
}
.ems-fin-deepdive-list li svg { flex-shrink: 0; color: var(--gold-primary); }

.ems-fin-quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,153,58,.18);
  border-left: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 44px 40px;
  position: relative;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}
.ems-fin-quote-card.visible { opacity: 1; transform: translateX(0); }

.ems-fin-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,153,58,.18);
  margin-bottom: -20px;
  user-select: none;
}
.ems-fin-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0 0 28px;
}
.ems-fin-quote-footer {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.ems-fin-quote-line { flex: 1; height: 1px; background: rgba(201,153,58,.25); }
.ems-fin-quote-attr {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-primary);
}
.ems-fin-quote-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ems-fin-quote-pills span {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  color: rgba(250,250,247,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Section 47 Responsive ── */
@media (max-width: 1199px) {
  .ems-fin-deepdive-inner { gap: 56px; }
  .ems-fin-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .ems-fin-offering-grid { grid-template-columns: 1fr; }
  .ems-fin-deepdive-inner { grid-template-columns: 1fr; gap: 40px; }
  .ems-fin-quote-card { transform: none; }
}
@media (max-width: 767px) {
  .ems-fin-why-section,
  .ems-fin-areas-section,
  .ems-fin-deepdive-section { padding: 64px 0; }
  .ems-fin-offering-card { gap: 18px; padding: 28px 24px; }
  .ems-fin-areas-grid { grid-template-columns: 1fr; }
  .ems-fin-quote-card { padding: 32px 28px; }
  .ems-fin-quote-text { font-size: 1.05rem; }
}

/* ====================================================================
   Section 48 — Leadership Staff Card Visibility Fix
   Ensures names/titles render on both light and dark division sections
   ==================================================================== */

/* ── Light division sections ── */
.ems-ldr-div-section--light .ems-staff-card {
    background: #ffffff !important;
    border-color: var(--border-light) !important;
}
.ems-ldr-div-section--light .ems-staff-card .ems-staff-name {
    color: var(--text-primary) !important;
}
.ems-ldr-div-section--light .ems-staff-card .ems-staff-title {
    color: var(--text-muted) !important;
}
.ems-ldr-div-section--light .ems-staff-card .ems-staff-contact a {
    color: var(--text-muted) !important;
}
.ems-ldr-div-section--light .ems-staff-card .ems-staff-contact a:hover {
    color: var(--gold-primary) !important;
}

/* ── Dark division sections ── */
.ems-ldr-div-section--dark .ems-staff-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
.ems-ldr-div-section--dark .ems-staff-card:hover {
    background: rgba(201,153,58,0.06) !important;
    border-color: rgba(201,153,58,0.3) !important;
}
.ems-ldr-div-section--dark .ems-staff-card .ems-staff-name {
    color: var(--gold-light) !important;
}
.ems-ldr-div-section--dark .ems-staff-card .ems-staff-title {
    color: rgba(250,250,247,0.55) !important;
}
.ems-ldr-div-section--dark .ems-staff-card .ems-staff-contact a {
    color: rgba(250,250,247,0.45) !important;
}
.ems-ldr-div-section--dark .ems-staff-card .ems-staff-contact a:hover {
    color: var(--gold-primary) !important;
}
.ems-ldr-div-section--dark .ems-ldr-div-title {
    color: var(--off-white) !important;
}
.ems-ldr-div-section--dark .ems-ldr-div-desc {
    color: rgba(250,250,247,0.5) !important;
}
.ems-ldr-div-section--dark .ems-section-label {
    color: var(--gold-primary) !important;
}

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  49 · CYBERSECURITY & CISO SERVICES PAGE                           ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ── Navbar spacer hide ── */
body:has(.ems-sec-hero) .navbar-spacer { display: none !important; }

/* ════════════════════════════════════════════════════════
   § Why-Fractional / Offerings section
════════════════════════════════════════════════════════ */
.ems-sec-why-section {
  padding: 96px 0;
  background: var(--dark-base);
  position: relative;
  overflow: hidden;
}
.ems-sec-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,153,58,.07) 0%, transparent 65%);
  pointer-events: none;
}

.ems-sec-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ems-sec-offering-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 36px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, background .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.1s);
}
.ems-sec-offering-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-sec-offering-card:hover {
  background: rgba(201,153,58,.06);
  border-color: rgba(201,153,58,.22);
}
.ems-sec-offering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity .28s ease;
}
.ems-sec-offering-card:hover::after { opacity: 1; }

.ems-sec-offering-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: rgba(201,153,58,.18);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transition: color .28s ease;
  padding-top: 4px;
}
.ems-sec-offering-card:hover .ems-sec-offering-num {
  color: rgba(201,153,58,.38);
}

.ems-sec-offering-body { flex: 1; min-width: 0; }

.ems-sec-offering-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,153,58,.1);
  border: 1px solid rgba(201,153,58,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 14px;
  transition: background .28s ease;
}
.ems-sec-offering-card:hover .ems-sec-offering-icon {
  background: rgba(201,153,58,.18);
}

.ems-sec-offering-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 10px;
}

.ems-sec-offering-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,247,.5);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   § Service Areas section
════════════════════════════════════════════════════════ */
.ems-sec-areas-section {
  padding: 96px 0;
  background: var(--surface-light, #F5F3EE);
}

.ems-sec-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ems-sec-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .28s ease, border-color .28s ease;
  transition-delay: calc(var(--ci, 0) * 0.08s);
}
.ems-sec-area-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ems-sec-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: rgba(201,153,58,.25);
}

.ems-sec-area-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,58,.08);
  border: 1px solid rgba(201,153,58,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: background .28s ease, transform .28s ease;
}
.ems-sec-area-card:hover .ems-sec-area-icon {
  background: rgba(201,153,58,.14);
  transform: scale(1.08);
}

.ems-sec-area-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-base);
  margin: 0 0 10px;
}

.ems-sec-area-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted, #6b7280);
  margin: 0 0 22px;
}

.ems-sec-area-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s ease;
}
.ems-sec-area-card:hover .ems-sec-area-line {
  opacity: 1;
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════
   § Deep Dive section
════════════════════════════════════════════════════════ */
.ems-sec-deepdive-section {
  padding: 96px 0;
  background: var(--dark-elevated, #141414);
  position: relative;
  overflow: hidden;
}
.ems-sec-deepdive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,153,58,.06) 0%, transparent 65%);
  pointer-events: none;
}

.ems-sec-deepdive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ems-sec-deepdive-content {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s ease;
}
.ems-sec-deepdive-content.visible {
  opacity: 1;
  transform: translateX(0);
}
.ems-sec-deepdive-content .ems-section-title {
  color: var(--off-white);
  margin-bottom: 24px;
}
.ems-sec-deepdive-content .ems-section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.ems-sec-deepdive-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,250,247,.55);
  margin: 0 0 28px;
}

.ems-sec-deepdive-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.ems-sec-deepdive-list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,250,247,.65);
}
.ems-sec-deepdive-list li svg {
  flex-shrink: 0;
  color: var(--gold-primary);
}

.ems-sec-quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,153,58,.18);
  border-left: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 44px 40px;
  position: relative;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}
.ems-sec-quote-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.ems-sec-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,153,58,.18);
  margin-bottom: -20px;
  user-select: none;
}

.ems-sec-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0 0 28px;
}

.ems-sec-quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ems-sec-quote-line {
  flex: 1;
  height: 1px;
  background: rgba(201,153,58,.25);
}
.ems-sec-quote-attr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.ems-sec-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ems-sec-quote-pills span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(250,250,247,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Section 49 Responsive ── */
@media (max-width: 1199px) {
  .ems-sec-deepdive-inner { gap: 56px; }
  .ems-sec-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .ems-sec-offering-grid { grid-template-columns: 1fr; }
  .ems-sec-deepdive-inner { grid-template-columns: 1fr; gap: 40px; }
  .ems-sec-quote-card { transform: none; }
}
@media (max-width: 767px) {
  .ems-sec-why-section,
  .ems-sec-areas-section,
  .ems-sec-deepdive-section { padding: 64px 0; }
  .ems-sec-offering-card { gap: 18px; padding: 28px 24px; }
  .ems-sec-areas-grid { grid-template-columns: 1fr; }
  .ems-sec-quote-card { padding: 32px 28px; }
  .ems-sec-quote-text { font-size: 1.05rem; }
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTION 50 — IT SOLUTIONS  (ems-it-*)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ems-it-hero { background: var(--dark-base); }
.ems-it-hero .ems-about-hero-eyebrow { color: var(--gold-primary); }

/* ── Why Fractional ── */
.ems-it-why-section {
  background: var(--dark-base);
  padding: 120px 0;
}

.ems-it-offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ems-it-offering-card {
  position: relative;
  background: var(--dark-elevated);
  padding: 48px 40px;
  transition: background 0.3s ease;
  transition-delay: calc(var(--ci, 0) * 80ms);
}
.ems-it-offering-card:hover { background: #1a1a14; }

.ems-it-offering-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,153,58,0.08);
  line-height: 1;
  position: absolute;
  top: 32px;
  right: 36px;
  letter-spacing: -0.02em;
}

.ems-it-offering-body { position: relative; z-index: 1; }

.ems-it-offering-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,153,58,0.1);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-primary);
  transition: background 0.3s, border-color 0.3s;
}
.ems-it-offering-card:hover .ems-it-offering-icon {
  background: rgba(201,153,58,0.18);
  border-color: rgba(201,153,58,0.35);
}

.ems-it-offering-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
}

.ems-it-offering-desc {
  font-size: 0.925rem;
  color: rgba(250,250,247,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Service Areas ── */
.ems-it-areas-section {
  background: var(--surface-light);
  padding: 120px 0;
}

.ems-it-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ems-it-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  transition-delay: calc(var(--ci, 0) * 60ms);
}
.ems-it-area-card:hover {
  border-color: rgba(201,153,58,0.35);
  box-shadow: 0 12px 40px -8px rgba(201,153,58,0.12);
  transform: translateY(-4px);
}

.ems-it-area-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,153,58,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.ems-it-area-card:hover .ems-it-area-icon { background: rgba(201,153,58,0.15); }

.ems-it-area-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.ems-it-area-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.ems-it-area-line {
  height: 2px;
  width: 32px;
  background: var(--gold-primary);
  border-radius: 2px;
  opacity: 0.5;
  transition: width 0.3s, opacity 0.3s;
}
.ems-it-area-card:hover .ems-it-area-line { width: 56px; opacity: 1; }

/* ── Deep Dive ── */
.ems-it-deepdive-section {
  background: var(--dark-elevated);
  padding: 120px 0;
}

.ems-it-deepdive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ems-it-deepdive-content .ems-section-title { color: var(--off-white); }
.ems-it-deepdive-content .ems-section-title em { color: var(--gold-light); font-style: italic; }

.ems-it-deepdive-body {
  font-size: 0.975rem;
  color: rgba(250,250,247,0.6);
  line-height: 1.75;
  margin: 24px 0 32px;
}

.ems-it-deepdive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ems-it-deepdive-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(250,250,247,0.75);
}
.ems-it-deepdive-list li svg { color: var(--gold-primary); flex-shrink: 0; }

.ems-it-quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,153,58,0.18);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
}

.ems-it-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.ems-it-quote-text {
  font-size: 1.05rem;
  color: rgba(250,250,247,0.85);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 28px;
}

.ems-it-quote-footer { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ems-it-quote-line { flex: 1; height: 1px; background: rgba(201,153,58,0.25); }
.ems-it-quote-attr { font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }

.ems-it-quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ems-it-quote-pills span {
  background: rgba(201,153,58,0.1);
  border: 1px solid rgba(201,153,58,0.2);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ems-it-deepdive-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .ems-it-offering-grid { grid-template-columns: 1fr; }
  .ems-it-areas-grid { grid-template-columns: 1fr; }
  .ems-it-quote-card { padding: 32px 28px; }
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTION 51 — OPS & COO SERVICES  (ems-ops-*)
   ══════════════════════════════════════════════════════════════════════════ */

.ems-ops-hero { background: var(--dark-base); }
.ems-ops-hero .ems-about-hero-eyebrow { color: var(--gold-primary); }

.ems-ops-why-section { background: var(--dark-base); padding: 120px 0; }

.ems-ops-offering-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.ems-ops-offering-card {
  position: relative;
  background: var(--dark-elevated);
  padding: 48px 40px;
  transition: background 0.3s ease;
  transition-delay: calc(var(--ci, 0) * 80ms);
}
.ems-ops-offering-card:hover { background: #1a1a14; }

.ems-ops-offering-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,153,58,0.08);
  line-height: 1;
  position: absolute;
  top: 32px;
  right: 36px;
  letter-spacing: -0.02em;
}

.ems-ops-offering-body { position: relative; z-index: 1; }

.ems-ops-offering-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,153,58,0.1);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-primary);
  transition: background 0.3s, border-color 0.3s;
}
.ems-ops-offering-card:hover .ems-ops-offering-icon {
  background: rgba(201,153,58,0.18);
  border-color: rgba(201,153,58,0.35);
}

.ems-ops-offering-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
}

.ems-ops-offering-desc {
  font-size: 0.925rem;
  color: rgba(250,250,247,0.55);
  line-height: 1.65;
  margin: 0;
}

.ems-ops-areas-section { background: var(--surface-light); padding: 120px 0; }

.ems-ops-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.ems-ops-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  transition-delay: calc(var(--ci, 0) * 60ms);
}
.ems-ops-area-card:hover {
  border-color: rgba(201,153,58,0.35);
  box-shadow: 0 12px 40px -8px rgba(201,153,58,0.12);
  transform: translateY(-4px);
}

.ems-ops-area-icon {
  width: 48px; height: 48px;
  background: rgba(201,153,58,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary); margin-bottom: 20px;
  transition: background 0.3s;
}
.ems-ops-area-card:hover .ems-ops-area-icon { background: rgba(201,153,58,0.15); }

.ems-ops-area-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.ems-ops-area-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 20px; }
.ems-ops-area-line { height: 2px; width: 32px; background: var(--gold-primary); border-radius: 2px; opacity: 0.5; transition: width 0.3s, opacity 0.3s; }
.ems-ops-area-card:hover .ems-ops-area-line { width: 56px; opacity: 1; }

.ems-ops-deepdive-section { background: var(--dark-elevated); padding: 120px 0; }
.ems-ops-deepdive-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ems-ops-deepdive-content .ems-section-title { color: var(--off-white); }
.ems-ops-deepdive-content .ems-section-title em { color: var(--gold-light); font-style: italic; }
.ems-ops-deepdive-body { font-size: 0.975rem; color: rgba(250,250,247,0.6); line-height: 1.75; margin: 24px 0 32px; }
.ems-ops-deepdive-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.ems-ops-deepdive-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(250,250,247,0.75); }
.ems-ops-deepdive-list li svg { color: var(--gold-primary); flex-shrink: 0; }

.ems-ops-quote-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,153,58,0.18); border-radius: 20px; padding: 48px 44px; }
.ems-ops-quote-mark { font-size: 5rem; line-height: 1; color: var(--gold-primary); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 16px; }
.ems-ops-quote-text { font-size: 1.05rem; color: rgba(250,250,247,0.85); line-height: 1.75; font-style: italic; margin: 0 0 28px; }
.ems-ops-quote-footer { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ems-ops-quote-line { flex: 1; height: 1px; background: rgba(201,153,58,0.25); }
.ems-ops-quote-attr { font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.ems-ops-quote-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ems-ops-quote-pills span { background: rgba(201,153,58,0.1); border: 1px solid rgba(201,153,58,0.2); color: var(--gold-light); font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.03em; }

@media (max-width: 1024px) { .ems-ops-deepdive-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) {
  .ems-ops-offering-grid { grid-template-columns: 1fr; }
  .ems-ops-areas-grid { grid-template-columns: 1fr; }
  .ems-ops-quote-card { padding: 32px 28px; }
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTION 52 — MARKETING & SALES SERVICES  (ems-mkt-*)
   ══════════════════════════════════════════════════════════════════════════ */

.ems-mkt-hero { background: var(--dark-base); }
.ems-mkt-hero .ems-about-hero-eyebrow { color: var(--gold-primary); }

.ems-mkt-why-section { background: var(--dark-base); padding: 120px 0; }

.ems-mkt-offering-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.ems-mkt-offering-card {
  position: relative;
  background: var(--dark-elevated);
  padding: 48px 40px;
  transition: background 0.3s ease;
  transition-delay: calc(var(--ci, 0) * 80ms);
}
.ems-mkt-offering-card:hover { background: #1a1a14; }

.ems-mkt-offering-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,153,58,0.08);
  line-height: 1;
  position: absolute;
  top: 32px;
  right: 36px;
  letter-spacing: -0.02em;
}

.ems-mkt-offering-body { position: relative; z-index: 1; }

.ems-mkt-offering-icon {
  width: 44px; height: 44px;
  background: rgba(201,153,58,0.1);
  border: 1px solid rgba(201,153,58,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold-primary);
  transition: background 0.3s, border-color 0.3s;
}
.ems-mkt-offering-card:hover .ems-mkt-offering-icon { background: rgba(201,153,58,0.18); border-color: rgba(201,153,58,0.35); }

.ems-mkt-offering-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--off-white); margin-bottom: 12px; }
.ems-mkt-offering-desc { font-size: 0.925rem; color: rgba(250,250,247,0.55); line-height: 1.65; margin: 0; }

.ems-mkt-areas-section { background: var(--surface-light); padding: 120px 0; }
.ems-mkt-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.ems-mkt-area-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  transition-delay: calc(var(--ci, 0) * 60ms);
}
.ems-mkt-area-card:hover {
  border-color: rgba(201,153,58,0.35);
  box-shadow: 0 12px 40px -8px rgba(201,153,58,0.12);
  transform: translateY(-4px);
}

.ems-mkt-area-icon {
  width: 48px; height: 48px;
  background: rgba(201,153,58,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary); margin-bottom: 20px;
  transition: background 0.3s;
}
.ems-mkt-area-card:hover .ems-mkt-area-icon { background: rgba(201,153,58,0.15); }

.ems-mkt-area-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.ems-mkt-area-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 20px; }
.ems-mkt-area-line { height: 2px; width: 32px; background: var(--gold-primary); border-radius: 2px; opacity: 0.5; transition: width 0.3s, opacity 0.3s; }
.ems-mkt-area-card:hover .ems-mkt-area-line { width: 56px; opacity: 1; }

.ems-mkt-deepdive-section { background: var(--dark-elevated); padding: 120px 0; }
.ems-mkt-deepdive-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ems-mkt-deepdive-content .ems-section-title { color: var(--off-white); }
.ems-mkt-deepdive-content .ems-section-title em { color: var(--gold-light); font-style: italic; }
.ems-mkt-deepdive-body { font-size: 0.975rem; color: rgba(250,250,247,0.6); line-height: 1.75; margin: 24px 0 32px; }
.ems-mkt-deepdive-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.ems-mkt-deepdive-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(250,250,247,0.75); }
.ems-mkt-deepdive-list li svg { color: var(--gold-primary); flex-shrink: 0; }

.ems-mkt-quote-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,153,58,0.18); border-radius: 20px; padding: 48px 44px; }
.ems-mkt-quote-mark { font-size: 5rem; line-height: 1; color: var(--gold-primary); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 16px; }
.ems-mkt-quote-text { font-size: 1.05rem; color: rgba(250,250,247,0.85); line-height: 1.75; font-style: italic; margin: 0 0 28px; }
.ems-mkt-quote-footer { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ems-mkt-quote-line { flex: 1; height: 1px; background: rgba(201,153,58,0.25); }
.ems-mkt-quote-attr { font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.ems-mkt-quote-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ems-mkt-quote-pills span { background: rgba(201,153,58,0.1); border: 1px solid rgba(201,153,58,0.2); color: var(--gold-light); font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.03em; }

@media (max-width: 1024px) { .ems-mkt-deepdive-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) {
  .ems-mkt-offering-grid { grid-template-columns: 1fr; }
  .ems-mkt-areas-grid { grid-template-columns: 1fr; }
  .ems-mkt-quote-card { padding: 32px 28px; }
}


/* ===================================================
   SECTION 53 — MID-PAGE CTA STRIPS
   Compact horizontal CTA bands placed between page
   sections to drive conversions throughout the page.
   =================================================== */

/* ─── Base Strip ─── */
.ems-mid-cta-strip {
    background: var(--dark-elevated);
    border-top: 1px solid rgba(201, 153, 58, .20);
    border-bottom: 1px solid rgba(201, 153, 58, .20);
    padding: 2.75rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle gold shimmer line */
.ems-mid-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: .5;
}

/* ─── Inner Layout ─── */
.ems-mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* ─── Copy Block ─── */
.ems-mid-cta-copy {
    flex: 1;
    min-width: 260px;
}

.ems-mid-cta-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: .5rem;
}

.ems-mid-cta-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--off-white);
    margin: 0;
}

/* ─── Actions Block ─── */
.ems-mid-cta-actions {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .ems-mid-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.75rem;
    }

    .ems-mid-cta-copy {
        min-width: unset;
    }

    .ems-mid-cta-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ems-mid-cta-strip {
        padding: 2rem 0;
    }

    .ems-mid-cta-text {
        font-size: 1.05rem;
    }

    .ems-mid-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ems-mid-cta-actions .ems-cta-btn {
        text-align: center;
        justify-content: center;
    }
}

/* ─── Hero Outline Button — 3rd CTA in service page & leadership heroes ─── */
.ems-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, color .22s, border-color .22s;
    border: 1.5px solid rgba(255, 255, 255, .28);
    background: transparent;
    color: rgba(255, 255, 255, .72);
}

.ems-btn-outline:hover,
.ems-btn-outline:focus-visible {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(201, 153, 58, .07);
    text-decoration: none;
}

/* Homepage hero variant */
.ems-herv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, color .22s, border-color .22s;
    border: 1.5px solid rgba(255, 255, 255, .28);
    background: transparent;
    color: rgba(255, 255, 255, .72);
}

.ems-herv-btn-outline:hover,
.ems-herv-btn-outline:focus-visible {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(201, 153, 58, .07);
    text-decoration: none;
}

/* ===================================================
   SECTION 54 — CAREERS PAGE  (ems-careers-*)
   =================================================== */

/* ─── Hero ─── */
.ems-careers-hero {
    background-image:
        linear-gradient(135deg, rgba(10,10,10,.96) 0%, rgba(20,20,20,.88) 55%, rgba(10,10,10,.96) 100%),
        url('../images/colleagues.jpg');
    background-size: cover;
    background-position: center 30%;
}

/* ─── Why Work Here — dark, 4-card grid ─── */
.ems-careers-why-section {
    background: var(--dark-base);
    padding: 6rem 0;
    position: relative;
}

.ems-careers-why-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,153,58,.25), transparent);
}

.ems-careers-why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ems-careers-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ems-careers-why-card {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(201,153,58,.12);
    border-radius: 4px;
    padding: 2.25rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, background .25s;
}

.ems-careers-why-card:hover {
    border-color: rgba(201,153,58,.35);
    background: rgba(201,153,58,.04);
}

.ems-careers-why-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(201,153,58,.15);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    user-select: none;
}

.ems-careers-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201,153,58,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.ems-careers-why-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: .6rem;
}

.ems-careers-why-body {
    font-size: .9rem;
    line-height: 1.65;
    color: rgba(255,255,255,.55);
    margin: 0;
}

@media (max-width: 900px) {
    .ems-careers-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .ems-careers-why-grid { grid-template-columns: 1fr; }
    .ems-careers-why-section { padding: 4rem 0; }
}

/* ─── Core Values — light ─── */
.ems-careers-vals-section {
    background: var(--surface-light);
    padding: 6rem 0;
}

.ems-careers-vals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.ems-careers-val-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 4px;
    padding: 2.25rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
}

.ems-careers-val-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ems-careers-val-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    border-color: rgba(201,153,58,.25);
}

.ems-careers-val-card:hover::before {
    transform: scaleX(1);
}

.ems-careers-val-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.ems-careers-val-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .5rem;
}

.ems-careers-val-body {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .ems-careers-vals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .ems-careers-vals-grid { grid-template-columns: 1fr; }
    .ems-careers-vals-section { padding: 4rem 0; }
}

/* ─── How to Apply — dark, split ─── */
.ems-careers-apply-section {
    background: var(--dark-elevated);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ems-careers-apply-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,153,58,.25), transparent);
}

.ems-careers-apply-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ems-careers-apply-steps {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ems-careers-apply-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ems-careers-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,153,58,.15);
    border: 1px solid rgba(201,153,58,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.ems-careers-step-body {
    padding-top: 6px;
    font-size: .92rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.ems-careers-step-body strong {
    display: block;
    color: var(--off-white);
    font-weight: 600;
    margin-bottom: 2px;
}

.ems-careers-apply-panel {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(201,153,58,.18);
    border-radius: 8px;
    padding: 2.75rem;
}

.ems-careers-apply-panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(201,153,58,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.ems-careers-apply-panel-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: .4rem;
}

.ems-careers-apply-panel-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1.25rem;
}

.ems-careers-apply-panel-body {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
    .ems-careers-apply-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ems-careers-apply-section { padding: 4rem 0; }
}

/* ─── Open Positions — light ─── */
.ems-careers-jobs-section {
    background: var(--surface-light);
    padding: 6rem 0;
}

.ems-careers-jobs-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ems-careers-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* New job card */
.ems-job-card-v2 {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s, transform .25s;
    display: flex;
    flex-direction: column;
}

.ems-job-card-v2:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: rgba(201,153,58,.3);
    transform: translateY(-2px);
}

.ems-job-card-v2-top {
    background: var(--dark-base);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ems-job-v2-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201,153,58,.15);
    border: 1px solid rgba(201,153,58,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.ems-job-v2-meta-wrap {
    flex: 1;
    min-width: 0;
}

.ems-job-v2-type {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: .35rem;
}

.ems-job-v2-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--off-white);
    margin: 0;
    line-height: 1.35;
}

.ems-job-card-v2-body {
    padding: 1.25rem 1.75rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ems-job-v2-location {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: var(--text-muted);
}

.ems-job-v2-location svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.ems-job-v2-apply {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gold-primary);
    text-decoration: none;
    border: 1.5px solid rgba(201,153,58,.35);
    border-radius: 3px;
    padding: .55rem 1.1rem;
    transition: background .22s, color .22s, border-color .22s;
    flex-shrink: 0;
    white-space: nowrap;
}

.ems-job-v2-apply:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    text-decoration: none;
}

/* Empty state */
.ems-careers-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
}

.ems-careers-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201,153,58,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--gold-primary);
}

.ems-careers-empty-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .5rem;
}

.ems-careers-empty-body {
    font-size: .92rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .ems-careers-jobs-grid { grid-template-columns: 1fr; }
    .ems-careers-jobs-section { padding: 4rem 0; }
    .ems-job-card-v2-body { flex-direction: column; align-items: flex-start; }
}


/* ===================================================
   SECTION 55 — DIRECTORY PAGE  (ems-dir-*)
   =================================================== */

/* ─── Hero ─── */
.ems-dir-hero {
    background-image:
        linear-gradient(135deg, rgba(10,10,10,.96) 0%, rgba(20,20,20,.9) 55%, rgba(10,10,10,.96) 100%),
        url('../images/management.jpg');
    background-size: cover;
    background-position: center 35%;
}

/* ─── Directory Section ─── */
.ems-dir-section {
    background: var(--surface-light);
    padding: 6rem 0;
}

.ems-dir-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Search bar */
.ems-dir-search-wrap {
    max-width: 580px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.ems-dir-search-icon-v2 {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

.ems-dir-search-input-v2 {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-primary);
    background: #fff;
    transition: border-color .22s, box-shadow .22s;
    outline: none;
}

.ems-dir-search-input-v2:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201,153,58,.12);
}

.ems-dir-search-input-v2::placeholder {
    color: #aaa;
}

.ems-dir-count-v2 {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Table container */
.ems-dir-table-wrap-v2 {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}

/* Table */
.ems-dir-table-v2 {
    width: 100%;
    border-collapse: collapse;
}

.ems-dir-table-v2 thead tr {
    background: var(--dark-base);
}

.ems-dir-table-v2 thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
}

.ems-dir-table-v2 thead th:first-child {
    color: var(--gold-primary);
}

.ems-dir-table-v2 tbody tr {
    border-bottom: 1px solid rgba(0,0,0,.065);
    transition: background .18s;
}

.ems-dir-table-v2 tbody tr:last-child {
    border-bottom: none;
}

.ems-dir-table-v2 tbody tr:hover {
    background: rgba(201,153,58,.04);
}

.ems-dir-table-v2 tbody td {
    padding: 1.1rem 1.5rem;
    font-size: .9rem;
    color: var(--text-primary);
    vertical-align: middle;
}

/* Name cell */
.ems-dir-name-cell-v2 {
    display: flex;
    align-items: center;
    gap: .875rem;
}

.ems-dir-avatar-v2 {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: #000;
}

.ems-dir-name-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Title badge */
.ems-dir-badge-v2 {
    display: inline-block;
    padding: .25rem .7rem;
    border-radius: 20px;
    background: rgba(201,153,58,.1);
    border: 1px solid rgba(201,153,58,.2);
    font-size: .78rem;
    font-weight: 600;
    color: #7a5e20;
}

/* Contact links */
.ems-dir-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .18s;
}

.ems-dir-link-v2:hover {
    color: var(--gold-primary);
    text-decoration: none;
}

.ems-dir-link-v2 svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    opacity: .7;
    transition: opacity .18s;
}

.ems-dir-link-v2:hover svg {
    opacity: 1;
}

/* Empty state */
.ems-dir-empty-v2 {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: .92rem;
}

.ems-dir-empty-v2 svg {
    color: var(--gold-primary);
    opacity: .5;
    margin-bottom: 1rem;
}

/* No-results block */
.ems-dir-no-results-v2 {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: .92rem;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .ems-dir-section { padding: 4rem 0; }

    .ems-dir-table-v2 thead { display: none; }

    .ems-dir-table-v2 tbody tr {
        display: block;
        padding: 1.25rem 1.25rem;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .ems-dir-table-v2 tbody td {
        display: flex;
        align-items: center;
        padding: .35rem 0;
        font-size: .88rem;
        border: none;
        gap: .5rem;
    }

    .ems-dir-table-v2 tbody td::before {
        content: attr(data-label);
        flex-shrink: 0;
        width: 80px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .ems-dir-name-cell-v2 { flex: 1; }
    .ems-dir-search-input-v2 { font-size: .88rem; }
    .ems-dir-count-v2 { display: none; }
}

/* ===================================================
   SECTION 56 — LEGAL PAGES  (ems-legal-*)
   Privacy Policy & Terms pages
   =================================================== */

/* ─── Hero ─── */
.ems-legal-hero {
    background: var(--dark-base);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201,153,58,.15);
}

.ems-legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(201,153,58,.08) 0%, transparent 70%);
    pointer-events: none;
}

.ems-legal-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.ems-legal-hero-kicker::before,
.ems-legal-hero-kicker::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(201,153,58,.5);
}

.ems-legal-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.ems-legal-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ems-legal-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.ems-legal-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.ems-legal-badge--gold {
    background: rgba(201,153,58,.15);
    border: 1px solid rgba(201,153,58,.3);
    color: var(--gold-light);
}

.ems-legal-badge--neutral {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.5);
}

.ems-legal-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
    flex-wrap: wrap;
}

/* ─── Page Layout ─── */
.ems-legal-body {
    background: var(--surface-light);
    padding: 5rem 0 6rem;
}

.ems-legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ─── Sidebar TOC ─── */
.ems-legal-sidebar {
    position: sticky;
    top: 100px;
}

.ems-legal-toc {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.ems-legal-toc-header {
    background: var(--dark-base);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.ems-legal-toc-list {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
}

.ems-legal-toc-item a {
    display: block;
    padding: .55rem 1.25rem;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color .18s, border-color .18s, background .18s;
    line-height: 1.45;
}

.ems-legal-toc-item a:hover,
.ems-legal-toc-item a.active {
    color: var(--text-primary);
    border-left-color: var(--gold-primary);
    background: rgba(201,153,58,.05);
    text-decoration: none;
}

.ems-legal-toc-item a .ems-legal-toc-num {
    display: inline-block;
    font-weight: 700;
    color: var(--gold-primary);
    min-width: 22px;
    font-size: .72rem;
}

.ems-legal-toc-divider {
    height: 1px;
    background: rgba(0,0,0,.06);
    margin: .35rem 0;
}

.ems-legal-toc-contact {
    border-top: 1px solid rgba(0,0,0,.07);
    padding: 1rem 1.25rem;
    background: rgba(201,153,58,.035);
}

.ems-legal-toc-contact-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: .6rem;
}

.ems-legal-toc-contact-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: .3rem;
    transition: color .18s;
}

.ems-legal-toc-contact-link:hover {
    color: var(--gold-primary);
    text-decoration: none;
}

.ems-legal-toc-contact-link svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    opacity: .7;
}

/* ─── Main Content ─── */
.ems-legal-content {
    min-width: 0;
}

.ems-legal-section {
    margin-bottom: 2.75rem;
    scroll-margin-top: 100px;
}

.ems-legal-section:last-child {
    margin-bottom: 0;
}

.ems-legal-section-title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .875rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.ems-legal-section-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(201,153,58,.12);
    border: 1px solid rgba(201,153,58,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: 2px;
}

.ems-legal-section-title h2,
.ems-legal-section-title h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
}

.ems-legal-section p {
    font-size: .93rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: .875rem;
}

.ems-legal-section p:last-child {
    margin-bottom: 0;
}

.ems-legal-section ul,
.ems-legal-section ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: .875rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.ems-legal-section ul > li,
.ems-legal-section ol > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .93rem;
    line-height: 1.65;
    color: #4a4a4a;
}

.ems-legal-section ul > li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-primary);
    margin-top: 9px;
}

.ems-legal-section ol {
    counter-reset: legal-ol;
}

.ems-legal-section ol > li {
    counter-increment: legal-ol;
}

.ems-legal-section ol > li::before {
    content: counter(legal-ol);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201,153,58,.12);
    border: 1px solid rgba(201,153,58,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: 2px;
}

/* Contact info block */
.ems-legal-contact-block {
    background: rgba(201,153,58,.05);
    border: 1px solid rgba(201,153,58,.18);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 4px 4px 0;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.ems-legal-contact-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--text-primary);
}

.ems-legal-contact-row svg {
    flex-shrink: 0;
    color: var(--gold-primary);
}

.ems-legal-contact-row a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color .18s;
}

.ems-legal-contact-row a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Note/highlight box */
.ems-legal-note {
    background: rgba(201,153,58,.06);
    border: 1px solid rgba(201,153,58,.2);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-size: .875rem;
    line-height: 1.65;
    color: #5a4010;
    margin: 1rem 0;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.ems-legal-note svg {
    flex-shrink: 0;
    color: var(--gold-primary);
    margin-top: 1px;
}

/* Sub-heading inside section */
.ems-legal-subsection-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.25rem 0 .6rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .ems-legal-layout {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ems-legal-layout {
        grid-template-columns: 1fr;
    }

    .ems-legal-sidebar {
        position: static;
    }

    .ems-legal-toc {
        display: none; /* hidden on mobile — use jump nav instead */
    }

    .ems-legal-body {
        padding: 3.5rem 0 4rem;
    }

    .ems-legal-hero {
        padding: 4.5rem 0 3.5rem;
    }
}
/* ═══════════════════════════════════════════════════════════════
   SECTION 57 — WORKFORCE SOLUTIONS PAGE
   Classes: .ems-wfs-*
═══════════════════════════════════════════════════════════════ */

/* ── Hero accent ─────────────────────────────────────────────── */
.ems-wfs-hero {
    background: linear-gradient(135deg, #080b10 0%, #0d1520 55%, #0a1018 100%);
}
.ems-wfs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 56% 52% at 68% 38%, rgba(201,153,58,.08) 0%, transparent 68%),
        radial-gradient(ellipse 38% 44% at 22% 72%, rgba(30,90,160,.07) 0%, transparent 64%);
    pointer-events: none;
}

/* ── Why / Offering section ──────────────────────────────────── */
.ems-wfs-why-section {
    background: var(--dark-base);
    padding: 6rem 0 6.5rem;
}

.ems-wfs-offering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .ems-wfs-offering-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ems-wfs-offering-grid { grid-template-columns: 1fr; } }

.ems-wfs-offering-card {
    background: var(--dark-elevated);
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 10px;
    padding: 1.75rem 1.5rem 1.6rem;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    opacity: 0;
    transform: translateY(22px);
}
.ems-wfs-offering-card.visible { opacity: 1; transform: none; transition: opacity .5s ease calc(var(--ci,0)*.1s), transform .5s ease calc(var(--ci,0)*.1s), border-color .25s, box-shadow .25s; }
.ems-wfs-offering-card:hover { border-color: rgba(201,153,58,.35); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.32); }

.ems-wfs-offering-num {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: rgba(201,153,58,.45);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.ems-wfs-offering-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(201,153,58,.1);
    border: 1px solid rgba(201,153,58,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    transition: background .25s;
}
.ems-wfs-offering-card:hover .ems-wfs-offering-icon { background: rgba(201,153,58,.18); }
.ems-wfs-offering-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--off-white);
    margin: 0 0 .5rem;
    font-family: var(--font-body);
}
.ems-wfs-offering-desc {
    font-size: .875rem;
    color: rgba(250,250,247,.5);
    line-height: 1.65;
    margin: 0;
}

/* ── Service Areas (Industries) ──────────────────────────────── */
.ems-wfs-areas-section {
    background: var(--surface-light);
    padding: 6rem 0 6.5rem;
}

.ems-wfs-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1024px) { .ems-wfs-areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .ems-wfs-areas-grid { grid-template-columns: 1fr; } }

.ems-wfs-area-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    padding: 1.6rem 1.4rem 1.5rem;
    position: relative;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    opacity: 0;
    transform: translateY(18px);
}
.ems-wfs-area-card.visible { opacity: 1; transform: none; transition: opacity .5s ease calc(var(--ci,0)*.09s), transform .5s ease calc(var(--ci,0)*.09s), border-color .25s, box-shadow .25s; }
.ems-wfs-area-card:hover { border-color: rgba(201,153,58,.35); box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-2px); }

.ems-wfs-area-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(201,153,58,.1);
    border: 1px solid rgba(201,153,58,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-primary);
    margin-bottom: .9rem;
}
.ems-wfs-area-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 .45rem;
    font-family: var(--font-body);
}
.ems-wfs-area-body {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 .9rem;
}
.ems-wfs-area-line {
    height: 2px;
    width: 32px;
    background: var(--gold-primary);
    border-radius: 2px;
    opacity: .45;
}

/* ── Deep Dive / Leadership ──────────────────────────────────── */
.ems-wfs-deepdive-section {
    background: var(--dark-base);
    padding: 6rem 0 6.5rem;
}
.ems-wfs-deepdive-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) { .ems-wfs-deepdive-inner { grid-template-columns: 1fr; gap: 3rem; } }

.ems-wfs-deepdive-content .ems-section-title { color: var(--off-white); }

.ems-wfs-deepdive-body {
    font-size: .95rem;
    color: rgba(250,250,247,.55);
    line-height: 1.75;
    margin: 1.25rem 0 1.5rem;
}
.ems-wfs-deepdive-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.ems-wfs-deepdive-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: rgba(250,250,247,.7);
    line-height: 1.55;
}
.ems-wfs-deepdive-list li svg { color: var(--gold-primary); flex-shrink: 0; margin-top: 2px; }

/* Leadership card inside deep dive */
.ems-wfs-leadership-card {
    background: var(--dark-elevated);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 2rem 1.75rem 1.75rem;
}
.ems-wfs-leadership-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.ems-wfs-leadership-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-family: var(--font-body);
}
.ems-wfs-leader-item {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ems-wfs-leader-item:last-child { border-bottom: none; padding-bottom: 0; }
.ems-wfs-leader-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--off-white);
    font-family: var(--font-body);
}
.ems-wfs-leader-title {
    font-size: .82rem;
    color: var(--gold-light);
    font-family: var(--font-body);
}
.ems-wfs-license-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}
.ems-wfs-license-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: rgba(201,153,58,.12);
    border: 1px solid rgba(201,153,58,.25);
    color: var(--gold-light);
    font-family: var(--font-body);
}
/* ═══════════════════════════════════════════════════════════════
   SECTION 58 — SERVICE PAGE PRACTICE AREA LEAD CARD
   Class: .ems-svc-lead-card  (universal, works on dark deepdive bg)
═══════════════════════════════════════════════════════════════ */

.ems-svc-lead-card {
    background: var(--dark-elevated);
    border: 1px solid rgba(201,153,58,.2);
    border-radius: 12px;
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Header ──────────────────────────────────────────────────── */
.ems-svc-lead-header {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.ems-svc-lead-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-family: var(--font-body);
}

/* ── Profile row ─────────────────────────────────────────────── */
.ems-svc-lead-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ems-svc-lead-photo-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201,153,58,.35);
    flex-shrink: 0;
    background: var(--dark-base);
}
.ems-svc-lead-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.ems-svc-lead-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--off-white);
    font-family: var(--font-body);
    line-height: 1.3;
    margin-bottom: .2rem;
}
.ems-svc-lead-role {
    font-size: .8rem;
    color: var(--gold-light);
    font-family: var(--font-body);
    line-height: 1.35;
}

/* ── Contacts ────────────────────────────────────────────────── */
.ems-svc-lead-contacts {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding-top: .15rem;
}
.ems-svc-lead-contact-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .83rem;
    color: rgba(250,250,247,.55);
    text-decoration: none;
    transition: color .2s;
    font-family: var(--font-body);
    word-break: break-all;
}
.ems-svc-lead-contact-row svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    opacity: .9;
}
.ems-svc-lead-contact-row:hover { color: var(--gold-light); }
.ems-svc-lead-contact-row:hover svg { opacity: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
.ems-svc-lead-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.07);
}
.ems-svc-lead-team-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-decoration: none;
    font-family: var(--font-body);
    transition: gap .2s, color .2s;
}
.ems-svc-lead-team-link:hover { gap: .65rem; color: var(--gold-light); }

/* ── Supporter row (Section 58 addition) ─────────────────────── */
.ems-svc-lead-supporter {
    padding: .9rem 0 .25rem;
    border-top: 1px dashed rgba(255,255,255,.09);
    margin-top: .25rem;
}
.ems-svc-lead-supporter-label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: rgba(201,153,58,.5);
    font-family: var(--font-body);
    margin-bottom: .3rem;
}
.ems-svc-lead-supporter-name {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(250,250,247,.68);
    font-family: var(--font-body);
    line-height: 1.35;
}
.ems-svc-lead-supporter-role {
    font-size: .78rem;
    color: rgba(250,250,247,.36);
    font-family: var(--font-body);
    margin-top: .1rem;
}
