/* =========================================================================
   SEVEN PEAK CAPITAL — DARK INSTITUTIONAL DESIGN SYSTEM
   Typography: Instrument Serif (display) · Outfit (body) · JetBrains Mono (labels)
   Palette:    Near-black navy · Gold · White editorial
   Ethos:      Private-equity clean. Restrained motion. No hype.
   ========================================================================= */

:root {
  /* Surfaces */
  --bg:              #07090E;
  --bg-elevated:     #0C1019;
  --bg-card:         #0F141D;
  --bg-card-hover:   #141A24;
  --bg-inset:        #0A0D14;
  --surface:         rgba(255, 255, 255, 0.02);

  /* Borders */
  --border:          rgba(255, 255, 255, 0.07);
  --border-strong:   rgba(255, 255, 255, 0.14);
  --border-gold:     rgba(192, 154, 43, 0.25);

  /* Text */
  --text-hero:       #FFFFFF;
  --text-primary:    #EDEFF2;
  --text-secondary:  #9097A3;
  --text-tertiary:   #5B6271;
  --text-muted:      #3E4350;
  --text-light:      #9097A3;

  /* Brand */
  --gold:            #C09A2B;
  --gold-light:      #D4B149;
  --gold-deep:       #896101;
  --gold-glow:       rgba(192, 154, 43, 0.10);
  --cream:           #E8DCC2;
  --navy:            #07090E;

  /* Functional */
  --success:         #34D399;

  /* Type */
  --font-display:    'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-body:       'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:       'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max-width:       1380px;
  --gutter:          64px;
  --gutter-mobile:   20px;
  --section-gap:     140px;
  --section-gap-mobile: 88px;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================= BASE ============================= */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'kern';
}

/* fine-grained noise for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

/* ============================= LAYOUT ============================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 900px) { .container { padding: 0 var(--gutter-mobile); } }

section { position: relative; padding: var(--section-gap) 0; }
@media (max-width: 900px) { section { padding: var(--section-gap-mobile) 0; } }

/* ============================= TYPOGRAPHY HELPERS ============================= */

.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-hero);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h2 { font-size: clamp(36px, 4.8vw, 56px); letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.3vw, 28px); letter-spacing: -0.005em; }

p { font-size: 17px; line-height: 1.75; color: var(--text-secondary); font-weight: 300; }
@media (max-width: 900px) { p { font-size: 16px; } }

em { font-style: italic; color: var(--gold-light); }

/* ============================= BUTTONS ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--text-hero);
  color: var(--bg);
  border-color: var(--text-hero);
}
.btn--dark:hover {
  background: transparent;
  color: var(--text-hero);
  border-color: var(--text-hero);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-hero);
  border-color: var(--border-strong);
}
.btn--outline-white:hover {
  background: var(--text-hero);
  color: var(--bg);
  border-color: var(--text-hero);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ============================= NAV ============================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo-link { display: flex; align-items: center; }
.nav-logo-link img { height: 96px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text-hero); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-hamburger { display: none; padding: 8px; z-index: 1002; }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-hero);
  margin: 5px 0; transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7, 9, 14, 0.98);
  backdrop-filter: blur(24px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile .mobile-link {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-hero);
  letter-spacing: -0.01em;
}
.nav-mobile .mobile-link:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 28px; color: var(--text-hero);
  line-height: 1; padding: 8px;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile { display: flex; }
}

/* ============================= HERO ============================= */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

/* Background media — video or image. Drop in property footage. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-media-still,
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.70;
  filter: grayscale(5%) contrast(1.02) brightness(0.92) saturate(0.98);
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease-out);
}
/* Video sits on top of still — fades in as it loads */
.hero-media-video {
  opacity: 0;
}
.hero-media-video.ready { opacity: 0.78; }
/* Once the video is playing, fade the still out so it doesn't bleed through */
.hero-media.video-playing .hero-media-still { opacity: 0; }

/* Mobile — keep video but ease the visual load */
@media (max-width: 900px) {
  .hero-media-still,
  .hero-media-video {
    transform: scale(1.02);
  }
}

/* Editorial overlay — vertical gradient + vignette for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 90% at 50% 50%, rgba(7,9,14,0.30) 0%, rgba(7,9,14,0.72) 90%),
    linear-gradient(to bottom, rgba(7,9,14,0.52) 0%, rgba(7,9,14,0.18) 40%, rgba(7,9,14,0.85) 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 30%, transparent 100%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 900px; height: 900px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 var(--gutter);
}
@media (max-width: 900px) { .hero-inner { padding: 0 var(--gutter-mobile); } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-h1 {
  font-size: clamp(44px, 7.2vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-hero);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-tertiary);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}
@media (max-width: 900px) { .hero-scroll { display: none; } }

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

/* ============================= WHAT WE DO (3-up) ============================= */

#what-we-do { padding: 96px 0 64px; border-bottom: 1px solid var(--border); }

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (max-width: 900px) { .wwd-grid { grid-template-columns: 1fr; } }

.wwd-item {
  background: var(--bg);
  padding: 48px 36px;
  text-align: left;
  transition: background 0.4s var(--ease-out);
}
.wwd-item:hover { background: var(--bg-elevated); }
.wwd-icon { margin-bottom: 24px; }
.wwd-icon svg rect, .wwd-icon svg path, .wwd-icon svg polygon, .wwd-icon svg polyline, .wwd-icon svg line {
  stroke: var(--gold);
}
.wwd-item h3 {
  font-size: 22px;
  color: var(--text-hero);
  margin-bottom: 12px;
}
.wwd-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================= TRUSTED BY ============================= */

#trusted { padding: 64px 0; border-bottom: 1px solid var(--border); }
.trusted-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 36px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trusted-logos img {
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter 0.3s;
}
.trusted-logos img:hover { filter: brightness(0) invert(1) opacity(0.9); }
.trusted-more {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 28px;
  text-transform: uppercase;
}
@media (max-width: 900px) { .trusted-logos { gap: 28px; } }

/* ============================= CREDIBILITY / STATS BAR ============================= */

#credibility {
  padding: 96px 0;
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cred-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
@media (max-width: 900px) { .cred-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

.cred-item { position: relative; }
.cred-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: var(--border);
}
@media (max-width: 900px) { .cred-item::after { display: none; } }

.cred-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--text-hero);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ============================= ABOUT / WHY ============================= */

#about { padding: var(--section-gap) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 64px; } }

.about-left h2 { margin-bottom: 28px; }
.about-left p { margin-bottom: 20px; }

.principles { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
.principle-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.4s var(--ease-out);
}
.principle-card:hover { background: var(--bg-card-hover); }
.principle-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.principle-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-hero);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.principle-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================= STRATEGY ============================= */

#strategy { padding: var(--section-gap) 0; background: var(--bg-inset); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.strategy-header { text-align: center; margin-bottom: 72px; }
.strategy-header h2 { margin-top: 16px; }
.strategy-header .gold-rule { margin: 16px auto 0; }

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .strategy-grid { grid-template-columns: 1fr; } }

.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 52px 44px;
  transition: all 0.4s var(--ease-out);
}
.strategy-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}
.strategy-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.strategy-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-hero);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.strategy-card-sub {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: 24px;
}
.strategy-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.strategy-bullets { list-style: none; }
.strategy-bullets li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-top: 1px solid var(--border);
}
.strategy-bullets li:first-child { border-top: none; }
.strategy-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 12px; height: 1px;
  background: var(--gold);
}

/* ============================= FUND BOX ============================= */

#fund { padding: var(--section-gap) 0; }

.fund-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.fund-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.fund-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .fund-top { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; } }
.fund-top-left h2 { margin: 12px 0 20px; }
.fund-top-left p { font-size: 16px; }

.fund-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.fund-stats-grid > div {
  background: var(--bg-inset);
  padding: 24px;
  text-align: center;
}
.fund-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
  margin-bottom: 6px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.fund-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.fund-bottom { padding: 40px 56px 56px; }
@media (max-width: 900px) { .fund-bottom { padding: 32px 28px; } }
.fund-body-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 820px;
}
.fund-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================= PORTFOLIO ============================= */

#portfolio { padding: var(--section-gap) 0; }

.portfolio-header { text-align: center; margin-bottom: 72px; }
.portfolio-header h2 { margin-top: 16px; }
.portfolio-header .gold-rule { margin: 16px auto 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.portfolio-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.portfolio-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.slideshow-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-inset);
}
.slideshow-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.slideshow-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  z-index: 2;
}
.portfolio-card:hover .slide-btn { opacity: 1; }
.slide-btn--prev { left: 12px; }
.slide-btn--next { right: 12px; }
.slide-btn svg { width: 12px; height: 12px; }

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.slide-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  padding: 0;
  transition: all 0.3s;
}
.slide-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-hero);
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
}
.prop-badge--subscribed { color: var(--gold-light); border-color: var(--border-gold); }
.prop-badge--owned { color: var(--success); border-color: rgba(52, 211, 153, 0.25); }

.portfolio-body { padding: 28px 28px 32px; }
.portfolio-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.portfolio-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-hero);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.portfolio-location {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.portfolio-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.portfolio-body .gold-rule { margin: 16px 0; }
.portfolio-stats-row { display: flex; gap: 24px; }
.portfolio-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-hero);
  line-height: 1;
  margin-bottom: 4px;
}
.portfolio-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* ============================= EDUCATION ============================= */

#education { padding: var(--section-gap) 0; background: var(--bg-inset); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.education-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.education-header h2 { margin-top: 16px; margin-bottom: 20px; }
.education-header .gold-rule { margin: 16px auto 0; }
.education-header p { font-size: 17px; }

.edu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .edu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .edu-grid { grid-template-columns: 1fr; } }

.edu-card {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background 0.4s var(--ease-out);
}
.edu-card:hover { background: var(--bg-card-hover); }
.edu-card h3 {
  font-size: 20px;
  color: var(--text-hero);
  margin-bottom: 12px;
  line-height: 1.25;
}
.edu-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.edu-center { text-align: center; }

/* ============================= TEAM ============================= */

#team { padding: var(--section-gap) 0; }
.team-header { text-align: center; margin-bottom: 72px; }
.team-header h2 { margin-top: 16px; }
.team-header .gold-rule { margin: 16px auto 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.team-card:hover { border-color: var(--border-gold); }

.team-photo-wrap {
  width: 140px; height: 140px;
  margin: 0 auto 28px;
  position: relative;
}
.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}
.team-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg-inset);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.team-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-hero);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.team-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.team-divider {
  width: 32px; height: 1px;
  background: var(--border-strong);
  margin: 0 auto 20px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: left;
}

/* ============================= PODCAST ============================= */

#podcast { padding: var(--section-gap) 0; background: var(--bg-inset); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .podcast-inner { grid-template-columns: 1fr; gap: 40px; } }

.podcast-left h2 { margin: 12px 0 20px; }
.podcast-left p { margin-bottom: 32px; font-size: 16px; }

.podcast-right { text-align: left; }
.podcast-platforms { display: flex; flex-direction: column; gap: 10px; }
.platform-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}
.platform-chip::after {
  content: '→';
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s;
}
.platform-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
}
.platform-chip:hover::after { transform: translateX(4px); }

/* ============================= CONTACT ============================= */

#contact { padding: var(--section-gap) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-left h2 { margin: 12px 0 20px; }
.contact-left p { margin-bottom: 32px; font-size: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.contact-info-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
@media (max-width: 600px) { .contact-form { padding: 28px 24px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-hero);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  transition: all 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-weight: 300; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C09A2B' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: var(--bg-card); color: var(--text-hero); }
.form-submit { margin-top: 12px; width: 100%; }
.form-legal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================= INVESTOR LIST (email capture) ============================= */

#investor-list {
  padding: 96px 0;
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

#investor-list .container { max-width: 720px; }
.il-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
#investor-list h2 { margin-bottom: 20px; }
.il-sub { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; }
.il-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s;
}
.il-form:focus-within { border-color: var(--gold); }
.il-form input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text-hero);
  font-size: 14px;
  font-weight: 300;
}
.il-form input::placeholder { color: var(--text-muted); }
.il-form input:focus { outline: none; }
.il-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s;
}
.il-form button:hover { background: var(--gold-light); }
.il-fine {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .il-form { flex-direction: column; }
  .il-form button { width: 100%; }
}

/* ============================= FINAL CTA ============================= */

#final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
#final-cta .container { position: relative; z-index: 1; max-width: 800px; }
#final-cta h2 { margin-bottom: 20px; }
#final-cta p { font-size: 17px; margin-bottom: 36px; }
.final-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================= FOOTER ============================= */

#footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-wrap img { height: 36px; width: auto; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.footer-nav-links a:hover { color: var(--text-hero); }

.footer-bottom {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 900px) { .footer-bottom { grid-template-columns: 1fr; } }

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
@media (max-width: 900px) { .footer-legal-links { justify-content: flex-start; } }
.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-legal-links a:hover { color: var(--text-secondary); }

.footer-disclaimer {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================= PAGE HERO (sub-pages) ============================= */

.page-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 90%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .gold-rule { margin: 16px auto 24px; }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.page-hero-eyebrow .gold-rule { width: 32px; margin: 0 !important; }
.page-hero-eyebrow .label { margin: 0 !important; }

.page-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 24px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================= FADE UP ANIMATION ============================= */

.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.8s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ============================= FAQ ============================= */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-hero);
  letter-spacing: -0.005em;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding-bottom: 28px; font-size: 15px; line-height: 1.8; }

/* ============================= SUBPAGE SECTIONS ============================= */

/* Footer brand (alias) */
.footer-brand .footer-logo-wrap { margin-bottom: 20px; }

/* Portfolio stat item (used on index + portfolio) */
.portfolio-stat-item { display: flex; flex-direction: column; gap: 4px; }

/* ABOUT — Origin Story */
.origin-section, .about-firm-section { padding: var(--section-gap) 0; }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .origin-grid { grid-template-columns: 1fr; gap: 48px; } }
.origin-left h2 { margin-bottom: 28px; }
.origin-left p { margin-bottom: 18px; }
.origin-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}

/* ABOUT — Origin Timeline Grid (2-column) */
.origin-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .origin-timeline-grid { grid-template-columns: 1fr; gap: 48px; } }
.origin-intro {
  position: sticky;
  top: 140px;
}
@media (max-width: 900px) { .origin-intro { position: static; } }
.origin-intro h2 { margin-top: 16px; }
.origin-stats {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.origin-stat { display: flex; flex-direction: column; gap: 6px; }
.origin-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.01em;
}
.origin-stat-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ABOUT — Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 24px;
  row-gap: 6px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
  box-shadow: 0 0 0 4px rgba(192, 154, 43, 0.12);
  grid-column: 1;
  grid-row: 1 / span 3;
}
.timeline-year {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0;
}
.timeline-title {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-hero);
  letter-spacing: -0.005em;
  margin: 4px 0 2px;
  line-height: 1.2;
}
.timeline-text {
  grid-column: 2;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ABOUT — Why We Invest */
.why-invest { padding: var(--section-gap) 0; background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-invest h2 { margin-top: 16px; margin-bottom: 48px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.3s var(--ease-out);
}
.why-card:hover { background: var(--bg-card-hover); }
.why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-hero);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

/* ABOUT — Mission Cards */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .mission-cards { grid-template-columns: 1fr; } }
.mission-card {
  background: var(--bg-elevated);
  padding: 44px 36px;
  transition: background 0.3s var(--ease-out);
}
.mission-card:hover { background: var(--bg-card-hover); }
.mission-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-hero);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.mission-card-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ABOUT — How It Works */
.how-it-works { padding: var(--section-gap) 0; }
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .steps-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-track { grid-template-columns: 1fr; } }
.step-item {
  background: var(--bg-elevated);
  padding: 40px 28px;
  text-align: left;
}
.step-circle {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 24px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-hero);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* CONTACT — Calendly */
.calendly-section { padding: var(--section-gap) 0; border-top: 1px solid var(--border); }
.calendly-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.calendly-h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}
.calendly-body { font-size: 17px; color: var(--text-secondary); margin-bottom: 40px; }

/* INCOME FUND — Thesis */
.fund-thesis { padding: var(--section-gap) 0; }
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .thesis-grid { grid-template-columns: 1fr; gap: 48px; } }
.thesis-left h2 { margin-bottom: 28px; }
.thesis-left p { margin-bottom: 18px; }

/* INCOME FUND — Fund Features */
.fund-features { padding: var(--section-gap) 0; background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-cell { background: var(--bg); padding: 40px 28px; }
.feature-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.feature-value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--gold-light);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.feature-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* INCOME FUND — How To Invest */
.how-to-invest { padding: var(--section-gap) 0; }
.invest-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .invest-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .invest-steps { grid-template-columns: 1fr; } }
.invest-step { background: var(--bg-elevated); padding: 36px 28px; }
.invest-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.invest-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-hero);
  margin-bottom: 10px;
}

/* INCOME FUND — FAQ (accordion) */
.faq-section { padding: var(--section-gap) 0; background: var(--bg-elevated); }
.faq-section .faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-section .faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-section .faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-hero);
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color 0.3s var(--ease-out);
}
.faq-question:hover { color: var(--gold-light); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}
.faq-section .faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-section .faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 0 28px;
}

/* INCOME FUND — Institutional Partnerships */
.fund-partnerships { padding: var(--section-gap) 0; text-align: center; border-top: 1px solid var(--border); }
.fund-partnerships .gold-rule { margin: 16px auto 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: var(--bg-card);
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s var(--ease-out);
}
.partner-card:hover { background: var(--bg-card-hover); }
.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0.95;
}
.partner-logo svg { max-height: 54px; width: auto; }
.partner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.partner-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

/* INCOME FUND — CTA + Legal */
.fund-cta-section { padding: var(--section-gap) 0; text-align: center; }
.fund-page-legal {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* PODCAST — Sections */
.podcast-about { padding: var(--section-gap) 0; }
.podcast-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .podcast-about-grid { grid-template-columns: 1fr; gap: 48px; } }
.podcast-about-left h2 { margin-bottom: 24px; }
.podcast-about-left p { margin-bottom: 18px; }
.podcast-artwork {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.podcast-artwork-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--text-hero);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.podcast-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

.podcast-platforms-section { padding: var(--section-gap) 0; background: var(--bg-elevated); }
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .platform-cards { grid-template-columns: 1fr; } }
.platform-card {
  background: var(--bg);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s var(--ease-out);
  color: var(--text-hero);
}
.platform-card:hover { background: var(--bg-card-hover); }
.platform-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.podcast-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 560px) { .podcast-topics { grid-template-columns: 1fr; } }
.podcast-topics li {
  list-style: none;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
  color: var(--text-primary);
  font-size: 14px;
}

.podcast-embeds { padding: var(--section-gap) 0; }
.podcast-cta { padding: var(--section-gap) 0; text-align: center; border-top: 1px solid var(--border); }
.podcast-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* RESOURCES — Articles & Downloads */
.resources-articles { padding: var(--section-gap) 0; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .resources-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .resources-grid { grid-template-columns: 1fr; } }
.resource-card {
  background: var(--bg-elevated);
  padding: 36px 28px;
  transition: background 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.resource-card:hover { background: var(--bg-card-hover); }
.resource-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.resource-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-hero);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.resource-card-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.resources-downloads { padding: var(--section-gap) 0; background: var(--bg-elevated); }
.resources-downloads-sub { font-size: 16px; color: var(--text-secondary); max-width: 680px; margin: 16px auto 0; }
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}
@media (max-width: 900px) { .downloads-grid { grid-template-columns: 1fr; } }
.download-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.3s var(--ease-out);
  color: inherit;
  display: flex;
  flex-direction: column;
}
.download-card:hover { background: var(--bg-card-hover); }
.download-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-hero);
  margin-bottom: 12px;
}
.download-card-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* STRATEGY — Details */
.strategy-detail { padding: var(--section-gap) 0; }
.strategy-detail + .strategy-detail { border-top: 1px solid var(--border); }
.strategy-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .strategy-detail-grid { grid-template-columns: 1fr; gap: 48px; } }
.strategy-detail-grid.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .strategy-detail-grid.reverse > :first-child { order: 0; } }
.strategy-detail-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.strategy-callout {
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
  padding: 32px 36px;
}
.strategy-callout-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.strategy-cta { padding: var(--section-gap) 0; text-align: center; border-top: 1px solid var(--border); }

/* ============================= TEAM — LinkedIn social ============================= */

.team-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-out);
}
.team-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.team-social svg { width: 14px; height: 14px; }

/* ============================= CONTACT — Booking Cards ============================= */

.booking-section { padding: var(--section-gap) 0; border-top: 1px solid var(--border); }
.booking-header { text-align: center; margin-bottom: 64px; }
.booking-header .gold-rule { margin: 16px auto 0; }
.booking-header h2 { margin-top: 16px; }
.booking-header p { margin: 20px auto 0; max-width: 640px; }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-card {
  background: var(--bg-card);
  padding: 44px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s var(--ease-out);
  color: inherit;
}
.booking-card:hover { background: var(--bg-card-hover); }
.booking-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.booking-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-hero);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.booking-card-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}
.booking-card .btn {
  margin-top: auto;
  font-size: 12px;
  padding: 14px 24px;
}

/* ============================= ARTICLE / BLOG POST ============================= */

.article {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--section-gap) 0;
}
.article p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.article h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--text-hero);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}
.article h3 {
  font-size: 22px;
  color: var(--text-hero);
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}
.article ul, .article ol {
  margin: 0 0 28px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}
.article ul li, .article ol li {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.article ul li::marker { color: var(--gold); }
.article blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}
.article strong { color: var(--text-hero); font-weight: 500; }
.article a { color: var(--gold-light); border-bottom: 1px solid var(--border-gold); transition: border-color 0.2s; }
.article a:hover { border-bottom-color: var(--gold); }

.article-footer {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.article-footer p {
  font-size: 13px;
  color: var(--text-tertiary);
  max-width: 620px;
  margin: 0 auto 24px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  transition: color 0.2s;
}
.article-back-link:hover { color: var(--gold-light); }

.article-cta-box {
  margin: 64px 0;
  padding: 48px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: center;
}
.article-cta-box h3 { margin-top: 0; }
.article-cta-box p { margin-bottom: 24px; }

/* Resource card becomes a link */
a.resource-card { color: inherit; }
a.resource-card::after {
  content: '→';
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease-out);
}
a.resource-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ============================= UTILITIES ============================= */

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
