/* ============================================================
   TOKENS
============================================================ */
:root {
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-muted: #f4f4f5;
  --bg-emphasis: #e4e4e7;
  --ink: #09090b;
  --ink-2: #3f3f46;
  --muted: #71717a;
  --dim: #a1a1aa;
  --border: rgba(9,9,11,0.08);
  --border-h: rgba(9,9,11,0.16);
  --gold: #a87c2a;
  --gold-l: #c4973e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.04);
  --dk: #09090b;
  --dk-text: #fafafa;
  --dk-muted: #71717a;
  --dk-border: rgba(255,255,255,0.08);
  --dk-gold: #c4a060;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1200px;
  --sp: 96px;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(168,124,42,0.14); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: var(--font); color: var(--ink); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.8rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: 1rem; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 0.925rem; }
p  { color: var(--muted); line-height: 1.72; font-size: 0.9375rem; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--sp) 0; }

/* ============================================================
   ANIMATIONS (CSS-driven, on page load)
============================================================ */
@keyframes a-fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes a-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-in  { animation: a-fade-in 0.65s var(--ease) both; }
.anim-up  { animation: a-fade-up 0.65s var(--ease) both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.40s; }
.d5 { animation-delay: 0.52s; }

/* Scroll-triggered fade (JS adds .in) */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.17s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.35s; }

/* ============================================================
   EYEBROW LABEL
============================================================ */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 5px 14px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--bg-muted); margin-bottom: 20px;
}
.label-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; font-size: 0.875rem; font-weight: 500;
  font-family: var(--font); border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--t); border: none;
  letter-spacing: -0.01em; line-height: 1;
}
.btn svg { flex-shrink: 0; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border-h); }
.btn-outline:hover { background: var(--bg-muted); border-color: rgba(9,9,11,0.22); }
.btn-ghost { background: transparent; color: var(--muted); padding: 0; gap: 6px; font-size: 0.875rem; font-weight: 500; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arr { transition: transform var(--t); }
.btn-ghost:hover .arr { transform: translateX(3px); }
.btn-dk-primary { background: #fff; color: var(--dk); }
.btn-dk-primary:hover { background: var(--bg-muted); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
.btn-dk-primary:active { transform: translateY(0); box-shadow: none; }
.btn-dk-outline { background: transparent; color: var(--dk-text); border: 1px solid var(--dk-border); }
.btn-dk-outline:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0; transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0; background: rgba(255,255,255,0.86);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border); box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 0.19em;
  transition: opacity 0.15s;
}
.logo-name { font-weight: 600; color: var(--ink); }
.logo-div  { font-size: 0.86em; font-weight: 300; color: #B8884A; letter-spacing: -0.02em; }
.logo-group { font-weight: 400; color: rgba(14,17,22,0.75); transition: color 0.15s; }
.nav-logo:hover .logo-group { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 0.84rem; font-weight: 450; color: var(--muted);
  transition: color var(--t), background var(--t);
  padding: 6px 11px; border-radius: var(--radius-sm);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg-muted); }
.nav-end { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--bg); padding: 88px 40px 40px;
  flex-direction: column; justify-content: space-between;
}
.mobile-menu.open { display: flex; }
.mobile-links { list-style: none; display: flex; flex-direction: column; }
.mobile-links li { border-bottom: 1px solid var(--border); }
.mobile-links a { display: block; font-size: 1.8rem; font-weight: 600; color: var(--ink); padding: 16px 0; letter-spacing: -0.04em; transition: color var(--t); }
.mobile-links a:hover { color: var(--muted); }
.mobile-menu-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   HERO (dark — mesh gradient, bottom-left layout)
============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  text-align: left;
  position: relative; overflow: hidden;
  background: #09090b;
  border-radius: 0 0 24px 24px;
}
/* Subtle grid texture */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 6rem 5rem;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none; z-index: 0;
}
/* Animated mesh gradient blobs */
.hero-mesh { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; will-change: transform; }
.mesh-1 {
  width: 860px; height: 860px;
  background: radial-gradient(circle, rgba(168,124,42,0.36) 0%, rgba(168,124,42,0.08) 52%, transparent 76%);
  top: -280px; right: -200px;
  animation: mesh-1 16s ease-in-out infinite alternate;
}
.mesh-2 {
  width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(196,160,96,0.22) 0%, rgba(196,160,96,0.05) 52%, transparent 76%);
  bottom: -180px; left: -180px;
  animation: mesh-2 20s ease-in-out infinite alternate;
}
.mesh-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(168,124,42,0.1) 0%, transparent 74%);
  top: 35%; left: 38%;
  animation: mesh-3 13s ease-in-out infinite;
}
@keyframes mesh-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-90px, 70px) scale(1.12); }
}
@keyframes mesh-2 {
  0%   { transform: translate(0, 0) scale(1.08); }
  100% { transform: translate(70px, -50px) scale(0.92); }
}
@keyframes mesh-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-60px, 60px) scale(1.18); }
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 740px; padding: 0 40px 48px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
  background: rgba(255,255,255,0.05); margin-bottom: 24px;
  cursor: default; transition: border-color var(--t), background var(--t);
}
.hero-eyebrow:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.09); }
.hero-eyebrow svg { width: 13px; height: 13px; color: rgba(255,255,255,0.3); transition: transform var(--t); flex-shrink: 0; }
.hero-eyebrow:hover svg { transform: translateX(3px); }
/* Multi-line h1: light gradient / bold white / italic flip */
.hero h1 {
  line-height: 1.02; color: rgba(255,255,255,0.92);
  -webkit-text-fill-color: rgba(255,255,255,0.92);
  margin-bottom: 24px; text-align: left;
}
.h1-top {
  display: block; font-size: 0.48em; font-weight: 300;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, #c4a060 55%, #B8884A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.h1-bottom {
  display: block; font-size: 0.72em; font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  -webkit-text-fill-color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.38);
  max-width: 520px; margin: 0 0 36px;
  line-height: 1.72; letter-spacing: -0.01em;
}
.hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-clients {
  position: relative; z-index: 3;
  padding: 22px 40px; width: 100%;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-clients .trusted-text {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 18px;
}
.client-logos { display: flex; align-items: center; width: 100%; }
.client-logo {
  font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em; transition: color var(--t);
}
.client-logo:hover { color: rgba(255,255,255,0.45); }
/* Inline SVG wordmark logos */
.client-logo-wrap { flex: 1; display: flex; justify-content: center; align-items: center; opacity: 0.28; transition: opacity var(--t); }
.client-logo-wrap:hover { opacity: 0.7; }
.clogo { height: 22px; width: auto; display: block; fill: #fff; }
/* Nav text white on dark hero */
.nav-over-dark:not(.scrolled) .logo-name { color: rgba(255,255,255,0.9); }
.nav-over-dark:not(.scrolled) .logo-group { color: rgba(255,255,255,0.7); }
.nav-over-dark:not(.scrolled) .nav-logo:hover .logo-group { color: rgba(255,255,255,0.9); }
.nav-over-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.5); }
.nav-over-dark:not(.scrolled) .nav-links a:hover,
.nav-over-dark:not(.scrolled) .nav-links a.active { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.07); }
.nav-over-dark:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.85); }
/* CTA sparkles container */
#cta-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-band {
  padding: 12px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; background: var(--bg-subtle);
}
.marquee-band::before, .marquee-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1; pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(to right, var(--bg-subtle), transparent); }
.marquee-band::after  { right: 0; background: linear-gradient(to left, var(--bg-subtle), transparent); }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 44s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 22px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim);
}
.marquee-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.65; flex-shrink: 0; }

/* ============================================================
   STATS
============================================================ */
.stats-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 52px 44px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: clamp(2.2rem, 3.2vw, 3.2rem); font-weight: 700; color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.stat-suffix { font-size: 0.5em; font-weight: 400; color: var(--gold); vertical-align: 0.18em; margin-left: 2px; letter-spacing: 0; }
.stat-lbl { font-size: 0.875rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 5px; }
.stat-ctx { font-size: 0.77rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   SECTION HEADER
============================================================ */
.sec-header { max-width: 640px; margin-bottom: 48px; }
.sec-header h2 { margin-bottom: 12px; }
.sec-header p  { font-size: 1rem; }
.sec-header.centered { margin-left: auto; margin-right: auto; text-align: center; max-width: 560px; }
.sec-header.centered .label { margin-left: auto; margin-right: auto; }

/* ============================================================
   BENTO GRID
============================================================ */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bento-card {
  position: relative; padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg);
  overflow: hidden; transition: all 0.28s var(--ease); cursor: default;
  display: flex; flex-direction: column; will-change: transform;
}
.bento-card:hover, .bento-card.pinned {
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transform: translateY(-2px); border-color: var(--border-h);
}
.bento-card.col-2 { grid-column: span 2; }
/* Dot pattern */
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, rgba(9,9,11,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0; transition: opacity 0.28s; pointer-events: none;
}
.bento-card:hover::before, .bento-card.pinned::before { opacity: 1; }
.bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 20%, rgba(9,9,11,0.03) 50%, transparent 80%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.bento-card:hover::after, .bento-card.pinned::after { opacity: 1; }
.bento-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bento-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--bg-muted); display: flex; align-items: center;
  justify-content: center; color: var(--muted); flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.bento-card:hover .bento-icon, .bento-card.pinned .bento-icon {
  background: linear-gradient(135deg, var(--_icon-bg, rgba(0,0,0,0.05)), var(--_icon-hover-bg, var(--bg-emphasis)));
  color: var(--_icon-color, var(--ink));
}
/* Per-card accent palette */
.bento-card:nth-child(1) { --_icon-color:#a87c2a; --_icon-bg:rgba(168,124,42,0.1); --_icon-hover-bg:rgba(168,124,42,0.18); }
.bento-card:nth-child(2) { --_icon-color:#3b82f6; --_icon-bg:rgba(59,130,246,0.08); --_icon-hover-bg:rgba(59,130,246,0.15); }
.bento-card:nth-child(3) { --_icon-color:#10b981; --_icon-bg:rgba(16,185,129,0.08); --_icon-hover-bg:rgba(16,185,129,0.15); }
.bento-card:nth-child(4) { --_icon-color:#8b5cf6; --_icon-bg:rgba(139,92,246,0.08); --_icon-hover-bg:rgba(139,92,246,0.15); }
.bento-card:nth-child(5) { --_icon-color:#f43f5e; --_icon-bg:rgba(244,63,94,0.08); --_icon-hover-bg:rgba(244,63,94,0.15); }
.bento-card:nth-child(6) { --_icon-color:#a87c2a; --_icon-bg:rgba(168,124,42,0.1); --_icon-hover-bg:rgba(168,124,42,0.18); }
.bento-icon { color: var(--_icon-color, var(--muted)); background: var(--_icon-bg, var(--bg-muted)); }
.bento-badge {
  font-size: 0.68rem; font-weight: 600; padding: 3px 9px;
  border-radius: 100px; background: var(--bg-muted); color: var(--muted);
  transition: background var(--t);
}
.bento-card:hover .bento-badge, .bento-card.pinned .bento-badge { background: var(--bg-emphasis); }
.bento-card h3 { font-size: 0.9rem; margin-bottom: 7px; line-height: 1.3; }
.bento-meta { font-size: 0.73rem; color: var(--dim); font-weight: 400; margin-left: 6px; }
.bento-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.62; margin-bottom: 14px; flex: 1; }
.bento-foot { display: flex; align-items: center; justify-content: space-between; }
.bento-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.bento-tag {
  font-size: 0.65rem; font-weight: 500; color: var(--muted);
  background: var(--bg-muted); padding: 3px 9px; border-radius: 100px;
  transition: background var(--t);
}
.bento-card:hover .bento-tag, .bento-card.pinned .bento-tag { background: var(--bg-emphasis); }
.bento-cta {
  font-size: 0.72rem; color: var(--dim); font-weight: 500;
  opacity: 0; transition: opacity var(--t), color var(--t); white-space: nowrap;
}
.bento-card:hover .bento-cta, .bento-card.pinned .bento-cta { opacity: 1; color: var(--gold); }

/* ============================================================
   ABOUT SPLIT
============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); position: relative; }
.split-photo img { width: 100%; height: 460px; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.split-photo:hover img { transform: scale(1.04); }
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 16px; }
.split-content p:last-of-type { margin-bottom: 28px; }
.market-pills { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }
.mpill { display: flex; align-items: center; gap: 11px; padding: 11px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color var(--t), background var(--t), transform var(--t); }
.mpill:hover { border-color: var(--border-h); background: var(--bg-muted); transform: translateX(3px); }
.mpill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.mpill-label { font-size: 0.875rem; font-weight: 500; color: var(--ink-2); }

/* ============================================================
   CTA DARK SECTION
============================================================ */
.cta-section { background: var(--dk); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.cta-section::after {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,160,96,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box { position: relative; z-index: 1; padding: 112px 0; text-align: center; }
.cta-box h2 { color: var(--dk-text); max-width: 560px; margin: 0 auto 14px; }
.cta-box h2 em { font-style: normal; color: var(--dk-gold); }
.cta-box p { color: var(--dk-muted); max-width: 440px; margin: 0 auto 44px; font-size: 1rem; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  padding: 148px 0 72px; position: relative;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg-subtle), var(--bg));
}
.page-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, #f0f0f0 1px, transparent 1px),
    linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
  background-size: 6rem 5rem;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 50%, transparent 100%);
  pointer-events: none; opacity: 0.55;
}
.page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.05rem; max-width: 540px; line-height: 1.72; }

/* ============================================================
   SERVICES FULL PAGE
============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-full {
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); transition: all 0.28s var(--ease); position: relative; overflow: hidden;
}
.svc-full::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0; transition: opacity 0.35s;
}
.svc-full:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.svc-full:hover::before { opacity: 1; }
.svc-num-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.svc-full h3 { margin-bottom: 12px; font-size: 1.05rem; }
.svc-full p  { margin-bottom: 22px; font-size: 0.9rem; line-height: 1.75; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag { font-size: 0.67rem; font-weight: 500; color: var(--muted); background: var(--bg-muted); padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border); }

/* ============================================================
   PROCESS
============================================================ */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.proc-step { padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.proc-step:hover { background: var(--bg-muted); transform: translateY(-1px); }
.step-num { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-h); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 18px; transition: border-color var(--t), background var(--t); }
.proc-step:hover .step-num { border-color: var(--gold); background: rgba(168,124,42,0.06); }
.proc-step h4 { margin-bottom: 8px; }
.proc-step p  { font-size: 0.84rem; line-height: 1.7; }

/* ============================================================
   CASE STUDIES (work.html full-width alternating layout)
============================================================ */
.cs-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg);
  transition: all 0.3s var(--ease); margin-bottom: 14px;
}
.cs-card:last-child { margin-bottom: 0; }
.cs-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-h); transform: translateY(-2px); }
.cs-card.reverse { direction: rtl; }
.cs-card.reverse > * { direction: ltr; }
.cs-img-wrap { overflow: hidden; background: var(--bg-muted); position: relative; }
.cs-img-wrap img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; filter: grayscale(8%); transition: transform 0.7s var(--ease), filter 0.5s; }
.cs-card:hover .cs-img-wrap img { transform: scale(1.04); filter: grayscale(0%); }
.cs-img-overlay { position: absolute; top: 16px; left: 16px; }
.cs-industry-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.9); color: var(--ink-2); padding: 4px 12px; border-radius: 100px; backdrop-filter: blur(8px); }
.cs-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.cs-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.cs-client { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold); }
.cs-client-logo { height: 26px; width: auto; max-width: 100px; object-fit: contain; display: block; filter: grayscale(1); opacity: 0.55; transition: opacity var(--t), filter var(--t); }
.cs-card:hover .cs-client-logo { opacity: 0.9; filter: grayscale(0); }
.cs-sep { color: var(--border-h); font-size: 0.75rem; }
.cs-type { font-size: 0.78rem; color: var(--muted); }
.cs-body h2 { font-size: clamp(1.1rem, 1.6vw, 1.5rem); margin-bottom: 16px; line-height: 1.25; }
.cs-body p { font-size: 0.875rem; line-height: 1.78; margin-bottom: 12px; }
.cs-body p:last-of-type { margin-bottom: 0; }
.cs-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
.cs-outcome { padding: 14px 12px; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; }
.cs-outcome-num { font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
.cs-outcome-num span { font-size: 1rem; font-weight: 600; }
.cs-outcome-label { font-size: 0.65rem; color: var(--muted); font-weight: 500; letter-spacing: 0.01em; line-height: 1.4; }

/* ============================================================
   INDUSTRIES
============================================================ */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ind-item { padding: 26px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); text-align: center; transition: all 0.28s var(--ease); }
.ind-item:hover { background: var(--bg-muted); transform: translateY(-1px); }
.ind-item svg { color: var(--dim); margin: 0 auto 12px; display: block; transition: color var(--t); }
.ind-item:hover svg { color: var(--gold); }
.ind-item span { font-size: 0.78rem; font-weight: 500; color: var(--ink-2); letter-spacing: -0.01em; }
/* Industry cards (work.html) */
.industry-card { padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.industry-card:hover { background: var(--bg-muted); transform: translateY(-1px); }
.industry-icon { width: 40px; height: 40px; background: var(--bg-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--muted); margin-bottom: 14px; transition: background var(--t), color var(--t); }
.industry-card:hover .industry-icon { background: var(--bg-emphasis); color: var(--gold); }
.industry-card h4 { font-size: 0.875rem; margin-bottom: 8px; }
.industry-card p  { font-size: 0.84rem; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.story-text p { margin-bottom: 16px; font-size: 0.9375rem; line-height: 1.8; }
.story-text p:last-child { margin-bottom: 0; }
.story-cards { display: flex; flex-direction: column; gap: 8px; }
.story-card { padding: 22px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.story-card:hover { background: var(--bg-muted); border-color: var(--border-h); }
.story-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 7px; }
.story-card p { font-size: 0.84rem; line-height: 1.7; }
.story-img-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 8px; }
.story-img-wrap img { width: 100%; height: 240px; object-fit: cover; display: block; filter: grayscale(8%); transition: transform 0.7s var(--ease); }
.story-cards:hover .story-img-wrap img { transform: scale(1.03); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.val-card { padding: 26px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.val-card:hover { background: var(--bg-muted); transform: translateY(-1px); }
.val-icon { width: 38px; height: 38px; background: var(--bg-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; transition: background var(--t); }
.val-card:hover .val-icon { background: var(--bg-emphasis); }
.val-card h3 { font-size: 0.9rem; margin-bottom: 8px; }
.val-card p  { font-size: 0.84rem; }

.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.market-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.market-card:hover { background: var(--bg-muted); transform: translateY(-1px); }
.market-region { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.market-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.market-card p  { font-size: 0.875rem; margin-bottom: 18px; }
.market-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.market-list li { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.market-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   WHY GRID
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.why-card { padding: 26px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.why-card:hover { background: var(--bg-muted); transform: translateY(-1px); }
.why-card h4 { font-size: 0.875rem; margin-bottom: 8px; }
.why-card p  { font-size: 0.84rem; }

/* ============================================================
   CONTACT
============================================================ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-form-wrap { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 0.7rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; }
.req { color: var(--gold); }
input, textarea, select {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 13px; color: var(--ink); font-family: var(--font); font-size: 0.9rem;
  transition: border-color var(--t), background var(--t), box-shadow var(--t); outline: none; width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: rgba(168,124,42,0.4); background: var(--bg); box-shadow: 0 0 0 3px rgba(168,124,42,0.09); }
input::placeholder, textarea::placeholder { color: var(--dim); }
textarea { resize: vertical; min-height: 128px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23a1a1aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; background-color: var(--bg); }
.form-status { display:none; margin-top:8px; padding:11px 15px; border-radius:var(--radius-sm); font-size:0.875rem; }
.form-status.success { background:rgba(34,197,94,0.07); color:#15803d; border:1px solid rgba(34,197,94,0.18); }
.form-status.error   { background:rgba(239,68,68,0.07); color:#b91c1c; border:1px solid rgba(239,68,68,0.18); }
.btn-form-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 12px 24px; font-size: 0.9rem; }

.contact-info-block { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all var(--t); }
.contact-info-block:hover { background: var(--bg-muted); border-color: var(--border-h); }
.contact-info-icon { width: 36px; height: 36px; background: var(--bg-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; transition: background var(--t), color var(--t); }
.contact-info-block:hover .contact-info-icon { background: var(--bg-emphasis); color: var(--gold); }
.contact-info-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dim); margin-bottom: 3px; }
.contact-info-value { font-size: 0.875rem; color: var(--ink); font-weight: 500; }
a.contact-info-value { transition: color var(--t); }
a.contact-info-value:hover { color: var(--gold); }

.contact-expect { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.contact-expect h4 { font-size: 0.875rem; margin-bottom: 16px; }
.contact-expect-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-expect-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.expect-num { font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; flex-shrink: 0; padding-top: 2px; }

.markets-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.market-contact-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: all 0.28s var(--ease); }
.market-contact-card:hover { background: var(--bg-muted); transform: translateY(-1px); }
.market-contact-region { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.market-contact-card p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 16px; }
.market-contact-detail { font-size: 0.8rem; color: var(--ink-2); font-weight: 500; border-top: 1px solid var(--border); padding-top: 14px; }

/* Legacy support */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-items { display: flex; flex-direction: column; gap: 7px; }
.ci { display: flex; align-items: flex-start; gap: 13px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all var(--t); }
.ci:hover { background: var(--bg-muted); border-color: var(--border-h); }
.ci-icon { width: 34px; height: 34px; background: var(--bg-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; transition: background var(--t), color var(--t); }
.ci:hover .ci-icon { background: var(--bg-emphasis); color: var(--ink); }
.ci-text h4 { font-size: 0.8rem; margin-bottom: 2px; }
.ci-text p  { font-size: 0.82rem; }

/* ============================================================
   FOOTER
============================================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .nav-logo { margin-bottom: 10px; display: block; }
.footer-brand p { font-size: 0.84rem; max-width: 250px; line-height: 1.75; }
.foot-col h5 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 0.875rem; color: var(--muted); transition: color var(--t); }
.foot-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.75rem; color: var(--dim); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--dim); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--muted); }

/* ============================================================
   DIVIDER
============================================================ */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ============================================================
   FLIP WORDS
============================================================ */
#flip-words { display: inline-block; position: relative; vertical-align: baseline; }
.fw-current { display: inline-block; }
.fw-group { display: inline-block; white-space: nowrap; }
.fw-sp { display: inline-block; }
.fw-ch {
  display: inline-block;
  opacity: 0;
  animation: fw-in 0.35s ease-out forwards;
}
@keyframes fw-in { to { opacity: 1; } }
.fw-exit {
  position: absolute; top: 0; left: 0; white-space: nowrap; pointer-events: none;
  animation: fw-out 0.3s ease-in forwards;
}
@keyframes fw-out { to { opacity: 0; } }
/* The flip word highlight color on dark hero */
.hero #flip-words { color: var(--dk-gold); }
/* Brand logo badges in work.html case study cards */
.cs-client-badge {
  font-size: 1.05rem; font-weight: 900; letter-spacing: -0.03em;
  display: inline-block; line-height: 1;
}
.cs-client-shell   { color: #DD1D21; }
.cs-client-emaar   { color: #a87c2a; font-family: Georgia,'Times New Roman',serif; letter-spacing: 0.04em; }
.cs-client-heijmans{ color: #FFB81C; }
.cs-client-philips { color: #1B78C8; }

/* ============================================================
   SELECTIVE ENGAGEMENT NOTICE (contact page)
============================================================ */
.selective-notice {
  border: 1px solid rgba(168,124,42,0.22); border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg); background: rgba(168,124,42,0.02); padding: 40px 48px;
}
.selective-notice-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.selective-notice h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 14px; line-height: 1.25; letter-spacing: -0.025em; }
.selective-notice > p { margin-bottom: 28px; }
.selective-criteria { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.selective-item {
  padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); display: flex; flex-direction: column; gap: 5px;
  transition: all 0.28s var(--ease);
}
.selective-item:hover { background: var(--bg-muted); border-color: var(--border-h); }
.selective-item-num { font-size: 0.65rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; }
.selective-item strong { font-size: 0.84rem; color: var(--ink); font-weight: 600; }
.selective-item p { font-size: 0.82rem; margin: 0; }
.selective-footer-note {
  font-size: 0.875rem; font-style: italic; color: var(--ink-2);
  padding-top: 20px; border-top: 1px solid var(--border);
}

/* ============================================================
   PHOTO PLACEHOLDERS (CSS abstract visuals — no external dependencies)
============================================================ */
.img-ph { display: block; width: 100%; position: relative; overflow: hidden; transition: transform 0.7s var(--ease); }
.cs-img-wrap .img-ph { min-height: 320px; }
.split-photo .img-ph { height: 460px; }
.story-img-wrap .img-ph { height: 240px; }
.split-photo:hover .img-ph,
.cs-card:hover .cs-img-wrap .img-ph { transform: scale(1.04); }
.story-cards:hover .story-img-wrap .img-ph { transform: scale(1.03); }
.img-ph::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.img-ph::after  { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; z-index: 2; }

.img-ph-actual { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 3; }
.img-ph-realestate { background: linear-gradient(145deg, #020510 0%, #050c1e 40%, #03081a 100%); }
.img-ph-realestate::before { background: radial-gradient(ellipse 65% 55% at 55% 40%, rgba(168,124,42,0.4) 0%, transparent 65%), radial-gradient(ellipse 55% 65% at 25% 68%, rgba(196,160,96,0.2) 0%, transparent 62%); }
.img-ph-energy { background: linear-gradient(145deg, #110800 0%, #1e1100 40%, #0e0700 100%); }
.img-ph-energy::before { background: radial-gradient(ellipse 68% 54% at 34% 64%, rgba(168,124,42,0.48) 0%, transparent 66%), radial-gradient(ellipse 54% 68% at 72% 24%, rgba(249,115,22,0.26) 0%, transparent 62%); }

.img-ph-logistics { background: linear-gradient(145deg, #02091a 0%, #04162c 40%, #020c1e 100%); }
.img-ph-logistics::before { background: radial-gradient(ellipse 64% 50% at 60% 34%, rgba(37,99,235,0.42) 0%, transparent 66%), radial-gradient(ellipse 78% 40% at 20% 74%, rgba(14,165,233,0.22) 0%, transparent 62%); }

.img-ph-construction { background: linear-gradient(145deg, #0f0a04 0%, #201508 40%, #100d03 100%); }
.img-ph-construction::before { background: radial-gradient(ellipse 74% 54% at 40% 54%, rgba(228,101,25,0.44) 0%, transparent 66%), radial-gradient(ellipse 60% 68% at 68% 20%, rgba(168,124,42,0.24) 0%, transparent 62%); }

.img-ph-healthcare { background: linear-gradient(145deg, #030610 0%, #060e22 40%, #040a1a 100%); }
.img-ph-healthcare::before { background: radial-gradient(ellipse 68% 54% at 50% 44%, rgba(59,130,246,0.36) 0%, transparent 66%), radial-gradient(ellipse 74% 50% at 22% 68%, rgba(139,92,246,0.22) 0%, transparent 62%); }

.img-ph-office { background: linear-gradient(145deg, #0c0c0f 0%, #16161a 40%, #0e0e12 100%); }
.img-ph-office::before { background: radial-gradient(ellipse 64% 54% at 60% 44%, rgba(168,124,42,0.28) 0%, transparent 66%), radial-gradient(ellipse 54% 60% at 25% 64%, rgba(196,160,96,0.14) 0%, transparent 62%); }

.img-ph-team { background: linear-gradient(145deg, #08080a 0%, #131315 40%, #0c0c0f 100%); }
.img-ph-team::before { background: radial-gradient(ellipse 68% 50% at 44% 54%, rgba(196,160,96,0.25) 0%, transparent 66%), radial-gradient(ellipse 58% 64% at 72% 30%, rgba(168,124,42,0.16) 0%, transparent 62%); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  :root { --sp: 72px; }
  .container { padding: 0 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .markets-contact-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.col-2 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cs-card { grid-template-columns: 1fr; }
  .cs-card.reverse { direction: ltr; }
  .cs-img-wrap img { min-height: 260px; height: 260px; }
  .cs-img-wrap .img-ph { min-height: 260px; }
  .split-photo .img-ph { height: 360px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  :root { --sp: 52px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-end .btn { display: none; }
  .hamburger { display: flex; }
  .bento-grid { grid-template-columns: 1fr; }
  .hero { justify-content: flex-start; }
  .hero-content { padding-top: 110px; }
  .stats-band .container { padding: 0; }
  .stat-item { padding: 40px 28px; }
  .page-hero { padding-top: 100px; }
  .bento-card.col-2 { grid-column: span 1; }
  .cs-card { grid-template-columns: 1fr; }
  .cs-outcomes { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .markets-contact-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .selective-criteria { grid-template-columns: 1fr; }
  .selective-notice { padding: 24px 22px; }
  .cta-box { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cs-metrics { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .contact-form-wrap { padding: 24px 20px; }
}
