/* ════════════════════════════════════════════════════════
   UMCO — Design System v2
   Palette: deep navy / white / restrained gold
   Type: Inter (UI) + Instrument Serif (editorial accents)
═════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* color */
  --navy-950: #050B16;
  --navy-900: #0A1628;
  --navy-800: #102341;
  --navy-700: #18335C;
  --gold:      #C6A35D;
  --gold-deep: #A8853F;
  --gold-soft: rgba(198, 163, 93, 0.12);
  --paper:     #F7F8FA;
  --white:     #FFFFFF;
  --ink:       #16202F;
  --ink-muted: #5B6678;
  --ink-faint: #8B94A3;
  --line:      #E5E8EE;
  --line-dark: rgba(255,255,255,0.08);

  /* elevation */
  --shadow-sm: 0 1px 2px rgba(10,22,40,0.05), 0 1px 3px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 18px rgba(10,22,40,0.08), 0 2px 6px rgba(10,22,40,0.04);
  --shadow-lg: 0 24px 56px rgba(10,22,40,0.13), 0 8px 20px rgba(10,22,40,0.07);

  /* shape & motion */
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --t-fast: 220ms var(--ease);
  --t-med: 420ms var(--ease);

  --nav-h: 76px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--navy-900); }

/* ── layout ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section-tight { padding: 80px 0; }

/* ── typography ── */
.display, h1, h2, h3, h4 { letter-spacing: -0.022em; line-height: 1.12; font-weight: 650; color: var(--ink); }
.serif-accent { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.dark .serif-accent, .on-dark .serif-accent,
.hero .serif-accent, .page-hero .serif-accent, .hs .serif-accent,
.cta-inner .serif-accent, .industries .serif-accent { color: var(--gold); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.kicker::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.on-dark .kicker { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 18px; font-size: 17px; color: var(--ink-muted); line-height: 1.7; max-width: 600px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ── buttons ── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15px/1 'Inter', sans-serif; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
/* light sheen that sweeps across on hover */
.btn::before {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left .6s var(--ease);
}
.btn:hover::before { left: 150%; }
.btn > * { position: relative; z-index: 2; }
.btn:active { transform: scale(0.98); }
.btn svg { transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: #D4B470; box-shadow: 0 8px 28px rgba(198,163,93,0.38); transform: translateY(-1px); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-800); box-shadow: 0 8px 28px rgba(10,22,40,0.28); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink-faint); background: var(--paper); transform: translateY(-1px); }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--navy-800);
  text-decoration: none; transition: gap var(--t-fast), color var(--t-fast);
}
.text-link:hover { gap: 12px; color: var(--gold-deep); }

/* ── nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(10,22,40,0.06); }
.nav-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 52px; width: auto; mix-blend-mode: multiply; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu a {
  position: relative; display: block;
  padding: 9px 15px; font-size: 14.5px; font-weight: 500;
  color: var(--ink-muted); text-decoration: none; border-radius: 8px;
  transition: color var(--t-fast);
}
.nav-menu a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 280ms var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

/* ── nav mega peek ── */
.nav-menu li { position: relative; }
.nav-menu .mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(28px) scale(0.94); transform-origin: top center;
  width: max-content; max-width: 680px;
  background: var(--navy-950);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 18px;
  box-shadow: 0 40px 90px rgba(5,11,22,0.55), 0 12px 28px rgba(5,11,22,0.35); padding: 24px 20px 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .55s cubic-bezier(0.4,0,0.2,1), transform .65s cubic-bezier(0.22,1,0.36,1), visibility .55s;
  z-index: 250;
}
/* gold beam along the top edge */
.nav-menu .mega::after {
  content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .7s var(--ease) .12s;
}
.nav-menu .mega::before { content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 22px; }
.nav-menu li.has-mega:hover .mega,
.nav-menu li.has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(10px) scale(1);
}
.nav-menu li.has-mega:hover .mega::after,
.nav-menu li.has-mega:focus-within .mega::after { transform: scaleX(1); }

/* header row */
.mega-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 8px 14px; margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mega-head span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.mega-head a {
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-decoration: none; transition: color var(--t-fast); white-space: nowrap;
}
.mega-head a:hover { color: #f4e2bb; }

/* grid — vertical card layout */
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.mega-grid.mega-col1 { grid-template-columns: 1fr; }

.mega-grid a {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0; padding: 16px 14px 14px; border-radius: 12px; text-decoration: none;
  opacity: 0; transform: translateY(14px);
  transition: background .38s var(--ease), opacity .55s var(--ease), transform .55s cubic-bezier(0.22,1,0.36,1), box-shadow .38s var(--ease);
  border: 1px solid transparent;
}
.mega-grid a::after { display: none; }

/* icon — large, no box, just the SVG */
.mega-ico {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 0;
  background: transparent; color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  transition: color .4s var(--ease), transform .4s cubic-bezier(0.22,1,0.36,1);
}
.mega-ico svg { width: 36px; height: 36px; stroke-width: 1.4; }

/* separator line */
.mega-tx {
  display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  min-width: 0;
}

/* item name */
.mega-grid b {
  display: block; font-size: 13px; font-weight: 650; color: rgba(255,255,255,0.85);
  line-height: 1.35;
  transition: color var(--t-fast);
}
/* hide descriptions — show on hover only */
.mega-grid em {
  display: block; font-style: normal; font-size: 11px;
  color: rgba(255,255,255,0); margin-top: 0; max-height: 0; overflow: hidden;
  transition: color .4s var(--ease), max-height .4s var(--ease), margin-top .4s var(--ease);
  line-height: 1.5;
}

/* hover state for each cell */
.mega-grid a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(198,163,93,0.22);
  box-shadow: 0 8px 24px rgba(5,11,22,0.35);
}
.mega-grid a:hover .mega-ico {
  color: var(--gold);
  transform: translateY(-4px) scale(1.1);
}
.mega-grid a:hover b { color: var(--gold); }
.mega-grid a:hover em {
  color: rgba(255,255,255,0.45);
  max-height: 48px; margin-top: 4px;
}

/* continuous floating motion while the panel is open */
@keyframes megaIcoFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-5px) rotate(4deg); } }
.nav-menu li.has-mega:hover .mega-ico svg,
.nav-menu li.has-mega:focus-within .mega-ico svg { animation: megaIcoFloat 3s ease-in-out infinite; }
.mega-grid a:nth-child(1) .mega-ico svg { animation-delay: 0s; }
.mega-grid a:nth-child(2) .mega-ico svg { animation-delay: .35s; }
.mega-grid a:nth-child(3) .mega-ico svg { animation-delay: .7s; }
.mega-grid a:nth-child(4) .mega-ico svg { animation-delay: 1.05s; }
.mega-grid a:nth-child(5) .mega-ico svg { animation-delay: 1.4s; }
.mega-grid a:nth-child(6) .mega-ico svg { animation-delay: 1.75s; }
.mega-grid a:nth-child(7) .mega-ico svg { animation-delay: 2.1s; }
.mega-grid a:nth-child(8) .mega-ico svg { animation-delay: 2.45s; }

@media (prefers-reduced-motion: reduce) {
  .nav-menu li.has-mega:hover .mega-ico svg,
  .nav-menu li.has-mega:focus-within .mega-ico svg { animation: none; }
}

/* single-column panels: center the icon */
.mega-col1 a { align-items: center; text-align: center; }
.mega-col1 .mega-tx { align-items: center; border-top: 1px solid rgba(255,255,255,0.12); }
.mega-col1 .mega-ico { margin-bottom: 12px; }

/* staggered reveal when panel opens */
.nav-menu li.has-mega:hover .mega-grid a,
.nav-menu li.has-mega:focus-within .mega-grid a { opacity: 1; transform: translateY(0); }
.mega-grid a:nth-child(1) { transition-delay: .06s; }
.mega-grid a:nth-child(2) { transition-delay: .12s; }
.mega-grid a:nth-child(3) { transition-delay: .18s; }
.mega-grid a:nth-child(4) { transition-delay: .24s; }
.mega-grid a:nth-child(5) { transition-delay: .30s; }
.mega-grid a:nth-child(6) { transition-delay: .36s; }
.mega-grid a:nth-child(7) { transition-delay: .42s; }
.mega-grid a:nth-child(8) { transition-delay: .48s; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 22px; font-size: 14px; }

/* More button */
.nav-more-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line);
  border-radius: 9px; padding: 8px 14px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav-more-btn:hover { border-color: var(--gold); background: rgba(198,163,93,0.06); }
.nav-more-btn svg { flex-shrink: 0; }

/* More overlay */
.more-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: #f5f3ef;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity .5s cubic-bezier(0.22,1,0.36,1),
              clip-path .55s cubic-bezier(0.76,0,0.24,1);
  overflow: hidden;
}
.more-overlay.open {
  opacity: 1; pointer-events: auto;
  clip-path: inset(0 0 0% 0);
}

.more-close {
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s var(--ease) .45s, transform .4s cubic-bezier(0.22,1,0.36,1) .45s,
              color .2s var(--ease);
  position: absolute; top: 40px; right: 44px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--ink); font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
  writing-mode: vertical-rl;
}
.more-close svg { width: 22px; height: 22px; }
.more-close:hover { color: var(--gold-deep); }
.more-overlay.open .more-close { opacity: 1; transform: none; }

.more-logo {
  position: absolute; top: 44px; left: 0; right: 0; z-index: 1;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s var(--ease) .3s, transform .4s cubic-bezier(0.22,1,0.36,1) .3s;
  pointer-events: none;
}
.more-overlay.open .more-logo { opacity: 1; transform: none; }
.more-logo img { height: 64px; width: auto; }

.more-watermark {
  position: absolute; bottom: -100px; left: -80px; z-index: 0;
  width: 620px; height: 620px;
  opacity: 0.06;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 10%, transparent 48%);
  -webkit-mask-image: radial-gradient(circle at center, #000 10%, transparent 48%);
}
.more-watermark img { width: 100%; height: 100%; object-fit: contain; }

.more-inner {
  display: flex; gap: 60px;
  padding-top: 180px;
  position: relative; z-index: 1;
}
.more-col { flex: 1 1 0; min-width: 0; max-width: 340px; }

.more-col-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 28px;
}
.more-link {
  display: block; font-size: clamp(20px, 2.4vw, 34px); font-weight: 650; color: var(--ink);
  text-decoration: none; line-height: 1.15;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  overflow-wrap: break-word;
  transition: color .2s var(--ease), padding-left .25s cubic-bezier(0.22,1,0.36,1);
}
.more-link:first-of-type { border-top: 1px solid var(--line); }
.more-link:hover { color: var(--gold-deep); padding-left: 10px; transition-delay: 0s !important; }

/* abstract art in overlay */
.more-art { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.more-art-arc {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(198,163,93,0.4);
}
.more-art-arc--1 { width: 620px; height: 620px; bottom: -160px; right: 40px; }
.more-art-arc--2 { width: 900px; height: 900px; bottom: -300px; right: -120px; border-color: rgba(5,11,22,0.08); }
.more-art-arc--3 { width: 380px; height: 380px; bottom: -40px; right: 220px; border-color: rgba(5,11,22,0.1); }
.more-art-rect {
  position: absolute; border: 1.5px solid rgba(198,163,93,0.45);
  border-radius: 4px;
}
.more-art-rect--1 { width: 200px; height: 130px; bottom: 160px; right: 220px; }
.more-art-rect--2 { width: 280px; height: 180px; bottom: 70px; right: 120px; }
.more-art-rect--3 { width: 150px; height: 100px; bottom: 240px; right: 90px; }
.more-art-cross { position: absolute; bottom: 40px; right: 460px; width: 90px; height: 90px; }
.more-art-cross::before, .more-art-cross::after {
  content: ''; position: absolute; background: rgba(198,163,93,0.35);
}
.more-art-cross::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.more-art-cross::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.more-art-dot { position: absolute; border-radius: 50%; background: rgba(5,11,22,0.15); }
.more-art-dot--1 { width: 8px; height: 8px; bottom: 320px; right: 340px; }
.more-art-dot--2 { width: 6px; height: 6px; bottom: 160px; right: 420px; background: rgba(198,163,93,0.5); }

/* col slide-up */
.more-col {
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s cubic-bezier(0.22,1,0.36,1),
              transform .55s cubic-bezier(0.22,1,0.36,1);
}
.more-overlay.open .more-col { opacity: 1; transform: none; }
.more-overlay.open .more-col:nth-child(1) { transition-delay: .22s; }
.more-overlay.open .more-col:nth-child(2) { transition-delay: .30s; }
.more-overlay.open .more-col:nth-child(3) { transition-delay: .38s; }

/* link stagger */
.more-link { opacity: 0; transform: translateX(-10px);
  transition: opacity .35s var(--ease), transform .4s cubic-bezier(0.22,1,0.36,1),
              color .2s var(--ease), padding-left .25s cubic-bezier(0.22,1,0.36,1); }
.more-overlay.open .more-link { opacity: 1; transform: none; }
.more-overlay.open .more-col:nth-child(1) .more-link:nth-child(2) { transition-delay: .28s; }
.more-overlay.open .more-col:nth-child(1) .more-link:nth-child(3) { transition-delay: .33s; }
.more-overlay.open .more-col:nth-child(1) .more-link:nth-child(4) { transition-delay: .38s; }
.more-overlay.open .more-col:nth-child(1) .more-link:nth-child(5) { transition-delay: .43s; }
.more-overlay.open .more-col:nth-child(2) .more-link:nth-child(2) { transition-delay: .36s; }
.more-overlay.open .more-col:nth-child(2) .more-link:nth-child(3) { transition-delay: .41s; }
.more-overlay.open .more-col:nth-child(2) .more-link:nth-child(4) { transition-delay: .46s; }
.more-overlay.open .more-col:nth-child(2) .more-link:nth-child(5) { transition-delay: .51s; }
.more-overlay.open .more-col:nth-child(3) .more-link:nth-child(2) { transition-delay: .44s; }
.more-overlay.open .more-col:nth-child(3) .more-link:nth-child(3) { transition-delay: .49s; }

.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { position: relative; display: block; width: 17px; height: 1.6px; background: var(--ink); transition: transform var(--t-fast), background var(--t-fast); }
.nav-burger span::before, .nav-burger span::after {
  content: ''; position: absolute; left: 0; width: 17px; height: 1.6px; background: var(--ink); transition: transform var(--t-fast), top var(--t-fast);
}
.nav-burger span::before { top: -5.5px; } .nav-burger span::after { top: 5.5px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 190;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 12px 24px 28px; display: none;
  box-shadow: 0 32px 56px rgba(10,22,40,0.14);
}
.mobile-menu.open { display: block; animation: menuDrop 320ms var(--ease) both; }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-12px); } }
.mobile-menu a {
  display: block; padding: 14px 4px; font-size: 16px; font-weight: 550;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 18px; width: 100%; }

/* nav entrance */
@keyframes navIn { from { opacity: 0; transform: translateY(-9px); } }
.brand { animation: navIn 480ms var(--ease) 60ms both; }
.nav-menu li { animation: navIn 420ms var(--ease) both; }
.nav-menu li:nth-child(1) { animation-delay: 120ms; }
.nav-menu li:nth-child(2) { animation-delay: 170ms; }
.nav-menu li:nth-child(3) { animation-delay: 220ms; }
.nav-menu li:nth-child(4) { animation-delay: 270ms; }
.nav-menu li:nth-child(5) { animation-delay: 320ms; }
.nav-menu li:nth-child(6) { animation-delay: 370ms; }
.nav-actions { animation: navIn 420ms var(--ease) 430ms both; }

/* ── hero (home) ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  padding: calc(var(--nav-h) + 96px) 0 0;
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(198,163,93,0.13), transparent 60%),
    radial-gradient(700px 500px at -8% 110%, rgba(24,51,92,0.9), transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black, transparent);
}
.hero-inner { position: relative; max-width: 880px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 550; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 30px;
}
.hero-eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px); font-weight: 600; color: #fff;
  letter-spacing: -0.03em; line-height: 1.07;
}
.hero h1 .serif-accent { font-size: 1.04em; }
.hero-sub { margin-top: 26px; font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.66); max-width: 580px; line-height: 1.75; }
.hero-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes rise { from { opacity: 0; transform: translateY(34px); } }
.hero-eyebrow { animation: rise 720ms var(--ease) 160ms both, pulseNone 0s; }
.hero h1 { animation: rise 760ms var(--ease) 300ms both; }
.hero-sub { animation: rise 760ms var(--ease) 440ms both; }
.hero-ctas { animation: rise 720ms var(--ease) 570ms both; }
.hero-metrics { animation: rise 760ms var(--ease) 700ms both; }

.hero-metrics {
  position: relative; margin-top: 88px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.metric { padding: 34px 28px 44px; border-left: 1px solid var(--line-dark); }
.metric:first-child { border-left: none; padding-left: 0; }
.metric b { display: block; font-size: clamp(30px, 3.4vw, 44px); font-weight: 650; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.metric b em { font-style: normal; color: var(--gold); }
.metric span { display: block; margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,0.52); font-weight: 500; }

/* ── trust strip ── */
/* ── Credentials section ── */
.cred-section {
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 60px;
  position: relative; overflow: hidden;
}
.cred-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(198,163,93,0.06) 0%, transparent 50%);
}
.cred-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 28px;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cred-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  transition: background .3s var(--ease), border-color .35s var(--ease), transform .35s cubic-bezier(0.22,1,0.36,1);
}
.cred-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(198,163,93,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.cred-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(198,163,93,0.3); transform: translateY(-3px); }
.cred-card:hover::before { opacity: 1; }
.cred-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, #c6a35d 0%, #a8823e 100%);
  box-shadow: 0 4px 14px rgba(198,163,93,0.35), inset 0 1px 0 rgba(255,255,255,0.22);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: #1a1200; flex-shrink: 0;
}
.cred-body { flex: 1; }
.cred-title {
  font-size: 15px; font-weight: 680; color: rgba(255,255,255,0.92);
  margin-bottom: 8px; line-height: 1.3;
}
.cred-desc {
  font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7;
}
.cred-check {
  color: var(--gold); opacity: 0.7; align-self: flex-end; flex-shrink: 0;
}
@media (max-width: 900px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cred-grid { grid-template-columns: 1fr; } }

/* ── service cards ── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.svc-card {
  position: relative; background: #fff; padding: 38px 30px 34px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: background var(--t-med);
}
.svc-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.svc-card:hover { background: var(--paper); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 26px; }
.svc-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--navy-900); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform var(--t-med); }
.svc-card:hover .svc-icon { transform: translateY(-4px); }
.svc-card h3 { font-size: 17.5px; font-weight: 620; margin-bottom: 10px; }
.svc-card p { font-size: 13.8px; color: var(--ink-muted); line-height: 1.66; flex: 1; }
.svc-card .text-link { margin-top: 22px; font-size: 13.5px; }

/* ── industries ── */
.industries { background: var(--navy-900); color: #fff; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind-tile {
  position: relative; border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 30px 26px; overflow: hidden; text-decoration: none;
  transition: border-color var(--t-med), background var(--t-med), transform var(--t-med);
}
.ind-tile:hover { border-color: rgba(198,163,93,0.55); background: rgba(255,255,255,0.03); transform: translateY(-4px); }
.ind-tile svg { color: var(--gold); margin-bottom: 40px; }
.ind-tile h3 { color: #fff; font-size: 16px; font-weight: 600; }
.ind-tile p { margin-top: 7px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── case studies ── */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.case-tag {
  align-self: flex-start; margin: 26px 28px 0;
  font-size: 11px; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-soft);
  padding: 6px 12px; border-radius: 999px;
}
.case-body { padding: 18px 28px 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.case-card h3 { font-size: 18px; font-weight: 630; line-height: 1.35; }
.case-row { display: flex; gap: 12px; font-size: 13.5px; line-height: 1.62; }
.case-row b { flex-shrink: 0; width: 76px; font-size: 11px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding-top: 3px; }
.case-row p { color: var(--ink-muted); }
.case-outcome { border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; }
.case-outcome .case-row p { color: var(--navy-800); font-weight: 550; }

/* ── leadership ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform var(--t-med), box-shadow var(--t-med);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 650; letter-spacing: 0.02em; margin-bottom: 22px;
}
.team-avatar--photo { overflow: hidden; padding: 0; }
.team-avatar--photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-card h3 { font-size: 18px; font-weight: 640; }
.team-role { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--gold-deep); }
.team-bio { margin-top: 14px; font-size: 13.8px; color: var(--ink-muted); line-height: 1.68; }
.team-creds { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.team-creds span { font-size: 11.5px; font-weight: 600; color: var(--ink-muted); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; }
.team-linkedin {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--navy-900); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med);
  position: relative; z-index: 2;
}
.team-linkedin:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.team-card:hover .team-linkedin, .team-card:focus-within .team-linkedin {
  color: #fff; border-color: rgba(255,255,255,0.45);
}
.team-card:hover .team-linkedin:hover, .team-card:focus-within .team-linkedin:hover {
  background: #fff; color: var(--navy-900); border-color: #fff;
}

/* ── insights ── */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; text-decoration: none;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.insight-meta { display: flex; gap: 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; }
.insight-meta time { color: var(--ink-faint); }
.insight-card h3 { font-size: 18px; font-weight: 630; line-height: 1.4; color: var(--ink); }
.insight-card p { margin-top: 12px; font-size: 14px; color: var(--ink-muted); line-height: 1.68; flex: 1; }
.insight-card .text-link { margin-top: 20px; }

/* ── process ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-cell { background: #fff; padding: 36px 28px; transition: background var(--t-med); }
.process-cell:hover { background: var(--paper); }
.process-cell i { display: block; font-style: normal; font-size: 13px; font-weight: 650; color: var(--gold-deep); letter-spacing: 0.08em; margin-bottom: 18px; }
.process-cell h4 { font-size: 15.5px; font-weight: 630; margin-bottom: 9px; }
.process-cell p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.66; }

/* ── stats band (dark) ── */
.band-dark { background: var(--navy-900); color: #fff; }
.band-dark .section-head h2, .band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .section-head p { color: rgba(255,255,255,0.6); }

/* ── split / about preview ── */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.split-body p { margin-top: 18px; font-size: 16px; color: var(--ink-muted); line-height: 1.78; }
.tick-list { margin-top: 28px; display: grid; gap: 13px; list-style: none; }
.tick-list li { display: flex; gap: 12px; font-size: 14.5px; font-weight: 530; color: var(--ink); }
.tick-list svg { flex-shrink: 0; color: var(--gold-deep); margin-top: 3px; }
.figure-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy-900); padding: 44px 40px; color: #fff;
  box-shadow: var(--shadow-lg);
}
.figure-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(480px 300px at 90% 0%, rgba(198,163,93,0.16), transparent 60%); }
.figure-panel > * { position: relative; }
.figure-panel h3 { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 650; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 28px; }
.fig-rows { display: grid; gap: 22px; }
.fig-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line-dark); padding-bottom: 18px; }
.fig-row:last-child { border-bottom: none; padding-bottom: 0; }
.fig-row span { font-size: 14px; color: rgba(255,255,255,0.62); }
.fig-row b { font-size: 24px; font-weight: 650; letter-spacing: -0.02em; color: var(--gold); }

/* ── CTA band ── */
.cta-band { position: relative; background: var(--navy-900); overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(720px 380px at 50% 120%, rgba(198,163,93,0.14), transparent 65%); }
.cta-inner { position: relative; text-align: center; max-width: 660px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); }
.cta-inner p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.cta-inner .hero-ctas { justify-content: center; animation: none; }

/* ── page hero (interior) ── */
.page-hero {
  position: relative; background: var(--navy-900); color: #fff; overflow: hidden;
  padding: calc(var(--nav-h) + 86px) 0 86px;
  width: 100%;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(820px 420px at 85% -20%, rgba(198,163,93,0.12), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.8vw, 58px); max-width: 760px; }
.page-hero .lede { margin-top: 22px; font-size: 17.5px; color: rgba(255,255,255,0.66); max-width: 580px; line-height: 1.75; }
.crumb { display: flex; gap: 9px; font-size: 12.5px; font-weight: 550; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 26px; }
.crumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--t-fast); }
.crumb a:hover { color: var(--gold); }
.page-hero .crumb { animation: rise 640ms var(--ease) 140ms both; }
.page-hero h1 { animation: rise 700ms var(--ease) 260ms both; }
.page-hero .lede { animation: rise 700ms var(--ease) 390ms both; }
.page-hero .hero-ctas { margin-top: 36px; animation: rise 680ms var(--ease) 510ms both; }

/* ── service detail ── */
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.detail-body h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 20px; }
.detail-body p { color: var(--ink-muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.offer-list { display: grid; gap: 14px; }
.offer-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; display: flex; gap: 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.offer-item:hover { border-color: rgba(198,163,93,0.6); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.offer-item svg { flex-shrink: 0; color: var(--gold-deep); margin-top: 2px; }
.offer-item h4 { font-size: 14.5px; font-weight: 630; }
.offer-item p { font-size: 13px; color: var(--ink-muted); margin: 4px 0 0; line-height: 1.6; }

/* ── forms ── */
.form-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; font-weight: 680; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 9px; transition: color var(--t-fast); }
.field:focus-within label { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; border: none; outline: none; background: transparent;
  border-bottom: 1.5px solid var(--line);
  font: 500 15px/1.5 'Inter', sans-serif; color: var(--ink);
  padding: 7px 0 12px; appearance: none; -webkit-appearance: none;
  transition: border-color var(--t-fast); border-radius: 0;
}
.field textarea { resize: none; min-height: 86px; }
.field select { cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B94A3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 2px center; padding-right: 26px; }
.field::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width 380ms var(--ease); }
.field:focus-within::after { width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); font-weight: 400; }
.form-submit { grid-column: 1 / -1; width: 100%; padding: 17px; font-size: 15px; }

/* ── footer ── */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 88px 0 32px; }

/* CTA merged into footer */
.footer--with-cta { padding-top: 0; }
.footer-cta {
  text-align: center;
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 72px;
}
.footer-cta .kicker { color: rgba(255,255,255,0.4); }
.footer-cta h2 {
  font-size: clamp(32px, 5vw, 62px);
  color: #fff; margin: 14px 0 18px; line-height: 1.1;
}
.footer-cta p {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 480px; margin: 0 auto;
}
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; padding-bottom: 60px; }
.footer-brand .brand img { mix-blend-mode: normal; filter: brightness(0) invert(1); height: 56px; }
.footer-tagline { margin-top: 22px; font-size: 14px; font-weight: 600; line-height: 1.5; color: rgba(255,255,255,0.55); }
.footer-tagline span { display: block; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 6px; }
.footer-big { display: flex; flex-direction: column; gap: 16px; }
.footer-big a { font-size: clamp(20px, 1.9vw, 26px); font-weight: 650; color: #fff; text-decoration: none; letter-spacing: -0.015em; width: fit-content; transition: color var(--t-fast); }
.footer-big a:hover { color: var(--gold); }
.footer-news h3 { font-size: clamp(20px, 1.9vw, 26px); font-weight: 650; color: #fff; margin-bottom: 24px; letter-spacing: -0.015em; }
.news-form { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.28); padding-bottom: 10px; }
.news-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-size: 15px; font-weight: 500; font-family: inherit; }
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form button { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--gold); color: var(--navy-950); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform var(--t-fast), background var(--t-fast); }
.news-form button:hover { background: #D4B470; transform: scale(1.08); }
.footer-social { display: flex; gap: 30px; margin-top: 36px; }
.footer-social a { font-size: 15px; font-weight: 600; color: #fff; text-decoration: none; transition: color var(--t-fast); }
.footer-social a:hover { color: var(--gold); }
.footer-locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 54px 0; border-top: 1px solid var(--line-dark); }
.footer-locations .loc h4 { font-size: 15px; font-weight: 680; color: #fff; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer-locations .loc p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-locations .loc a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--t-fast); }
.footer-locations .loc a:hover { color: var(--gold); }
.footer-locations .loc-sub { margin-top: 12px; }
.footer-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 30px; border-top: 1px solid var(--line-dark); font-size: 12.5px; color: rgba(255,255,255,0.34); }
.footer-meta p { display: inline-flex; align-items: center; gap: 7px; }
.hexura-logo { width: 16px; height: 16px; vertical-align: middle; }
.footer-meta a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--t-fast); }
.footer-meta a:hover { color: var(--gold); }
.footer-meta .links { display: flex; align-items: center; gap: 22px; }

/* ── reveal animations ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 450ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 540ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 630ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ── responsive ── */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid, .team-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 28px 22px; }
  .metric:nth-child(odd) { border-left: none; padding-left: 0; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .hero { padding-top: calc(var(--nav-h) + 64px); }
  .svc-grid, .ind-grid, .case-grid, .team-grid, .insight-grid, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-locations { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-shell { padding: 30px 22px; }
  .hero-ctas .btn { width: 100%; }
  .footer-meta { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .footer-locations { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   v2.1 — Interactive layer: hero slider, carousels, parallax
═════════════════════════════════════════════════════════ */

/* ── HERO SLIDER ── */
.hs { position: relative; min-height: 78vh; background: var(--navy-950); color: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hs-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1100ms var(--ease), visibility 0s 1100ms;
}
.hs-slide.active {
  /* in flow so the CTA row sizes the section and is never covered by the metrics footer */
  position: relative; inset: auto;
  opacity: 1; visibility: visible; z-index: 1;
  transition: opacity 1100ms var(--ease);
}
.hs-bg { position: absolute; inset: -6%; background-size: cover; background-position: center; transform: scale(1); will-change: transform; }
.hs-slide.active .hs-bg { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hs-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,11,22,0.70) 0%, rgba(10,22,40,0.28) 38%, rgba(10,22,40,0) 66%);
}
.hs-slide { display: flex; }
.hs-content { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 56px; }
.hs-content .wrap { width: 100%; }
.hs-footer { margin-top: auto; }
.hs-copy { max-width: 760px; min-height: 320px; }
.hs-slide-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(198,163,93,0.35); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 26px;
}
.hs-slide-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s ease-in-out infinite; }
.hs-copy h1 { font-size: clamp(36px, 5.2vw, 64px); font-weight: 600; color: #fff; letter-spacing: -0.03em; line-height: 1.07; }
.hs-copy p { margin-top: 22px; font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; }
@keyframes hsRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hs-slide .hs-slide-tag, .hs-slide h1, .hs-slide p, .hs-slide .hero-ctas { opacity: 0; transform: translateY(30px); }
.hs-slide.active .hs-slide-tag { animation: hsRise 700ms var(--ease) 250ms both; }
.hs-slide.active h1 { animation: hsRise 760ms var(--ease) 400ms both; }
.hs-slide.active p { animation: hsRise 760ms var(--ease) 550ms both; }
.hs-slide.active .hero-ctas { animation: hsRise 720ms var(--ease) 690ms both; }

.hs-footer { position: relative; z-index: 3; border-top: 1px solid var(--line-dark); background: rgba(5,11,22,0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.hs-footer-row { display: flex; align-items: stretch; justify-content: space-between; gap: 24px; }
.hs-metrics { display: flex; flex: 1; }
.hs-metrics .metric { padding: 26px 30px; border-left: 1px solid var(--line-dark); flex: 1; }
.hs-metrics .metric:first-child { border-left: none; padding-left: 0; }
.hs-metrics .metric b { font-size: clamp(24px, 2.6vw, 36px); }
.hs-metrics .metric span { font-size: 12.5px; margin-top: 7px; }
.hs-nav { display: flex; align-items: center; gap: 18px; padding: 18px 0; }
.hs-dots { display: flex; gap: 10px; }
.hs-dot { position: relative; width: 34px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.18); border: none; cursor: pointer; overflow: hidden; padding: 0; }
.hs-dot i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hs-dot.active i { animation: hsdot var(--hs-dur, 7000ms) linear forwards; }
@keyframes hsdot { to { transform: scaleX(1); } }
.hs-arrows { display: flex; gap: 10px; }
.hs-arrow {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.hs-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,163,93,0.08); transform: translateY(-1px); }

/* particles */
.hs-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hs-particles b { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(198,163,93,0.45); animation: drift 14s linear infinite; }
.hs-particles b:nth-child(2n) { width: 3px; height: 3px; background: rgba(255,255,255,0.25); animation-duration: 18s; }
.hs-particles b:nth-child(3n) { animation-duration: 22s; }
@keyframes drift { from { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } to { transform: translateY(-92vh); opacity: 0; } }

/* scroll indicator */
.hs-scrollhint { position: absolute; z-index: 3; right: 38px; bottom: 110px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; writing-mode: vertical-rl; }
.hs-scrollhint::after { content: ''; width: 1px; height: 52px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollhint 2s var(--ease) infinite; }
@keyframes scrollhint { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── GENERIC CAROUSEL (scroll-snap) ── */
.carousel { position: relative; overflow: hidden; }
.car-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding: 6px 4px 26px;
  scroll-padding-left: 4px;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: start; flex-shrink: 0; }
.car-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; }
.car-arrows { display: flex; gap: 10px; }
.car-arrow {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink-muted);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.car-arrow:hover { border-color: var(--gold); color: var(--gold-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.band-dark .car-arrow, .industries .car-arrow { background: transparent; border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.8); }
.band-dark .car-arrow:hover, .industries .car-arrow:hover { border-color: var(--gold); color: var(--gold); }
.car-progress { flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; max-width: 320px; }
.industries .car-progress, .band-dark .car-progress { background: rgba(255,255,255,0.12); }
.car-progress i { display: block; height: 100%; width: 0; background: var(--gold); transition: width 300ms var(--ease); }

/* ── SERVICE CAROUSEL CARD ── */
.svcx {
  width: 318px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.svcx:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svcx-media { position: relative; height: 168px; overflow: hidden; }
.svcx-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.svcx:hover .svcx-media img { transform: scale(1.07); }
.svcx-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.55), transparent 55%); }
.svcx-icon {
  position: absolute; left: 22px; bottom: -23px; z-index: 2;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(5,11,22,0.35);
  transition: transform var(--t-med);
}
.svcx:hover .svcx-icon { transform: translateY(-4px) rotate(-4deg); }
.svcx-body { padding: 36px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.svcx-body h3 { font-size: 17px; font-weight: 640; }
.svcx-body > p { margin-top: 9px; font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; }
.svcx-more { max-height: 0; overflow: hidden; transition: max-height 520ms var(--ease), margin 520ms var(--ease); margin-top: 0; }
.svcx:hover .svcx-more, .svcx:focus-visible .svcx-more { max-height: 150px; margin-top: 14px; }
.svcx-more li { display: flex; gap: 8px; align-items: baseline; font-size: 12.8px; color: var(--ink-muted); padding: 3px 0; list-style: none; }
.svcx-more li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; transform: translateY(-2px); }
.svcx-body .text-link { margin-top: auto; padding-top: 18px; font-size: 13.5px; }

/* ── INDUSTRY SLIDER CARD ── */
.indx {
  position: relative; width: 286px; height: 380px; border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: flex-end; text-decoration: none;
  isolation: isolate;
}
.indx img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 800ms var(--ease); }
.indx:hover img { transform: scale(1.08); }
.indx::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(5,11,22,0.92) 18%, rgba(10,22,40,0.35) 55%, rgba(10,22,40,0.15)); transition: background var(--t-med); }
.indx-body { padding: 26px 24px; width: 100%; transform: translateY(34px); transition: transform 480ms var(--ease); }
.indx:hover .indx-body { transform: translateY(0); }
.indx-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(198,163,93,0.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(198,163,93,0.35); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.indx h3 { color: #fff; font-size: 17px; font-weight: 630; }
.indx p { margin-top: 8px; font-size: 12.8px; color: rgba(255,255,255,0.72); line-height: 1.6; opacity: 0; transition: opacity 480ms var(--ease) 80ms; }
.indx:hover p { opacity: 1; }

/* ── WHY UMCO FEATURE CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.feat-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t-med); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform var(--t-med), background var(--t-med), color var(--t-med); }
.feat-card:hover .feat-icon { background: var(--navy-900); color: var(--gold); transform: scale(1.08) rotate(-5deg); }
.feat-card h3 { font-size: 16.5px; font-weight: 640; }
.feat-card p { margin-top: 10px; font-size: 13.8px; color: var(--ink-muted); line-height: 1.68; }

/* ── CASE CAROUSEL ── */
.case-car .case-card { width: 372px; }
.case-metrics { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.case-metrics span { font-size: 12px; font-weight: 650; color: var(--navy-800); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }
.case-metrics b { color: var(--gold-deep); }

/* ── INSIGHTS MAGAZINE ── */
.mag-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; align-items: stretch; }
.mag-feature {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px;
  display: flex; align-items: flex-end; text-decoration: none; isolation: isolate;
}
.mag-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 900ms var(--ease); }
.mag-feature:hover img { transform: scale(1.06); }
.mag-feature::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(5,11,22,0.93) 12%, rgba(10,22,40,0.3) 60%, rgba(10,22,40,0.12)); }
.mag-feature-body { padding: 36px 34px; }
.mag-feature .insight-meta span { color: var(--gold); }
.mag-feature .insight-meta time { color: rgba(255,255,255,0.55); }
.mag-feature h3 { color: #fff; font-size: clamp(20px, 2.4vw, 27px); font-weight: 630; line-height: 1.3; max-width: 480px; }
.mag-feature p { margin-top: 12px; color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.7; max-width: 460px; }
.mag-feature .text-link { margin-top: 18px; color: var(--gold); }
.mag-side { display: grid; gap: 14px; }
.mag-side .insight-card { padding: 24px 26px; }
.mag-side .insight-card h3 { font-size: 16px; }
.mag-side .insight-card p { display: none; }
.read-time { font-size: 11.5px; font-weight: 600; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 6px; }
.mag-feature .read-time { color: rgba(255,255,255,0.55); }

/* ── Insights dark variant ── */
.insights-dark {
  background: var(--navy-950);
  position: relative;
}
.insights-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.insight-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s cubic-bezier(0.22,1,0.36,1);
}
.insight-card--dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(198,163,93,0.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(5,11,22,0.5);
}
.insight-card--dark h3 { color: rgba(255,255,255,0.9); }
.insight-meta--dark time { color: rgba(255,255,255,0.38) !important; }

/* ── TEAM HOVER REVEAL ── */
.team-card { position: relative; overflow: hidden; }
.team-overlay {
  position: absolute; inset: 0; background: var(--navy-900); color: #fff;
  padding: 34px 30px; display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(14px); transition: opacity var(--t-med), transform var(--t-med);
}
.team-card:hover .team-overlay, .team-card:focus-within .team-overlay { opacity: 1; transform: none; }
.team-overlay h3 { color: #fff; font-size: 17px; }
.team-overlay p { margin-top: 12px; font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.7; }
.team-overlay .text-link { margin-top: 18px; color: var(--gold); }

/* ── CAREERS TIMELINE ── */
.timeline { position: relative; max-width: 680px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 1.5px; background: linear-gradient(to bottom, var(--gold), var(--line)); }
.tl-item { position: relative; padding: 0 0 34px 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: 4px; top: 5px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 2.5px solid var(--gold); }
.tl-item h4 { font-size: 15.5px; font-weight: 640; }
.tl-item h4 span { color: var(--gold-deep); font-size: 12px; font-weight: 680; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.tl-item p { margin-top: 7px; font-size: 13.8px; color: var(--ink-muted); line-height: 1.68; }

/* ── CONTACT MAP ── */
.map-shell { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); margin-top: 40px; }
.map-shell iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(0.55) contrast(1.04); transition: filter var(--t-med); }
.map-shell:hover iframe { filter: grayscale(0); }

/* ── glass accent utility ── */
.glass { background: rgba(255,255,255,0.06); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.12); }

/* ── responsive for v2.1 ── */
@media (max-width: 1020px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-grid { grid-template-columns: 1fr; }
  .mag-feature { min-height: 380px; }
}
@media (max-width: 760px) {
  .hs { min-height: 86vh; }
  .hs-copy { min-height: 280px; }
  .hs-footer-row { flex-direction: column; gap: 0; }
  .hs-metrics { flex-wrap: wrap; }
  .hs-metrics .metric { flex: 1 1 45%; padding: 18px 16px; }
  .hs-metrics .metric:nth-child(odd) { border-left: none; padding-left: 0; }
  .hs-scrollhint { display: none; }
  .hs-nav { justify-content: space-between; }
  .feat-grid { grid-template-columns: 1fr; }
  .svcx { width: 282px; }
  .indx { width: 250px; height: 340px; }
  .case-car .case-card { width: 318px; }
}

/* ── v2.2: interior page imagery ── */
.page-hero .ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .ph-veil { position: absolute; inset: 0; background: linear-gradient(78deg, rgba(5,11,22,0.93) 0%, rgba(10,22,40,0.84) 45%, rgba(10,22,40,0.55) 100%); }

.svcx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svcx-grid .svcx { width: auto; }

.indx-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.indx-grid .indx { width: auto; height: 350px; }

.case-img { height: 172px; overflow: hidden; position: relative; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.case-card:hover .case-img img { transform: scale(1.06); }
.case-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.35), transparent 50%); }

@media (max-width: 1020px) {
  .svcx-grid { grid-template-columns: repeat(2, 1fr); }
  .indx-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .svcx-grid, .indx-grid { grid-template-columns: 1fr; }
  .indx-grid .indx { height: 300px; }
}

/* ── v2.3: feature card imagery ── */
.feat-card.has-img { padding: 0; display: flex; flex-direction: column; }
.feat-img { height: 150px; overflow: hidden; position: relative; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.feat-card:hover .feat-img img { transform: scale(1.06); }
.feat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.32), transparent 55%); }
.feat-body { padding: 26px 30px 30px; position: relative; }
.feat-card.has-img .feat-icon {
  position: absolute; top: -25px; left: 26px; margin-bottom: 0;
  background: var(--navy-900); color: var(--gold);
  box-shadow: 0 8px 22px rgba(5,11,22,0.3);
}
.feat-card.has-img .feat-body h3 { margin-top: 18px; }

/* ── v2.4: About page brand nameplate ── */
.brand-feature {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(198,163,93,0.18);
  border-bottom: 1px solid rgba(198,163,93,0.18);
}
.brand-feature::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 82% 18%, rgba(198,163,93,0.16), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(198,163,93,0.08), transparent 60%);
  pointer-events: none;
}
.brand-feature .wrap {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.bf-mark {
  width: clamp(72px, 9vw, 104px); height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
}
.bf-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.bf-rule span { height: 1px; width: clamp(28px, 6vw, 64px); background: linear-gradient(90deg, transparent, var(--gold)); }
.bf-rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.bf-rule i {
  font-style: normal; color: var(--gold);
  letter-spacing: 0.34em; text-transform: uppercase;
  font-size: 12px; font-weight: 600;
}
.brand-feature h2 {
  font-size: clamp(38px, 7vw, 88px);
  line-height: 1.02; font-weight: 600; letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.brand-feature h2 .amp { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--gold); font-weight: 400; letter-spacing: 0; }
.bf-sub {
  margin-top: 26px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.42em; text-transform: uppercase; font-weight: 500;
}
.bf-tag {
  margin-top: 30px; max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(15px, 2vw, 18px); line-height: 1.6; letter-spacing: 0;
}
@media (max-width: 560px) {
  .bf-sub { letter-spacing: 0.28em; }
}

.brand-feature--top { border-top: none; }
.brand-feature--top .wrap { padding-top: clamp(120px, 9vw, 168px); }

/* ── Schedule panel (shown until Calendly link is configured) ── */
.schedule-card {
  display: flex; align-items: center; gap: clamp(24px, 4vw, 52px);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff; border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px);
  position: relative; overflow: hidden;
  border: 1px solid rgba(198,163,93,0.18);
}
.schedule-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(55% 90% at 90% 10%, rgba(198,163,93,0.16), transparent 60%);
  pointer-events: none;
}
.sc-icon {
  flex: none; width: 72px; height: 72px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(198,163,93,0.14); color: var(--gold);
  border: 1px solid rgba(198,163,93,0.3);
}
.sc-body { position: relative; }
.sc-body h2 { color: #fff; font-size: clamp(24px, 3.2vw, 36px); }
.sc-body .kicker { color: var(--gold); }
.sc-body p { color: rgba(255,255,255,0.74); margin-top: 14px; max-width: 540px; line-height: 1.65; }
.sc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sc-actions .btn-ghost-dark { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.26); background: transparent; }
.sc-actions .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
@media (max-width: 720px) {
  .schedule-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── Process steps with images (Services "How we engage") ── */
.process-cell.has-img { padding: 0; display: flex; flex-direction: column; }
.process-cell.has-img .pc-img { height: 132px; overflow: hidden; position: relative; }
.process-cell.has-img .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.process-cell.has-img:hover .pc-img img { transform: scale(1.06); }
.process-cell.has-img .pc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.34), transparent 60%); }
.process-cell.has-img .pc-body { padding: 26px 28px 30px; }
.process-cell.has-img .pc-img .pc-step {
  position: absolute; left: 16px; bottom: 12px; z-index: 1;
  font-style: normal; font-size: 12px; font-weight: 650; letter-spacing: 0.1em;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ════════════════════════════════════════════════════════
   v3 — modern eye-catching layer (site-wide)
═════════════════════════════════════════════════════════ */

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 999;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), #f0d9a8);
  box-shadow: 0 0 12px rgba(198,163,93,0.6); transition: width .1s linear;
}

/* shimmering gold accent words */
@keyframes goldShimmer { to { background-position: 200% center; } }
.hero .serif-accent, .page-hero .serif-accent, .hs .serif-accent,
.cta-inner .serif-accent, .hs-copy .serif-accent {
  background: linear-gradient(110deg, var(--gold) 18%, #f4e2bb 48%, var(--gold) 78%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShimmer 6s linear infinite;
}

/* card lift + gold glow ring + sheen sweep */
.svc-card, .ind-tile, .case-card, .insight-card, .team-card {
  position: relative;
}
.svc-card::before, .case-card::before, .insight-card::before, .team-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
  background-size: 250% 100%; background-position: 150% 0; opacity: 0;
  transition: background-position .8s var(--ease), opacity .4s var(--ease);
}
.svc-card:hover::before, .case-card:hover::before, .insight-card:hover::before, .team-card:hover::before {
  opacity: 1; background-position: -120% 0;
}
.svc-card:hover, .ind-tile:hover, .case-card:hover, .insight-card:hover, .team-card:hover {
  box-shadow: 0 22px 55px rgba(10,22,40,0.16), 0 0 0 1px rgba(198,163,93,0.28), 0 0 30px rgba(198,163,93,0.10);
}

/* image zoom inside any media frame */
.svcx-media img, .ind-tile img, .case-img img, .indx img { transition: transform .8s var(--ease); }
.svcx:hover .svcx-media img, .ind-tile:hover img, .case-card:hover .case-img img, .indx:hover img { transform: scale(1.07); }

/* animated underline on text links */
.text-link { position: relative; }
.text-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* reveal-on-scroll gets a touch of scale for depth */
.reveal { transform: translateY(26px) scale(0.985); }
.reveal.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero .serif-accent, .page-hero .serif-accent, .hs .serif-accent,
  .cta-inner .serif-accent, .hs-copy .serif-accent { animation: none; }
}

/* ══════════════════════════════════════════════
   Why-UMCO — dark bento grid
══════════════════════════════════════════════ */
.why-section {
  background: var(--navy-950);
  padding: 80px 0 68px;
  position: relative; overflow: hidden;
}

/* dot-grid texture */
.why-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ambient background glow */
.why-bg-glow {
  position: absolute; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,163,93,0.10) 0%, transparent 65%);
  top: -300px; right: -200px; animation: wbGlowDrift 18s ease-in-out infinite alternate;
}
@keyframes wbGlowDrift { to { transform: translate(-80px, 120px) scale(1.1); } }

/* second glow bottom-left */
.why-section::after {
  content: ''; position: absolute; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,163,93,0.05) 0%, transparent 70%);
  bottom: -200px; left: -100px;
}

/* header */
.why-header { margin-bottom: 40px; }
.why-headline { margin-top: 16px; display: flex; align-items: flex-end; gap: 48px; }
.why-headline h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff; flex-shrink: 0; max-width: 520px; line-height: 1.1;
}
.why-lead {
  max-width: 340px; font-size: 15px; color: rgba(255,255,255,0.45);
  line-height: 1.75; padding-bottom: 6px; border-left: 2px solid rgba(198,163,93,0.3);
  padding-left: 20px;
}
.why-header-line {
  width: 100%; height: 1px; margin-top: 36px;
  background: linear-gradient(90deg, rgba(198,163,93,0.35), rgba(198,163,93,0.08) 60%, transparent);
}

/* bento grid */
.why-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

/* base card */
.wb {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 16px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s var(--ease);
}
.wb::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px; opacity: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(198,163,93,0.10) 0%, transparent 65%);
  transition: opacity .5s var(--ease);
}
.wb:hover { background: rgba(255,255,255,0.07); border-color: rgba(198,163,93,0.28); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(5,11,22,0.4), 0 0 0 1px rgba(198,163,93,0.15); }
.wb:hover::before { opacity: 1; }

/* grid placement — clean 2 rows of 3 */
.wb:nth-child(1) { grid-column: span 2; }
.wb:nth-child(2) { grid-column: span 2; }
.wb:nth-child(3) { grid-column: span 2; }
.wb:nth-child(4) { grid-column: span 2; }
.wb:nth-child(5) { grid-column: span 2; }
.wb:nth-child(6) { grid-column: span 6; } /* full-width bottom */

/* large numbers */
.wb-num {
  display: flex; align-items: baseline; gap: 2px;
  font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 800;
  color: #fff; letter-spacing: -0.05em; line-height: 1;
}
.wb-num b { font-weight: inherit; }
.wb-num em { font-style: normal; font-size: 0.32em; font-weight: 700; color: var(--gold); letter-spacing: 0.02em; }

.wb-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

.wb h4 { font-size: 15px; font-weight: 670; color: rgba(255,255,255,0.92); margin: 0; }
.wb p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; margin: 0; }

.wb-ico { color: rgba(255,255,255,0.25); margin-top: auto; }
.wb:hover .wb-ico { color: var(--gold); }

/* feature card (15+) */
.wb--feature {
  background: linear-gradient(145deg, rgba(198,163,93,0.18) 0%, rgba(198,163,93,0.04) 60%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(198,163,93,0.3);
  box-shadow: inset 0 1px 0 rgba(198,163,93,0.2), 0 0 60px rgba(198,163,93,0.06);
}
.wb--feature .wb-num { color: #fff; }
.wb-deco-icon {
  width: 80px; height: 80px; position: absolute;
  bottom: 28px; right: 28px; opacity: 0.6;
  transition: opacity .4s var(--ease), transform .5s cubic-bezier(0.22,1,0.36,1);
}
.wb--feature:hover .wb-deco-icon { opacity: 1; transform: scale(1.12) rotate(6deg); }

/* accent card (1-day) */
.wb--accent {
  background: linear-gradient(145deg, rgba(198,163,93,0.20) 0%, rgba(168,133,63,0.06) 60%, rgba(5,11,22,0.3) 100%);
  border-color: rgba(198,163,93,0.35);
  box-shadow: inset 0 1px 0 rgba(198,163,93,0.25), 0 0 60px rgba(198,163,93,0.08);
}
.wb--accent .wb-num { color: var(--gold); }
.wb--accent p { color: rgba(255,255,255,0.55); }

/* pulsing dot animation */
.wb-pulse {
  display: flex; gap: 6px; align-items: center; margin-top: auto;
}
.wb-pulse i {
  display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.4;
  animation: wbPulse 2.2s ease-in-out infinite;
}
.wb-pulse i:nth-child(2) { animation-delay: .35s; }
.wb-pulse i:nth-child(3) { animation-delay: .7s; }
@keyframes wbPulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

/* badge row */
.wb-badge-row { display: flex; gap: 6px; flex-wrap: wrap; }
.wb-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  background: var(--gold); color: var(--navy-950);
}
.wb-badge--outline { background: transparent; color: var(--gold); border: 1px solid rgba(198,163,93,0.4); }

/* tag line */
.wb-tag-line { margin-bottom: 4px; }
.wb-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
}

/* wide bottom card */
.wb--wide {
  display: flex; flex-direction: row; align-items: center; gap: 0;
  padding: 18px 28px;
  background: rgba(198,163,93,0.06); border-color: rgba(198,163,93,0.18);
}
.wb-wide-left { flex-shrink: 0; min-width: 160px; }
.wb-wide-divider {
  width: 1px; align-self: stretch; margin: 0 36px;
  background: rgba(198,163,93,0.2);
}
.wb-wide-right { flex: 1; }
.wb-wide-right h4 { font-size: 17px; margin-bottom: 8px; }
.wb-wide-right p { max-width: 480px; }
.wb-wide-right strong { color: rgba(255,255,255,0.8); font-weight: 650; }

.wb-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 12.5px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.wb-link:hover { gap: 10px; color: #f4e2bb; }

/* reveal stagger on bento */
.why-bento .wb {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s cubic-bezier(0.22,1,0.36,1),
              background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.why-bento.in .wb { opacity: 1; transform: none; }
.why-bento .wb:nth-child(1) { transition-delay: .05s; }
.why-bento .wb:nth-child(2) { transition-delay: .12s; }
.why-bento .wb:nth-child(3) { transition-delay: .19s; }
.why-bento .wb:nth-child(4) { transition-delay: .26s; }
.why-bento .wb:nth-child(5) { transition-delay: .33s; }
.why-bento .wb:nth-child(6) { transition-delay: .40s; }

/* responsive */
@media (max-width: 1024px) {
  .why-bento { grid-template-columns: repeat(4, 1fr); }
  .wb:nth-child(1) { grid-column: span 2; }
  .wb:nth-child(2) { grid-column: span 2; }
  .wb:nth-child(3) { grid-column: span 2; }
  .wb:nth-child(4) { grid-column: span 2; }
  .wb:nth-child(5) { grid-column: span 2; }
  .wb:nth-child(6) { grid-column: span 4; flex-direction: column; }
  .wb-wide-divider { display: none; }
  .wb-wide-left { min-width: auto; }
}
@media (max-width: 680px) {
  .why-bento { grid-template-columns: 1fr 1fr; }
  .wb { padding: 24px 20px; }
  .wb:nth-child(6) { grid-column: span 2; }
  .wb-deco-icon { display: none; }
}

/* ── Testimonials ─────────────────────────────────────────────────── */
.testi-section {
  background: var(--paper);
  padding: 100px 0 90px;
  position: relative; overflow: hidden;
}
/* testi abstract art */
.testi-art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}

/* large concentric rings — right side */
.ta-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(198,163,93,0.7);
  right: -120px;
}
.ta-ring--1 { width: 340px; height: 340px; top: -80px; }
.ta-ring--2 { width: 520px; height: 520px; top: -170px; border-color: rgba(198,163,93,0.45); }
.ta-ring--3 { width: 720px; height: 720px; top: -270px; border-color: rgba(198,163,93,0.22); }

/* quarter arc bottom-left */
.ta-arc {
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  border: 2px solid rgba(198,163,93,0.55);
  bottom: -200px; left: -100px;
}

/* diagonal stripes */
.ta-stripe {
  position: absolute; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(198,163,93,0.75) 30%, rgba(198,163,93,0.75) 70%, transparent 100%);
  width: 60%; transform-origin: left center;
}
.ta-stripe--1 { top: 28%; left: 0; transform: rotate(-8deg); width: 55%; }
.ta-stripe--2 { top: 62%; left: 10%; transform: rotate(-8deg); width: 40%; opacity: 0.85; }

/* gold dots */
.ta-dot {
  position: absolute; border-radius: 50%;
  background: var(--gold);
}
.ta-dot--1 { width: 9px; height: 9px; opacity: 0.9; top: 26%; left: 32%; }
.ta-dot--2 { width: 6px; height: 6px; opacity: 0.75; top: 61%; left: 22%; }
.ta-dot--3 { width: 11px; height: 11px; opacity: 0.7; top: 42%; right: 22%; }

/* ghost large numbers */
.ta-word {
  position: absolute;
  font-size: 200px; font-weight: 900; line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(198,163,93,0.45);
  user-select: none; pointer-events: none;
}
.ta-word--1 { bottom: -30px; left: -10px; }
.ta-word--2 { top: -20px; right: 18%; }
.testi-section .wrap { position: relative; z-index: 1; }
.testi-bg-glow {
  position: absolute; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,163,93,0.07) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.testi-header { margin-bottom: 52px; }
.testi-header h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--ink); margin-top: 10px; }

.testi-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .35s var(--ease), transform .35s cubic-bezier(0.22,1,0.36,1);
}
.testi-card:hover { box-shadow: 0 16px 48px rgba(5,11,22,0.10); transform: translateY(-4px); }
.testi-card--accent { background: var(--navy-950); border-color: rgba(198,163,93,0.25); }
.testi-card--accent blockquote { color: rgba(255,255,255,0.82); }
.testi-card--accent .testi-name { color: #fff; }
.testi-card--accent .testi-role { color: rgba(255,255,255,0.42); }
.testi-card--accent .testi-avatar { background: rgba(198,163,93,0.18); color: var(--gold); }
.testi-stars { font-size: 13px; color: var(--gold); letter-spacing: 2px; }
blockquote { font-size: 14.5px; line-height: 1.75; color: var(--ink-muted); margin: 0; padding: 0; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); }
.testi-card--accent .testi-author { border-top-color: rgba(255,255,255,0.1); }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(198,163,93,0.12); color: var(--gold-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
}
.testi-name { font-size: 13.5px; font-weight: 670; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.testi-bottom {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 28px 48px;
}
.testi-stat { text-align: center; flex: 1; }
.testi-stat-num { display: block; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.testi-stat-num em { font-style: normal; font-size: 0.55em; color: var(--gold); }
.testi-stat-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }
.testi-divider { width: 1px; align-self: stretch; background: var(--line); margin: 0 40px; }

@media (max-width: 1024px) { .testi-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .testi-track { grid-template-columns: 1fr; }
  .testi-bottom { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .testi-divider { width: 100%; height: 1px; margin: 0; }
}

/* ══════════════════════════════════════════════
   Case study cards — progressive disclosure
══════════════════════════════════════════════ */
.case-card .case-row { overflow: hidden; }
.case-card .case-row p {
  max-height: 0; opacity: 0; margin: 0;
  transition: max-height .45s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.case-card:hover .case-row p {
  max-height: 120px; opacity: 1; margin-top: 4px;
}
.case-card .case-outcome {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--ease) .06s, opacity .45s var(--ease) .06s;
}
.case-card:hover .case-outcome { max-height: 200px; opacity: 1; }

/* Section rhythm — alternate bg tighter */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

/* ══════════════════════════════════════════════
   DMCL-style full-screen hero (.dh)
══════════════════════════════════════════════ */
.dh {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-950);
}

/* backgrounds */
.dh-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1), transform 1.4s cubic-bezier(0.22,1,0.36,1);
  transform: scale(1.04);
  opacity: 0;
  z-index: 0;
}
.dh-bg--1 { opacity: 1; transform: scale(1); }
.dh.switched .dh-bg--1 { opacity: 0; transform: scale(1.05); }
.dh.switched .dh-bg--2 { opacity: 1; transform: scale(1); }
.dh-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(5,11,22,0.82) 0%, rgba(5,11,22,0.58) 55%, rgba(5,11,22,0.28) 100%);
}

/* decorative cross + arc */
.dh-deco {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  width: min(420px, 45vw); height: min(420px, 45vw);
  z-index: 2; pointer-events: none;
}
.dh-cross {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: dhCrossRotate 60s linear infinite;
}
.dh-arc {
  position: absolute; inset: -10%; width: 120%; height: 120%;
}
@keyframes dhCrossRotate { to { transform: rotate(360deg); } }

/* hero inner content */
.dh-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 860px;
  padding: 0 clamp(24px,5vw,80px);
  padding-top: 80px;
}

/* states */
.dh-state {
  position: absolute; top: 0; left: clamp(24px,5vw,80px); right: clamp(24px,5vw,80px);
  transition: opacity .9s cubic-bezier(0.4,0,0.2,1), transform .9s cubic-bezier(0.22,1,0.36,1);
  opacity: 0; transform: translateY(32px); pointer-events: none;
}
.dh-state.active {
  position: relative; left: auto; right: auto;
  opacity: 1; transform: none; pointer-events: auto;
}
.dh-state--2 { position: absolute; top: 0; left: clamp(24px,5vw,80px); right: clamp(24px,5vw,80px); }
.dh.switched .dh-state--1 { opacity: 0; transform: translateY(-28px); pointer-events: none; }
.dh.switched .dh-state--2 { opacity: 1; transform: none; pointer-events: auto; }

/* kicker */
.dh-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.dh-state--1.active .dh-kicker { animation: rise 720ms var(--ease) 550ms both; }
.dh-state--1.active .dh-headline { animation: rise 760ms var(--ease) 700ms both; }
.dh-state--1.active .dh-sub { animation: rise 760ms var(--ease) 850ms both; }
.dh-state--1.active .dh-circle-cta { animation: rise 720ms var(--ease) 1000ms both; }
.dh-kicker::before {
  content: ''; display: inline-block;
  width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0;
}

/* headline */
.dh-headline {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 24px;
}
.dh-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400;
  background: linear-gradient(110deg, var(--gold) 20%, #f4e2bb 52%, var(--gold) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s linear infinite;
}

/* sub text */
.dh-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.72);
  line-height: 1.65; max-width: 480px; margin-bottom: 40px;
}

/* circular CTA */
.dh-circle-cta {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.dh-circle-cta svg {
  width: 56px; height: 56px; flex-shrink: 0;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1);
}
.dh-circle-cta:hover { color: #fff; gap: 20px; }
.dh-circle-cta:hover svg { transform: rotate(45deg) scale(1.08); }

/* metrics strip */
.dh-metrics {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,11,22,0.62); backdrop-filter: blur(12px);
  animation: rise 800ms var(--ease) 1150ms both;
}
.dh-metric {
  flex: 1; padding: 20px clamp(16px,3vw,40px);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.dh-metric:last-child { border-right: none; }
.dh-metric b {
  display: block; font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.dh-metric span {
  display: block; font-size: 11px; color: rgba(255,255,255,0.52);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* SCROLL hint */
.dh-scroll-hint {
  position: absolute; left: clamp(20px, 3vw, 48px); bottom: 120px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: rise 700ms var(--ease) 1300ms both;
}
.dh-scroll-hint span {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.dh-scroll-hint i {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: dhScrollLine 2s ease-in-out infinite;
}
@keyframes dhScrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* social icons — right edge */
@keyframes dhFade { from { opacity: 0; } }
.dh-social {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 20px; align-items: center;
  animation: dhFade 700ms var(--ease) 1300ms both;
}
.dh-social::before, .dh-social::after {
  content: ''; display: block; width: 1px; height: 48px;
  background: rgba(255,255,255,0.18);
}
.dh-social a {
  color: rgba(255,255,255,0.45); transition: color .3s var(--ease), transform .3s var(--ease);
  display: flex;
}
.dh-social a:hover { color: var(--gold); transform: scale(1.2); }

/* slide dots — right side */
.dh-dots {
  position: absolute; right: 26px; bottom: 130px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  animation: dhFade 700ms var(--ease) 1400ms both;
}
.dh-dot {
  width: 6px; height: 6px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,0.28);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.dh-dot.active { background: var(--gold); transform: scale(1.4); }

/* mobile tweaks */
@media (max-width: 680px) {
  .dh-deco { display: none; }
  .dh-headline { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .dh-scroll-hint { display: none; }
  .dh-social { display: none; }
  .dh-metrics { flex-wrap: wrap; }
  .dh-metric { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ── Industry grid card: clickable ── */
a.indx {
  display: block; color: inherit; text-decoration: none;
  position: relative; overflow: hidden;
}
a.indx:hover img { transform: scale(1.05); }
a.indx img { transition: transform .55s var(--ease); }
.indx-cta {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--gold-deep);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
a.indx:hover .indx-cta { opacity: 1; transform: none; }

/* ── Industry detail page layout ── */
.ind-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  align-items: start;
}
.ind-detail-grid .detail-body h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 10px 0 20px;
}
.ind-stat { display: flex; flex-direction: column; }
.ind-stat b {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--navy-950); line-height: 1;
}
.ind-stat span { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

@media (max-width: 860px) {
  .ind-detail-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════
   Services — full-bleed split panel
══════════════════════════════════════════════ */
.svp-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Background image stack */
.svp-bg-stack {
  position: absolute; inset: 0; z-index: 0;
}
.svp-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .75s cubic-bezier(0.22,1,0.36,1),
              transform 1.2s cubic-bezier(0.22,1,0.36,1);
  transform: scale(1.06);
}
.svp-bg.active {
  opacity: 1;
  transform: scale(1);
}

/* Overall dark veil — heavier on the left where text sits */
.svp-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(5,10,22,0.96) 0%, rgba(5,10,22,0.82) 38%, rgba(5,10,22,0.55) 65%, rgba(5,10,22,0.35) 100%),
    linear-gradient(to bottom, rgba(5,10,22,0.4) 0%, transparent 30%, transparent 70%, rgba(5,10,22,0.4) 100%);
}

/* Layout grid */
.svp-wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
}

/* ── Left column ── */
.svp-left {
  display: flex; flex-direction: column;
  background: rgba(5,10,22,0.45);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 36px 36px;
}

.svp-header { margin-bottom: 36px; }
.svp-header h2 { font-size: clamp(22px, 2.4vw, 34px); margin-top: 10px; line-height: 1.22; }

.svp-list { display: flex; flex-direction: column; }

.svp-tab {
  display: flex; align-items: center; gap: 14px;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 14px 0 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  position: relative;
  color: rgba(255,255,255,0.62);
  transition: color .18s;
}
.svp-tab:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.08); }

.svp-num {
  font-size: 10.5px; font-weight: 650; letter-spacing: .1em;
  color: var(--gold); min-width: 22px;
  opacity: 0.55;
  transition: opacity .18s;
}
.svp-name {
  font-size: 14px; font-weight: 520; flex: 1;
  transition: font-weight .18s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.svp-arr {
  color: var(--gold); opacity: 0;
  transform: translateX(-6px);
  transition: opacity .22s, transform .22s;
  flex-shrink: 0;
}
.svp-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0); transform-origin: top;
  transition: transform .38s cubic-bezier(0.22,1,0.36,1);
}

.svp-tab.active,
.svp-tab:hover { color: #fff; }
.svp-tab.active .svp-num,
.svp-tab:hover .svp-num { opacity: 1; }
.svp-tab.active .svp-name { font-weight: 660; }
.svp-tab.active .svp-arr,
.svp-tab:hover .svp-arr { opacity: 1; transform: none; }
.svp-tab.active .svp-bar { transform: scaleY(1); }
/* hover row tint */
.svp-tab:hover { background: rgba(255,255,255,0.04); border-radius: 0 8px 8px 0; }

.svp-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 26px;
  font-size: 13px; font-weight: 630; letter-spacing: .03em;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s;
}
.svp-all-link:hover { gap: 10px; }

/* ── Right column: floating content card ── */
.svp-right {
  position: relative;
  min-height: 380px;
}

.svp-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity .5s cubic-bezier(0.22,1,0.36,1),
              transform .5s cubic-bezier(0.22,1,0.36,1);
}
.svp-panel.active {
  opacity: 1; pointer-events: auto;
  transform: none;
  position: relative;
}

/* Frosted card behind right content */
.svp-panel::before {
  content: '';
  position: absolute;
  inset: -8px -8px -8px -8px;
  background: rgba(5,10,22,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: -1;
}

.svp-img-badge {
  width: 50px; height: 50px;
  background: rgba(198,163,93,0.18);
  border: 1px solid rgba(198,163,93,0.4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.svp-panel-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 720; color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.svp-desc {
  font-size: 15px; line-height: 1.74;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
  max-width: 440px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.svp-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin: 0 0 30px;
}
.svp-tags li {
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
}

/* Mobile */
@media (max-width: 1024px) {
  .svp-wrap { grid-template-columns: 1fr; gap: 56px; padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 640px) {
  .svp-wrap { padding-top: 64px; padding-bottom: 64px; }
  .svp-panel { position: relative; inset: auto; }
  .svp-right { min-height: auto; }
}
