/*
Theme Name: First Pavilion Private Equity
Theme URI: https://firstpavilionpe.com
Author: First Pavilion Private Equity
Author URI: https://firstpavilionpe.com
Description: Premium dark theme for First Pavilion Private Equity - Asia-focused private equity firm.
Version: 1.0.0
License: Private
Text Domain: fp-pe
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --bg-card:     #141414;
  --gold:        #C4922A;
  --gold-light:  #E2B860;
  --gold-dark:   #9A7020;
  --white:       #FFFFFF;
  --text:        #D8D8D8;
  --text-muted:  #7A7A7A;
  --text-dim:    #555555;
  --border:      #222222;
  --border-gold: rgba(196,146,42,0.3);
  --nav-h:       80px;
  --radius:      2px;
  --transition:  0.3s ease;
  --max-w:       1280px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-sans); font-weight: 600; color: var(--gold); }

p { margin-bottom: 1.25rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 100px 0;
}
.section--sm  { padding: 60px 0; }
.section--lg  { padding: 140px 0; }
.section--dark  { background: var(--bg); }
.section--dark2 { background: var(--bg-2); }
.section--dark3 { background: var(--bg-3); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 70px 0; }
  .section--lg { padding: 90px 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0A;
}

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

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

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-intro {
  max-width: 680px;
}
.section-intro p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.divider--center { margin: 24px auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

#site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.site-logo span { color: var(--gold); }
.site-logo small {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.site-logo:hover { color: var(--white); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > li > a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--white);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

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

@media (max-width: 1024px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  #site-header.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 40px;
    gap: 24px;
    align-items: flex-start;
    overflow-y: auto;
  }
  #site-header.nav-open .nav-cta { display: block; margin-top: 16px; }
}

/* ============================================================
   HERO - HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #0F1B2D 50%, #0A0A0A 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(196,146,42,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(196,146,42,0.04) 0%, transparent 40%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  display: block;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   POSITIONING STATEMENT BAND
   ============================================================ */
.tagline-band {
  background: var(--gold);
  padding: 24px 0;
}
.tagline-band .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.tagline-band h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #0A0A0A;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.tagline-band p {
  color: rgba(10,10,10,0.75);
  font-size: 0.9rem;
  margin: 0;
  flex: 2;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tagline-band .container { flex-direction: column; gap: 16px; }
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-item {
  background: var(--bg-2);
  padding: 48px 36px;
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.4rem;
}

.card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TWO-COL CONTENT
   ============================================================ */
.split-section .split-text { padding-right: 40px; }
.split-section .split-image {
  position: relative;
}
.split-section .split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.split-section .split-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--border-gold);
  z-index: 0;
}
.split-section .split-image img { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .split-section .split-text { padding-right: 0; }
}

/* ============================================================
   INVESTMENT TYPES
   ============================================================ */
.invest-type {
  border-left: 2px solid var(--border);
  padding: 24px 28px;
  transition: border-color var(--transition);
}
.invest-type:hover { border-color: var(--gold); }
.invest-type h4 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.invest-type p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--bg-2);
  padding: 40px 28px;
  counter-increment: step;
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: var(--bg-3); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(196,146,42,0.15);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { color: var(--gold); font-size: 1rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTOR TAGS
   ============================================================ */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.sector-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sector-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,146,42,0.05);
}

/* ============================================================
   ESG PILLARS
   ============================================================ */
.esg-pillar {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}
.esg-pillar .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.esg-pillar h4 { color: var(--gold); margin-bottom: 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-sans); }
.esg-pillar p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: var(--border-gold); }
.team-card-body { padding: 28px 24px; }
.team-card h4 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.team-card .role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.team-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.team-card-img {
  width: 100%;
  height: 280px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196,146,42,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  font-family: var(--font-serif);
}

/* ============================================================
   INSIGHTS / NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.news-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  height: 200px;
  background: var(--bg-3);
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 28px; }
.news-card .meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-card .meta .category { color: var(--gold); }
.news-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.news-card h4 a { color: inherit; }
.news-card h4 a:hover { color: var(--gold); }
.news-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.news-card .read-more {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card .read-more::after { content: '→'; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--bg-3);
}
.contact-form select option { background: var(--bg-2); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item .ci-body strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-item .ci-body p,
.contact-info-item .ci-body a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(196,146,42,0.05) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: var(--bg-2);
  margin: 40px 0;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196,146,42,0.06) 0%, transparent 65%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INVESTOR ACCESS PORTAL
   ============================================================ */
.portal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.portal-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.portal-card h3 { margin-bottom: 12px; }
.portal-card p { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer-content h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 32px 0 12px;
}
.disclaimer-content p { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .site-logo { font-size: 1.1rem; margin-bottom: 16px; display: block; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-address {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-contact-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-legal-links a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   VALUE LIST
   ============================================================ */
.value-list { margin-top: 24px; }
.value-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(196,146,42,0.25);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.value-body h4 { color: var(--gold); margin-bottom: 6px; font-size: 1rem; }
.value-body p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   APPROACH ITEMS
   ============================================================ */
.approach-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.approach-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 4px;
}
.approach-body h4 { color: var(--white); margin-bottom: 8px; }
.approach-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.approach-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.approach-tag {
  font-size: 0.72rem;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   CAREER AREAS
   ============================================================ */
.career-area {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.career-area:hover { border-color: var(--border-gold); }
.career-area h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.career-area p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ============================================================
   PAGE - WHAT WE INVEST IN (sectors)
   ============================================================ */
.sector-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  transition: all var(--transition);
}
.sector-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}
.sector-card .sector-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.sector-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.sector-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ============================================================
   ACCORDION (ESG Integration)
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
}
.accordion-trigger .acc-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .acc-icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.accordion-body-inner { padding-bottom: 20px; color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */

/* Ensure dark background applies to Elementor-built pages */
.fppe-page-content {
    background: var(--bg);
    min-height: 60vh;
}

/* Elementor sections inherit dark theme */
.elementor-section,
.elementor-container,
.e-con,
.e-con-inner {
    color: var(--text);
}

/* Override Elementor default white backgrounds */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1280px;
}

/* Elementor typography inherits theme fonts */
.elementor-widget-text-editor,
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-sans);
    color: var(--text);
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xl,
.elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
    font-family: var(--font-serif);
    color: var(--white);
}

/* Elementor buttons match theme style */
.elementor-button {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--bg) !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.elementor-button:hover {
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
}

/* Elementor dividers match gold accent */
.elementor-divider-separator {
    border-color: var(--gold) !important;
}

/* Elementor page full width */
.elementor-page .fppe-page-content {
    padding: 0;
}
