/* ════════════════════════════════════════════════════════
   LOCALITY PARTNERS — Website Styles
   Brand: Deep Navy + Locality Gold · Cormorant Garamond + Lato
════════════════════════════════════════════════════════ */

:root {
  --navy:        #0D2240;
  --navy-mid:    #1A3A5C;
  --navy-light:  #2A547A;
  --gold:        #C9943E;
  --gold-light:  #E2B96A;
  --gold-pale:   #F4E5C5;
  --white:       #FFFFFF;
  --off-white:   #F7F5F1;
  --cream:       #EDE9E1;
  --text-body:   #1C2B3A;
  --text-mid:    #4A6070;
  --text-light:  #7F96A8;
  --border:      #D8D0C2;
  --border-soft: #E7E1D6;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--gold); color: var(--white); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ──────────── PRIMITIVES ──────────── */
.shell { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.h-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 60ch;
}
em { font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 12px 30px -8px rgba(201,148,62,0.5); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); box-shadow: 0 12px 30px -10px rgba(13,34,64,0.5); }

.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-ghost-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost-dark:hover { border-color: var(--navy); }

/* ──────────── LOGO ──────────── */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}
.logo-word {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  font-size: var(--logo-size, 30px);
  color: var(--logo-color, var(--white));
}
.logo-o {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--logo-size, 30px);
  height: var(--logo-size, 30px);
}
.logo-o::before {
  content: '';
  position: absolute;
  width: 76%; height: 76%;
  border-radius: 50%;
  border: 1.5px solid currentColor;
}
.logo-o::after {
  content: '';
  width: 17%; height: 17%;
  border-radius: 50%;
  background: var(--gold);
  position: relative; z-index: 2;
}
.logo-rule {
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.logo-sub {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: calc(var(--logo-size, 30px) * 0.3);
  padding-left: 2px;
  color: var(--logo-color, var(--white));
}

/* ──────────── NAV ──────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 22px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(13,34,64,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 10px 40px -20px rgba(0,0,0,0.6);
  padding: 14px 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 12px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: rgba(255,255,255,0.85);
  padding: 8px;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ──────────── HERO ──────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-rings {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,148,62,0.13);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  transition: opacity 0.6s var(--ease);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, rgba(42,84,122,0.55) 0%, rgba(13,34,64,0) 60%);
}

.hero-content { position: relative; z-index: 3; width: 100%; padding-top: 90px; padding-bottom: 60px; }

.hero-kicker { margin-bottom: 30px; }
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  color: var(--white);
}
.hero-h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  margin-top: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }
.hero-cred {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
}
.hero-cred .lbl { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light); }
.hero-cred .pill {
  font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.8);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-cred .pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* big centered crosshair behind text — variation A */
.hero-crosshair {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: min(78vh, 720px);
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.hero-crosshair .ch-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(201,148,62,0.16); }
.hero-crosshair .ch-ring.r2 { inset: 12%; border-color: rgba(201,148,62,0.22); }
.hero-crosshair .ch-ring.r3 { inset: 28%; border-color: rgba(201,148,62,0.28); }
.hero-crosshair .ch-line { position: absolute; background: rgba(201,148,62,0.18); }
.hero-crosshair .ch-line.v { top: -8%; bottom: -8%; left: 50%; width: 1px; }
.hero-crosshair .ch-line.h { left: -8%; right: -8%; top: 50%; height: 1px; }
.hero-crosshair .ch-dot { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); transform: translate(-50%,-50%); box-shadow: 0 0 0 8px rgba(201,148,62,0.12), 0 0 40px rgba(201,148,62,0.5); }

/* split panel — variation B */
.hero-split-visual {
  position: relative;
  z-index: 2;
  display: none;
  align-self: stretch;
}

/* ===== HERO VARIATION LAYOUTS (data-hero on body) ===== */
/* A — centered */
body[data-hero="a"] .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
body[data-hero="a"] .hero-kicker .eyebrow::before { display: none; }
body[data-hero="a"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-hero="a"] .hero-actions { justify-content: center; }
body[data-hero="a"] .hero-cred { justify-content: center; }
body[data-hero="a"] .hero-crosshair { display: block; }
body[data-hero="a"] .hero-h1 { max-width: 16ch; }

/* B — split */
body[data-hero="b"] .hero-content { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
body[data-hero="b"] .hero-split-visual { display: block; }
body[data-hero="b"] .hero-cred { grid-column: 1 / -1; }

/* C — editorial with grid lines */
body[data-hero="c"] .hero-grid-lines { opacity: 1; }
body[data-hero="c"] .hero-h1 { font-size: clamp(52px, 9vw, 120px); }
body[data-hero="c"] .hero-content { max-width: 18ch; }
body[data-hero="c"] .hero-content { max-width: none; }
body[data-hero="c"] .hero-h1 { max-width: 14ch; }

/* split visual interior */
.split-card {
  position: relative;
  height: 100%;
  min-height: 460px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(42,84,122,0.35), rgba(13,34,64,0.1)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 11px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.split-card .big-o {
  width: 58%; aspect-ratio: 1; position: relative;
}
.split-card .big-o .ring { position: absolute; inset: 0; }
.split-placeholder-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: monospace; font-size: 10px; letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 5px 9px; border-radius: 2px;
}

/* ──────────── SECTION SCAFFOLD ──────────── */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section.navy { background: var(--navy); color: var(--white); }
.section.navy .h-section { color: var(--white); }
.section.navy .lede { color: rgba(255,255,255,0.66); }
.section.cream { background: var(--cream); }
.section.white { background: var(--white); }

.section-head { max-width: 740px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lede { margin-top: 24px; }
.section-head.center { max-width: 760px; margin: 0 auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ──────────── TRUSTED BY ──────────── */
.trusted { background: var(--navy); color: var(--white); padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.trusted-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-bottom: 40px; }
.client-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.client-cell {
  background: var(--navy);
  padding: 30px 26px;
  min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.4s var(--ease);
}
.client-cell:hover { background: var(--navy-mid); }
.client-cell .c-mark { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(201,148,62,0.5); display: flex; align-items: center; justify-content: center; }
.client-cell .c-mark::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.client-cell .c-name { font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.25; color: rgba(255,255,255,0.92); }
.client-cell .c-sector { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* ──────────── WHAT WE DO (pillars) ──────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.pillar {
  display: block; text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -30px rgba(13,34,64,0.28); border-color: var(--border); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 2px; }
.pillar-title { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--navy); line-height: 1.1; margin: 18px 0 16px; }
.pillar-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.pillar-tags { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 1px; }
.pillar-tags li { font-size: 13px; color: var(--text-light); padding: 9px 0 9px 18px; position: relative; border-top: 1px solid var(--border-soft); }
.pillar-tags li::before { content: ''; position: absolute; left: 0; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.pillar-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.pillar-cta .arrow { color: var(--gold); transition: transform 0.3s var(--ease); }
.pillar:hover .pillar-cta { color: var(--gold); }
.pillar:hover .pillar-cta .arrow { transform: translateX(5px); }

/* ──────────── KEY CAPABILITIES (tabs) ──────────── */
.cap-wrap { margin-top: 60px; display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.cap-tabs { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid rgba(255,255,255,0.14); }
.cap-tab {
  text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif); font-size: 23px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  position: relative;
  transition: color 0.35s var(--ease), padding 0.35s var(--ease);
  margin-left: -1px;
  border-left: 1px solid transparent;
}
.cap-tab .cap-tab-num { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--text-light); display: block; margin-bottom: 6px; }
.cap-tab:hover { color: rgba(255,255,255,0.85); }
.cap-tab.active { color: var(--white); border-left: 1px solid var(--gold); padding-left: 30px; }
.cap-tab.active .cap-tab-num { color: var(--gold); }

.cap-panel { display: none; }
.cap-panel.active { display: block; animation: fadeUp 0.6s var(--ease); }
.cap-panel-head { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.cap-panel-sub { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 30px; max-width: 60ch; }
.cap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.cap-item { display: block; text-decoration: none; background: var(--navy); padding: 22px 24px; transition: background 0.35s var(--ease); }
.cap-item:hover { background: var(--navy-mid); }
.cap-item h4::after { content: '→'; margin-left: auto; opacity: 0; transform: translateX(-4px); transition: all 0.3s var(--ease); color: var(--gold); font-weight: 700; }
.cap-item:hover h4::after { opacity: 1; transform: translateX(0); }
.cap-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.cap-item h4::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cap-item p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ──────────── INDUSTRIES (accordion list + detail) ──────────── */
.ind-wrap { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.ind-list { display: flex; flex-direction: column; }
.ind-row {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 6px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}
.ind-list .ind-row:last-child { border-bottom: 1px solid var(--border); }
.ind-row .ind-idx { font-family: var(--serif); font-size: 14px; color: var(--text-light); width: 28px; flex-shrink: 0; transition: color 0.35s; }
.ind-row .ind-name { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px); font-weight: 300; color: var(--text-light); transition: color 0.35s var(--ease); flex: 1; }
.ind-row .ind-arrow { color: var(--text-light); opacity: 0; transform: translateX(-8px); transition: all 0.4s var(--ease); }
.ind-row:hover { padding-left: 14px; }
.ind-row:hover .ind-name, .ind-row.active .ind-name { color: var(--navy); }
.ind-row.active .ind-idx { color: var(--gold); }
.ind-row.active .ind-arrow, .ind-row:hover .ind-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }

.ind-detail {
  position: sticky; top: 110px;
  background: var(--navy); color: var(--white);
  border-radius: 4px; overflow: hidden;
  min-height: 420px;
  display: flex; flex-direction: column;
}
.ind-detail-img {
  height: 200px; flex-shrink: 0;
  background:
    linear-gradient(160deg, rgba(42,84,122,0.6), rgba(13,34,64,0.2)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 12px);
  position: relative;
  display: flex; align-items: flex-end; padding: 22px;
}
.ind-detail-img .ph-tag { font-family: monospace; font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.45); border: 1px dashed rgba(255,255,255,0.25); padding: 5px 9px; border-radius: 2px; }
.ind-detail-body { padding: 34px; display: flex; flex-direction: column; flex: 1; }
.ind-detail-body .eyebrow { margin-bottom: 16px; }
.ind-detail-title { font-family: var(--serif); font-size: 32px; font-weight: 300; margin-bottom: 14px; }
.ind-detail-desc { font-size: 15px; color: rgba(255,255,255,0.66); line-height: 1.75; }
.ind-detail-points { list-style: none; margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.ind-detail-points li { font-size: 12px; letter-spacing: 0.5px; color: var(--gold-light); border: 1px solid rgba(201,148,62,0.35); padding: 6px 12px; border-radius: 100px; }

/* ──────────── WHY LOCALITY ──────────── */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.12); display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; }
.why-point:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.why-point .wp-mark { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(201,148,62,0.45); display: flex; align-items: center; justify-content: center; }
.why-point .wp-mark::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.why-point h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.why-point p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; }

.stat-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; overflow: hidden; }
.stat-cell { background: var(--navy); padding: 38px 32px; }
.stat-cell .stat-num { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 5.5vw, 68px); line-height: 1; color: var(--gold-light); letter-spacing: -1px; }
.stat-cell .stat-num .suf { font-size: 0.55em; }
.stat-cell .stat-label { font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.5; }

/* values strip */
.values-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 80px; }
.value-block { padding-top: 26px; border-top: 2px solid var(--gold); }
.value-block .v-name { font-family: var(--serif); font-size: 27px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.value-block .v-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* trifecta — executable value (three combined strengths) */
.trifecta { margin-top: 60px; }
.trifecta-lead { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); font-weight: 300; color: var(--gold-light); margin-bottom: 26px; }
.trifecta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; overflow: hidden; }
.tri-card { background: var(--navy); padding: 34px 30px; transition: background 0.4s var(--ease); }
.tri-card:hover { background: var(--navy-mid); }
.tri-card .tri-num { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--gold); line-height: 1; }
.tri-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); margin: 14px 0 10px; }
.tri-card p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* why points — six-up grid */
.why-points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; margin-top: 72px; }
.why-points-grid .why-point { padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.12); display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.why-points-grid .why-point .wp-mark { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(201,148,62,0.45); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-points-grid .why-point .wp-mark::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.why-points-grid .why-point h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.why-points-grid .why-point p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; }
.stat-stack { margin-top: 64px; grid-template-columns: repeat(4, 1fr); }

/* ──────────── INSIGHTS ──────────── */
.insights-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.insight-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.filter-btn {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text-mid); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 0.4s var(--ease);
}
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(13,34,64,0.3); }
.insight-card.hide { display: none; }
.insight-thumb {
  height: 170px;
  background:
    linear-gradient(160deg, var(--navy-mid), var(--navy));
  position: relative;
  display: flex; align-items: flex-end; padding: 18px;
  overflow: hidden;
}
.insight-thumb::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  border: 1px solid rgba(201,148,62,0.2);
}
.insight-thumb::after {
  content: ''; position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,148,62,0.12);
}
.insight-topic { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); position: relative; z-index: 2; }
.insight-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.insight-meta { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 14px; }
.insight-title { font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.2; color: var(--navy); margin-bottom: 12px; }
.insight-teaser { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.insight-readmore { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; }
.insight-readmore .arrow { transition: transform 0.4s var(--ease); }
.insight-card:hover .insight-readmore .arrow { transform: translateX(5px); }

/* ──────────── CONTACT CTA ──────────── */
.cta {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; text-align: center; padding: clamp(90px, 13vw, 160px) 0; }
.cta-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,148,62,0.14); pointer-events: none; }
.cta h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 6vw, 76px); line-height: 1.04; letter-spacing: -1px; color: var(--white); max-width: 18ch; margin: 0 auto; }
.cta h2 em { color: var(--gold-light); }
.cta-statement { font-size: clamp(16px, 1.6vw, 19px); font-weight: 300; color: rgba(255,255,255,0.7); max-width: 58ch; margin: 28px auto 0; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 44px; }
.cta-contacts { margin-top: 56px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px; }
.cta-contact-item { display: flex; flex-direction: column; gap: 4px; }
.cta-contact-item .lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
.cta-contact-item .val { font-size: 16px; color: var(--white); }
.cta-contact-item a.val:hover { color: var(--gold-light); }

/* ──────────── FOOTER ──────────── */
.footer { background: #081627; color: rgba(255,255,255,0.6); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-tag { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-light); margin-top: 24px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ──────────── SCROLL REVEAL ──────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1080px) {
  .pillars, .insight-grid { grid-template-columns: 1fr 1fr; }
  .cap-wrap { grid-template-columns: 240px 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-points-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav-links, .nav .nav-cta.desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 880px) {
  body[data-hero="b"] .hero-content { grid-template-columns: 1fr; }
  body[data-hero="b"] .hero-split-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-points-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .trifecta-grid { grid-template-columns: 1fr; }
  .stat-stack { grid-template-columns: 1fr 1fr; }
  .ind-wrap { grid-template-columns: 1fr; gap: 36px; }
  .ind-detail { position: relative; top: 0; }
  .cap-wrap { grid-template-columns: 1fr; }
  .cap-tabs { flex-direction: row; overflow-x: auto; border-left: none; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .cap-tab { border-left: none; border-bottom: 2px solid transparent; white-space: nowrap; padding: 14px 18px; font-size: 18px; }
  .cap-tab.active { border-left: none; border-bottom: 2px solid var(--gold); padding-left: 18px; }
  .cap-list { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pillars, .insight-grid, .client-row, .stat-stack, .values-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .client-row { gap: 1px; }
}

/* hide tweaks mount until React ready */
#tweaks-root:empty { display: none; }
