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

/* ─── TOKENS ────────────────────────────────────────────────────── */
:root {
  --bg:           #F7F5F0;
  --bg-2:         #EFECE5;
  --bg-3:         #E7E3DA;
  --bg-4:         #DDD8CE;
  --ink:          #1A1824;
  --ink-2:        #373540;
  --ink-3:        #5C5964;
  --gold:         #8D6E32;
  --gold-bright:  #A18758;
  --gold-dim:     rgba(141,110,50,0.08);
  --gold-line:    rgba(141,110,50,0.25);
  --border:       rgba(0,0,0,0.06);
  --border-hover: rgba(141,110,50,0.20);
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url('../assets/website-backing.png');
  background-size: auto 115%;
  background-position: 20% center;
  opacity: 0.3;
}

@media (max-width: 768px) {
  body::before {
    background-size: cover;
    background-position: center center;
  }
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease), height 200ms var(--ease), opacity 200ms;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 350ms var(--ease), height 350ms var(--ease),
              transform 80ms linear, border-color 300ms;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
}

/* ─── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 72px;
  justify-content: space-between;
  transition: border-bottom-color 500ms var(--ease), background 500ms var(--ease);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 300ms;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 3px;
  transition: color 300ms;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 400ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(141,110,50,0.18), 0 4px 16px rgba(0,0,0,0.06);
  transition: background 300ms, border-color 300ms, transform 300ms var(--spring), box-shadow 300ms;
}
.nav-cta:hover {
  background: #6B5226;
  border-color: #6B5226;
  transform: scale(1.02);
}
.nav-cta:active { transform: scale(0.98); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: all 300ms var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(247,245,240,0.97);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 300ms;
}
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.ventures-page footer { justify-content: center; text-align: center; }

footer {
  border-top: 1px solid var(--border);
  padding: 17px 72px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
@media (max-width: 768px) {
  body { padding-bottom: 42px; }

  footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 10px 24px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    align-items: flex-start;
    cursor: pointer;
    max-height: 40px;
    overflow: hidden;
    transition: max-height 380ms var(--ease);
  }
  .ventures-page footer { align-items: center; }
  footer .footer-copy {
    font-size: 11px;
    line-height: 1.5;
    white-space: normal;
    color: var(--ink-3);
  }
  footer.footer-expanded {
    max-height: 280px;
    cursor: default;
    overflow-y: auto;
    padding: 12px 24px 16px;
  }
  .footer-mark { display: none; }
}

/* ─── DFSA POPUP ─────────────────────────────────────────────────── */
.dfsa-popup {
  position: fixed;
  top: 80px;
  right: 24px;
  max-width: 11.5vw;
  max-height: 17.25vh;
  overflow-y: auto;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 14px 16px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px);
  animation: dfsaIn 0.4s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.dfsa-popup.hidden { display: none; }
@keyframes dfsaIn {
  to { opacity: 1; transform: translateY(0); }
}
.dfsa-text {
  font-size: 9px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.dfsa-close {
  background: none;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.dfsa-close:hover {
  background: var(--gold);
  color: var(--bg);
}
@media (max-width: 768px) {
  .dfsa-popup { max-width: 70vw; max-height: 25vh; right: 16px; top: 70px; }
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  transition: background 300ms, color 300ms, transform 300ms var(--spring), border-color 300ms;
  cursor: none;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.02);
}
.btn:active { transform: scale(0.98); }

.btn-solid {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(141,110,50,0.18), 0 6px 24px rgba(0,0,0,0.06);
}
.btn-solid:hover {
  background: #6B5226;
  border-color: #6B5226;
  color: var(--bg);
  box-shadow: 0 0 40px rgba(141,110,50,0.20), 0 8px 32px rgba(0,0,0,0.08);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DIVIDER ────────────────────────────────────────────────────── */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin: 32px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HUB PAGE
═══════════════════════════════════════════════════════════════════ */
.hub-page { overflow: hidden; }

.hub {
  display: flex;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Single shared video — covers entire hub behind all columns */
.hub-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hub-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 30vh 40px 60px;
  transition: background 400ms var(--ease);
  position: relative;
}

/* All column content sits above overlay (z-index 1) */
.hub-col > *:not(.hub-col-overlay) {
  position: relative;
  z-index: 2;
}

/* Per-column black overlays */
.hub-col-overlay {
  position: absolute;
  inset: 0;
  background: #F7F5F0;
  z-index: 1;
  pointer-events: none;
}

.hub-col-overlay--ventures { opacity: 0.75; }
.hub-col-overlay--capital  { opacity: 0.60; }
.hub-col-overlay--wealth   { opacity: 0.60; }

.hub-col-side {
  flex: 0 0 25%;
}

.hub-col-side .hub-logo { opacity: 0.7; transition: opacity 400ms var(--ease); }
.hub-col-side .hub-name { color: var(--ink-2); transition: color 400ms var(--ease); }
.hub-col-side .hub-desc { opacity: 0.7; transition: opacity 400ms var(--ease); }
.hub-col-side .hub-soon { opacity: 0.6; }

.hub-col-side:hover .hub-logo { opacity: 1; }
.hub-col-side:hover .hub-name { color: var(--ink); }
.hub-col-side:hover .hub-desc { opacity: 1; }

.hub-col-centre {
  flex: 0 0 50%;
  background: rgba(141,110,50,0.03);
  border-left: 1px solid var(--gold-line);
  border-right: 1px solid var(--gold-line);
}

.hub-col-centre .hub-desc {
  max-width: 520px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-logo {
  width: 144px;
  height: auto;
  margin-bottom: 32px;
}

.hub-name {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hub-name span {
  font-weight: 700;
}

.hub-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 24px;
}

.hub-desc {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 400;
  max-width: 320px;
  margin-bottom: 32px;
}

.hub-soon {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-3);
  font-style: italic;
}

@media (max-width: 768px) {
  /* Grid: Ventures full-width top row, Capital + Wealth side-by-side bottom row */
  .hub-page { overflow: hidden; }
  .hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 65vh 35vh;
    height: 100vh;
    min-height: unset;
  }
  /* Ventures spans both columns, top row */
  .hub-col-centre {
    grid-column: 1 / 3;
    grid-row: 1;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(141,110,50,0.12);
    padding: 72px 32px 32px;
  }
  /* Capital: bottom-left */
  .hub-col:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
    border-right: 1px solid rgba(141,110,50,0.12);
    padding: 24px 16px;
  }
  /* Wealth: bottom-right */
  .hub-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    padding: 24px 16px;
  }
  /* Logo sizes */
  .hub-col-centre .hub-logo { width: 80px; }
  .hub-col-side .hub-logo { width: 56px; opacity: 0.5; }
  /* Name sizes */
  .hub-col-centre .hub-name { font-size: 30px; }
  .hub-col-side .hub-name { font-size: 18px; }
  /* Show side descriptions, clamp centre desc */
  .hub-col-side .hub-desc { opacity: 1; font-size: 13px; margin-bottom: 0; }
  .hub-col-centre .hub-desc { font-size: 15px; -webkit-line-clamp: 4; }
  /* Faint gold rule under hub names */
  .hub .hub-rule { background: rgba(141,110,50,0.12); }
}

/* ═══════════════════════════════════════════════════════════════════
   VENTURES PAGE LAYOUT
═══════════════════════════════════════════════════════════════════ */
.ventures-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.ventures-page .hero {
  flex: 1;
  min-height: 0;
}

/* Vertical logo tickers */
.vert-ticker {
  position: absolute;
  top: 80px;
  bottom: 0;
  width: 238px;
  overflow: hidden;
  pointer-events: none;
}
.vert-ticker--left  { left: 24px; }
.vert-ticker--right { right: 24px; }
.vert-ticker-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
  animation: vertScrollUp 140s linear infinite;
}
.vert-ticker-track--reverse {
  animation-name: vertScrollDown;
}
.vert-ticker-track img {
  width: 100%;
  height: 91px;
  object-fit: contain;
  background: rgba(255,255,255,0.75);
  border-radius: 4px;
  padding: 8px;
}
@keyframes vertScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes vertScrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGE
═══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient orb behind hero text */
.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(141,110,50,0.06) 0%,
    rgba(180,160,120,0.04) 40%,
    transparent 70%
  );
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 600ms var(--ease) 200ms forwards;
}

.hero-logo {
  height: clamp(48px, 6.3vw, 87px);
  width: auto;
  display: block;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeUp 600ms var(--ease) 100ms forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 960px;
  margin: 0 auto 24px;
}

/* Word-by-word reveal — each .word is an inline-block that animates */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 600ms var(--ease) forwards;
}
.word.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.ventures-page .hero-headline {
  text-shadow: 0 0 8px rgba(176,137,62,0.50), 0 0 24px rgba(176,137,62,0.32), 0 0 48px rgba(176,137,62,0.16);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 600ms var(--ease) 1.2s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 600ms var(--ease) 1.4s forwards;
  margin-top: 12px;
}
.hero-cta .btn {
  font-size: 16px;
  padding: 18px 50px;
}

/* Logo wall */
.logo-wall {
  width: 100%;
  max-width: 100vw;
  margin-top: 100px;
  opacity: 0;
  animation: fadeUp 800ms var(--ease) 1.6s forwards;
}
.logo-wall-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 28px;
}
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.ticker {
  display: flex;
  gap: 12px;
  animation: tickerMove 45s linear infinite;
  width: max-content;
}
.ticker:hover { animation-play-state: paused; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 300ms, border-color 300ms, color 300ms;
  background: rgba(0,0,0,0.02);
  cursor: none;
}
.ticker-item:hover {
  opacity: 1;
  border-color: var(--gold-line);
  color: var(--ink);
}

/* Contact section */
.contact-block {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  max-width: 600px;
}

/* ─── STRATEGY SCROLL INDICATOR ─────────────────────────────────── */
.scroll-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
  pointer-events: none;
}
.si-dot {
  width: 2px;
  height: 20px;
  background: rgba(141,110,50,0.18);
  border-radius: 1px;
  transition: background 400ms var(--ease), box-shadow 400ms var(--ease), height 300ms var(--ease);
}
.si-dot.active {
  height: 28px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(141,110,50,0.45);
}

/* ═══════════════════════════════════════════════════════════════════
   STRATEGY PAGE
═══════════════════════════════════════════════════════════════════ */

/* Desktop snap scroll */
@media (min-width: 769px) {
  .strat-scroll {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    scrollbar-width: none;
  }
  .strat-scroll::-webkit-scrollbar { display: none; }
  .strat-scroll .s-snap {
    scroll-snap-align: start;
    min-height: 100vh;
  }
}
.page-hero {
  padding: 120px 0 40px;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 900px;
}

/* Thesis section */
.thesis-wrap {
  padding: 60px 0 160px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 120px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.thesis-stat {
  position: sticky;
  top: 120px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 16px;
  font-weight: 400;
  max-width: 240px;
}
.thesis-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 32px;
}
.thesis-copy p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 24px;
}
.thesis-copy p:last-child { margin-bottom: 0; }

/* Sectors section */
.sectors-wrap {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
/* Sectors — 5 columns */
.sectors-cols {
  display: flex;
  min-height: 380px;
  padding-bottom: 120px;
}
.scol {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 350ms ease;
}
.scol:last-child { border-right: none; }
.scol:hover { background: rgba(141,110,50,0.04); }
.scol:hover .scol-portcos { opacity: 1; transform: translateY(0); }
.scol:hover .scol-border-line { transform: scaleX(1); }

.scol-border-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(141,110,50,0.35);
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(0.25,0.46,0.45,0.94);
}

.scol-num {
  display: none;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 400; color: rgba(141,110,50,0.30);
  letter-spacing: 0.2em; margin-bottom: 28px;
}
.scol-icon { margin-bottom: 24px; }
.scol-icon svg { display: block; }
.scol-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--ink);
  line-height: 1.25; margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.scol-desc {
  font-size: 14px; color: var(--ink-2); line-height: 1.75;
  font-weight: 400; flex: 1;
}

.scol-portcos {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.scol-portco-rule {
  width: 24px; height: 1px; background: rgba(141,110,50,0.20); margin-bottom: 14px;
}
.scol-portco-item {
  font-size: 13px; color: rgba(141,110,50,0.50);
  letter-spacing: 0.08em; line-height: 2;
  font-weight: 500;
}

/* Edge section — Venn layout */
.edge-wrap {
  padding: 120px 0;
}

.edge-kicker {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400; color: var(--ink);
  line-height: 1.3; margin-bottom: 72px; text-align: center;
}
.edge-kicker em { color: var(--gold); font-style: italic; font-weight: 500; }

.edge-main {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  min-height: 400px;
}
.edge-left { padding-right: 48px; }
.edge-right { padding-left: 48px; }

.edge-col-label {
  font-size: 18px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(141,110,50,0.50); margin-bottom: 28px;
}
.edge-left .edge-col-label { text-align: right; }

.edge-item { margin-bottom: 40px; cursor: default; }
.edge-left .edge-item { text-align: right; }
.edge-item-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: 0.02em; }
.edge-item-desc { font-size: 11px; color: #5C5964; line-height: 1.65; font-weight: 400; transition: color 250ms ease; }
.edge-item:hover .edge-item-desc { color: var(--ink-2); }

/* Venn diagram */
.edge-centre { display: flex; align-items: center; justify-content: center; }
.venn-wrap { position: relative; width: 360px; height: 360px; flex-shrink: 0; }

.venn-circle {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(141,110,50,0.22);
  top: 50%; transform: translateY(-50%);
}
.venn-circle.left { left: 14px; background: rgba(141,110,50,0.025); }
.venn-circle.right { right: 14px; background: rgba(141,110,50,0.025); }

.venn-label {
  position: absolute; top: 34%;
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(141,110,50,0.35); transform: translateY(-50%); text-align: center;
  line-height: 1.5;
}
.venn-label.left { left: 28px; width: 86px; }
.venn-label.right { right: 28px; width: 86px; }

.venn-bars { position: absolute; top: 50%; transform: translateY(-50%); display: flex; }
.venn-bars.left { left: 53px; }
.venn-bars.right { right: 53px; }
.venn-flag { display: block; border-radius: 2px; }

.venn-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
}
.venn-logo img { width: 74px; height: auto; }

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════════════════════════════ */
.portfolio-wrap {
  padding-top: 100px;
  padding-bottom: 120px;
}
.filter-row {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.fpill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-3);
  cursor: none;
  transition: all 300ms var(--ease);
}
.fpill:hover { color: var(--ink-2); border-color: var(--ink-3); }
.fpill.active {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  will-change: auto;
  isolation: auto;
}
.pcell {
  position: relative;
  background: rgba(255,255,255,0.75);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: background 300ms;
  overflow: visible;
  cursor: none;
}
.pcell:hover {
  background: rgba(141,110,50,0.04);
  z-index: 2;
}
.pcell-logo {
  width: 100%;
  max-width: 360px;
  height: 120px;
  object-fit: contain;
  transition: opacity 300ms;
}
.pcell:hover .pcell-logo { opacity: 0.75; }
.pcell-sector {
  position: absolute;
  bottom: 12px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
.ptooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--bg-3);
  border: 1px solid var(--border-hover);
  padding: 18px 20px;
  width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  z-index: 10;
}
.pcell:hover .ptooltip {
  opacity: 1;
  transform: translateY(0);
}
.ptooltip-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ptooltip-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 400;
}
.pcell-exit {
  position: absolute;
  bottom: 28px;
  font-size: 8.75px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 2.5px 7.5px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201,169,110,0.45);
}
.pcell.hidden { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════════════════════════════ */
.team-wrap {
  padding-top: 160px;
  padding-bottom: 120px;
}
.team-intro {
  max-width: 700px;
  margin-bottom: 96px;
}
.team-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  margin-top: 80px;
}
.team-section-label:first-of-type { margin-top: 0; }

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-bottom: 56px;
}
.tgrid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
  max-width: 66.666%;
}
.tcard {
  display: flex;
  flex-direction: column;
}
.tcard:hover .tavatar { border-color: var(--gold-line); }
.tavatar {
  width: 80px;
  height: 96px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  transition: border-color 400ms, transform 400ms var(--spring);
  will-change: transform;
}
.tcard:hover .tavatar { transform: scale(1.06); }
.tavatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tname {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.trole {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tbio {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 16px;
}
.tprev {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .thesis-wrap { grid-template-columns: 1fr; gap: 48px; }
  .thesis-stat { position: static; }
  .sectors-cols { flex-wrap: wrap; }
  .scol { flex: 1 1 33.33%; min-width: 200px; border-bottom: 1px solid var(--border); }
  .edge-main { grid-template-columns: 1fr; gap: 48px; }
  .edge-left, .edge-right { padding: 0; }
  .edge-left .edge-item, .edge-left .edge-col-label { text-align: left; }
  .edge-centre { order: -1; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
  .tgrid-bottom { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-headline { font-size: 44px; }
  nav { padding: 0 24px; }
  .scol { flex: 1 1 100%; }
  .scol-portcos { opacity: 1; transform: translateY(0); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: 1fr; }
  .tgrid-bottom { grid-template-columns: 1fr; max-width: 100%; }

  /* Portfolio exit tags — 33% smaller on mobile */
  .pcell-exit {
    font-size: 5.86px;
    padding: 1.7px 5px;
    letter-spacing: 0.08em;
    bottom: 32px;
  }

  /* footer: handled in block above (fixed peek drawer) */
  .page-title { font-size: 38px; }

  /* ── mobile-menu: 25% smaller height ── */
  .mobile-menu { padding: 24px 24px; }
  .mobile-menu a { padding: 14px 0; }

  /* ── strategy.html — strat-scroll as scroll container on mobile ── */
  .strategy-page {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }
  .strat-scroll {
    height: 100svh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
  }
  .strat-scroll::-webkit-scrollbar { display: none; }
  .strat-scroll .s-snap {
    scroll-snap-align: start;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .s-snap .page-hero {
    padding: 24px 0 8px;
  }

  /* ── strategy.html — section title centering ── */
  .strategy-page .page-eyebrow,
  .strategy-page .page-title,
  .strategy-page .section-eyebrow,
  .strategy-page .section-headline,
  .strategy-page .edge-kicker { text-align: center; }

  /* ── strategy.html — sectors: accordion rows ── */
  .sectors-wrap { padding-bottom: 6px; }
  .strategy-page .section-headline { margin-bottom: 13px; }
  .sectors-cols { flex-direction: column; padding-bottom: 40px; }
  .scol {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    padding: 18px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: unset;
    position: relative;
    overflow: visible;
    cursor: pointer;
  }
  .scol:last-child { border-bottom: 1px solid var(--border); }
  .scol-icon { grid-column: 1; grid-row: 1; margin-bottom: 0; align-self: center; }
  .scol-title { grid-column: 2; grid-row: 1; font-size: 17px; margin-bottom: 0; align-self: center; padding-right: 28px; }
  .scol-portcos { grid-column: 2; grid-row: 2; margin-top: 6px; opacity: 1; transform: none; }
  .scol-portco-rule { display: none; }
  .scol-portco-item { display: inline; font-size: 11px; letter-spacing: 0.06em; }
  .scol-portco-item + .scol-portco-item::before { content: ' · '; color: var(--ink-3); }
  .scol-desc { grid-column: 2; grid-row: 3; display: none; font-size: 13px; margin-top: 10px; line-height: 1.65; color: var(--ink-2); }
  .scol.open .scol-desc { display: block; }
  .scol.open .scol-border-line { transform: scaleX(1); }
  /* expand indicator */
  .scol::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.5;
    transition: transform 300ms var(--ease), opacity 300ms;
    line-height: 1;
  }
  .scol.open::after { transform: rotate(45deg); opacity: 1; }

  /* ── strategy.html — thesis section ── */
  .page-hero { padding: 100px 0 16px; }
  .thesis-wrap { padding: 20px 0 80px; gap: 32px; }
  .thesis-stat { display: flex; flex-direction: row; align-items: flex-start; gap: 20px; }
  .stat-num { font-size: 72px; flex-shrink: 0; line-height: 1; }
  .stat-note { max-width: 100%; padding-top: 10px; font-size: 12px; }
  .thesis-copy h2 { font-size: 26px; margin-bottom: 24px; }
  .thesis-copy p { font-size: 12.75px; }

  /* ── strategy.html — edge/our-edge section ── */
  .edge-wrap { padding: 32px 0 40px; }
  .edge-kicker { font-size: 17px; text-align: left; margin-bottom: 28px; }

  /* grid: vertical venn left column, items right column split into two rows */
  .edge-main {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 280px;
    gap: 0;
  }
  /* venn spans both rows in left column */
  .edge-centre { grid-column: 1; grid-row: 1 / 3; order: unset; display: flex; align-items: center; justify-content: center; }
  /* US items → top-right */
  .edge-right { grid-column: 2; grid-row: 1; padding: 0 0 0 16px; align-self: center; }
  /* MENA items → bottom-right, pushed down 100px */
  .edge-left { grid-column: 2; grid-row: 2; padding: 100px 0 0 16px; align-self: start; }
  .edge-left::before { display: none; }

  /* show column labels as small group headers next to items */
  .edge-col-label { display: block; font-size: 9px; margin-bottom: 14px; letter-spacing: 0.18em; }
  .edge-left .edge-col-label { text-align: left; }

  /* items: tap-to-expand */
  .edge-item { position: relative; margin-bottom: 16px; cursor: pointer; text-align: left; }
  .edge-left .edge-item { text-align: left; }
  .edge-item-title { font-size: 13px; font-weight: 600; padding-right: 20px; }
  .edge-item::after {
    content: '+';
    position: absolute;
    right: 0; top: 0;
    font-size: 13px; font-weight: 400;
    color: var(--gold); opacity: 0.55;
    transition: transform 300ms var(--ease), opacity 300ms;
    line-height: 1.2;
  }
  .edge-item.open::after { transform: rotate(45deg); opacity: 1; }
  .edge-item-desc { display: none; font-size: 11px; color: var(--ink-2); line-height: 1.65; margin-top: 8px; }
  .edge-item.open .edge-item-desc { display: block; }

  /* ── vertical venn: US circle top, KHK overlap middle, MENA circle bottom ── */
  .venn-wrap { width: 150px; height: 230px; }
  /* base circle: switch from horizontal to vertical axis */
  .venn-circle { width: 140px; height: 140px; top: auto; left: 50%; right: auto; transform: translateX(-50%); }
  /* US circle → top */
  .venn-circle.right { top: 0; }
  /* MENA circle → bottom */
  .venn-circle.left { bottom: 0; left: 50%; }
  /* KHK logo — stays centred (already top:50% left:50% translate(-50%,-50%)) */
  .venn-logo img { width: 42px; }
  /* labels — repositioned for vertical */
  .venn-label { font-size: 7px; width: auto; left: 50%; right: auto; transform: translateX(-50%); text-align: center; }
  .venn-label.right { top: 24px; right: auto; left: 50%; width: auto; }
  .venn-label.left  { top: auto; bottom: 24px; left: 50%; width: auto; }
  /* flags — centred under their labels */
  .venn-bars { left: 50%; right: auto; top: auto; transform: translateX(-50%); }
  .venn-bars.right { top: 56px; right: auto; left: 50%; }
  .venn-bars.left  { bottom: 56px; left: 50%; }
  .venn-flag { width: 22px; height: 15px; }

  /* ── portfolio.html ── */
  .portfolio-wrap { padding-top: 80px; padding-bottom: 60px; }
  .filter-row { margin-bottom: 32px; gap: 6px 4px; }
  .fpill { padding: 7px 12px; font-size: 11px; cursor: pointer; }
  .pcell { padding: 20px 12px 24px; min-height: 110px; }
  .pcell-logo { height: 84px; max-width: 100%; }
  .ptooltip { display: none; }
  .pcell.open .ptooltip {
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 6px 0 0;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .ptooltip-name { display: none; }
  .ptooltip-desc {
    font-size: 10px;
    text-align: center;
    color: var(--ink-3);
    line-height: 1.4;
  }

  /* ── team.html ── */
  .team-wrap { padding-top: 100px; padding-bottom: 60px; }
  .team-intro { margin-bottom: 48px; }
  .team-intro p { font-size: 14px !important; }
  .tgrid { gap: 40px 0; margin-bottom: 40px; }
  .tgrid-bottom { gap: 40px 0; }
  .tavatar { width: 64px; height: 64px; font-size: 16px; margin-bottom: 16px; }
  .tname { font-size: 18px; }
  .tbio { font-size: 13px; }
  .tprev { font-size: 10px; }

  /* ── ventures.html: dark overlay between tickers and hero content ── */
  .ventures-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 245, 240, 0.82);
    z-index: 2;
    pointer-events: none;
  }
  .ventures-page .vert-ticker {
    z-index: 1;
  }
  .ventures-page .hero-headline,
  .ventures-page .hero-sub,
  .ventures-page .hero-cta {
    position: relative;
    z-index: 3;
  }

  /* ── ventures.html: CTA button glow ── */
  .ventures-page .btn-solid {
    box-shadow: 0 0 28px rgba(141,110,50,0.18), 0 6px 24px rgba(0,0,0,0.06);
  }
  .ventures-page .btn-solid:hover {
    box-shadow: 0 0 40px rgba(141,110,50,0.25), 0 8px 32px rgba(0,0,0,0.08);
  }
}
