:root {
  --bg: #f7f7f5;
  --bg-rgb: 247, 247, 245;
  --surface: #ffffff;
  --surface-2: #ededeb;
  --surface-3: #e2e2df;
  --ink: #111111;
  --ink-2: #2d2d2b;
  --muted: #6d6d68;
  --line: #d7d7d2;
  --line-dark: #2e2e2b;
  --black: #0b0b0b;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-btn: 10px;
  --radius: 18px;
  --radius-lg: 18px;
  --header-h: 78px;
  --shell: 1240px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

[data-theme="dark"] {
  --bg: #0c0c0c;
  --bg-rgb: 12, 12, 12;
  --surface: #161616;
  --surface-2: #212121;
  --surface-3: #2c2c2c;
  --ink: #f5f5f2;
  --ink-2: #d6d6d1;
  --muted: #94948e;
  --line: #272725;
  --line-dark: #3a3a37;
  --black: #ffffff;
  --white: #0c0c0c;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--black); color: var(--white); }

.skip-link {
  position: fixed; left: 14px; top: -80px; z-index: 200;
  padding: 10px 14px; background: var(--black); color: var(--white); border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.site-shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section + .section-sm { padding-top: 20px; }
.section:has(+ .section-sm) { padding-bottom: 40px; }
.staffing-process-section { padding-bottom: 40px; }
.staffing-cards-section { padding-top: 10px; }
.staffing-cards-section .two-col-cards { margin-top: 0; }
.section-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 550;
}
.section-title.small { font-size: clamp(34px, 4vw, 58px); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}
.section-head .section-title {
  margin-top: 14px;
}
.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--black); }
.lede { max-width: 680px; margin: 24px 0 0; color: var(--ink-2); font-size: clamp(17px, 1.65vw, 21px); line-height: 1.65; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  box-shadow: none !important;
  transition: all .2s var(--ease);
}
.button:hover { transform: translateY(-1.5px); box-shadow: none !important; }
.button:active { transform: translateY(0) scale(0.99); box-shadow: none !important; }
.button-dark {
  background: linear-gradient(180deg, #222222 0%, #0d0d0d 100%);
  color: #ffffff;
  border-color: #0d0d0d;
  box-shadow: none !important;
}
.button-dark:hover {
  background: linear-gradient(180deg, #2d2d2d 0%, #161616 100%);
  border-color: #1a1a1a;
  box-shadow: none !important;
}
.button-light {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f3 100%);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none !important;
}
.button-light:hover {
  background: linear-gradient(180deg, #fafafa 0%, #ededeb 100%);
  border-color: var(--ink);
  box-shadow: none !important;
}
.button-white {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0ed 100%);
  color: #0b0b0b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none !important;
}
.button-white:hover {
  background: linear-gradient(180deg, #f8f8f6 0%, #e6e6e2 100%);
  box-shadow: none !important;
}
.text-link {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}

/* Scroll Loading Progress Bar (Top of Page) */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(90deg, #111111 0%, #3a3a3a 50%, #111111 100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.06s ease-out;
}
[data-theme="dark"] .scroll-progress-bar {
  background: linear-gradient(90deg, #ffffff 0%, #e2e2de 50%, #ffffff 100%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.site-header {
  height: 68px;
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--shell));
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: border-color .25s, height .25s, background .25s;
  box-shadow: none;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: none;
}
.site-header .header-inner,
.header-inner {
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: max-content;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.1;
}
.brand-logo {
  height: 38px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.footer-brand-logo {
  height: clamp(38px, 4vw, 54px);
  width: auto;
  max-width: 380px;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.brand-logo.logo-dark-mode,
.footer-brand-logo.logo-dark-mode {
  display: none !important;
}
.brand-logo.logo-light-mode,
.footer-brand-logo.logo-light-mode {
  display: block !important;
}
[data-theme="dark"] .brand-logo.logo-dark-mode,
[data-theme="dark"] .footer-brand-logo.logo-dark-mode {
  display: block !important;
}
[data-theme="dark"] .brand-logo.logo-light-mode,
[data-theme="dark"] .footer-brand-logo.logo-light-mode {
  display: none !important;
}
.brand-mark { display: none !important; }
.brand-copy, .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}
.brand-copy strong, .brand-name {
  display: block;
  font-size: 15px;
  letter-spacing: .085em;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-copy small, .brand-sub {
  display: block;
  margin-top: 3.5px;
  font-size: 7.2px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a,
.desktop-nav .nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
  background: transparent;
  border: none;
}
.desktop-nav a:hover,
.desktop-nav .nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}
.desktop-nav a.is-active,
.desktop-nav .nav-link.is-active {
  background: rgba(0, 0, 0, 0.06);
  color: var(--black);
  font-weight: 600;
}
[data-theme="dark"] .desktop-nav a,
[data-theme="dark"] .desktop-nav .nav-link {
  color: var(--muted);
}
[data-theme="dark"] .desktop-nav a:hover,
[data-theme="dark"] .desktop-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
[data-theme="dark"] .desktop-nav a.is-active,
[data-theme="dark"] .desktop-nav .nav-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 10px;
}
.header-call-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.header-call-btn:hover {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--black);
  transform: translateY(-1px);
}
.header-call-btn svg {
  width: 17px;
  height: 17px;
}
[data-theme="dark"] .header-call-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
[data-theme="dark"] .header-call-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}
/* 3-Way Segmented Theme Switcher (Light / System / Dark) */
.theme-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 3px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  gap: 2px;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.theme-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  outline: none;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s var(--ease), background-color .2s var(--ease), transform .15s ease;
}
.theme-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform .2s var(--ease);
}
.theme-btn svg[fill="none"] {
  fill: none !important;
  stroke: currentColor;
}
.theme-btn:hover {
  color: var(--ink);
}
.theme-btn:hover svg {
  transform: scale(1.12);
}
.theme-btn:active {
  transform: scale(0.92);
}
.theme-btn.is-active {
  background: #ffffff;
  color: #0b0b0b;
  box-shadow: none !important;
}

[data-theme="dark"] .theme-switcher {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .theme-btn.is-active {
  background: #242424;
  color: #ffffff;
  box-shadow: none !important;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  transition: all 0.2s var(--ease);
}
.menu-toggle:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.menu-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle .icon-menu-close {
  display: none;
  width: 26px;
  height: 26px;
}
.menu-toggle[aria-expanded="true"] .icon-menu-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-menu-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-115%);
  width: min(calc(100% - 48px), var(--shell));
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s;
}
.mobile-menu.is-open { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu-inner { padding: 24px 24px 30px; width: 100%; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 24px; letter-spacing: -.035em; }
.mobile-menu nav a span { font-size: 10px; color: var(--muted); }
.mobile-menu .mobile-cta { margin-top: 22px; width: 100%; }

main { overflow: clip; }

/* Home hero */
.hero {
  padding: calc(var(--header-h) + 54px) 0 54px;
  min-height: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 600;
  color: var(--black);
}
.hero h1 span { display: block; }
.hero h1 .text-gray {
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
}
.hero-copy .lede { font-size: 17px; line-height: 1.6; max-width: 520px; margin: 22px 0 0; color: var(--ink-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-image-wrap {
  width: 100%;
  height: 590px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-3);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.hero-image-wrap img,
.hero-image-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile Video Loading Shimmer */
@keyframes videoShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.hero-image-wrap[data-loading]::after,
.video-player-box[data-loading]::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(90deg,
    var(--surface-3) 25%,
    var(--surface-2, rgba(255,255,255,0.08)) 50%,
    var(--surface-3) 75%
  );
  background-size: 200% 100%;
  animation: videoShimmer 1.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}
.hero-image-wrap[data-loaded]::after,
.video-player-box[data-loaded]::after {
  display: none;
}
.hero-image-wrap img { filter: grayscale(0%); }

.hero-audio-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(14, 14, 14, 0.72);
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
  box-shadow: none;
}
.hero-audio-btn:hover {
  background: rgba(25, 25, 25, 0.92);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
  box-shadow: none;
}
.hero-audio-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero-audio-btn.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  border-color: #ffffff;
}

/* Video Fullscreen Action Button (Clean, No-Background Icon) */
.video-fullscreen-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 34px;
  height: 34px;
  background: transparent !important;
  border: none !important;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff !important;
  opacity: 0.85;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.85));
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.video-fullscreen-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}
.video-fullscreen-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2.2;
}

/* Fullscreen Mode Display Styling */
:fullscreen.hero-image-wrap,
:-webkit-full-screen.hero-image-wrap,
:fullscreen.video-player-box,
:-webkit-full-screen.video-player-box,
.hero-image-wrap.is-fullscreen-fallback,
.video-player-box.is-fullscreen-fallback {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  border: none !important;
  background: #000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999999 !important;
  margin: 0 !important;
  padding: 0 !important;
}
:fullscreen.hero-image-wrap .hero-video,
:-webkit-full-screen.hero-image-wrap .hero-video,
:fullscreen.video-player-box video,
:-webkit-full-screen.video-player-box video,
.hero-image-wrap.is-fullscreen-fallback .hero-video,
.video-player-box.is-fullscreen-fallback video {
  width: 100% !important;
  height: 100% !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  object-fit: contain !important;
}
:fullscreen .video-fullscreen-btn,
:-webkit-full-screen .video-fullscreen-btn,
.hero-image-wrap.is-fullscreen-fallback .video-fullscreen-btn,
.video-player-box.is-fullscreen-fallback .video-fullscreen-btn {
  position: fixed !important;
  top: env(safe-area-inset-top, 20px) !important;
  right: env(safe-area-inset-right, 20px) !important;
  margin-top: 12px !important;
  margin-right: 12px !important;
  z-index: 99999999 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
}
:fullscreen .hero-audio-btn,
:-webkit-full-screen .hero-audio-btn,
.hero-image-wrap.is-fullscreen-fallback .hero-audio-btn,
.video-player-box.is-fullscreen-fallback .hero-audio-btn {
  position: fixed !important;
  bottom: env(safe-area-inset-bottom, 20px) !important;
  right: env(safe-area-inset-right, 20px) !important;
  margin-bottom: 12px !important;
  margin-right: 12px !important;
  z-index: 99999999 !important;
}
.video-player-box.is-fullscreen-fallback .video-custom-controls {
  position: fixed !important;
  bottom: calc(env(safe-area-inset-bottom, 16px) + 16px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(calc(100% - 32px), 640px) !important;
  z-index: 99999999 !important;
}
body.has-fullscreen-video {
  overflow: hidden !important;
}

/* Northpeak at a Glance (Contained Proof Strip) */
.proof-strip {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-item {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.25s var(--ease);
}
.proof-item:hover {
  background: var(--surface-2);
}
.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}
.proof-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.proof-item:hover .proof-icon {
  transform: translateY(-2px) scale(1.05);
  background: var(--ink);
  color: var(--bg);
}
[data-theme="dark"] .proof-item:hover .proof-icon {
  background: #ffffff;
  color: #0b0b0b;
}
.proof-icon svg {
  width: 20px;
  height: 20px;
}
.proof-content {
  display: flex;
  flex-direction: column;
}
.proof-content strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
}
.proof-content span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 3px;
}

.intro-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 70px; align-items: start; }
.intro-aside { position: sticky; top: 120px; }
.intro-main p { margin: 0 0 26px; max-width: 850px; font-size: clamp(26px, 3.1vw, 45px); line-height: 1.16; letter-spacing: -.04em; }
.intro-main p + p { color: var(--muted); }
.intro-main .text-link { margin-top: 14px; }

.service-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 0; }
.service-card {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: #c4c4be;
}
.service-card-media {
  height: 350px;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-media img {
  transform: scale(1.05);
}
.service-card-copy {
  padding: 34px 34px 38px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-copy .card-index {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-card-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 600;
  color: var(--black);
}
.service-card-copy p {
  margin: 14px 0 28px;
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-btn {
  align-self: flex-start;
  min-height: 48px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 650;
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none !important;
  transition: all .25s var(--ease);
}
.service-btn:hover,
.service-card:hover .service-btn {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: none !important;
}

/* ==========================================================================
   Northpeak Two Primary Divisions (Products & Staffing)
   ========================================================================== */
.divisions-section {
  padding: 50px 0 30px;
}
.divisions-header {
  margin-bottom: 40px;
  max-width: 780px;
}
.divisions-header .eyebrow {
  margin-bottom: 12px;
}
.divisions-header h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0 0 14px;
}
.divisions-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}
.division-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.division-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.03);
}
.division-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}
.division-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
.division-card:active {
  transform: translateY(-2px);
}
[data-theme="dark"] .division-card {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .division-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}
.division-media {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: var(--surface-2);
}
.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.division-card:hover .division-media img {
  transform: scale(1.05);
}
.division-media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.division-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.division-title {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--black);
  text-transform: uppercase;
}
.division-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  min-height: 48px;
}
.division-examples-block {
  margin: 0 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.division-examples-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.division-examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}
.division-example-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.division-example-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  opacity: 0.7;
}
[data-theme="dark"] .division-example-dot {
  background: #ffffff;
}
.division-footer {
  margin-top: auto;
  padding-top: 12px;
}
.division-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 16px 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.division-btn-dark {
  background: linear-gradient(180deg, #222222 0%, #0d0d0d 100%);
  color: #ffffff !important;
  border: 1px solid #0d0d0d;
}
.division-btn-dark:hover,
.division-card:hover .division-btn-dark {
  background: linear-gradient(180deg, #2e2e2e 0%, #161616 100%);
  border-color: #1a1a1a;
  transform: translateY(-2px);
}
[data-theme="dark"] .division-btn-dark {
  background: linear-gradient(180deg, #f0f0ed 0%, #ffffff 100%);
  color: #0b0b0b !important;
  border-color: #ffffff;
}
[data-theme="dark"] .division-btn-dark:hover,
[data-theme="dark"] .division-card:hover .division-btn-dark {
  background: #ffffff;
  color: #0b0b0b !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.division-card:active .division-btn-dark {
  transform: translateY(0) scale(0.98);
}
.division-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s var(--ease);
}
.division-card:hover .division-btn svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Clean Credibility Statement (Replacing Wordy Difference Section)
   ========================================================================== */
.credibility-section {
  padding: 20px 0 35px;
}
.credibility-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.credibility-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.credibility-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-btn);
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credibility-icon svg {
  width: 24px;
  height: 24px;
}
.credibility-heading-wrap {
  display: flex;
  flex-direction: column;
}
.credibility-badge {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.credibility-sub {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.credibility-divider {
  width: 1px;
  height: 54px;
  background: var(--line);
}
.credibility-statement {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(17px, 1.9vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.credibility-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

@media (max-width: 960px) {
  .division-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .division-media {
    height: 240px;
  }
  .division-body {
    padding: 28px 24px 32px;
  }
  .credibility-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }
  .credibility-divider {
    display: none;
  }
  .credibility-statement {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .division-examples-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.product-showcase { background: var(--black); color: var(--white); }
.product-showcase .eyebrow { color: #a0a09d; }
.product-showcase .eyebrow::before { background: var(--white); }
.showcase-head { display: grid; grid-template-columns: 1fr .5fr; gap: 50px; align-items: end; }
.showcase-head p { margin:0; color:#b7b7b3; max-width:500px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 58px; }
.product-tile { border:1px solid #2a2a28; border-radius:var(--radius); overflow:hidden; background:#131313; transition: border-color .2s, transform .25s var(--ease); }
.product-tile:hover { border-color:#585854; transform:translateY(-3px); }
.product-tile img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.product-tile:hover img {
  transform: scale(1.05);
}
.product-tile-copy { padding:18px; }
.product-tile-copy span { font-size:9px; letter-spacing:.13em; color:#868682; }
.product-tile-copy h3 { margin:9px 0 0; font-size:21px; font-weight:520; letter-spacing:-.025em; }
.showcase-footer { margin-top: 40px; display:flex; justify-content:space-between; gap:20px; align-items:center; }
.showcase-footer p { margin:0; color:#949490; max-width:640px; font-size:13px; }

.why-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:80px; }
.big-number { font-size:clamp(96px,15vw,220px); line-height:.78; letter-spacing:-.09em; font-weight:560; }
.big-number small { font-size:.22em; letter-spacing:-.04em; color:var(--muted); }
.why-copy { display:flex; flex-direction:column; justify-content:flex-end; }
.why-copy p { margin:25px 0 0; max-width:620px; color:var(--muted); font-size:17px; }
.reason-list { margin-top:70px; border-top:1px solid var(--line); }
.reason { display:grid; grid-template-columns:60px 1fr .65fr; gap:30px; padding:28px 0; border-bottom:1px solid var(--line); align-items:start; }
.reason > span { font-size:10px; color:var(--muted); letter-spacing:.1em; }
.reason h3 { margin:0; font-size:24px; letter-spacing:-.035em; font-weight:550; }
.reason p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; }

.industries-section { background: var(--surface); }
.industries-head { display:flex; align-items:end; justify-content:space-between; gap:40px; }
.industries-head p { max-width:480px; margin:0; color:var(--muted); }
.industry-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  border: 1px solid var(--line);
  background: var(--black);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}
.industry-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.industry-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.industry-card:hover .industry-card-bg img {
  transform: scale(1.06);
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.45) 0%, rgba(12, 12, 12, 0.92) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}
.industry-card:hover .industry-card-overlay {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.32) 0%, rgba(12, 12, 12, 0.86) 100%);
}
.industry-card-header,
.industry-card-content {
  position: relative;
  z-index: 3;
}
.industry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.industry-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.industry-card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.industry-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #ffffff;
}
.industry-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.process-grid { display:grid; grid-template-columns:.55fr 1fr; gap:80px; align-items:start; }
.process-list { border-top:1px solid var(--line); }
.process-step { display:grid; grid-template-columns:55px 1fr; gap:20px; padding:25px 0; border-bottom:1px solid var(--line); }
.process-step span { font-size:10px; color:var(--muted); }
.process-step h3 { margin:0 0 8px; font-size:22px; font-weight:550; letter-spacing:-.03em; }
.process-step p { margin:0; color:var(--muted); font-size:13px; }

.cta-band { padding: 30px 0 60px; }
.cta-card {
  background: var(--black); color: var(--white); border-radius: var(--radius-lg); padding: clamp(34px,6vw,76px);
  display:grid; grid-template-columns:1fr .45fr; gap:50px; align-items:end;
}
.cta-card h2 { margin:0; font-size:clamp(42px,5.6vw,76px); line-height:.98; letter-spacing:-.055em; font-weight:550; }
.cta-card p { color:#b1b1ad; margin:0 0 25px; }

/* Subpages */
.page-hero { padding: calc(var(--header-h) + 64px) 0 82px; border-bottom: 1px solid var(--line); }
.page-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.page-hero-grid .breadcrumbs {
  margin-bottom: 2px;
}
.page-hero h1 {
  margin: 14px 0 0;
  max-width: 1050px;
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 550;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--muted);
  font-weight: 550;
}
.page-hero .lede {
  margin-top: 22px;
  max-width: 780px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--ink-2);
}
.breadcrumbs {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.breadcrumbs a {
  color: var(--muted);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--black);
}
[data-theme="dark"] .breadcrumbs a:hover {
  color: #ffffff;
}

.feature-image { margin-top:50px; height:min(62vw,680px); max-height:680px; border-radius:var(--radius-lg); overflow:hidden; background:var(--surface-3); }
.feature-image img { width:100%; height:100%; object-fit:cover; filter:grayscale(0%); }

.content-grid { display:grid; grid-template-columns:.38fr 1fr; gap:80px; align-items:start; }
.content-side { position:sticky; top:110px; }
.content-side p { color:var(--muted); max-width:280px; font-size:13px; }
.content-main > p:first-child { margin-top:0; font-size:clamp(28px,3.2vw,46px); line-height:1.16; letter-spacing:-.04em; }
.content-main p { color:var(--ink-2); max-width:840px; line-height:1.8; }
.content-main h2 { margin:65px 0 18px; font-size:clamp(30px,3.8vw,52px); line-height:1.05; letter-spacing:-.045em; font-weight:550; }
.content-main h3 { margin:40px 0 12px; font-size:24px; letter-spacing:-.03em; font-weight:550; }
.content-main ul { margin:18px 0 0; padding:0; list-style:none; max-width:760px; }
.content-main li { padding:14px 0 14px 22px; border-bottom:1px solid var(--line); position:relative; }
.content-main li::before { content:""; position:absolute; left:0; top:22px; width:6px; height:6px; border-radius:50%; background:var(--black); }
.note-box { margin-top:34px; padding:22px; border:1px solid var(--line); border-radius:18px; background:var(--surface); color:var(--ink-2); }

.category-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:55px; }
.category-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.category-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: none; }
.category-card img { height:260px; width:100%; object-fit:cover; transition: transform .65s var(--ease); }
.category-card:hover img { transform: scale(1.04); }
.category-card-copy { padding:22px; }
.category-card-copy span { font-size:9px; letter-spacing:.13em; color:var(--muted); }
.category-card h3 { margin:10px 0 8px; font-size:26px; font-weight:540; letter-spacing:-.035em; }
.category-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.7; }

.two-col-cards { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:36px; }
.site-shell > .two-col-cards:first-child,
.section-sm .two-col-cards { margin-top: 0; }
.info-card { min-height:310px; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); display:flex; flex-direction:column; }
.info-card span { font-size:9px; color:var(--muted); letter-spacing:.14em; text-transform:uppercase; }
.info-card h3 { margin:45px 0 12px; font-size:34px; line-height:1; letter-spacing:-.04em; font-weight:540; }
.info-card p { margin:0; color:var(--muted); max-width:520px; }
.info-card .text-link { margin-top:auto; align-self:flex-start; }

/* Clean, Non-Boxy Experience & Difference Feature Grid */
.section.difference-section,
.section.difference-section:has(+ .section-sm) {
  padding-bottom: 110px;
}
.difference-section + .section-sm {
  padding-top: 50px;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.difference-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.difference-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background: var(--surface-2);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.difference-item:hover .difference-icon {
  transform: translateY(-2px);
  background: var(--black);
  color: var(--white);
}
[data-theme="dark"] .difference-item:hover .difference-icon {
  background: #ffffff;
  color: #0b0b0b;
}
.difference-icon svg {
  width: 22px;
  height: 22px;
}
.difference-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.difference-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1.25;
  color: var(--ink);
}
.difference-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:36px; }
.value-card {
  min-height:280px; padding:30px 28px; border:1px solid var(--line); border-radius:var(--radius);
  display:flex; flex-direction:column; justify-content:space-between; background:var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: none;
}
.value-card span { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.15em; color:var(--muted); }
.value-card h3 { margin:0; font-size:26px; font-weight:550; letter-spacing:-.035em; line-height: 1.15; }
.value-card p { margin:14px 0 0; color:var(--muted); font-size:14px; line-height: 1.55; }

.stats-row { display:grid; grid-template-columns:repeat(3,1fr); margin-top:55px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stat { padding:26px; }
.stat + .stat { border-left:1px solid var(--line); }
.stat strong { display:block; font-size:clamp(40px,5vw,70px); letter-spacing:-.06em; line-height:1; font-weight:560; }
.stat span { display:block; margin-top:9px; font-size:9px; text-transform:uppercase; letter-spacing:.13em; color:var(--muted); }

.faq-section { background: var(--bg); }
.faq-list { margin-top:45px; border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary { list-style:none; cursor:pointer; padding:24px 44px 24px 0; font-size:20px; letter-spacing:-.025em; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:0; top:22px; color:var(--muted); font-size:24px; font-weight:400; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { margin:0; padding:0 50px 25px 0; color:var(--muted); max-width:800px; }

/* Contact Layout (Clean, Non-Box System) */
.contact-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:72px; align-items:start; }
.contact-panel { border:none; background:transparent; padding:0; position:sticky; top:110px; }
.contact-panel h2 { margin:0; font-size:34px; line-height:1; letter-spacing:-.04em; font-weight:550; }
.contact-panel p { margin:17px 0 32px; color:var(--muted); }
.contact-detail { padding:17px 0; border-top:1px solid var(--line); }
.contact-detail span { display:block; font-size:9px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); }
.contact-detail strong { display:block; margin-top:6px; font-size:14px; font-weight:550; }
.contact-form { background:transparent; border:none; border-radius:0; padding:0; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 24px; }
.contact-form label { display:flex; flex-direction:column; gap:8px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); }
.contact-form .full { grid-column:1 / -1; }
.contact-form input,.contact-form select,.contact-form textarea {
  width:100%; background:transparent; color:var(--ink); border:0; border-bottom:1px solid var(--line);
  padding:12px 0 16px; margin-bottom:26px; outline:none; border-radius:0; text-transform:none; letter-spacing:0; font-size:15px;
  font-family: inherit;
  transition: border-color .25s var(--ease);
}
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--surface); color: var(--ink); }
.contact-form textarea { resize:vertical; min-height:120px; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color:var(--ink); }
.form-recaptcha-wrap {
  margin: 10px 0 20px;
  display: flex;
  align-items: flex-start;
  min-height: 78px;
}
.form-recaptcha-wrap .g-recaptcha {
  display: inline-block;
}
@media (max-width: 480px) {
  .form-recaptcha-wrap {
    transform: scale(0.9);
    transform-origin: 0 0;
    margin-bottom: 6px;
  }
}
.form-actions { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:8px; }
.form-status { margin:0; font-size:12.5px; color:var(--muted); max-width:380px; text-align:right; line-height:1.45; transition: color .2s var(--ease); }
.form-status.is-success { color: #1e7e34; font-weight: 600; }
.form-status.is-error { color: #d32f2f; font-weight: 600; }
[data-theme="dark"] .form-status.is-success { color: #4ade80; }
[data-theme="dark"] .form-status.is-error { color: #f87171; }

/* Visually Hidden Utility for Screen Readers & Form Serialization */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Custom Luxury Select Dropdown Component */
.custom-select-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 1 / -1;
  margin-bottom: 26px;
}
.custom-select-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
  user-select: none;
  transition: border-color 0.25s var(--ease);
}
.custom-select-wrap.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-bottom-color: var(--ink);
  outline: none;
}
.custom-select-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.custom-select-value.is-placeholder {
  color: var(--muted);
}
.custom-select-arrow {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  flex-shrink: 0;
}
.custom-select-wrap.is-open .custom-select-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.custom-select-wrap.is-open .custom-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
.custom-select-option {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s var(--ease), color 0.15s;
}
.custom-select-option:hover {
  background: var(--surface-2);
  color: var(--black);
}
.custom-select-option.is-selected {
  background: var(--surface-2);
  font-weight: 650;
  color: var(--black);
}
.custom-select-option.is-selected::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

/* Dark Mode Overrides */
[data-theme="dark"] .custom-select-dropdown {
  background: rgba(22, 22, 22, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}
[data-theme="dark"] .custom-select-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
[data-theme="dark"] .custom-select-option.is-selected {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
[data-theme="dark"] .custom-select-option.is-selected::after {
  background: #ffffff;
}

/* Home Page Bottom Contact Section (Non-Box Editorial Spread) */
#contact.section {
  padding-top: 32px;
}
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.home-contact-info {
  display: flex;
  flex-direction: column;
}
.home-contact-info .section-title {
  margin: 10px 0 16px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.home-contact-info p {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}
.contact-quick-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quick-point {
  display: flex;
  align-items: center;
  gap: 16px;
}
.point-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.point-icon svg {
  width: 18px;
  height: 18px;
}
.quick-point strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.quick-point p {
  margin: 3px 0 0 !important;
  font-size: 14px !important;
  font-weight: 550;
  color: var(--ink) !important;
}
.quick-point a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity .2s;
}
.quick-point a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Directions Action Button */
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none !important;
  padding: 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  box-shadow: none !important;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s;
  width: fit-content;
}
.directions-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  text-decoration: none !important;
}
.directions-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.directions-btn:hover svg {
  transform: scale(1.12);
}

/* ==========================================================================
   Leadership Video Showcase (Enclosed Card with Curved Border)
   ========================================================================== */
.leadership-section {
  padding: 60px 0 32px;
}
.leadership-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03) !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
[data-theme="dark"] .leadership-card {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.leadership-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.video-player-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.video-thumbnail-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s var(--ease);
}
.video-main-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.video-play-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.video-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s;
}
.video-play-circle svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  flex-shrink: 0;
}
.video-play-circle .icon-play {
  margin-left: 3px;
}
.video-play-trigger:hover .video-play-circle {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Active State: Playing Full Video */
.video-player-box.is-playing .video-thumbnail-loop {
  opacity: 0;
  pointer-events: none;
}
.video-player-box.is-playing .video-main-player {
  opacity: 1;
  pointer-events: auto;
}
.video-player-box.is-playing .video-play-trigger {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Custom Video Controls Bar */
.video-custom-controls {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-btn);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.video-player-box.is-playing .video-custom-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.video-player-box.is-playing.is-idle .video-custom-controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.vctrl-btn {
  background: transparent !important;
  border: none !important;
  outline: none;
  color: #ffffff !important;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
  transition: transform 0.15s ease, opacity 0.2s;
  box-shadow: none !important;
}
.vctrl-btn:hover {
  transform: scale(1.12);
  opacity: 1;
}
.vctrl-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.vctrl-play-pause svg {
  fill: currentColor;
}
.vctrl-mute svg {
  stroke: currentColor;
}
.vctrl-progress-wrap {
  flex: 1;
  height: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vctrl-progress-bar-bg {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  position: relative;
  transition: height 0.15s ease;
}
.vctrl-progress-wrap:hover .vctrl-progress-bar-bg {
  height: 6px;
}
.vctrl-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.08s linear;
}
.vctrl-time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Leadership Copy & Context (Light by default on Light Theme) */
.leadership-card .eyebrow {
  color: var(--muted);
}
.leadership-card .eyebrow::before {
  background: var(--black);
}
.leadership-heading {
  margin: 18px 0 32px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 550;
  color: var(--ink);
}
.leadership-heading .text-muted {
  color: var(--muted);
  font-weight: 550;
}
.leadership-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-bottom: 28px;
}
.leadership-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink-2);
  letter-spacing: -0.015em;
}
.leadership-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.leadership-point-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.leadership-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.author-avatar-img-wrap {
  width: auto;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
  flex-shrink: 0;
  box-shadow: none !important;
}
.author-avatar-img-wrap img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}
.author-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
}
.author-meta span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.leadership-card .video-player-box {
  background: var(--surface-2);
  border-color: var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Dark Theme Overrides for Leadership Card */
[data-theme="dark"] .leadership-card .eyebrow {
  color: #9c9c96;
}
[data-theme="dark"] .leadership-card .eyebrow::before {
  background: #ffffff;
}
[data-theme="dark"] .leadership-heading {
  color: #ffffff;
}
[data-theme="dark"] .leadership-heading .text-muted {
  color: #8e8e88;
  font-weight: 550;
}
[data-theme="dark"] .leadership-point {
  color: #c8c8c2;
}
[data-theme="dark"] .leadership-point-icon {
  color: #ffffff;
}
[data-theme="dark"] .leadership-author-row {
  border-top-color: #262626;
}
[data-theme="dark"] .author-avatar-img-wrap {
  border-color: #2e2e2e;
  background: transparent;
  box-shadow: none !important;
}
[data-theme="dark"] .author-meta strong {
  color: #ffffff;
}
[data-theme="dark"] .author-meta span {
  color: #8e8e89;
}
[data-theme="dark"] .leadership-card .video-player-box {
  background: #181818;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

@media (max-width: 960px) {
  .leadership-card {
    padding: 36px 22px;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-player-box {
    max-width: 380px;
    height: 500px;
  }
}

/* ==========================================================================
   Hospitality Partners Rolling Showcase (Places We've Worked)
   ========================================================================== */
.partners-section {
  padding: 76px 0 96px;
  overflow: hidden;
}
.partners-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}
.partners-head-copy {
  max-width: 680px;
}
.partners-head-copy .section-title {
  margin: 10px 0 12px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.partners-head-copy p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.partners-head-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.partners-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.partner-arrow-btn:hover {
  transform: scale(1.08);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.partner-arrow-btn:active {
  transform: scale(0.95);
}
.partner-arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  display: block;
}
.partners-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.partners-badge-count {
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}
.partners-badge-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}

.partners-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.partners-marquee-wrapper.is-dragging,
.partners-marquee-wrapper.is-dragging * {
  cursor: grabbing !important;
  user-select: none !important;
}

.partners-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.partner-card {
  width: 248px;
  height: 194px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.partner-card-media {
  width: 100%;
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.partner-card:hover .partner-card-media {
  transform: scale(1.03);
}

.partner-card-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto;
}

.partner-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.partner-name {
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.25;
  transition: color 0.2s;
}

.partner-card:hover .partner-name {
  color: var(--black);
}

.partner-meta {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}

.partner-link-icon {
  display: inline-block;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.2s, transform 0.2s;
}

.partner-card:hover .partner-link-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Dark Theme Partner Card Styling */
[data-theme="dark"] .partner-card {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .partner-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .partner-card-media {
  background: #ffffff;
}

[data-theme="dark"] .partner-name {
  color: #f5f5f2;
}

[data-theme="dark"] .partner-meta {
  color: #94948e;
}

[data-theme="dark"] .partner-arrow-btn {
  background: #181818;
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

[data-theme="dark"] .partner-arrow-btn:hover {
  background: #ffffff;
  color: #0b0b0a;
  border-color: #ffffff;
}

[data-theme="dark"] .partners-badge {
  background: #181818;
  border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .partners-badge-count {
  color: #ffffff;
}
[data-theme="dark"] .partners-badge-label {
  color: #94948e;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 52px 0 68px;
  }
  .partners-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }
  .partners-head-copy .section-title {
    font-size: clamp(28px, 6.5vw, 36px);
    margin: 8px 0 10px;
    line-height: 1.15;
  }
  .partners-head-copy p {
    font-size: 14.5px;
    line-height: 1.55;
  }
  .partners-head-actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 2px;
  }
  .partners-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
    background: var(--surface-2);
    border: 1px solid var(--line);
    padding: 6px 14px;
    border-radius: 999px;
  }
  .partners-badge-count {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
  }
  .partners-badge-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0;
  }
  .partners-marquee-wrapper {
    margin-inline: -18px;
    width: calc(100% + 36px);
    padding: 8px 18px 20px;
    mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2.5%, black 93%, transparent 100%);
  }
  .partners-marquee-track {
    gap: 14px;
  }
  .partner-card {
    width: 200px;
    height: 172px;
    padding: 12px 12px 10px;
    flex-shrink: 0;
  }
  .partner-card-media {
    height: 98px;
    padding: 8px 12px;
  }
  .partner-name {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .partner-meta {
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .partner-card {
    width: 190px;
    height: 168px;
  }
  .partner-card-media {
    height: 94px;
  }
}


/* Legal */
.legal-wrap { width:min(calc(100% - 48px), 900px); margin:0 auto; }
.legal-body { padding:70px 0 120px; }
.legal-body h2 { margin:52px 0 12px; font-size:30px; letter-spacing:-.04em; font-weight:550; }
.legal-body h3 { margin:35px 0 10px; font-size:20px; font-weight:550; }
.legal-body p,.legal-body li { color:var(--ink-2); line-height:1.8; }
.legal-body ul { padding-left:20px; }
.legal-updated { color:var(--muted); font-size:12px; }

/* Footer (Contained / Not Full Width) */
.footer {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px 48px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
}
.footer .site-shell {
  width: 100%;
  padding: 0;
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}
.footer-brand-mark { display: none !important; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-brand-name, .footer-brand-text > strong {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
}
.footer-brand-sub, .footer-brand small {
  display: block;
  margin-top: 8px;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-intro {
  max-width: 440px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
}
.footer-nav { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin:70px 0 55px auto; width:min(760px,100%); }
.footer-nav > div { display:flex; flex-direction:column; align-items:flex-start; gap:9px; }
.footer-nav span { font-size:9px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); margin-bottom:7px; }
.footer-nav a,.footer-nav p { margin:0; font-size:12px; color:var(--ink-2); }
.footer-nav a:hover { text-decoration:underline; text-underline-offset:4px; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-developer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: -0.01em;
  transition: opacity 0.2s var(--ease);
}
.footer-developer:hover {
  opacity: 0.75;
}
.footer-developer .developer-logo {
  height: 14px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-developer .logo-dark-mode {
  display: none;
}
.footer-developer .logo-light-mode {
  display: block;
}
[data-theme="dark"] .footer-developer .logo-dark-mode {
  display: block;
}
[data-theme="dark"] .footer-developer .logo-light-mode {
  display: none;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-btn);
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.2s var(--ease);
}
.footer-social-link:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.footer-social-link svg {
  width: 15px;
  height: 15px;
}
.footer-legal {
  display: flex;
  gap: 16px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-scroll-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  flex-shrink: 0;
}
.footer-scroll-top-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.footer-scroll-top-btn:active {
  transform: translateY(0) scale(0.94);
}
.footer-scroll-top-btn svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.2s var(--ease);
}
.footer-scroll-top-btn:hover svg {
  transform: translateY(-1px);
}
[data-theme="dark"] .footer-scroll-top-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f5f2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .footer-scroll-top-btn:hover {
  background: #ffffff;
  color: #0c0c0c;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

/* Progressive Bottom Blur Effect (Light & Dark Theme with Smooth Fade Out) */
.bottom-blur-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 95px;
  pointer-events: none;
  z-index: 85;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  will-change: opacity, transform;
}
.bottom-blur-dock.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(28px) !important;
  pointer-events: none !important;
}
.bottom-blur-dock::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,1) 100%);
}
.bottom-blur-dock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0) 0%, rgba(var(--bg-rgb), 0.3) 40%, rgba(var(--bg-rgb), 0.85) 100%);
}



/* ==========================================================================
   Motion & Animation System
   ========================================================================== */

/* Keyframe Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(18px);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
    filter: blur(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.55;
  }
}

/* Eyebrow Live Pulse */
.eyebrow::before {
  animation: pulseDot 2.6s ease-in-out infinite;
}

/* Header Entrance */
.site-header {
  animation: headerDrop 0.75s var(--ease) forwards;
}

/* Hero Staggered Cascade with Optical Blur-In */
.hero-animate-1 {
  opacity: 0;
  filter: blur(12px);
  animation: heroFadeUp 0.9s var(--ease) 0.05s forwards;
}
.hero-animate-2 {
  opacity: 0;
  filter: blur(10px);
  animation: heroFadeUp 0.9s var(--ease) 0.18s forwards;
}
.hero-animate-3 {
  opacity: 0;
  filter: blur(8px);
  animation: heroFadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero-animate-4 {
  opacity: 0;
  filter: blur(8px);
  animation: heroFadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero-animate-media {
  opacity: 0;
  filter: blur(14px);
  animation: heroScaleIn 1.1s var(--ease) 0.2s forwards;
}

/* Scroll-Driven Optical Blur Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(12px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered Delay Utilities */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

/* Interactive Hover Micro-Animations */
.service-card {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
}
.service-card-media img {
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.process-step {
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover {
  transform: translateX(4px);
  border-color: var(--ink);
}

@media (max-width: 1100px) {
  .site-shell { width:min(calc(100% - 36px), var(--shell)); }
  .desktop-nav { display:none; }
  .menu-toggle { display:flex; }
  .hero-grid { gap:28px; }
  .hero-image-wrap { height: 530px; width: 100%; }
  .product-grid,.category-grid,.industry-grid { grid-template-columns:repeat(2,1fr); }
  .reason { grid-template-columns:55px 1fr .8fr; }
  .content-grid { grid-template-columns:.3fr 1fr; gap:50px; }
}

@media (max-width: 820px) {
  :root { --header-h:70px; --radius:16px; --radius-lg:16px; --radius-btn:10px; }
  .site-shell,.legal-wrap { width:calc(100% - 36px); }
  .site-header { height: 60px; top: 10px; width: calc(100% - 36px); max-width: calc(100% - 36px); }
  .site-header .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }
  .site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }
  .header-call-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-logo { height: 26px; max-width: 175px; }
  .footer-brand-logo { height: 36px; max-width: 240px; }
  .brand-copy strong, .brand-name { font-size: 13.5px; letter-spacing: .08em; white-space: nowrap; }
  .brand-copy small, .brand-sub { font-size: 6.8px; letter-spacing: .2em; white-space: nowrap; }
  .mobile-menu { top: 78px; width: calc(100% - 36px); }
  .proof-strip { width: calc(100% - 36px); margin: 0 auto; border-radius: var(--radius); }
  .footer { width: calc(100% - 36px); margin: 0 auto 24px; padding: 40px 24px 24px; border-radius: var(--radius); }
  .header-cta { display:none; }

  /* Mobile Single Theme Toggle Button (Compact 40x40 Moon & Sun Icon) */
  .theme-switcher {
    position: relative;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    gap: 0 !important;
    background: var(--surface-2);
    border: 1px solid var(--line);
    cursor: pointer;
    box-shadow: none !important;
    overflow: hidden;
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s ease;
  }
  .theme-switcher:hover {
    background: var(--surface);
    border-color: var(--ink);
  }
  .theme-switcher:active {
    transform: scale(0.92);
  }
  [data-theme="dark"] .theme-switcher {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
  }
  [data-theme="dark"] .theme-switcher:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
  }
  .theme-switcher .theme-btn[data-mode="system"] {
    display: none !important;
  }
  .theme-switcher .theme-btn {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 9px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--ink) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none;
  }
  [data-theme="dark"] .theme-switcher .theme-btn {
    color: #ffffff !important;
  }
  .theme-switcher .theme-btn svg {
    width: 17px !important;
    height: 17px !important;
    transition: transform .2s var(--ease);
  }
  :root:not([data-theme="dark"]) .theme-switcher .theme-btn[data-mode="light"],
  [data-theme="light"] .theme-switcher .theme-btn[data-mode="light"] {
    display: flex !important;
  }
  :root:not([data-theme="dark"]) .theme-switcher .theme-btn[data-mode="dark"],
  [data-theme="light"] .theme-switcher .theme-btn[data-mode="dark"] {
    display: none !important;
  }
  [data-theme="dark"] .theme-switcher .theme-btn[data-mode="dark"] {
    display: flex !important;
  }
  [data-theme="dark"] .theme-switcher .theme-btn[data-mode="light"] {
    display: none !important;
  }
  .section { padding:84px 0; }
  .section-sm { padding:58px 0; }
  .hero { padding-top:calc(var(--header-h) + 30px); min-height:0; }
  .hero-grid { grid-template-columns:1fr; gap: 28px; }
  .hero-copy { padding:8px 0 0; }
  .hero h1 {
    font-size: clamp(36px, 8.8vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.035em;
  }
  .hero h1 span + span {
    margin-top: 5px;
  }
  .hero h1 .text-gray {
    margin-top: 10px;
  }
  .hero .lede {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 22px;
  }
  .hero-image-wrap { min-height:0; height: clamp(360px, 75vw, 460px); width: 100%; max-width: 520px; margin: 20px auto 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { padding: 18px 20px; min-height: auto; gap: 16px; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line); }
  .intro-grid,.showcase-head,.why-grid,.process-grid,.content-grid,.contact-layout,.footer-top,.cta-card { grid-template-columns:1fr; gap:36px; }
  .intro-aside,.content-side,.contact-panel { position:static; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .service-split { grid-template-columns:1fr; gap: 20px; }
  .service-card { min-height:0; }
  .service-card-media { height: 260px; }
  .service-card-copy { padding: 26px 22px 30px; }
  .product-grid,.category-grid,.values-grid { grid-template-columns:1fr 1fr; }
  .difference-grid { grid-template-columns:1fr; gap: 32px; margin-top: 32px; padding-top: 28px; }
  .section.difference-section,
  .section.difference-section:has(+ .section-sm) { padding-bottom: 75px; }
  .difference-section + .section-sm { padding-top: 45px; }
  .home-contact-grid { grid-template-columns:1fr; gap: 40px; }
  .reason { grid-template-columns:45px 1fr; }
  .reason p { grid-column:2; }
  .industries-head { display:block; }
  .industries-head p { margin-top:22px; }
  .industry-grid { grid-template-columns:1fr 1fr; }
  .two-col-cards { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:1fr; }
  .stat + .stat { border-left:0; border-top:1px solid var(--line); }
  .page-hero { padding-top:calc(var(--header-h) + 45px); }
  .page-hero h1 { font-size:clamp(52px,13vw,84px); }
  .feature-image { height:min(75vw,540px); }
  .footer-nav { margin-left:0; grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 560px) {
  :root { --radius: 14px; --radius-lg: 14px; }
  .site-shell,.legal-wrap { width:calc(100% - 36px); }
  .site-header { width: calc(100% - 36px); max-width: calc(100% - 36px); height: 56px; top: 8px; }
  .site-header .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }
  .site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }
  .mobile-menu { width: calc(100% - 36px); top: 70px; padding: 18px 16px; }
  .proof-strip { width: calc(100% - 36px); margin: 0 auto; border-radius: var(--radius); }
  .footer { width: calc(100% - 36px); margin: 0 auto 20px; padding: 32px 18px 18px; border-radius: var(--radius); }
  
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-logo { height: 22px; max-width: 145px; }
  .footer-brand-logo { height: 32px; max-width: 210px; }
  .brand-copy { white-space: nowrap; }
  .brand-copy strong { font-size: 12.5px; letter-spacing: .06em; white-space: nowrap; }
  .brand-copy small { font-size: 6.2px; letter-spacing: .14em; margin-top: 2px; white-space: nowrap; }
  
  .menu-toggle,
  .header-call-btn,
  .theme-switcher {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }
  .menu-toggle svg {
    width: 18px !important;
    height: 18px !important;
  }
  .header-call-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
  .section { padding:68px 0; }
  .section-sm { padding:48px 0; }
  .section.difference-section,
  .section.difference-section:has(+ .section-sm) { padding-bottom: 56px; }
  .difference-section + .section-sm { padding-top: 36px; }
  
  .section-title { font-size: clamp(30px, 8.2vw, 42px); line-height: 1.05; letter-spacing: -0.045em; }
  .section-title.small { font-size: clamp(24px, 6.5vw, 32px); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
  .section-head p { font-size: 14.5px; line-height: 1.6; }
  
  .hero { padding-top: calc(var(--header-h) + 24px); min-height: 0; }
  .hero h1 {
    font-size: clamp(32px, 8.4vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1.16;
  }
  .hero h1 span + span {
    margin-top: 5px;
  }
  .hero h1 .text-gray {
    margin-top: 10px;
  }
  .hero .lede { font-size: 15.5px; line-height: 1.62; margin-top: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 24px; }
  .button { width: 100%; min-height: 46px; font-size: 13px; }
  .hero-image-wrap { height: 340px; max-width: 100%; margin: 16px auto 0; border-radius: var(--radius); }
  
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { padding: 16px 18px; min-height: auto; gap: 14px; }
  
  .difference-grid { grid-template-columns: 1fr; gap: 26px; margin-top: 26px; padding-top: 22px; }
  .difference-item h3 { font-size: 18.5px; margin-bottom: 6px; }
  .difference-item p { font-size: 13.5px; line-height: 1.55; }
  
  .service-split { grid-template-columns: 1fr; gap: 16px; }
  .service-card { min-height: 0; border-radius: var(--radius); }
  .service-card-media { height: 230px; }
  .service-card-copy { padding: 22px 18px 24px; }
  .service-card-copy h3 { font-size: 23px; margin: 8px 0 10px; }
  .service-card-copy p { font-size: 13.5px; line-height: 1.6; }
  
  .leadership-card { padding: 30px 20px; border-radius: var(--radius); }
  .leadership-grid { grid-template-columns: 1fr; gap: 28px; }
  .video-player-box { height: clamp(340px, 80vw, 420px); max-width: 100%; border-radius: var(--radius-sm); }
  .leadership-heading {
    font-size: clamp(33px, 8.8vw, 46px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    margin: 16px 0 24px;
  }
  .leadership-heading .text-muted {
    display: inline;
    margin: 0;
  }
  .leadership-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
  }
  .leadership-point {
    font-size: 14.5px;
    gap: 10px;
  }
  
  .product-grid, .category-grid, .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-tile, .category-card, .value-card, .info-card { border-radius: var(--radius); padding: 24px 18px; min-height: auto; }
  .product-tile img, .category-card img { height: 240px; }
  
  .showcase-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .big-number { font-size: 90px; }
  .industry-grid { grid-template-columns: 1fr; gap: 18px; }
  .industry-card { min-height: 260px; padding: 22px 18px; border-radius: var(--radius); }
  
  .page-hero { padding: calc(var(--header-h) + 28px) 0 44px; }
  .page-hero h1 { font-size: clamp(36px, 9.5vw, 52px); }
  .page-hero .lede { font-size: 15.5px; margin-top: 14px; }
  .feature-image { height: 75vw; max-height: 380px; margin-top: 26px; border-radius: var(--radius); }
  
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-main > p:first-child { font-size: clamp(22px, 5.5vw, 32px); }
  .content-main h2 { margin: 36px 0 14px; font-size: clamp(24px, 6vw, 34px); }
  
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-panel { padding: 24px 18px; border-radius: var(--radius); }
  .contact-form { padding: 22px 16px; border-radius: var(--radius); }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-form .full { grid-column: auto; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .form-status { text-align: left; }
  
  .cta-card { padding: 32px 18px; border-radius: var(--radius); }
  .cta-card h2 { font-size: clamp(26px, 7vw, 36px); }
  
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 28px; padding-top: 18px; }
  .footer-bottom-left { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-right { width: 100%; justify-content: space-between; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .legal-body { padding: 40px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { scroll-behavior:auto !important; transition-duration:.001ms !important; animation-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; filter:none !important; }
  .hero-animate-1, .hero-animate-2, .hero-animate-3, .hero-animate-4, .hero-animate-media { opacity:1 !important; transform:none !important; filter:none !important; animation:none !important; }
}

/* ==========================================================================
   Dark Theme Component Rules
   ========================================================================== */
[data-theme="dark"] .site-header {
  background: rgba(16, 16, 16, 0.70);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: none;
}
[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
[data-theme="dark"] .mobile-menu {
  background: rgba(20, 20, 20, 0.98);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
[data-theme="dark"] .button-dark {
  background: linear-gradient(180deg, #ffffff 0%, #e2e2de 100%);
  color: #0b0b0a;
  border-color: #ffffff;
  box-shadow: none !important;
}
[data-theme="dark"] .button-dark:hover {
  background: linear-gradient(180deg, #f5f5f2 0%, #d5d5d0 100%);
  box-shadow: none !important;
}
[data-theme="dark"] .button-light {
  background: linear-gradient(180deg, #242424 0%, #171717 100%);
  color: #f5f5f2;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none !important;
}
[data-theme="dark"] .button-light:hover {
  background: linear-gradient(180deg, #2c2c2c 0%, #1e1e1e 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none !important;
}
[data-theme="dark"] .button-white {
  background: linear-gradient(180deg, #ffffff 0%, #e0e0dc 100%);
  color: #0b0b0a;
  border-color: #ffffff;
  box-shadow: none !important;
}
[data-theme="dark"] .button-white:hover {
  background: linear-gradient(180deg, #f0f0ed 0%, #d4d4d0 100%);
  box-shadow: none !important;
}
[data-theme="dark"] .hero-image-wrap {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .product-showcase {
  background: #080808;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .product-tile {
  background: #141414;
  border-color: #242422;
}
[data-theme="dark"] .product-tile:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
[data-theme="dark"] .cta-card {
  background: #161616;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .cta-card h2 {
  color: #ffffff;
}
[data-theme="dark"] .cta-card p {
  color: var(--muted);
}
[data-theme="dark"] .industry-card {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .industry-card:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.25);
}
[data-theme="dark"] .contact-panel {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
[data-theme="dark"] .contact-detail {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: transparent !important;
  color: var(--ink);
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
}
[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form select:focus,
[data-theme="dark"] .contact-form textarea:focus {
  border-bottom-color: #ffffff !important;
}
[data-theme="dark"] .custom-select-trigger {
  border-bottom-color: rgba(255, 255, 255, 0.22) !important;
}
[data-theme="dark"] .custom-select-wrap.is-open .custom-select-trigger,
[data-theme="dark"] .custom-select-trigger:focus-visible {
  border-bottom-color: #ffffff !important;
}
[data-theme="dark"] .custom-select-dropdown {
  background: #181818 !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6) !important;
}
[data-theme="dark"] .custom-select-option:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}
[data-theme="dark"] .directions-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f5f2;
}
[data-theme="dark"] .directions-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0b0b0a;
}
[data-theme="dark"] .note-box,
[data-theme="dark"] .value-card,
[data-theme="dark"] .info-card {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .footer,
[data-theme="dark"] .proof-strip {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   Curated Product Collections Showcase (Beverageware, Dinnerware, Flatware)
   ========================================================================== */
.product-showcase-section {
  padding: 80px 0 90px;
  border-top: 1px solid var(--line);
}
.product-showcase-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.product-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.product-nav-pill:hover {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--black);
  transform: translateY(-1px);
}
.product-showcase-group {
  margin-bottom: 76px;
  scroll-margin-top: 110px;
}
.product-showcase-group:last-child {
  margin-bottom: 0;
}
.product-showcase-head {
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.product-showcase-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.15;
}
.product-showcase-head p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 680px;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}
.collection-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.collection-card-media {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.collection-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s var(--ease);
}
.collection-card:hover .collection-card-media img {
  transform: scale(1.06);
}
.collection-card-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.collection-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
.collection-card-action {
  display: none !important;
}

/* Progressive Disclosure (1 Row Initially + Load More) */
.product-showcase-group:not(.is-expanded) .collection-card-extra {
  display: none !important;
}
.product-showcase-group.is-expanded .collection-card-extra {
  display: flex !important;
  animation: cardFadeIn 0.35s var(--ease) forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-showcase-more-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.product-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s var(--ease);
}
.product-load-more-btn:hover {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.product-load-more-btn:active {
  transform: translateY(0);
}

/* Dark Theme Collection Card */
[data-theme="dark"] .collection-card {
  background: #141414;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .collection-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}
[data-theme="dark"] .collection-card-media {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .collection-card-title {
  color: #ffffff;
}
[data-theme="dark"] .product-load-more-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f2f2ee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .product-load-more-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
[data-theme="dark"] .product-nav-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
[data-theme="dark"] .product-nav-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .collection-card-media {
    height: 190px;
  }
  .product-showcase-section {
    padding: 60px 0 70px;
  }
}

@media (max-width: 560px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .collection-card {
    padding: 18px 16px 16px;
  }
  .collection-card-media {
    height: 200px;
  }
  .product-showcase-section {
    padding: 50px 0 60px;
  }
  .product-showcase-group {
    margin-bottom: 56px;
  }
}

/* ==========================================================================
   Suppliers / Supplier Network Section
   ========================================================================== */
.suppliers-section {
  padding: 80px 0 100px;
  border-top: 1px solid var(--line);
}
.suppliers-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.suppliers-head .eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.suppliers-head .section-title {
  margin: 0 auto 12px;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.suppliers-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}
.supplier-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e7e7e5;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.supplier-card:hover {
  transform: translateY(-4px);
  border-color: #bbbbba;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.supplier-card:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.supplier-card img {
  max-width: 86%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(102%);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
  opacity: .92;
}
.supplier-card.rak img {
  max-height: 52px;
}
.supplier-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}
.supplier-card .supplier-link-hint {
  position: absolute;
  top: 7px;
  right: 8px;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .2s ease, transform .2s ease;
  color: #888;
  display: flex;
  align-items: center;
}
.supplier-card:hover .supplier-link-hint {
  opacity: 0.8;
  transform: translateY(0);
}
[data-theme="dark"] .suppliers-section {
  border-top-color: var(--line);
}
[data-theme="dark"] .supplier-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .supplier-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}
@media (max-width: 992px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .supplier-card {
    height: 84px;
    padding: 12px 14px;
  }
  .supplier-card img {
    max-height: 38px;
  }
  .supplier-card.rak img {
    max-height: 46px;
  }
}
@media (max-width: 380px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Service Value Strip (Wide Selection, Better Pricing, Reliable Sourcing, Expert Support)
   ========================================================================== */
.service-strip-wrap {
  width: min(calc(100% - 48px), 1140px);
  max-width: 1140px;
  margin-inline: auto;
  margin-top: 48px;
}
.page-hero .service-strip-wrap {
  margin-top: 42px;
  width: min(calc(100% - 48px), 1140px);
  max-width: 1140px;
  margin-inline: auto;
}
.page-hero:has(.service-strip-wrap) {
  border-bottom: none;
  padding-bottom: 50px;
}
.credibility-section .service-strip-wrap {
  margin: 0 auto;
  width: min(calc(100% - 48px), 1140px);
  max-width: 1140px;
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.service-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
  position: relative;
}
.service-strip-item:first-child {
  padding-left: 0;
}
.service-strip-item:last-child {
  padding-right: 0;
}
.service-strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: var(--line);
}
.service-strip-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-top: 1px;
  transition: transform .22s var(--ease), color .22s var(--ease), opacity .22s var(--ease);
}
.service-strip-item:hover .service-strip-icon {
  transform: scale(1.1);
  color: var(--black);
}
.service-strip-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.85;
  display: block;
}
.service-strip-text h3,
.service-strip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.service-strip-text p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 3px 0 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .service-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    padding: 20px 0;
  }
  .service-strip-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .service-strip {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 16px 0;
  }
  .service-strip-item {
    padding: 4px 0;
  }
  .service-strip-item::after {
    display: none !important;
  }
}

/* --- Sitemap Visual Grid & Cards --- */
.sitemap-section {
  padding: 40px 0 90px;
}
.sitemap-group {
  margin-bottom: 50px;
}
.sitemap-group-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sitemap-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sitemap-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.sitemap-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.sitemap-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
[data-theme="dark"] .sitemap-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.sitemap-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.sitemap-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}




