/* ═══════════════════════════════════════════════════════════════════
   PRIMEMOVERS EQUITY — DESIGN SYSTEM v2
   Palette: Navy #0A2342 · Gold #C5A572 · White #FFFFFF
   Fonts:   Merriweather (headings) · Open Sans (body)
   ═══════════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS IMPORT ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Open+Sans:wght@300;400;500;600&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-serif:    'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans:     'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* 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;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
}

img { display: block; 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-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 300; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 400; }
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 {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow  { max-width: 820px; }
.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--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--statement { padding: var(--s-xl) 0; }

.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 a {
  color: rgba(10,35,66,0.65);
}
#site-header.scrolled #main-nav a:hover { color: var(--navy); }
#site-header.scrolled #main-nav a.active { color: var(--gold); }
#site-header.scrolled .mobile-menu-toggle span { background: var(--navy); }

.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;
}

.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 {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* When unscrolled: 25% bigger + brightness/contrast to white */
  transition:
    height 0.5s var(--ease-out),
    filter 0.5s var(--ease-out),
    opacity 0.3s;
}
/* Unscrolled: bigger + white-washed logo */
#site-header:not(.scrolled) .nav-logo-img {
  height: 55px;
  filter: brightness(100) contrast(100);
}
/* Scrolled: normal size + original colours */
#site-header.scrolled .nav-logo-img {
  height: 44px;
  filter: brightness(1) contrast(1);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

#main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
}
#main-nav a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.80);
  transition: color 0.4s var(--ease-out);
  position: relative;
}
#main-nav 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 a:hover        { color: var(--white); }
#main-nav a:hover::after,
#main-nav a.active::after { width: 100%; }
#main-nav a.active { color: var(--gold-light); }
/* 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: 18px 0; }
#mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  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: 100svh;
  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);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.55) saturate(0.9);
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,35,66,0.85) 0%, rgba(10,35,66,0.2) 60%, rgba(10,35,66,0.1) 100%),
    linear-gradient(to top, rgba(6,22,41,0.9) 0%, rgba(10,35,66,0) 55%);
}

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

.shape {
  position: absolute;
  border: 1px solid rgba(197,165,114,0.12);
  border-radius: 50%;
  animation: shape-float linear infinite;
}
.shape-1 {
  width: 480px; height: 480px;
  top: -100px; right: -60px;
  animation-duration: 22s;
  border-color: rgba(197,165,114,0.10);
}
.shape-2 {
  width: 260px; height: 260px;
  top: 60px; right: 120px;
  animation-duration: 16s;
  animation-direction: reverse;
  border-color: rgba(197,165,114,0.15);
}
.shape-3 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  animation-duration: 32s;
  border-color: rgba(197,165,114,0.06);
}
.shape-diamond {
  position: absolute;
  width: 48px; height: 48px;
  top: 42%; left: 60%;
  border: 1px solid rgba(197,165,114,0.25);
  transform: rotate(45deg);
  animation: diamond-pulse 6s ease-in-out infinite;
}
.shape-line-v {
  position: absolute;
  width: 1px; height: 120px;
  right: 80px; bottom: 160px;
  background: linear-gradient(to bottom, transparent, rgba(197,165,114,0.3), transparent);
  animation: line-slide 4s ease-in-out infinite;
}
.shape-dot-grid {
  position: absolute;
  right: 200px; top: 200px;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(197,165,114,0.2) 1px, transparent 1px);
  background-size: 16px 16px;
  animation: dot-fade 5s ease-in-out infinite;
}

@keyframes shape-float {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes diamond-pulse {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
  50%        { opacity: 0.7; transform: rotate(45deg) scale(1.15); }
}
@keyframes line-slide {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50%        { opacity: 0.6; transform: translateY(-12px); }
}
@keyframes dot-fade {
  0%, 100% { opacity: 0.3; }
  50%        { opacity: 0.7; }
}

/* ── 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(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s-md);
  max-width: 720px;
}
.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); }

/* 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);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px; right: var(--container-pad);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.scroll-line {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0% { top: -100%; } 100% { top: 100%; } }
.hero-scroll-indicator span {
  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-rl;
}

/* ── 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.35rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 32px;
  letter-spacing: 0.01em;
}

/* ── 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 ────────────────────────────────────────────────── */
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.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-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  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: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--s-xl);
}
.page-hero--light {
  background: var(--off-white);
  min-height: auto;
  padding: 160px 0 var(--s-xl);
  display: block;
}
.page-hero--dark {
  background: var(--navy);
}
.page-hero--photo {
  background: var(--navy);
}

/* 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-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: 820px;
  padding: 0 var(--container-pad);
  margin: 0 auto;
  width: 100%;
}

/* Gold accent bar on photo page-heros */
.page-hero--photo .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(2.4rem, 5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--navy);
  margin-top: 12px;
}
.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;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* ── PORTFOLIO ───────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
}
.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-card:nth-child(3n) { border-right: none; }
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5),
.portfolio-card:nth-child(6) { 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;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--rule-gold);
  display: inline-block; padding: 5px 12px; align-self: flex-start;
}
.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); }

/* ── PHOTO BAND ──────────────────────────────────────────────────── */
.photo-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.photo-band-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.photo-band:hover .photo-band-img { transform: scale(1.0); }
.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;
}
.photo-band-quote::before {
  content: '"';
  font-size: 4rem; line-height: 0; vertical-align: -0.5em;
  color: var(--gold); margin-right: 8px; opacity: 0.6;
}

/* ── TEAM ────────────────────────────────────────────────────────── */
.team-grid { display: flex; flex-direction: column; gap: 0; }
.team-member {
  display: grid;
  grid-template-columns: 460px 1fr;
  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; }
.team-photo {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow);
}
.team-photo--alt { object-position: 35% top; }
.team-member:hover .team-photo { transform: scale(1.03); filter: grayscale(0%) contrast(1.02); }

.team-info {
  padding: 64px 56px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.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: var(--font-sans); font-size: 0.9rem;
  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) ────────────────────────── */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}
.team-card {
  background: var(--white);
  border-right: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  transition: background var(--dur-mid);
}
.team-card:nth-child(4n) { border-right: none; }
.team-card:nth-child(n+5) { border-top: 1px solid var(--border-light); }
.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); }
.team-card-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.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: 20px 24px 28px; }
.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px; line-height: 1.25;
}
.team-card-title {
  font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}

/* ── 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;
  left: 0; right: 0;
  z-index: 50;
  background: var(--navy);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              top    0.01s,
              height 0.01s;
}
.team-row-overlay.tro-active {
  opacity: 1;
  pointer-events: auto;
}
.tro-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.tro-photo-wrap { display: none; } /* photo removed from overlay */
.tro-text {
  padding: 36px 56px;
  width: 100%;
}
.tro-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.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;
}
.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;
}
.tro-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  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;
}
.team-modal-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
}
.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(3, 1fr);
}
.team-cards-grid--advisors .team-card:nth-child(4n) { border-right: 1px solid var(--border-light); }
.team-cards-grid--advisors .team-card:nth-child(3n) { border-right: none; }
.team-cards-grid--advisors .team-card:nth-child(n+4) { border-top: 1px solid var(--border-light); }

/* ── 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-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-xl) 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--s-xl);
  padding-bottom: var(--s-lg);
  border-bottom: 1px solid rgba(197,165,114,0.12);
}
.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-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);
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.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.68rem;
  color: rgba(255,255,255,0.20); line-height: 1.7; max-width: 900px;
}

/* ═══════════════════════════════════════════════════════════════════
   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; }

/* ── 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; }

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

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:nth-child(2n) { border-right: none; }
  .portfolio-card:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .portfolio-card:nth-child(4),
  .portfolio-card:nth-child(5),
  .portfolio-card:nth-child(6) { border-bottom: 1px solid var(--border-light); }
  .portfolio-card:nth-child(5),
  .portfolio-card:nth-child(6) { border-bottom: none; }

  /* 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; }

  /* Layout */
  .container--split { grid-template-columns: 1fr; }
  .split-img { height: 300px; }
  .footer-inner { flex-direction: column; gap: var(--s-lg); }
  .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); }
  .team-card:nth-child(4n) { border-right: 1px solid var(--border-light); }
  .team-card:nth-child(2n) { border-right: none; }
  .team-card:nth-child(n+3) { border-top: 1px solid var(--border-light); }

  /* Advisor grid: 2 cols at tablet */
  .team-cards-grid--advisors { grid-template-columns: repeat(2, 1fr); }
  .team-cards-grid--advisors .team-card:nth-child(4n) { border-right: 1px solid var(--border-light); }
  .team-cards-grid--advisors .team-card:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .team-cards-grid--advisors .team-card:nth-child(2n) { border-right: none; }
  .team-cards-grid--advisors .team-card:nth-child(n+3) { border-top: 1px solid var(--border-light); }

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

  /* 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; }

  /* 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 { grid-template-columns: 1fr; }
  .portfolio-card { border-right: none; }
  .portfolio-card:nth-child(3n) { border-right: none; }
  .portfolio-card-inner { padding: 32px 24px; }

  /* 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 */
  .hero-scroll-indicator { display: none; }
  .photo-band { height: 260px; }
  .page-hero { min-height: 340px; }

  /* 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 */
  .page-hero--dark { padding: 120px 0 var(--s-xl); }

  /* 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;
  }
  .team-card { border-right: none !important; }
  .team-card + .team-card { border-top: 1px solid var(--border-light); }

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

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