/* ═══════════════════════════════════════════════════════════════════
   PRIMEMOVERS EQUITY - DESIGN SYSTEM v2
   Palette: Navy #0A2342 · Gold #C5A572 · White #FFFFFF
   Fonts:   Cormorant Garamond (display) · Spartan (subheadings) · Geologica (body)
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── FONTS IMPORT ─────────────────────────────────────────── */
@font-face {
  font-family: 'Geologica';
  src: url('assets/fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spartan';
  src: url('assets/fonts/Spartan-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spartan';
  src: url('assets/fonts/Spartan-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spartan';
  src: url('assets/fonts/Spartan-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TymesLittleCaps';
  src: url('assets/fonts/TymesLittleCaps.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Primary Palette */
  --navy:          #0A2342;
  --navy-mid:      #0D2D54;
  --navy-light:    #1A3D6B;
  --gold:          #C5A572;
  --gold-light:    #D4BA8E;
  --gold-pale:     #EAD9BF;
  --gold-dim:      rgba(197,165,114,0.18);

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8F6F2;
  --cream:         #F2EDE4;
  --warm-gray:     #E8E2D8;
  --mid-gray:      #9E9A93;
  --dark-gray:     #3D3A35;
  --ink:           #1A1714;

  /* Semantic */
  --bg-light:      var(--off-white);
  --bg-section:    var(--cream);
  --bg-dark:       var(--navy);
  --bg-darker:     #061629;
  --text-primary:  var(--ink);
  --text-muted:    var(--mid-gray);
  --text-light:    rgba(255,255,255,0.75);
  --text-dim:      rgba(255,255,255,0.45);
  --border-light:  rgba(10,35,66,0.10);
  --border-dark:   rgba(255,255,255,0.10);
  --rule-gold:     rgba(197,165,114,0.30);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-serif:    'Spartan', 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans:     'Geologica', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'TymesLittleCaps', serif;

  /* Spacing */
  --s-xs:    8px;
  --s-sm:   16px;
  --s-md:   32px;
  --s-lg:   64px;
  --s-xl:   72px;
  --s-2xl: 120px;

  /* Layout */
  --container-max: 1240px;
  --container-pad: clamp(24px, 5vw, 80px);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  200ms;
  --dur-mid:   400ms;
  --dur-slow:  700ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
  max-width: 100%;
}
html {
  overflow-x: hidden;
  max-width: 100%;
}
.page,
#main-content,
#site-header,
#site-footer {
  overflow-x: clip;
  max-width: 100%;
}

img { display: block; max-width: 100%; height: auto; }
video { max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 400; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 600; }

.section-title--light,
h1.page-title--light { color: var(--white); }
h2.section-title--light { color: var(--white); }

/* ── CONTAINERS ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  min-width: 0;
}
.container--narrow  { max-width: 1000px; }
.container--contact {
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

/* ── SECTIONS ────────────────────────────────────────────────────── */
.section         { padding: var(--s-2xl) 0; }
.section--grey   { background: var(--bg-section); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--navy); }
.section--darker { background: var(--bg-darker); }
.section--strip  { padding: var(--s-xl) 0; background: var(--cream); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section--cream  { background: var(--cream); }
.section--statement { padding: var(--s-xl) 0; }

.section--textured {
  /* Motif background removed: baked-in GTO text was bleeding at some widths */
  background-image: none;
  background-color: var(--bg-section);
  padding-top: var(--s-2xl);
  padding-bottom: var(--s-2xl);
}
#strategy .section--textured {
  padding-top: 0;
  padding-bottom: var(--s-xl);
}
#strategy .section--where-we-invest {
  padding-top: var(--s-xl);
  padding-bottom: var(--s-xl);
}
#strategy .section--gto-framework {
  padding-top: var(--s-xl);
  padding-bottom: var(--s-2xl);
}

.section-header { margin-bottom: 56px; }
.section-header--centered { text-align: center; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-label--light { color: var(--gold-light); }
.section-label--gray  { color: var(--mid-gray); }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out);
}
/* Unscrolled: transparent over hero */
#site-header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}
/* Scrolled: white/navy bar */
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(10,35,66,0.08), 0 4px 24px rgba(10,35,66,0.06);
}
#site-header.scrolled #main-nav > ul > li > a {
  color: rgba(10,35,66,0.65);
}
#site-header.scrolled #main-nav > ul > li > a:hover { color: var(--navy); }
#site-header.scrolled #main-nav > ul > li > a.active { color: var(--gold); }
#site-header.scrolled .mobile-menu-toggle span { background: var(--navy); }

/* Solid bar (e.g. portfolio company detail - content is light behind fixed nav) */
#site-header.header--solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(10, 35, 66, 0.08), 0 4px 24px rgba(10, 35, 66, 0.06);
}
#site-header.header--solid #main-nav > ul > li > a {
  color: rgba(10, 35, 66, 0.65);
}
#site-header.header--solid #main-nav > ul > li > a:hover { color: var(--navy); }
#site-header.header--solid #main-nav > ul > li > a.active { color: var(--gold); }
#site-header.header--solid .mobile-menu-toggle span { background: var(--navy); }
#site-header.header--solid .logo-unscrolled { display: none; }
#site-header.header--solid .logo-scrolled { display: block; }
#site-header.header--solid .nav-logo-img { height: 60px; }
#site-header.header--solid .nav-inner { height: 72px; }

/* Body flag - keeps main nav visible over portfolio company hero (backup to .header--solid) */
body.portfolio-company-open #site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(10, 35, 66, 0.08), 0 4px 24px rgba(10, 35, 66, 0.06);
}
body.portfolio-company-open #site-header #main-nav > ul > li > a {
  color: rgba(10, 35, 66, 0.65);
}
body.portfolio-company-open #site-header #main-nav > ul > li > a:hover { color: var(--navy); }
body.portfolio-company-open #site-header #main-nav > ul > li > a.active { color: var(--gold); }
body.portfolio-company-open #site-header .mobile-menu-toggle span { background: var(--navy); }
body.portfolio-company-open #site-header .logo-unscrolled { display: none; }
body.portfolio-company-open #site-header .logo-scrolled { display: block; }
body.portfolio-company-open #site-header .nav-logo-img { height: 60px; }
body.portfolio-company-open #site-header .nav-inner { height: 72px; }

/* Own row above logo + main nav */
.top-utility-bar {
  width: 100%;
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-utility-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-utility {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-utility a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.top-utility a::before {
  content: '>';
  font-weight: 400;
  opacity: 0.7;
}
.top-utility a:hover { color: var(--gold-light); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s var(--ease-out);
}
#site-header:not(.scrolled) .nav-inner {
  height: 90px;
}

@media (max-width: 860px) {
  .top-utility-bar { display: none; }
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color var(--dur-fast);
}
.logo-text:hover { color: var(--gold-light); }

.nav-logo-img {
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.5s var(--ease-out), opacity 0.3s;
}

.logo-scrolled { display: none; }
#site-header.scrolled .logo-unscrolled { display: none; }
#site-header.scrolled .logo-scrolled { display: block; }

/* Unscrolled: bigger logo */
#site-header:not(.scrolled) .nav-logo-img {
  height: 75px;
}
/* Scrolled: normal size */
#site-header.scrolled .nav-logo-img {
  height: 60px;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

#main-content {
  max-width: 100%;
  min-width: 0;
}

#main-nav > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
}
#main-nav a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.80);
  transition: color 0.4s var(--ease-out);
  position: relative;
  white-space: nowrap;
}
#main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}
#main-nav > ul > li > a:hover { color: var(--white); }
#main-nav > ul > li > a:hover::after,
#main-nav > ul > li > a.active::after { width: 100%; }
#main-nav > ul > li > a.active { color: var(--gold-light); }

/* Contact Us hover dropdown */
.nav-item--dropdown {
  position: relative;
}
.nav-item--dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
  z-index: 950;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--navy) !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: var(--off-white);
}
#site-header.scrolled .nav-dropdown,
#site-header.header--solid .nav-dropdown,
body.portfolio-company-open #site-header .nav-dropdown,
body.team-profile-open #site-header .nav-dropdown {
  background: var(--white);
}
/* When scrolled the overrides above handle colours */

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
#mobile-nav[aria-hidden="false"] { opacity: 1; pointer-events: all; transform: translateY(0); }
#mobile-nav ul { text-align: center; }
#mobile-nav li { margin: 10px 0; }
#mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
}
#mobile-nav a:hover { color: var(--gold); }

/* ── PAGE SYSTEM ─────────────────────────────────────────────────── */
.page { display: none; opacity: 0; transform: translateY(12px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.page.active { display: block; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   HOMEPAGE - HERO + ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--s-xl);
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  opacity: 0;
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.05s ease;
  filter: brightness(0.4) saturate(0.8);
}
.hero-img.blur-bg {
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.02);
}
.hero.loaded .hero-img { transform: scale(1); opacity: 1; }
.hero.loaded .hero-img.blur-bg { transform: scale(1.05); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.3) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 1;
  transition: opacity 0.95s ease;
}
.hero.loaded .hero-overlay::after { opacity: 0; }

/* ── PAGE TRANSITION ─────────────────────────────────────────────── */
.page-transition {
  position: fixed;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-transition.slide-in {
  transform: translateX(100%);
}
.page-transition.slide-out {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(200%);
}
.page-transition.reset {
  transition: none;
  transform: translateX(0);
}

.transition-motif {
  width: 280px;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.page-transition.slide-in .transition-motif {
  opacity: 1;
  transition-delay: 0.1s;
}
/* Used on initial page load for non-home hash — overlay starts fully
   covering the screen with no slide-in animation */
.page-transition.init-cover {
  transition: none;
  transform: translateX(100%);
}
.page-transition.init-cover .transition-motif {
  opacity: 1;
}

/* ── ANIMATED GEOMETRIC SHAPES ───────────────────────────────────── */
.hero-shapes {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197,165,114,0.05);
  animation: orbit-spin linear infinite;
  top: 50%; left: 75%;
  margin-top: calc(-1 * var(--size) / 2);
  margin-left: calc(-1 * var(--size) / 2);
}

@keyframes orbit-spin {
  0%   { transform: translate(var(--px, 0), var(--py, 0)) rotate(0deg); }
  100% { transform: translate(var(--px, 0), var(--py, 0)) rotate(360deg); }
}

.shape-1 {
  --size: 1200px;
  width: var(--size); height: var(--size);
  animation-duration: 80s;
  border-top: 1px solid rgba(197,165,114,0.25);
  border-right: 1px solid rgba(197,165,114,0.1);
  box-shadow: 0 0 40px rgba(197,165,114,0.05);
}
.shape-2 {
  --size: 850px;
  width: var(--size); height: var(--size);
  animation-duration: 50s;
  animation-direction: reverse;
  border-bottom: 1px solid rgba(197,165,114,0.4);
  border-left: 1px solid rgba(197,165,114,0.15);
  box-shadow: inset 0 0 40px rgba(197,165,114,0.08);
}
.shape-3 {
  --size: 550px;
  width: var(--size); height: var(--size);
  animation-duration: 30s;
  border-top: 1px solid rgba(197,165,114,0.7);
  border-right: 1px solid rgba(197,165,114,0.3);
  box-shadow: 0 0 20px rgba(197,165,114,0.15), inset 0 0 20px rgba(197,165,114,0.15);
}
.shape-4 {
  --size: 300px;
  width: var(--size); height: var(--size);
  animation-duration: 20s;
  animation-direction: reverse;
  border: 1px dashed rgba(197,165,114,0.3);
}
.shape-5 {
  --size: 1000px;
  width: var(--size); height: var(--size);
  animation-duration: 65s;
  border-left: 1px solid rgba(197,165,114,0.3);
  border-bottom: 1px solid rgba(197,165,114,0.1);
}
.shape-6 {
  --size: 700px;
  width: var(--size); height: var(--size);
  animation-duration: 40s;
  animation-direction: reverse;
  border-right: 1px solid rgba(197,165,114,0.4);
  border-top: 1px solid rgba(197,165,114,0.2);
}
.shape-7 {
  --size: 400px;
  width: var(--size); height: var(--size);
  animation-duration: 25s;
  border-bottom: 1px solid rgba(197,165,114,0.5);
  border-left: 1px solid rgba(197,165,114,0.2);
}
.shape-8 {
  --size: 1400px;
  width: var(--size); height: var(--size);
  animation-duration: 100s;
  animation-direction: reverse;
  border-top: 1px solid rgba(197,165,114,0.2);
  border-right: 1px solid rgba(197,165,114,0.1);
}

.shape-diamond {
  position: absolute;
  width: 48px; height: 48px;
  top: 50%; left: 75%;
  margin-top: -24px; margin-left: -24px;
  border: 1px solid rgba(197,165,114,0.4);
  transform: translate(var(--px, 0), var(--py, 0)) rotate(45deg);
  animation: diamond-pulse 6s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(197,165,114,0.2);
}
@keyframes diamond-pulse {
  0%, 100% { opacity: 0.4; transform: translate(var(--px, 0), var(--py, 0)) rotate(45deg) scale(0.9); }
  50%      { opacity: 1; transform: translate(var(--px, 0), var(--py, 0)) rotate(45deg) scale(1.2); }
}

/* ── HERO CONTENT ────────────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--s-md);
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  -webkit-font-smoothing: antialiased;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s-md);
  max-width: 100%;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: var(--s-lg);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  -webkit-font-smoothing: antialiased;
}

/* Gold CTA button */
.hero-cta, .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  transition: background var(--dur-mid) var(--ease-out),
              transform var(--dur-mid),
              box-shadow var(--dur-mid);
  position: relative;
  overflow: hidden;
}
.hero-cta::after, .cta-btn::after  {
  content: '→';
  font-size: 0.9rem;
  transition: transform var(--dur-mid) var(--ease-out);
}
.hero-cta:hover, .cta-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(197,165,114,0.30);
  transform: translateY(-1px);
}
.hero-cta:hover::after, .cta-btn:hover::after { transform: translateX(4px); }

.hero-cta--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 35, 66, 0.35);
}
.hero-cta--ghost::after {
  filter: none;
  opacity: 0.7;
}
.hero-cta--ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Ghost CTA */
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 14px 34px;
  border: 1px solid rgba(255,255,255,0.30);
  cursor: pointer;
  transition: border-color var(--dur-mid), background var(--dur-mid), color var(--dur-mid);
}
.cta-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,165,114,0.06);
}

/* Rebuilt home scroll cue */
.home-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  z-index: 20001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.home-scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
}
.home-scroll-cue-chevron {
  width: 24px;
  height: 24px;
  border-right: 4px solid rgba(10, 35, 66, 0.65);
  border-bottom: 4px solid rgba(10, 35, 66, 0.65);
  position: relative;
  top: 0;
  transform: rotate(45deg);
  animation: home-scroll-cue-bounce 1.6s ease-in-out infinite;
}
@keyframes home-scroll-cue-bounce {
  0%, 100% { top: -2px; }
  50% { top: 5px; }
}

/* ── STATEMENT SECTION ───────────────────────────────────────────── */
.statement-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-md);
  display: block;
}
blockquote.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  padding-left: 0;
  letter-spacing: 0.01em;
}
.statement-text-follow {
  display: block;
  width: 100%;
  clear: both;
  margin-top: 0.75em;
}
blockquote.statement-text--plain {
  display: block;
}

#home .section--statement blockquote.statement-text {
  position: relative;
  padding: 12px 36px 28px;
  margin: 8px 0 16px;
}

#home .section--statement blockquote.statement-text::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-right: 3px solid rgba(197, 165, 114, 0.55);
  border-bottom: 3px solid rgba(197, 165, 114, 0.55);
  pointer-events: none;
}

/* ── PILLARS GRID ────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}
.pillars-grid--dark { border-color: var(--border-dark); }

.pillar {
  background: var(--white);
  padding: 52px 40px;
  border-right: 1px solid var(--border-light);
  position: relative;
  transition: background var(--dur-mid);
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--off-white); }

.pillar--dark {
  background: var(--navy-mid);
  border-right-color: var(--border-dark);
}
.pillar--dark:hover { background: var(--navy-light); }

.pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--rule-gold);
  border-radius: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: background var(--dur-mid), border-color var(--dur-mid), transform var(--dur-mid) var(--ease-out);
}
.pillar:hover .pillar-icon {
  background: rgba(197,165,114,0.28);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.pillar-number {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.pillar--dark .pillar-title { color: var(--white); }
.pillar-body {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--dark-gray);
}
.pillar--dark .pillar-body { color: rgba(255,255,255,0.6); }

/* ── SPLIT LAYOUT ────────────────────────────────────────────────── */
.fade-scroll-container {
  position: relative;
}
.fade-scroll-container .img-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}
.container--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-xl);
  align-items: center;
}
.split-text,
.split-image {
  min-width: 0;
}
.split-text--wide { grid-column: 1 / -1; max-width: 820px; }
.split-img {
  width: 100%; height: 500px;
  object-fit: cover;
  object-position: center;
}

.text-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-md);
  transition: gap var(--dur-mid) var(--ease-out), color var(--dur-fast);
}
.text-link::after { content: '→'; }
.text-link:hover { gap: 14px; color: var(--navy); }

/* ── BODY TEXT ───────────────────────────────────────────────────── */
.body-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 16px;
}
.body-text:last-child { margin-bottom: 0; }
.body-text--large {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
}
.body-text--muted   { color: var(--mid-gray); font-size: 0.84rem; }
.body-text--light   { color: rgba(255,255,255,0.70); }
.body-text--centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── STRIP ───────────────────────────────────────────────────────── */
.strip-grid { display: flex; align-items: stretch; justify-content: center; }
.strip-item { flex: 1; padding: 0 var(--s-lg); text-align: center; }
.strip-divider { width: 1px; background: var(--border-light); align-self: stretch; }
.strip-kicker {
  font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.strip-stat {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.strip-desc {
  font-family: var(--font-sans); font-size: 0.82rem;
  line-height: 1.65; color: var(--dark-gray);
  max-width: 240px; margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(80px, 8vw, 120px);
}
.page-hero--light {
  background: var(--off-white);
  min-height: auto;
  padding: 140px 0 var(--s-xl);
  display: block;
}
/* Photo and solid navy heroes share the same size and title position */
.page-hero--dark,
.page-hero--photo,
.page-hero--compact {
  background: var(--navy);
  min-height: 460px;
  height: 460px;
  padding: 0 0 96px;
  display: flex;
  align-items: flex-end;
}

/* Photo hero variants */
.page-hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-img {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
}
.page-hero-img-about {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center 76%;
  filter: brightness(0.6) saturate(0.3);
}
.page-hero-img-strategy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.6) saturate(0.8) blur(3px);
  transform: scale(1.03);
}
.page-hero-img-advisors {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(0.6) saturate(0.3);
}
.page-hero-img-team {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: 50% 50%;
  filter: brightness(0.35) saturate(0.7);

}


.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.55) 60%, rgba(10,35,66,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  margin: 0 auto;
  width: 100%;
}

/* Gold accent bar, shared across all page heroes for aligned titles */
.page-hero .page-hero-content::before {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.75vw, 3.3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy);
  margin-top: 12px;
}
/* Reserve two-line height so short titles align with wrapping ones */
.page-hero .page-title {
  min-height: calc(2 * 1.08em);
}
.page-title--light { color: var(--white); }

/* ── FOCUS GRID ──────────────────────────────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
}
.focus-item {
  background: var(--white);
  padding: 48px 36px;
  border-right: 1px solid var(--border-light);
  position: relative;
  transition: background var(--dur-mid);
}
.focus-item:last-child { border-right: none; }
.focus-item:hover { background: var(--off-white); }
.focus-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 36px; right: 36px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease-out);
}
.focus-item:hover::after { transform: scaleX(1); }
.focus-label {
  font-family: var(--font-sans); font-size: 0.64rem;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.focus-value {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.focus-list { margin: 12px 0 0; }
.focus-list li {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--dark-gray); padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}
.focus-list li::before { content: '-'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.focus-list li:last-child { border-bottom: none; }

/* ── SITUATIONS ──────────────────────────────────────────────────── */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
}
.situation-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: flex-start; gap: 14px;
  transition: background var(--dur-fast);
}
.situation-item:nth-child(3n) { border-right: none; }
.situation-item:nth-child(4),
.situation-item:nth-child(5),
.situation-item:nth-child(6) { border-bottom: none; }
.situation-item:hover { background: var(--off-white); }
.situation-num { font-family: var(--font-sans); color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.situation-item p {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}

/* ── GTO FRAMEWORK ───────────────────────────────────────────────── */
.gto-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(197,165,114,0.15);
  margin-bottom: var(--s-xl);
}
.gto-step {
  background: rgba(255,255,255,0.03);
  padding: 48px 28px;
  border-right: 1px solid rgba(197,165,114,0.10);
  transition: background var(--dur-mid);
}
.gto-step:last-child { border-right: none; }
.gto-step:hover { background: rgba(197,165,114,0.06); }
.gto-num {
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 0.22em; color: var(--gold);
  margin-bottom: var(--s-md); display: block;
}
.gto-title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.gto-body {
  font-family: var(--font-sans); font-size: 0.82rem;
  line-height: 1.75; color: rgba(255,255,255,0.50);
}

.investment-tenets {
  padding-top: var(--s-lg);
  border-top: 1px solid rgba(197,165,114,0.15);
}
.tenets-row { display: flex; gap: var(--s-xl); margin-top: var(--s-md); flex-wrap: wrap; }
.tenet {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 400;
  color: rgba(255,255,255,0.80); flex: 1; min-width: 200px;
}

.tenets-row--surface {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-md);
}
.tenet--surface {
  flex: initial;
  min-width: 0;
  padding: 28px 26px;
  margin: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(10, 35, 66, 0.07);
  color: var(--ink);
}
.tenet--surface .tenet-title {
  color: var(--navy);
  font-weight: 700;
}
.tenet--surface .tenet-desc {
  color: var(--dark-gray);
}

/* Strategy - competitive proposition */
.strategy-cvp-title {
  text-align: center;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.strategy-cvp-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s-xl);
}

.section--textured .section-header.section-header--centered {
  margin-bottom: 40px;
}
.proposition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}
.proposition-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(10, 35, 66, 0.06);
  transition: box-shadow var(--dur-mid), transform var(--dur-mid);
}
.proposition-card:hover {
  box-shadow: 0 14px 40px rgba(10, 35, 66, 0.1);
  transform: translateY(-2px);
}
.proposition-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale);
}
.proposition-card-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}
.proposition-card--centered {
  text-align: center;
}
.proposition-card--centered .proposition-card-title {
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
  line-height: 1.3;
}
.proposition-card--centered .proposition-card-body {
  text-align: center;
}

/* Strategy - industry themes */
.industry-themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}
.industry-theme-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-mid), transform var(--dur-mid);
}
.industry-theme-card:hover {
  box-shadow: 0 12px 36px rgba(10, 35, 66, 0.1);
  transform: translateY(-3px);
}
.industry-theme-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.industry-theme-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.industry-theme-body {
  padding: 28px 26px 32px;
}
.industry-theme-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.industry-theme-desc {
  margin: 0;
  font-size: 0.9rem;
}

/* GTO - value header & diagram */
.section--gto .gto-value-header {
  margin-bottom: var(--s-xl);
}
.gto-how-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 600;
  margin-bottom: var(--s-md);
}
.gto-value-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.gto-process-diagram {
  margin: 0 auto var(--s-xl);
  max-width: 1100px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gto-process-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  min-width: 720px;
}
.gto-process-node {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 12px 6px 0;
}
.gto-process-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(197, 165, 114, 0.35);
  z-index: 0;
}
.gto-process-ver {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 52px;
  min-height: 52px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.25;
  color: var(--gold);
  background: var(--navy);
}
.gto-process-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}
.gto-framework-intro {
  margin-bottom: var(--s-lg);
}
.gto-framework-kicker {
  margin-bottom: 8px;
}
.gto-framework-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.gto-video-wrap {
  max-width: 900px;
  margin: 0 auto var(--s-xl);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* GTO - card grid */
.gto-grid.gto-grid--cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border: none;
  margin-bottom: 0;
}
.gto-grid.gto-grid--cards .gto-step {
  border-right: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 165, 114, 0.22);
  padding: 32px 26px 36px;
}
.gto-grid.gto-grid--cards .gto-step:hover {
  background: rgba(197, 165, 114, 0.1);
}
.gto-grid.gto-grid--cards .gto-card-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 10px;
}
.gto-card-heading {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.25;
}
.gto-grid.gto-grid--cards .gto-body {
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* GTO - value creation framework (light) */
.section--gto-framework {
  padding-top: var(--s-xl);
  padding-bottom: var(--s-xl);
}
.gto-fw-header {
  text-align: center;
  margin-bottom: var(--s-lg);
}
.gto-fw-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.gto-fw-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--dark-gray);
  margin: 0;
}
.gto-fw-highlight {
  color: var(--gold);
  font-weight: 600;
}
.gto-fw-pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: var(--s-md);
  padding: 8px 0 16px;
  position: relative;
}
.gto-fw-pillar {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
/* Keep chevrons out of the grid flow so each circle sits above its card */
.gto-fw-chevron {
  display: none;
}
.gto-fw-pillar:not(:last-child)::after {
  content: '\203A';
  position: absolute;
  top: calc(clamp(64px, 8vw, 88px) / 2 - 0.45em);
  right: calc(-14px / 2 - 0.35em);
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.gto-fw-circle {
  position: relative;
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  margin: 0 auto 12px;
  border: 2px solid rgba(10, 35, 66, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  flex-shrink: 0;
}
.gto-fw-num {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gto-fw-circle-icon {
  width: 52%;
  height: 52%;
  color: var(--gold);
}
.gto-fw-ver {
  font-family: var(--font-serif);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.2;
  min-height: 1.2em;
}
.gto-fw-label {
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 1.1vw, 0.72rem);
  color: var(--navy-light);
  margin: 0;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.gto-fw-details {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: var(--s-lg);
}
.gto-fw-detail {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top-width: 4px;
  border-radius: 4px;
  padding: 22px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  box-shadow: 0 6px 24px rgba(10, 35, 66, 0.05);
}
.gto-fw-detail--navy { border-top-color: var(--navy); }
.gto-fw-detail--blue { border-top-color: #2B6CB0; }
.gto-fw-detail--teal { border-top-color: #1A7A7A; }
.gto-fw-detail--gold { border-top-color: var(--gold); }
.gto-fw-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.gto-fw-detail--blue .gto-fw-detail-icon { background: #2B6CB0; }
.gto-fw-detail--teal .gto-fw-detail-icon { background: #1A7A7A; }
.gto-fw-detail--gold .gto-fw-detail-icon { background: var(--gold); }
.gto-fw-detail-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.gto-fw-detail-text {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  line-height: 1.65;
  color: var(--dark-gray);
  margin: 0 0 auto;
  flex: 1;
}
.gto-fw-detail-line {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin-top: 16px;
  flex-shrink: 0;
}
.gto-fw-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--white);
}
.gto-fw-footer-icon {
  flex-shrink: 0;
  color: var(--navy);
  width: 22px;
  height: 22px;
}
.gto-fw-footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.gto-fw-footer-text {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  color: var(--navy);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  line-height: 1.4;
}
.gto-fw-footer-divider {
  color: rgba(10, 35, 66, 0.25);
  font-weight: 300;
}
.gto-fw-footer-accent {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .proposition-grid,
  .industry-themes-grid,
  .tenets-row--surface {
    grid-template-columns: 1fr;
  }
  .gto-process-track {
    min-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .gto-process-node:not(:last-child)::after {
    display: none;
  }
  .gto-fw-pipeline,
  .gto-fw-details {
    grid-template-columns: repeat(3, 1fr);
  }
  .gto-fw-pillar:not(:last-child)::after {
    display: none;
  }
}

/* ── PORTFOLIO ───────────────────────────────────────────────────── */
.portfolio-groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.portfolio-group-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
}
.portfolio-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
}
.portfolio-card {
  background: var(--white);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--dur-mid), transform var(--dur-mid), box-shadow var(--dur-mid);
  position: relative;
  overflow: hidden;
}
.portfolio-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.portfolio-card:hover::before { transform: scaleX(1); }
.portfolio-grid:not(.portfolio-grid--two) .portfolio-card:nth-child(3n) { border-right: none; }
.portfolio-grid:not(.portfolio-grid--two) .portfolio-card:nth-child(n+4) { border-bottom: none; }
.portfolio-grid--two .portfolio-card:nth-child(2n) { border-right: none; }
.portfolio-grid--two .portfolio-card { border-bottom: none; }
.portfolio-card:hover { background: var(--off-white); box-shadow: 0 4px 24px rgba(10,35,66,0.06); }
.portfolio-card--placeholder { background: var(--navy); }
.portfolio-card--placeholder:hover { background: var(--navy-mid); }

.portfolio-card-inner { padding: 48px 36px; display: flex; flex-direction: column; height: 100%; }
.portfolio-card-inner--center { justify-content: center; align-items: center; text-align: center; }
.portfolio-sector {
  font-family: var(--font-sans); font-size: 0.64rem;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.portfolio-name {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; line-height: 1.25;
}
.portfolio-desc {
  font-family: var(--font-sans); font-size: 0.85rem;
  line-height: 1.75; color: var(--dark-gray);
  flex-grow: 1; margin-bottom: var(--s-md);
}
.portfolio-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gold);
  border: 1px solid var(--rule-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  min-height: 28px;
  box-sizing: border-box;
  align-self: flex-start;
  margin: 0;
  white-space: nowrap;
}
.portfolio-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  width: 100%;
}
.portfolio-tag--action {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gold);
  border: 1px solid var(--rule-gold);
  padding: 5px 12px;
  min-height: 28px;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.portfolio-tag--action:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.portfolio-placeholder-text {
  font-family: var(--font-sans); font-size: 0.88rem;
  line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 240px;
}
.portfolio-note { padding: var(--s-lg) 0; border-top: 1px solid var(--border-light); }

/* ── CASE STUDIES ────────────────────────────────────────────────── */
.case-study-list { display: flex; flex-direction: column; gap: var(--s-2xl); padding-bottom: var(--s-lg); }
.case-study-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-xl); align-items: center; }
.case-study-row--reverse { grid-template-columns: 1fr 1.2fr; }
.case-study-row--reverse .case-study-media { grid-column: 2; grid-row: 1; }
.case-study-row--reverse .case-study-content { grid-column: 1; grid-row: 1; }

/* ── PHOTO BAND ──────────────────────────────────────────────────── */
.photo-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy);
}
.photo-band-img {
  position: absolute;
  left: 0;
  right: 0;
  top: -25%;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.08);
  transition: transform 8s ease-out;
  will-change: transform;
}
.photo-band--growth .photo-band-img {
  object-position: center 58%;
}
.photo-band:hover .photo-band-img { transform: scale(1.02); }
.photo-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,35,66,0.75) 0%, rgba(10,35,66,0.20) 100%);
  display: flex; align-items: center;
}
.photo-band-text {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.photo-band-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 300; font-style: italic;
  color: var(--white); max-width: 640px;
  line-height: 1.4;
  margin: 0 auto;
  text-align: center;
}
.photo-band-quote::before,
.photo-band-quote::after {
  font-size: 4rem; line-height: 0; vertical-align: -0.5em;
  color: var(--gold); opacity: 0.6;
}
.photo-band-quote::before {
  content: '\201C';
  margin-right: 8px;
}
.photo-band-quote::after {
  content: '\201D';
  margin-left: 8px;
}

/* ── TEAM ────────────────────────────────────────────────────────── */
.team-grid { display: flex; flex-direction: column; gap: 0; background: var(--white); }
.team-member {
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.team-member--reverse { grid-template-columns: 1fr 460px; }
.team-member--reverse .team-photo-wrap { grid-column: 2; grid-row: 1; }
.team-member--reverse .team-info { grid-column: 1; grid-row: 1; }

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  background: var(--white);
  padding: 40px 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
}
.team-photo {
  width: 100%; min-height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.04);
  transition: filter var(--dur-slow);
  display: block;
}
.team-photo--alt { object-position: 35% top; }

/* Individual founder photo adjustments */
.team-photo--soojin {
  object-position: center top;
  transform: none;
}
.team-photo--randy {
  object-position: center top;
  transform: none;
}

.team-member:hover .team-photo {
  filter: grayscale(0%) contrast(1.02); }

.team-info {
  padding: 58px 50px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.team-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 6px;
}
.team-title {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s-md);
}
.team-divider {
  width: 36px; height: 2px;
  background: var(--gold); margin-bottom: var(--s-md);
}
.team-bio {
  font-family: 'Inter', var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

/* ── TEAM LINKEDIN BUTTON ────────────────────────────────────────── */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-md);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur-fast), gap var(--dur-mid) var(--ease-out);
}
.team-linkedin:hover { color: var(--navy); gap: 12px; }
.team-linkedin svg { flex-shrink: 0; }

/* ── TEAM CARDS GRID (supporting members) ────────────────────────── */
.container--team-grid {
  max-width: 1380px;
}
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  border: none;
  align-items: stretch;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background var(--dur-mid), box-shadow var(--dur-mid);
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.team-card:hover::before { transform: scaleX(1); }
.team-card:hover { background: var(--off-white); box-shadow: 0 8px 28px rgba(10,35,66,0.06); }
.team-card-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--white);
}
.team-card-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.04);
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow);
}
/* .team-card:hover .team-card-photo { transform: scale(1.04); filter: grayscale(0%) contrast(1); } */
.team-card-info {
  padding: 22px 24px 30px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.26rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px; line-height: 1.25;
}
.team-card-title {
  font-family: var(--font-sans);
  font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  line-height: 1.45;
  /* Keep all cards equal when a long title wraps to two lines */
  min-height: calc(0.82rem * 1.45 * 2);
}

/* ── TEAM ROW OVERLAY ────────────────────────────────────────────── */
/* ── TEAM ROW OVERLAY ────────────────────────────────────────────── */
.team-cards-grid {
  position: relative;
  isolation: isolate;   /* explicit stacking context so z-index works */
}
.team-row-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(10, 35, 66, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-row-overlay.tro-active {
  opacity: 1;
}
.tro-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 48px 56px;
  gap: 36px;
  box-sizing: border-box;
}
.tro-photo-wrap {
  display: block;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  overflow: hidden;
  background: var(--white);
  align-self: center;
  margin-top: 0;
}
.tro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: none !important;
}
.tro-photo.team-card-photo {
  transition: none !important;
}
.tro-text {
  padding: 0;
  flex: 1;
  min-width: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tro-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
  min-height: 1.2em;
}
.tro-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  min-height: 2.6em;
  line-height: 1.3;
}
.tro-bio {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.85rem * 1.75 * 4);
}
.tro-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  min-height: 20px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s var(--ease-out), color 0.25s;
}
.tro-linkedin:hover { color: #fff; gap: 11px; }

/* ── MOBILE TEAM MODAL ───────────────────────────────────────────── */
.team-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
}
.team-modal.modal-open {
  display: flex;
}
.team-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,35,66,0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: backdropIn 0.3s ease;
}
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.team-modal-card {
  position: relative;
  z-index: 1;
  background: var(--navy);
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 16px 16px 0 0;
  animation: sheetUp 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.team-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.team-modal-close:hover { background: rgba(255,255,255,0.22); }
.team-modal-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--white);
}
.team-modal-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
  transition: none !important;
}
.team-modal-photo.team-card-photo {
  transition: none !important;
}
.team-modal-text { padding: 24px 28px 36px; }
.team-modal-name {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px; line-height: 1.2;
}
.team-modal-title {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.team-modal-bio {
  font-family: var(--font-sans);
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.8); margin-bottom: 20px;
}
.team-modal-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.team-modal-linkedin:hover { gap: 12px; color: #fff; }

/* ── ADVISOR GRID RESPONSIVE ─────────────────────────────────────── */
.team-cards-grid--advisors {
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 28px 28px;
  max-width: 720px;
}
.team-cards-grid--advisors .tro-photo-wrap {
  display: none !important;
}
.team-cards-grid--advisors .tro-inner {
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.team-cards-grid--advisors .tro-text {
  max-width: 920px;
}

/* ── ESG ─────────────────────────────────────────────────────────── */
.esg-lifecycle {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
}
.esg-stage {
  background: var(--white);
  padding: 52px 32px;
  border-right: 1px solid var(--border-light);
  position: relative; transition: background var(--dur-mid);
}
.esg-stage:last-child { border-right: none; }
.esg-stage::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.esg-stage:hover::before { transform: scaleX(1); }
.esg-stage:hover { background: var(--off-white); }
.esg-stage-num {
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 0.22em; color: var(--gold);
  margin-bottom: var(--s-md); display: block;
}
.esg-stage-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.esg-stage-body {
  font-family: var(--font-sans); font-size: 0.85rem;
  line-height: 1.75; color: var(--dark-gray);
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-info { padding-top: var(--s-md); }
.contact-block { margin-bottom: var(--s-xl); }
.contact-label {
  font-family: var(--font-sans); font-size: 0.64rem;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.contact-address {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 300; line-height: 1.75; color: var(--navy);
}
.contact-detail {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--navy);
}
.contact-detail a { transition: color var(--dur-fast); }
.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.contact-form-wrap.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  color: var(--navy); margin-bottom: var(--s-lg); letter-spacing: -0.01em;
}
.contact-form { display: flex; flex-direction: column; gap: var(--s-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label,
.form-group .form-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid var(--border-light);
  padding: 10px 0; outline: none; resize: none;
  transition: border-color var(--dur-mid);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(158,154,147,0.5); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-disclaimer {
  font-family: var(--font-sans); font-size: 0.75rem;
  color: var(--mid-gray); line-height: 1.6; padding-top: 4px;
}
.form-submit {
  align-self: flex-start;
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold); border: none;
  padding: 16px 40px; cursor: pointer;
  transition: background var(--dur-mid), transform var(--dur-mid), box-shadow var(--dur-mid);
  margin-top: var(--s-sm);
}
.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(197,165,114,0.30);
  transform: translateY(-1px);
}
.form-success {
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--gold); padding: var(--s-md) 0;
  border-top: 1px solid var(--rule-gold);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
#site-footer { background: var(--bg-darker); padding: var(--s-lg) 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: clamp(48px, 8vw, 96px);
  padding-bottom: var(--s-md);
  border-bottom: 1px solid rgba(197,165,114,0.12);
}
.footer-brand {
  flex: 0 1 280px;
}
.footer-logo {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.01em; color: var(--white); display: block;
  margin-bottom: var(--s-sm); transition: color var(--dur-fast);
}
.footer-logo:hover { color: var(--gold); }
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--font-sans); font-size: 0.8rem;
  color: rgba(255,255,255,0.35); font-style: italic; margin-bottom: var(--s-sm);
}
.footer-address {
  font-family: var(--font-sans); font-size: 0.78rem;
  line-height: 1.7; color: rgba(255,255,255,0.28);
  margin-top: 12px;
}
.footer-nav {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px clamp(40px, 6vw, 120px);
  max-width: 640px;
  margin-left: auto;
  width: 100%;
}
.footer-nav ul,
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: rgba(255,255,255,0.45); transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { padding: var(--s-md) 0; }
.footer-legal {
  font-family: var(--font-sans); font-size: 0.7rem;
  color: rgba(255,255,255,0.40); line-height: 1.7; max-width: 900px;
}
.footer-legal-link{
  font-family: var(--font-sans); font-size: 0.6rem;
  color: rgba(255,255,255,0.30); line-height: 1.7; max-width: 900px;
}

.footer-link {
  color: rgba(255, 169, 56, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM SCROLL ANIMATION SYSTEM v2
   Headline clip · Label wipe · Strong upward · Directional · Words
   ═══════════════════════════════════════════════════════════════════ */

/* ── HEADLINE LINE CLIP REVEAL ───────────────────────────────────── */
/* Each heading line sits inside overflow:hidden so it can slide up  */
.line-clip {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em; /* prevent descender clipping */
}
.line-clip-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
/* Stagger each line */
.line-clip:nth-child(1) .line-clip-inner { transition-delay:   0ms; }
.line-clip:nth-child(2) .line-clip-inner { transition-delay: 140ms; }
.line-clip:nth-child(3) .line-clip-inner { transition-delay: 280ms; }
/* Trigger */
.split-revealed .line-clip-inner { transform: translateY(0); }

/* ── SECTION LABEL CLIP RISE ─────────────────────────────────────── */
.label-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.4;
}
.label-clip-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}
.label-revealed .label-clip-inner { transform: translateY(0); }

/* ── STRONG UPWARD REVEAL (80 px lift) ───────────────────────────── */
.up-reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.95s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: transform, opacity;
}
.up-reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── HORIZONTAL REVEALS ──────────────────────────────────────────── */
.reveal-left-strong {
  opacity: 0;
  transform: translateX(-64px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-right-strong {
  opacity: 0;
  transform: translateX(64px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-left-strong.in-view,
.reveal-right-strong.in-view { opacity: 1; transform: translateX(0); }

/* ── WORD WAVE (statement blockquote) ────────────────────────────── */
.word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-rise {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.words-revealed .word-rise { transform: translateY(0); }

/* ── TYPING CURSOR ───────────────────────────────────────────────── */
.typing-cursor {
  display: inline-block;
  width: 3px;
  background: var(--gold-light);
  margin-left: 4px;
  vertical-align: baseline;
  animation: cursor-blink 1.1s step-end infinite;
  border-radius: 1px;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── PARALLAX LAYERS ────────────────────────────────────────────── */
.photo-band { will-change: transform; }
.photo-band-img { will-change: transform; }
.page-hero-img { will-change: transform; }
.split-img { overflow: hidden; background-size: contain; }

/* ── SECTION DIVIDER LINE ────────────────────────────────────────── */
.reveal-line {
  display: block;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 1.2s var(--ease-out);
}
.reveal-line.visible { width: 48px; }

/* ── COUNTER NUMBER ──────────────────────────────────────────────── */
.count-up { font-variant-numeric: tabular-nums; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gto-grid { grid-template-columns: repeat(3, 1fr); }
  .team-member, .team-member--reverse { grid-template-columns: 1fr; }
  .team-member--reverse .team-photo-wrap,
  .team-member--reverse .team-info { grid-column: auto; grid-row: auto; }
  .team-photo { min-height: 420px; }
  .container--contact { grid-template-columns: 1fr; gap: var(--s-xl); }
  .esg-lifecycle { grid-template-columns: repeat(2, 1fr); }
  .esg-stage:nth-child(2) { border-right: none; }
  .esg-stage:nth-child(1),
  .esg-stage:nth-child(2) { border-bottom: 1px solid var(--border-light); }
}

@media (max-width: 860px) {
  :root { --s-2xl: 100px; --s-xl: 64px; }
  #main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border-light); padding: 36px 28px; }
  .pillar:last-child { border-bottom: none; }

  /* Focus */
  .focus-grid { grid-template-columns: 1fr; }
  .focus-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 36px 28px; }
  .focus-item:last-child { border-bottom: none; }
  .invest-theme-layout { grid-template-columns: 1fr; gap: 12px; }
  .invest-theme-card {
    padding: 36px 24px;
    min-height: 148px;
    height: auto;
  }
  .invest-theme-card--apex { width: 100%; max-width: none; }
  .invest-theme-heading,
  .invest-theme-heading.invest-theme-heading--accent {
    font-size: 1.05rem;
  }

  /* Situations */
  .situations-grid { grid-template-columns: 1fr 1fr; }

  /* Portfolio */
  .portfolio-grid,
  .portfolio-grid--two { grid-template-columns: 1fr 1fr; max-width: none; }
  .portfolio-grid .portfolio-card { border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
  .portfolio-grid .portfolio-card:nth-child(2n) { border-right: none; }
  .portfolio-grid .portfolio-card:nth-last-child(-n+2) { border-bottom: none; }
  .portfolio-tag-row { gap: 6px; }
  .portfolio-tag,
  .portfolio-tag--action {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    min-height: 26px;
  }

  /* Case Studies */
  .case-study-row, .case-study-row--reverse { grid-template-columns: 1fr; gap: var(--s-lg); }
  .case-study-row--reverse .case-study-media, .case-study-row--reverse .case-study-content { grid-column: auto; grid-row: auto; }

  /* Strip */
  .strip-grid { flex-direction: column; gap: var(--s-xl); text-align: center; }
  .strip-divider { width: 48px; height: 1px; margin: 0 auto; }

  /* GTO */
  .gto-grid { grid-template-columns: 1fr 1fr; }
  .gto-fw-pipeline,
  .gto-fw-details {
    grid-template-columns: repeat(2, 1fr);
  }
  .gto-fw-pillar:not(:last-child)::after {
    display: none;
  }

  /* Layout */
  .container--split { grid-template-columns: 1fr; }
  .container--split .split-image { order: -1; }
  .split-img { height: 300px; }
  .footer-inner { flex-direction: column; gap: var(--s-lg); }
  .footer-nav {
    margin-left: 0;
    max-width: none;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
  .hero-shapes .shape-diamond,
  .hero-shapes .shape-dot-grid { display: none; }

  /* Team cards - hide row overlay on touch-primary viewports, modal handles it */
  .team-row-overlay { display: none; }

  /* Team member cards: 2 cols */
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-card-info { padding: 16px 14px 20px; }
  .team-card-name { font-size: 1.14rem; }
  .team-card-title { font-size: 0.7rem; letter-spacing: 0.1em; }

  /* Advisor grid: 2 cols at tablet */
  .team-cards-grid--advisors { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: none; }

  /* Team */
  .team-info { padding: 40px 28px; }
  .team-name { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* Case study video modal */
  .portfolio-video-modal { padding: 12px; }
  .portfolio-video-modal-bar {
    gap: 10px;
    padding: 12px;
  }
  .portfolio-video-modal-title { display: none; }
  .portfolio-video-modal-back {
    font-size: 0.65rem;
    padding: 7px 12px 7px 8px;
  }

  /* Contact */
  .contact-info { padding-top: 0; }
  .contact-block { margin-bottom: var(--s-lg); }

  /* Nav logo */
  .nav-logo-img { height: 36px; }
}

@media (max-width: 600px) {
  :root { --s-2xl: 64px; --s-xl: 44px; --s-lg: 36px; }

  /* Hero */
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-cta { padding: 14px 28px; font-size: 0.68rem; }

  /* Situations */
  .situations-grid { grid-template-columns: 1fr; }
  .situation-item { border-right: none; }

  /* GTO */
  .gto-grid { grid-template-columns: 1fr; }
  .gto-fw-pipeline,
  .gto-fw-details {
    grid-template-columns: 1fr;
  }
  .gto-fw-pillar:not(:last-child)::after {
    display: none;
  }
  .gto-fw-footer {
    flex-direction: column;
    border-radius: 16px;
    padding: 18px 20px;
    text-align: center;
  }
  .gto-fw-footer-text {
    flex-direction: column;
    gap: 6px;
  }
  .gto-fw-footer-divider { display: none; }

  /* ESG */
  .esg-lifecycle { grid-template-columns: 1fr; }
  .esg-stage { border-right: none; border-bottom: 1px solid var(--border-light); }
  .esg-stage:last-child { border-bottom: none; }

  /* Portfolio */
  .portfolio-grid,
  .portfolio-grid--two { grid-template-columns: 1fr; }
  .portfolio-grid .portfolio-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .portfolio-grid .portfolio-card:last-child { border-bottom: none; }
  .portfolio-card-inner { padding: 32px 24px; }
  .portfolio-tag-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .portfolio-tag,
  .portfolio-tag--action {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    padding: 5px 12px;
    min-height: 28px;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-title { font-size: 1.5rem; }

  /* Tenets */
  .tenets-row { flex-direction: column; gap: var(--s-md); }

  /* Misc */
  .home-scroll-cue { bottom: 32px; }
  .photo-band { height: 260px; }

  /* Nav logo */
  .nav-logo-img { height: 32px; }

  /* Pillar icon */
  .pillar-icon { width: 40px; height: 40px; margin-bottom: 18px; }

  /* Section padding */
  .section { padding: var(--s-2xl) 0; }
  .pillar { padding: 28px 20px; }
  .focus-item { padding: 28px 20px; }

  /* Page hero: shared size and bottom-left title position */
  .page-hero,
  .page-hero--dark,
  .page-hero--photo,
  .page-hero--compact {
    min-height: 380px;
    padding: 0 0 60px;
    display: flex;
    align-items: flex-end;
  }

  /* Strip */
  .strip-item { padding: 0 var(--s-md); }

  /* Team */
  .team-photo { min-height: 320px; }
  .team-info { padding: 28px 20px; }

  /* Team cards: still 2-col on 600 */
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-cards-grid--advisors { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  /* Both grids go single-column on very small phones */
  .team-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-cards-grid--advisors {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* New team photos zoom adjustments */
.team-photo.team-photo--new {
  transform: scale(2.1);
  transform-origin: center top;
}
.team-member:hover .team-photo.team-photo--new {
  transform: scale(2.0);
}
.team-card-photo.team-photo--new {
  transform: scale(1.35);
  transform-origin: center top;
}
/* .team-card:hover .team-card-photo.team-photo--new {
  transform: scale(1.25);
}
.team-card:hover .team-card-photo.team-photo--new-gap {
  transform: scale(1.8);
} */
.team-modal-photo.team-photo--new {
  transform: scale(1.35);
  transform-origin: center top;
}

.team-card-photo.team-photo--new-gap {
  transform: scale(1.9);
  transform-origin: 50% 8%;
}

/* Individual team member photo adjustments - must stay after --new-gap to win on equal specificity */
.team-card-photo.team-photo--kevin  {    
  transform: scale(2.9);
  transform-origin: 53% 6%;
}
.team-card-photo.team-photo--jovi   { transform: none; object-position: center top; }
.team-card-photo.team-photo--teck   { 
  transform: scale(2.6);
  transform-origin: 46% 10%;
}
.team-card-photo.team-photo--howard { 
  transform: scale(2.5);
  transform-origin: 53% 6%;
}
.team-card-photo.team-photo--donald { 
  transform: scale(2.8);
  transform-origin: 50% 14%;
}
.team-card-photo.team-photo--chris  { transform: none; object-position: center top; }
.team-card-photo.team-photo--yanxia {
  transform: scale(1.18);
  transform-origin: center top;
  object-position: center top;
}
.team-card-photo.team-photo--yvonne {
  transform: none;
  object-fit: contain;
  object-position: center center;
}
.team-card-photo.team-photo--liz {
  transform: scale(1.28);
  transform-origin: center top;
  object-position: center top;
}

/* Individual advisor photo adjustments */
.team-card-photo.team-photo--freddy { transform: none; object-position: center top; }
.team-card-photo.team-photo--peter  { transform: scale(2.3); transform-origin: 50% 13%; }
.team-card-photo.team-photo--willy  { transform: scale(2.2); transform-origin: 50% 10%; }

.team-card-photo.team-photo--new-gap-2 {
  transform: scale(1.4);
  transform-origin: 60% 10%;
}

/* .team-card-photo.team-photo--new-gap-2:hover {
  transform: scale(1.3);
  transform-origin: 60% 10%;
} */

/* ═══════════════════════════════════════════════════════════════════
   REVISION ADDITIONS - v2
   ═══════════════════════════════════════════════════════════════════ */

/* ── TEAM SOLID HERO BACKGROUND ─────────────────────────────────── */
.page-hero-solid-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0D2D54 40%, #1A3D6B 100%);
  z-index: 0;
}

/* ── VALUES GRID (About Page) ────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.value-item {
  padding: 24px;
  background: var(--off-white);
  border-radius: 8px;
  transition: background var(--dur-mid), transform var(--dur-mid);
}
.value-item:hover {
  background: var(--cream);
  transform: translateX(4px);
}
.value-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ── ENHANCED INVESTMENT TENETS ──────────────────────────────────── */
.tenet-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.tenet-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.tenet-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── NEWS SECTION ────────────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--dur-mid);
}
.news-item:first-child {
  border-top: 1px solid var(--border-light);
}
.news-item:hover {
  background: var(--off-white);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 8px;
}

.news-date {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  padding-top: 4px;
  white-space: nowrap;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.news-excerpt {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin: 0;
}

.news-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--dur-fast);
  align-self: flex-start;
  margin-top: 4px;
}
.news-link:hover {
  color: var(--navy);
}

/* ── PORTFOLIO CLICKABLE CARDS ───────────────────────────────────── */
.portfolio-card--clickable {
  cursor: pointer;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}
.portfolio-card--clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,35,66,0.12);
}

/* ── PORTFOLIO CASE STUDY VIDEO MODAL ────────────────────────────── */
.portfolio-video-modal {
  position: fixed;
  inset: 0;
  z-index: 20050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.portfolio-video-modal[aria-hidden="false"] {
  display: flex;
}
body.portfolio-case-study-open {
  overflow: hidden;
}
body.portfolio-case-study-open #site-header,
body.portfolio-case-study-open #mobile-nav {
  visibility: hidden;
  pointer-events: none;
}
.portfolio-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 66, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.portfolio-video-modal-card {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 35, 66, 0.45);
  animation: modalFadeIn 0.3s var(--ease-out);
}
.portfolio-video-modal-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.portfolio-video-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.portfolio-video-modal-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}
.portfolio-video-modal-close {
  flex-shrink: 0;
  margin-left: auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: background var(--dur-fast);
}
.portfolio-video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.portfolio-video-modal-title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.portfolio-video-modal-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ── PORTFOLIO DETAIL MODAL ──────────────────────────────────────── */
.portfolio-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.portfolio-detail-modal[aria-hidden="false"] {
  display: flex;
}

.portfolio-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,35,66,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.portfolio-detail-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 12px;
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(10,35,66,0.3);
  animation: modalFadeIn 0.3s var(--ease-out);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.portfolio-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.portfolio-detail-close:hover {
  background: var(--navy);
  color: var(--white);
}

.portfolio-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.portfolio-detail-content .detail-sector {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.portfolio-detail-content .detail-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 24px;
}
.portfolio-detail-content .detail-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}
.portfolio-detail-content .detail-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.portfolio-detail-content .detail-stat {
  padding: 16px;
  background: var(--off-white);
  border-radius: 8px;
}
.portfolio-detail-content .detail-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.portfolio-detail-content .detail-stat-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── FOOTER LINKS ROW ────────────────────────────────────────────── */
.footer-links-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-link-item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
  text-decoration: none;
}
.footer-legal-link-item:hover {
  color: var(--gold-light);
}
.footer-divider {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── STATS GRID - base must precede responsive overrides ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
  padding: 48px 0;
  min-width: 0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 32px;
  border-right: 1px solid var(--border-light);
}
.stat-card:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 100%;
}

.stat-label-line {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: none;
  padding: 0;
  display: block;
  text-align: center;
  line-height: 1.5;
  word-wrap: break-word;
  opacity: 0.65;
}

/* ── NEWS MOBILE RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .news-date {
    font-size: 0.75rem;
  }
  .news-title {
    font-size: 1.1rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-detail-card {
    padding: 24px;
    width: 95%;
  }
  .portfolio-detail-content .detail-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) { border-bottom: 1px solid var(--border-light); padding-bottom: 32px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 24px; margin-bottom: 24px; }
  .stat-card:last-child { border-bottom: none; }
}

/* ── FOOTER MAS NOTICE ───────────────────────────────────────────── */
.footer-mas-notice {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── VISION TRIANGLE (People, Process, Purpose) ──────────────────── */
.section--vision-ppp {
  background: var(--white);
  padding-top: calc(var(--s-2xl) * 0.8);
  padding-bottom: calc(var(--s-2xl) * 1.2);
}

.vision-triangle {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(200px, 2.1fr) minmax(0, 0.9fr);
  grid-template-rows: auto auto;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.vision-pillar {
  padding: 28px 8px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vision-pillar--people {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  transform: translateX(clamp(28px, 9vw, 160px));
}

.vision-pillar--process {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  transform: translateX(clamp(-160px, -9vw, -28px));
}

.vision-pillar--purpose {
  grid-column: 2;
  grid-row: 2;
  padding-top: 0;
  margin-top: clamp(-72px, -12vmin, -28px);
  z-index: 2;
}

.vision-motif {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1.5vw, 16px) 0;
  position: relative;
  z-index: 0;
  margin-bottom: clamp(-40px, -6vmin, -12px);
}

/* Prior size × 1.5 */
.vision-motif-img {
  width: 100%;
  max-width: min(1200px, calc(82vmin * 1.5));
  height: auto;
  object-fit: contain;
  display: block;
}

.vision-pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.95), 0 0 36px rgba(255, 255, 255, 0.7);
}

.vision-pillar-title em {
  font-style: italic;
}

.vision-pillar-body {
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 1.05vw, 0.95rem);
  line-height: 1.78;
  color: var(--dark-gray);
  max-width: min(300px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.95), 0 0 40px rgba(255, 255, 255, 0.75);
}

.vision-pillar--purpose .vision-pillar-body {
  max-width: min(440px, 100%);
}

@media (max-width: 860px) {
  .section--vision-ppp {
    padding-top: calc(var(--s-xl) * 0.85);
    padding-bottom: calc(var(--s-2xl) * 0.95);
  }

  /* Stack copy; motif sits behind as a faint watermark */
  .vision-triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(22px, 6vw, 36px);
    padding: clamp(8px, 2vw, 16px) 0;
    min-height: min(520px, 72vh);
  }

  .vision-motif {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 420px);
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vision-motif-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    opacity: 0.34;
  }

  .vision-pillar--people,
  .vision-pillar--process,
  .vision-pillar--purpose {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 36rem;
    padding: clamp(10px, 2.5vw, 18px) clamp(16px, 5vw, 24px);
    justify-self: center;
    transform: none;
    margin-top: 0;
    z-index: 1;
  }

  .vision-pillar--purpose {
    margin-top: 0;
    padding-bottom: clamp(4px, 1vw, 12px);
  }

  .vision-pillar-body {
    max-width: 100%;
  }

  .vision-pillar-title,
  .vision-pillar-body {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.98), 0 0 28px rgba(255, 255, 255, 0.88),
      0 1px 2px rgba(255, 255, 255, 0.6);
  }
}

/* ── PORTFOLIO DETAIL PAGE (SPA) ─────────────────────────────────── */
.portfolio-company-detail {
  display: none;
  background: var(--bg-light);
  position: relative;
  z-index: 0;
}

.portfolio-back-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--dur-fast);
}
.portfolio-back-link:hover {
  color: var(--navy);
}

.portfolio-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.detail-meta-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.detail-meta-item strong {
  color: var(--navy);
  font-weight: 600;
}

/* Portfolio company detail (SPA) - single hero, no navy “sandwich” */
.portfolio-detail {
  background: var(--bg-light);
}
.portfolio-detail-hero {
  position: relative;
  min-height: min(78vh, 720px);
  color: var(--white);
  overflow: hidden;
}
.portfolio-detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}
.portfolio-detail-hero-bg img.portfolio-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.portfolio-detail-hero-bg--solid {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, #0d2847 100%);
}
.portfolio-detail-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(6, 22, 41, 0.94) 0%,
    rgba(6, 22, 41, 0.55) 42%,
    rgba(6, 22, 41, 0.2) 100%
  );
}
.portfolio-detail-hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: var(--s-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.portfolio-detail-hero-top {
  flex-shrink: 0;
}
.portfolio-back-link--hero {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.portfolio-back-link--hero:hover {
  color: var(--gold-light);
}
.portfolio-detail-hero-main {
  flex-shrink: 0;
  padding-top: var(--s-xl);
}
.portfolio-detail-sector--hero {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.portfolio-detail-name--hero {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  max-width: 18ch;
}
.portfolio-detail-meta-chips {
  list-style: none;
  margin: var(--s-lg) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.portfolio-detail-meta-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.portfolio-meta-chip-k {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.portfolio-meta-chip-v {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.portfolio-detail-body-wrap {
  padding-top: var(--s-xl);
  border-top: none;
}
.portfolio-detail-video-wrap {
  margin-bottom: var(--s-xl);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 35, 66, 0.12);
}
.portfolio-detail-video {
  display: block;
  width: 100%;
}
.portfolio-detail-h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--s-md);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}
.portfolio-detail-h2--sub {
  margin-top: var(--s-xl);
  font-size: 1.15rem;
}
.portfolio-detail-lead {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
.portfolio-detail-investment {
  margin-bottom: 0;
}
.portfolio-detail-quote {
  margin: var(--s-xl) 0 0;
  padding: 0;
}
.portfolio-detail-blockquote {
  margin: 0;
  font-style: italic;
}
.portfolio-detail-quote-cite {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin: 12px 0 0 32px;
}
.portfolio-detail-boltons {
  margin: 12px 0 0;
  padding-left: 22px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--dark-gray);
}
.portfolio-detail-boltons li {
  margin-bottom: 8px;
}
.portfolio-detail-stats-wrap {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.portfolio-detail-stats .stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
}
.portfolio-detail-stats .stat-label-line {
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border-light);
}
.portfolio-detail-cta-inner {
  text-align: center;
  padding: var(--s-md) 0;
}
@media (max-width: 900px) {
  .portfolio-detail-hero {
    min-height: min(88vh, 680px);
  }
  .portfolio-detail-hero-inner {
    min-height: min(88vh, 680px);
    padding-top: 92px;
  }
  .portfolio-detail-name--hero {
    max-width: none;
  }
  .portfolio-detail-meta-chips {
    flex-direction: column;
  }
  .portfolio-detail-meta-chip {
    min-width: 0;
  }
}

/* About - intro & mission / values */
.about-intro-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: var(--s-lg) var(--s-md) var(--s-xl);
}
.about-intro-card .section-label {
  justify-content: center;
}
.about-intro-card .section-title {
  margin-bottom: var(--s-md);
}
.about-intro-card .body-text {
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* About - mission & values: split columns + full value tiles (values-grid / value-item) */
.about-mission-split {
  align-items: start;
}
.about-mission-split .values-grid {
  margin-top: 24px;
}
@media (max-width: 900px) {
  .about-mission-split {
    grid-template-columns: 1fr;
  }
}

/* Strategy - Where we invest (reverse triangle, 3 separate cards) */
.section-gold-divider {
  width: 50%;
  height: 2px;
  background: var(--gold);
  margin: 0 auto var(--s-lg);
}
.invest-theme-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.invest-theme-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px 28px;
  box-shadow: 0 12px 44px rgba(10, 35, 66, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  min-height: 168px;
  height: 168px;
}
.invest-theme-card--apex {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 16px) / 2);
  max-width: calc((100% - 16px) / 2);
}
.invest-theme-heading,
.invest-theme-heading.invest-theme-heading--accent {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}
.invest-theme-heading {
  color: var(--navy);
}
.invest-theme-heading--accent {
  color: var(--gold);
}
.invest-theme-body {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin: 0;
  max-width: 42ch;
}
.invest-theme-item .focus-label {
  margin-bottom: 16px;
}

/* Team - LinkedIn icon beside name */
.team-card-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.team-card-name-row .team-card-name {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.team-card-li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a66c2;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.team-card-li:hover {
  transform: scale(1.08);
  opacity: 0.85;
}
.team-card-li svg {
  width: 18px;
  height: 18px;
  display: block;
}
.tro-education {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  max-height: 4.95em;
  overflow: hidden;
}
.team-modal-linkedin svg {
  margin-top: -2px;
}

/* ── INTRO TEXT & OVERLAP BOX ───────────────────────── */
.intro-overlap-box {
  background: var(--white);
  padding: 56px 72px;
  position: relative;
  z-index: 10;
  max-width: 80%;
  margin-top: -44px;
  margin-bottom: var(--s-2xl);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.22);
}
.intro-overlap-text--pre {
  opacity: 0;
  transform: translateY(10px);
}
.intro-overlap-text--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
@media (max-width: 860px) {
  .intro-overlap-box { padding: 48px 40px; max-width: 88%; }
}
@media (max-width: 600px) {
  .intro-overlap-box { padding: 36px 20px; max-width: 100%; margin-top: -30px; }
}
.intro-overlap-box .section-title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: 16px;
}
.intro-text p {
  font-family: 'Inter', var(--font-sans);
  font-weight: 300;
  color: var(--navy);
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  line-height: 1.8;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* ── PORTFOLIO LOGO ─────────────────────────────────────────────── */
.portfolio-logo-wrap {
  margin-bottom: 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.portfolio-logo {
  width: auto;
  height: auto;
  max-width: 168px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
}
/* Optical size balancing: denser/taller marks scale down, lighter/wider marks scale up */
.portfolio-logo--engtek { max-height: 50px; max-width: 176px; transform: scale(1.1); }
.portfolio-logo--excelmarco { max-height: 46px; max-width: 156px; transform: scale(0.86); }
.portfolio-logo--spindex { max-height: 42px; max-width: 180px; transform: scale(1.18); }
.portfolio-logo--asaba { max-height: 44px; max-width: 160px; transform: scale(0.9); }
.portfolio-logo--techcom { max-height: 48px; max-width: 172px; transform: scale(1.08); }
.portfolio-logo--willowglen { max-height: 42px; max-width: 180px; transform: scale(1.05); }
.team-modal-edu-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.team-modal-edu-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.team-modal-education-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mid-gray);
  margin: 0;
}

/* ── NEWS HEADLINES ABOUT US ─────────────────────────────────────── */
.news-section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 32px;
}

.news-headlines-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-headline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}
.news-headline-item:first-child { border-top: 1px solid var(--border-light); }

.news-headline-outlet {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  text-transform: uppercase;
  white-space: nowrap;
}

.news-headline-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 4px;
}

.news-headline-title {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.news-headline-title:hover { color: var(--gold); }

@media (max-width: 600px) {
  .news-headline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────── */
.legal-page body,
body.legal-page {
  background: var(--off-white);
}

.legal-main {
  padding-top: 120px;
  padding-bottom: var(--s-2xl);
  min-height: 70vh;
}

.legal-container {
  max-width: 860px;
}

/* Fade-in animations */
@keyframes legalFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.legal-page .legal-back-link {
  animation: legalFadeUp 0.55s 0.05s cubic-bezier(0.16,1,0.3,1) both;
}
body.legal-page .legal-heading {
  animation: legalFadeUp 0.65s 0.12s cubic-bezier(0.16,1,0.3,1) both;
}
body.legal-page .legal-rule {
  animation: legalFadeUp 0.5s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
body.legal-page .legal-body {
  animation: legalFadeUp 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mid-gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
  transition: color var(--dur-fast);
}
.legal-back-link:hover { color: var(--navy); }

.legal-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-sm);
}

.legal-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--s-lg);
}

.legal-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dark-gray);
}

.legal-body ul {
  margin: 0 0 1.25em;
  padding-left: 1.25em;
}
.legal-body li {
  margin-bottom: 0.5em;
}

.legal-body p {
  margin-bottom: 1.2em;
}

.legal-section-heading {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2em;
  margin-bottom: 0.7em;
}

.legal-list {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.legal-list li {
  margin-bottom: 0.5em;
}
.legal-list--alpha {
  list-style-type: lower-alpha;
  margin-top: 0.5em;
}

.legal-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}
.legal-link:hover { color: var(--navy); }

.legal-contact-block {
  background: var(--cream);
  padding: var(--s-sm) var(--s-md);
  margin-top: var(--s-sm);
  margin-bottom: 1.2em;
}
.legal-contact-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px !important;
}

@media (max-width: 768px) {
  .legal-main { padding-top: 96px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE - REBUILD
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────────────── */
.abt-hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.abt-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.abt-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.5) saturate(0.5);
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.0, 0.0, 0.2, 1);
}
#about.active .abt-hero-img {
  transform: scale(1);
}
.abt-hero-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,22,41,0.97) 0%, rgba(6,22,41,0.5) 45%, rgba(6,22,41,0.15) 100%),
    linear-gradient(to right, rgba(6,22,41,0.7) 0%, transparent 70%);
}
/* Ghost text watermark */
.abt-hero-ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 600;
  color: rgba(255,255,255,0.018);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
}
/* OPERATORS sits at the floor, INVESTORS floats above it */
.abt-hero-ghost--left  { left: -1%; bottom: -2%; }
.abt-hero-ghost--right { right: -1%; bottom: clamp(6rem, 14vw, 14rem); }
@keyframes ghostFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
#about.active .abt-hero-ghost--left {
  animation: ghostFadeIn 2.2s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
#about.active .abt-hero-ghost--right {
  animation: ghostFadeIn 2.2s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
/* Hero text: eyebrow + heading + rule + descriptor group */
.abt-hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Hero body: content + stats stacked at bottom */
.abt-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 8vh, 88px);
  gap: clamp(32px, 5vh, 56px);
}
/* Eyebrow */
.abt-hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
#about.active .abt-hero-eyebrow { opacity: 1; transform: translateY(0); }

/* H1 override: Cormorant display, gold second line
   Sized for balance across common desktops (not only 1366x768) */
.abt-hero-h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 4.6vw, 4.25rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08 !important;
  margin-top: 0 !important;
}
#about .abt-hero-h1 .line-clip:nth-child(2) .line-clip-inner {
  color: var(--gold);
}
/* Expanding rule */
.abt-hero-rule {
  width: 0;
  height: 1px;
  background: rgba(197,165,114,0.45);
  margin: 18px 0 14px;
  max-width: 380px;
  transition: width 1.1s cubic-bezier(0.16,1,0.3,1) 1.15s;
}
#about.active .abt-hero-rule { width: 380px; }
/* Descriptor */
.abt-hero-descriptor {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease 1.45s, transform 0.7s ease 1.45s;
}
#about.active .abt-hero-descriptor { opacity: 1; transform: translateY(0); }
/* Stats row */
.abt-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 1.7s, transform 0.8s ease 1.7s;
}
#about.active .abt-hero-stats { opacity: 1; transform: translateY(0); }
.abt-stat { display: flex; flex-direction: column; gap: 5px; }
.abt-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.abt-stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
}
.abt-stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.abt-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(197,165,114,0.22);
  flex-shrink: 0;
}
/* Scroll indicator */
.abt-hero-scroll {
  position: absolute;
  bottom: 36px;
  right: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease 2.1s;
}
#about.active .abt-hero-scroll { opacity: 1; }
.abt-hero-scroll-word {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}
.abt-hero-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(197,165,114,0.7), transparent);
  animation: abtScrollPulse 2.6s ease-in-out infinite 2.2s;
  transform-origin: top center;
}
@keyframes abtScrollPulse {
  0%,100% { transform: scaleY(0); opacity: 0; }
  25%      { transform: scaleY(1); opacity: 1; transform-origin: top; }
  75%      { transform: scaleY(1); opacity: 0.1; transform-origin: bottom; }
}

/* ── PHILOSOPHY TAGLINE ────────────────────────────────────────────── */
.abt-tagline {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(197,165,114,0.12);
}
.abt-tagline-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.abt-tagline-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto 40px;
}
.abt-tagline-rule {
  width: 48px;
  height: 1px;
  background: rgba(197,165,114,0.4);
  margin: 0 auto;
}

/* ── WHO WE ARE ────────────────────────────────────────────────────── */
.abt-who {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: var(--navy);
  padding: 80px 24px;
  box-sizing: border-box;
}
.abt-who-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
  padding: 0;
  background: transparent;
}
.abt-who-text .section-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 28px;
  text-align: center;
}
.abt-who-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

/* ── OPERATORS FIRST | INVESTORS ALWAYS ────────────────────────────── */
.abt-creed {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.abt-creed-panel {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(32px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 500px;
}
.abt-creed-panel--left  {
  background: var(--gold-pale);
  border-right: 1px solid rgba(10,35,66,0.08);
}
.abt-creed-panel--right { background: var(--cream); }
/* Ghost background word */
.abt-creed-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  color: rgba(10,35,66,0.04);
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.abt-creed-content { position: relative; z-index: 1; }
.abt-creed-num { display: none; }
.abt-creed-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.abt-creed-panel--right .abt-creed-title { color: var(--ink); }
.creed-word-blue { color: var(--navy); }
.abt-creed-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--dark-gray);
  max-width: 400px;
}
/* Scroll reveals */
.abt-creed-panel {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.abt-creed-panel--right { transition-delay: 0.15s; }
.abt-creed-panel.in-view { opacity: 1; transform: translateY(0); }

/* ── BUILD BETTER BUSINESSES ────────────────────────────────────────── */
.abt-vision {
  background: #040e1a;
  padding: 120px 0;
  text-align: center;
}
.abt-vision-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.abt-vision-label {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.abt-vision-label.in-view { opacity: 1; transform: translateY(0); }
.abt-vision-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.035em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease 0.1s, transform 1s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.abt-vision-title.in-view { opacity: 1; transform: translateY(0); }
.abt-vision-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.42);
  max-width: 560px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}
.abt-vision-body.in-view { opacity: 1; transform: translateY(0); }

/* ── MISSION + CORE VALUES: editorial rebuild ───────────────────── */
.abt-mv {
  background: #040e1a;
}
/* Mission: two-column asymmetric */
.abt-mv-mission {
  padding: 96px 0 72px;
  border-bottom: 1px solid rgba(197,165,114,0.1);
}
.abt-mv-mission-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 clamp(40px, 6vw, 80px);
  align-items: start;
}
.abt-mv-mission-left {
  padding-top: 8px;
}
.abt-mv-mission-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.abt-mv-mission-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.abt-mv-mission-title.in-view { opacity: 1; transform: translateY(0); }
.abt-mv-mission-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.abt-mv-mission-body.in-view { opacity: 1; transform: translateY(0); }
/* Values: editorial rows */
.abt-mv-values {
  padding: 64px 0 80px;
}
.abt-mv-values-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  text-align: center;
}
.abt-mv-values-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.1;
}
.abt-mv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: transparent;
  border: none;
  margin-top: 48px;
}
.abt-mv-card {
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.abt-mv-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.abt-mv-card.in-view { opacity: 1; transform: translateY(0); }
.abt-mv-card:nth-child(2) { transition-delay: 0.08s; }
.abt-mv-card:nth-child(3) { transition-delay: 0.16s; }
.abt-mv-card:nth-child(4) { transition-delay: 0.24s; }
.abt-mv-card:nth-child(5) { transition-delay: 0.32s; }
.abt-mv-card-icon {
  width: 64px;
  height: 64px;
  margin: 24px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  color: var(--white);
  flex-shrink: 0;
}
.abt-mv-card-header {
  background: var(--navy);
  padding: 14px 12px;
  text-align: center;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-mv-card-name {
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.abt-mv-card-desc {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--dark-gray);
  padding: 16px 14px 22px;
  text-align: center;
  flex: 1;
}

/* ── PPP: three clean 100vh panels ─────────────────────────────── */
.abt-ppp-section { }
.abt-ppp-panel {
  position: relative;
  height: 78vh;
  min-height: 560px;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.abt-ppp-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.abt-ppp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.55);
}
.abt-ppp-ov { position: absolute; inset: 0; }
.abt-ppp-ov--1 {
  background: linear-gradient(150deg, rgba(10,35,66,0.92) 0%, rgba(10,35,66,0.35) 100%);
}
.abt-ppp-ov--2 {
  background: linear-gradient(150deg, rgba(4,14,26,0.94) 0%, rgba(13,45,84,0.35) 100%);
}
.abt-ppp-ov--3 {
  background: linear-gradient(150deg, rgba(13,45,84,0.94) 0%, rgba(26,61,107,0.35) 100%);
}
/* Tile mosaic overlay (JS-generated) */
.abt-ppp-tiles {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  pointer-events: none;
}
.abt-ppp-tile {
  background: #040e1a;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.abt-ppp-tile.out { opacity: 0; }

.abt-ppp-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 6vw, 100px);
  padding-bottom: clamp(56px, 10vh, 96px);
  width: 100%;
}
.abt-ppp-body-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  width: 130px;
}
.abt-ppp-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 600;
  color: rgba(197,165,114,0.2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.abt-ppp-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abt-ppp-count {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.abt-ppp-body-right { flex: 1; max-width: 600px; }
.abt-ppp-accent {
  width: 0;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1);
}
.abt-ppp-panel.in-view .abt-ppp-accent { width: 56px; }
.abt-ppp-panel-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.abt-ppp-panel-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.56);
}

/* ── Scroll snap ───────────────────────────────────────────────── */
.abt-snap { scroll-snap-align: start; }
body.abt-snapping { scroll-snap-type: y proximity; }

/* ── CLOSING STATEMENT ─────────────────────────────────────────────── */
.abt-closing {
  position: relative;
  background: var(--cream);
  padding: 140px 0;
  border-top: 1px solid var(--warm-gray);
  overflow: hidden;
}
.abt-closing-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.abt-closing-watermark-img {
  width: 72%;
  max-width: 640px;
  object-fit: contain;
  opacity: 0.055;
}
.abt-closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}
.abt-closing-inner.in-view { opacity: 1; transform: translateY(0); }
.abt-closing-lead {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  letter-spacing: 0.005em;
}
.abt-closing-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.abt-closing-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── INDUSTRIES SECTION ──────────────────────────────────────────── */
.section--industries {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.industries-intro {
  max-width: 560px;
  margin-bottom: var(--s-lg);
}
.industries-title {
  margin-top: 12px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.industry-card {
  background: var(--white);
  padding: 40px 32px 36px;
  border: 1px solid var(--border-light);
  transition: border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.industry-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(10,35,66,0.07);
}
.industry-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--navy);
}
.industry-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.industry-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--mid-gray);
}

/* ── SEA FLAGS IMAGE ─────────────────────────────────────────────── */
.sea-img-wrap {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.sea-flags-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.82;
  display: block;
}

/* ── NEWS BAND SECTION ───────────────────────────────────────────── */
.section--news-band {
  background: var(--navy);
  padding: var(--s-2xl) 0;
}
.news-band-top {
  margin-bottom: var(--s-lg);
}
.news-band-top .section-label {
  color: var(--gold);
}
.news-band-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.news-columns {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
}
.news-col-divider {
  background: rgba(255,255,255,0.09);
  align-self: stretch;
}
.news-col-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.news-feed {
  border-top: none;
}
.news-feed-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  text-decoration: none;
  cursor: pointer;
}
.news-feed-row:hover .nf-headline {
  color: var(--white);
}
.nf-date {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}
.nf-headline {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  transition: color var(--dur-fast);
}
.nf-outlet {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 5px;
}
.news-view-all-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.nf-view-all {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--dur-fast);
}
.nf-view-all::after { content: ' →'; }
.nf-view-all:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .news-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .news-col-divider { display: none; }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: 1fr; }
  .sea-flags-img { height: 220px; }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .abt-mv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .abt-who { min-height: 320px; padding: 64px 24px; }
  .abt-who-text { padding: 0; }
  .abt-creed { grid-template-columns: 1fr; }
  .abt-creed-panel { min-height: 420px; }
  .abt-creed-panel--left { border-right: none; border-bottom: 1px solid rgba(10,35,66,0.08); }
  .abt-hero-stats { flex-wrap: wrap; }
  .abt-stat-sep { display: none; }
  .abt-mv-mission-inner { grid-template-columns: 1fr; gap: 24px; }
  .abt-mv-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-ppp-body { flex-direction: column; align-items: flex-start; gap: 20px; }
  .abt-ppp-body-left { width: auto; flex-direction: row; align-items: flex-end; gap: 20px; }
}
@media (max-width: 640px) {
  .abt-hero { height: 75vh; min-height: 480px; }
  .abt-hero-scroll { display: none; }
  .abt-hero-ghost { font-size: clamp(3rem, 18vw, 4.5rem); }
  .abt-hero-ghost--right { bottom: clamp(3rem, 18vw, 4.5rem); }
  .abt-vision { padding: 80px 0; }
  .abt-vision-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .abt-mv-grid { grid-template-columns: 1fr; }
  .abt-closing { padding: 80px 0; }
  .abt-ppp-panel { height: 72vh; min-height: 420px; }
  .abt-ppp-img { object-position: center center; }
  .abt-ppp-body { padding-bottom: 40px; }
  .abt-mv-card { padding: 32px 24px; }
  .abt-tagline { padding: 72px 0; }
}

/* ── Laptop / short desktop (e.g. 1366x768) ─────────────────────────── */
@media (max-width: 1400px) {
  :root {
    --container-pad: clamp(20px, 3.2vw, 48px);
    --s-2xl: 96px;
    --s-xl: 64px;
  }

  #main-nav > ul { gap: clamp(14px, 1.6vw, 28px); }
  #main-nav > ul > li > a {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }
  .nav-dropdown a {
    font-size: 0.76rem;
    padding: 11px 18px;
  }
  #site-header:not(.scrolled) .nav-inner { height: 84px; }
  #site-header:not(.scrolled) .nav-logo-img { height: 66px; }
  #site-header.scrolled .nav-logo-img,
  #site-header.header--solid .nav-logo-img,
  body.portfolio-company-open #site-header .nav-logo-img { height: 54px; }
  #site-header.header--solid .nav-inner,
  body.portfolio-company-open #site-header .nav-inner { height: 68px; }

  .hero {
    min-height: 78vh;
    padding-bottom: 56px;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    margin-bottom: 20px;
  }
  .hero-sub { margin-bottom: 28px; }
  .hero-eyebrow { margin-bottom: 18px; }

  .page-title {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
  }
  .page-hero,
  .page-hero--compact,
  .page-hero--dark,
  .page-hero--photo,
  .page-hero--dark.page-hero--compact {
    min-height: 400px;
    padding: 0 0 72px;
    display: flex;
    align-items: flex-end;
  }

  .intro-overlap-box {
    padding: 40px 44px;
    margin-top: -28px;
    max-width: 86%;
  }

  .abt-hero {
    height: auto;
    min-height: 560px;
  }
  .abt-hero-body {
    padding-top: 96px;
    padding-bottom: clamp(36px, 5vh, 60px);
    gap: clamp(20px, 3.5vh, 36px);
  }
  .abt-hero-h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.7rem) !important;
  }
  .abt-hero-ghost {
    font-size: clamp(5rem, 10vw, 9rem);
  }
  .abt-hero-ghost--right { bottom: clamp(4rem, 10vw, 8rem); }
  .abt-hero-rule { margin: 12px 0 10px; max-width: 280px; }
  #about.active .abt-hero-rule { width: 280px; }
  .abt-stat-num { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }

  .tro-inner {
    padding: 32px 40px;
    gap: 28px;
  }
  .tro-photo-wrap {
    width: 176px;
    height: 176px;
  }
  .tro-name { font-size: 1.2rem; }
  .tro-bio {
    font-size: 0.8rem;
    line-height: 1.65;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    min-height: calc(0.8rem * 1.65 * 4);
  }

  .abt-ppp-panel {
    height: 92vh;
    min-height: 560px;
  }
  .abt-who { min-height: 360px; padding: 64px 24px; }
}

@media (max-width: 1400px) and (max-height: 820px) {
  .hero {
    min-height: 100%;
    min-height: 100dvh;
    padding-bottom: 44px;
  }
  .hero-content { padding-bottom: 8px; }
  .hero-headline {
    font-size: clamp(2rem, 3.8vw, 3.15rem);
    line-height: 1.12;
  }

  .abt-hero {
    height: 100%;
    height: 100dvh;
    min-height: 520px;
    max-height: 680px;
  }
  .abt-hero-h1 {
    font-size: clamp(2.15rem, 3.8vw, 3.4rem) !important;
  }
  .abt-hero-body {
    padding-top: 88px;
    padding-bottom: 36px;
    gap: 22px;
  }
  .abt-hero-ghost {
    font-size: clamp(4rem, 8.5vw, 7rem);
    color: rgba(255,255,255,0.012);
  }

  .page-hero,
  .page-hero--compact,
  .page-hero--dark,
  .page-hero--photo,
  .page-hero--dark.page-hero--compact {
    min-height: 380px;
    padding: 0 0 64px;
    display: flex;
    align-items: flex-end;
  }
  .intro-overlap-box {
    margin-top: -24px;
    padding: 32px 36px;
  }

  .abt-ppp-panel {
    height: 88vh;
    min-height: 520px;
  }
  .section { padding: 80px 0; }
}

/* ── Website Changes Jul 2026 ───────────────────────────────────── */
.invest-theme-intro {
  max-width: 720px;
  margin: -24px auto 36px;
}
.invest-theme-intro em {
  font-style: italic;
  font-weight: 600;
}

.team-member--clickable {
  cursor: pointer;
}
.team-profile-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
}
.team-profile-link:hover {
  color: var(--navy);
}

.team-card--profile {
  cursor: pointer;
}
.team-card--hidden {
  display: none !important;
}
.team-cards-grid--advisors .team-card {
  cursor: default;
}
.team-cards-grid--profiles .team-card:hover {
  background: rgba(10, 35, 66, 0.02);
}

.team-card-photo.team-photo--willy-noracer {
  object-fit: cover;
  transform: scale(2.0);
  transform-origin: 76% 12%;
}

.team-profile-detail {
  display: none;
  min-height: 100vh;
  background: var(--off-white);
}
.team-profile {
  padding-bottom: clamp(64px, 8vw, 120px);
}
.team-profile-top {
  padding: 120px 0 28px;
}
.team-profile-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity var(--dur-fast), color var(--dur-fast), gap var(--dur-mid);
}
.team-profile-back:hover {
  opacity: 1;
  color: var(--gold);
  gap: 14px;
}
.team-profile-back-arrow {
  font-size: 1rem;
  line-height: 1;
}
.team-profile-main {
  padding-top: 8px;
}
.team-profile-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.team-profile-aside {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 28px;
}
.team-profile-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
}
/* Reuse grid portrait framing so zoom/position matches the team cards */
.team-profile-photo-wrap .team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-profile-photo-wrap .team-card-photo.team-photo--soojin,
.team-profile-photo-wrap .team-card-photo.team-photo--randy {
  object-position: center top;
  transform: none;
}
.team-profile-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-profile-kicker {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.team-profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.team-profile-title {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0;
}
.team-profile-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 0;
}
.team-profile-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur-fast), gap var(--dur-mid);
}
.team-profile-linkedin:hover {
  color: var(--navy);
  gap: 12px;
}
.team-profile-body {
  padding: 40px clamp(28px, 4vw, 48px);
  max-width: none;
  background: var(--white);
  border: 1px solid var(--border-light);
}
.team-profile-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.team-profile-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 8px;
}
.team-profile-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.team-profile-para {
  margin: 0 0 16px;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.85;
}
.team-profile-para:last-child { margin-bottom: 0; }
.team-profile-footer-cta {
  margin-top: 16px;
  padding-top: 28px;
}
.team-profile-back-bottom {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.team-profile-back-bottom:hover {
  color: var(--gold);
  border-color: var(--navy);
}

.legal-footnote {
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--navy-light, #5a6a7d);
  max-width: 640px;
}

@media (max-width: 900px) {
  .team-profile-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .team-profile-aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 24px;
    align-items: end;
  }
  .team-profile-photo-wrap {
    max-width: 220px;
  }
}
@media (max-width: 600px) {
  .team-profile-top { padding: 108px 0 20px; }
  .team-profile-aside {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 20px;
  }
  .team-profile-body {
    padding: 28px 20px;
  }
  .team-profile-photo-wrap {
    max-width: 280px;
  }
}
