/* ══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — WordPress: paste into style.css
══════════════════════════════════════════════════ */
:root {
  --forest:     #1B3A2D;
  --forest-dk:  #122A1F;
  --gold:       #C9962A;
  --gold-lt:    #E8C06A;
  --gold-pale:  #F5E9C8;
  --ivory:      #FAF7F0;
  --ivory-dk:   #F0EAD8;
  --charcoal:   #1A1A1A;
  --mid:        #4A4A4A;
  --muted:      #7A7A7A;
  --rule:       #D4C4A0;
  --white:      #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Montserrat', sans-serif;
  --ff-body:    'Libre Baskerville', Georgia, serif;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 80px rgba(0,0,0,.2);
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--mid);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27,58,45,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,42,.25);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(18,42,31,.99);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ivory);
  line-height: 1;
}
.nav-wordmark span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,247,240,.6);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--forest) !important;
  background: var(--gold);
  padding: .55rem 1.4rem;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ivory);
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════
   PAGE SECTIONS — WordPress: each is a separate Page
══════════════════════════════════════════════════ */
.page-section { display: none; }
.page-section.active { display: block; }

/* ══════════════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════════════ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 640px;
}

.gold-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.btn-primary {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: .85rem 2.2rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: .85rem 2.2rem;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--forest); color: var(--ivory); }

.btn-outline-light {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(250,247,240,.5);
  padding: .85rem 2.2rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-light:hover { background: rgba(250,247,240,.1); border-color: var(--ivory); }

/* ══════════════════════════════════════════════════
   PAGE 01 — HOME
══════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(201,150,42,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,150,42,.05) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .03;
  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");
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .2s ease both;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .8s .35s ease both;
}

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

.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,247,240,.55);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .5s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .65s ease both;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s .8s ease both;
}

.hero-mark-large {
  width: min(340px, 90%);
  opacity: .18;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease both;
}

.hero-scroll-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.hero-scroll-line span {
  font-family: var(--ff-sans);
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(250,247,240,.3);
}

.hero-scroll-line::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* Stats bar */
.stats-bar {
  background: var(--forest-dk);
  border-top: 1px solid rgba(201,150,42,.2);
  border-bottom: 1px solid rgba(201,150,42,.1);
}

.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201,150,42,.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250,247,240,.35);
}

/* Introduction strip */
.intro-strip {
  background: var(--ivory);
  padding: 7rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-quote {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--forest);
  position: relative;
  padding-left: 2rem;
}

.intro-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.intro-right {}

.intro-right .section-body { max-width: none; margin-bottom: 2rem; }

/* Divisions preview */
.divisions-preview {
  background: var(--charcoal);
  padding: 7rem 0;
}

.divisions-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.division-card {
  background: var(--forest-dk);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border-top: 2px solid transparent;
}

.division-card:hover {
  background: var(--forest);
  border-top-color: var(--gold);
  transform: translateY(-3px);
}

.div-num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,150,42,.12);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.div-icon {
  margin-bottom: 1.5rem;
}

.div-name {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.div-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .8rem;
  line-height: 1.3;
}

.div-body {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: rgba(250,247,240,.45);
  line-height: 1.7;
}

/* Philosophy callout */
.philosophy {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}

.philosophy-text {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  margin-bottom: .8rem;
  max-width: 840px;
  margin: 0 auto .8rem;
  line-height: 1.35;
}

.philosophy-attr {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: .6;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════════════════════
   PAGE 02 — ABOUT
══════════════════════════════════════════════════ */
.page-hero-sm {
  background: var(--forest);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-sm::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201,150,42,.07) 0%, transparent 70%);
}

.page-hero-sm-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.page-hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: rgba(250,247,240,.5);
}

/* Story section */
.story {
  padding: 7rem 0;
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.story-left {}

.story-right {}

.story-right p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1.4rem;
  color: var(--mid);
}

.story-right p:first-child {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--forest);
  line-height: 1.55;
  font-weight: 400;
}

/* Values */
.values {
  background: var(--forest);
  padding: 7rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 3.5rem;
}

.value-card {
  background: rgba(255,255,255,.04);
  padding: 2.8rem 2.5rem;
  border-top: 1px solid rgba(201,150,42,.2);
}

.value-num {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: .7;
}

.value-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .8rem;
  line-height: 1.25;
}

.value-body {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(250,247,240,.5);
  line-height: 1.75;
}

/* Team / Partners */
.partners-section {
  padding: 7rem 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.partner-card {
  background: var(--ivory);
  padding: 2.2rem 1.8rem;
  border-bottom: 3px solid var(--gold-pale);
  transition: var(--transition);
}

.partner-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-initial {
  width: 52px; height: 52px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}

.partner-name {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .3rem;
  letter-spacing: .04em;
}

.partner-role {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.partner-desc {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   PAGE 03 — VENTURES
══════════════════════════════════════════════════ */
.ventures-hero {
  background: var(--forest);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.ventures-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
}

.venture-section {
  padding: 7rem 0;
}

.venture-section:nth-child(even) { background: white; }
.venture-section:nth-child(odd) { background: var(--ivory); }

.venture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.venture-grid.reverse { direction: rtl; }
.venture-grid.reverse > * { direction: ltr; }

.venture-visual {
  background: var(--forest);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.venture-visual-inner {
  text-align: center;
  padding: 2rem;
}

.venture-icon-large {
  margin: 0 auto 1.5rem;
  opacity: .7;
}

.venture-visual-label {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: .06em;
}

.venture-visual-sub {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .4rem;
}

.venture-content {}

.venture-tag {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.venture-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.venture-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.venture-stats {
  display: flex;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}

.v-stat {}
.v-stat-num { font-family: var(--ff-display); font-size: 30px; font-weight: 300; color: var(--gold); line-height: 1; }
.v-stat-label { font-family: var(--ff-sans); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Pipeline */
.pipeline {
  background: var(--charcoal);
  padding: 7rem 0;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.pipeline-card {
  background: rgba(255,255,255,.04);
  padding: 2.5rem 2rem;
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.pipeline-card:hover { border-left-color: var(--gold); background: rgba(255,255,255,.07); }

.pipeline-status {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  margin-bottom: 1.2rem;
}
.status-active { background: rgba(201,150,42,.15); color: var(--gold); }
.status-pipeline { background: rgba(250,247,240,.08); color: rgba(250,247,240,.4); }
.status-planned { background: rgba(27,58,45,.5); color: rgba(250,247,240,.3); }

.pipeline-title { font-family: var(--ff-display); font-size: 22px; color: var(--ivory); margin-bottom: .5rem; font-weight: 400; }
.pipeline-sub { font-family: var(--ff-sans); font-size: 10px; color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.pipeline-body { font-family: var(--ff-sans); font-size: 11px; color: rgba(250,247,240,.4); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   PAGE 04 — INVESTMENT
══════════════════════════════════════════════════ */
.investment-hero {
  background: var(--forest);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.investment-hero::before {
  content: '';
  position: absolute;
  left: -5%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201,150,42,.06) 0%, transparent 70%);
}

.investment-pitch {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,247,240,.7);
  max-width: 680px;
  line-height: 1.55;
  margin-top: 1.5rem;
}

/* Why invest */
.why-invest {
  padding: 7rem 0;
  background: var(--ivory);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.reason-card {
  background: white;
  padding: 2.8rem 2.2rem;
  border-top: 3px solid var(--rule);
  transition: var(--transition);
}
.reason-card:hover { border-top-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.reason-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: .8rem;
}

.reason-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .8rem;
  line-height: 1.3;
}

.reason-body { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* Key figures */
.key-figures {
  background: var(--forest);
  padding: 7rem 0;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 3.5rem;
}

.figure-card {
  background: rgba(255,255,255,.05);
  padding: 2.5rem 2rem;
  text-align: center;
}

.figure-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .5rem;
}

.figure-label {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250,247,240,.4);
  line-height: 1.6;
}

/* Investment tiers */
.invest-tiers {
  background: white;
  padding: 7rem 0;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.tier-card {
  border: 1px solid var(--rule);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: var(--transition);
}

.tier-card.featured {
  background: var(--forest);
  border-color: var(--forest);
}

.tier-card:hover:not(.featured) { border-color: var(--gold); box-shadow: var(--shadow-md); }

.tier-badge {
  position: absolute;
  top: -1px; right: 2rem;
  font-family: var(--ff-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest);
  padding: .25rem .8rem;
}

.tier-name {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tier-amount {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: .3rem;
}

.tier-card.featured .tier-amount { color: var(--ivory); }

.tier-currency {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.tier-card.featured .tier-currency { color: rgba(250,247,240,.5); }

.tier-features {
  margin-bottom: 2rem;
}

.tier-features li {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 1.2rem;
  position: relative;
}

.tier-card.featured .tier-features li { color: rgba(250,247,240,.65); border-color: rgba(255,255,255,.1); }
.tier-features li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }

/* ══════════════════════════════════════════════════
   PAGE 05 — CONTACT
══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.contact-left {
  background: var(--forest);
  padding: 7rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201,150,42,.06) 0%, transparent 70%);
}

.contact-left-inner { position: relative; z-index: 1; }

.contact-info {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,150,42,.15);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,150,42,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.contact-item-value {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(250,247,240,.7);
  line-height: 1.7;
}

.contact-right {
  background: var(--ivory);
  padding: 7rem 4rem 5rem;
  padding-top: calc(72px + 4rem);
}

.contact-form { margin-top: 2.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: .5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--rule);
  padding: .8rem 1rem;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,42,.08);
}

.form-textarea { height: 130px; resize: vertical; }

.form-note {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(201,150,42,.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {}

.footer-wordmark {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-wordmark span { color: var(--gold); }

.footer-tagline {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(250,247,240,.35);
  margin-bottom: 1.5rem;
}

.footer-body {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: rgba(250,247,240,.3);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }

.footer-links a {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: rgba(250,247,240,.4);
  transition: var(--transition);
  cursor: pointer;
}

.footer-links a:hover { color: var(--ivory); }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: rgba(250,247,240,.25);
  letter-spacing: .05em;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: var(--ff-sans);
  font-size: 10px;
  color: rgba(250,247,240,.25);
  cursor: pointer;
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(250,247,240,.6); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .intro-grid, .story-grid, .venture-grid { grid-template-columns: 1fr; gap: 3rem; }
  .venture-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid, .pipeline-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-right { padding-top: 4rem; }
  .figures-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--forest-dk);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,150,42,.2);
  }
  .nav-toggle { display: flex; }
  .divisions-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid, .pipeline-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .figures-grid { grid-template-columns: 1fr 1fr; }
  .contact-left { padding: 5rem 2rem 3rem; }
  .contact-right { padding: 3rem 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
/* ══════════════════════════════════════════════════
   WORDPRESS THEME BRIDGING (Sankofa custom theme)
══════════════════════════════════════════════════ */
/* Neutralise default block margins on full-bleed sections */
.wp-block-group.hero,
.wp-block-group.stats-bar,
.wp-block-group.intro-strip,
.wp-block-group.divisions-preview,
.wp-block-group.philosophy,
.wp-block-group.page-hero-sm { margin-block: 0; }

/* Fixed nav offset for the site */
body { }
#site-main { display:block; }

/* Hero: single column (no decorative SVG panel in editable version) */
.hero .hero-inner { grid-template-columns: 1fr; }
.hero-ctas { gap: 1rem; }

/* Core buttons → Sankofa button styles */
.wp-block-button .wp-block-button__link {
  border-radius: 0;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  transition: var(--transition);
}
.wp-block-button.is-primary .wp-block-button__link { background: var(--gold); color: var(--forest); border: none; }
.wp-block-button.is-primary .wp-block-button__link:hover { background: var(--gold-lt); }
.wp-block-button.is-outline .wp-block-button__link { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.wp-block-button.is-outline .wp-block-button__link:hover { background: var(--forest); color: var(--ivory); }
.wp-block-button.is-outline-light .wp-block-button__link { background: transparent; color: var(--ivory); border: 1px solid rgba(250,247,240,.5); }
.wp-block-button.is-outline-light .wp-block-button__link:hover { background: rgba(250,247,240,.1); border-color: var(--ivory); }

/* Stats bar: force 4-up grid */
.stats-bar .wp-block-columns.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; }
.stats-bar .wp-block-column.stat-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(201,150,42,.12); flex-basis: auto !important; }
.stats-bar .wp-block-column.stat-item:last-child { border-right: none; }

/* Intro strip: two columns */
.intro-strip .wp-block-columns.intro-grid { align-items: center; gap: 6rem; margin: 0; }

/* Divisions: 3-up rows */
.divisions-preview .wp-block-columns.divisions-grid { gap: 1.5px; margin: 0 0 1.5px; }
.divisions-preview .wp-block-column.division-card { padding: 2.8rem 2.2rem; }

/* Legacy SPA rule off */
.page-section { display: block; }

/* Blog / Journal */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.blog-card { background: #fff; border-bottom: 3px solid var(--gold-pale); padding-bottom: 1.5rem; transition: var(--transition); }
.blog-card:hover { border-bottom-color: var(--gold); box-shadow: var(--shadow-md); }
.blog-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-title { font-family: var(--ff-display); font-size: 24px; font-weight: 400; color: var(--forest); margin: .4rem 0 .8rem; line-height: 1.25; }
.blog-title a { color: inherit; }
.blog-excerpt { font-family: var(--ff-sans); font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-pagination { margin-top: 3rem; font-family: var(--ff-sans); }
.blog-pagination a, .blog-pagination .page-numbers { padding: .4rem .8rem; color: var(--forest); }

@media (max-width: 1024px) {
  .stats-bar .wp-block-columns.stats-inner { grid-template-columns: 1fr 1fr; }
  .divisions-preview .wp-block-columns.divisions-grid { flex-wrap: wrap; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .stats-bar .wp-block-columns.stats-inner { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* hero-emblem-mark: Sankofa symbol watermark on the home hero (CSS so it is never stripped) */
.hero{position:relative;overflow:hidden;}
.hero .hero-inner,.hero .hero-content{position:relative;z-index:2;}
.hero::after{content:"";position:absolute;right:6%;top:50%;transform:translateY(-50%);width:min(520px,40vw);height:min(520px,40vw);background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96' fill='none'><circle cx='48' cy='48' r='43' stroke='%23C9962A' stroke-width='1.2' opacity='0.5'/><path d='M28 58 Q38 38 58 42 Q70 44 72 36' stroke='%23C9962A' stroke-width='2' stroke-linecap='round'/><path d='M28 58 Q22 52 26 46 Q30 40 36 44' stroke='%23C9962A' stroke-width='2' stroke-linecap='round'/><circle cx='26' cy='47' r='2.2' fill='%23C9962A'/><path d='M72 36 Q78 30 74 26 M72 36 Q80 36 80 30' stroke='%23C9962A' stroke-width='1.5' stroke-linecap='round'/><ellipse cx='50' cy='67' rx='6' ry='8' stroke='%23E8C06A' stroke-width='1.2'/><path d='M43 58 L45 67 M57 54 L55 67' stroke='%23C9962A' stroke-width='1.2' stroke-linecap='round'/></svg>");background-repeat:no-repeat;background-position:center;background-size:contain;opacity:0.55;pointer-events:none;z-index:1;}
@media (max-width:900px){.hero::after{display:none;}}


/* stage-2: division icons via CSS */
.venture-visual.icon-works .venture-visual-inner::before,.venture-visual.icon-resorts .venture-visual-inner::before{content:"";display:block;width:64px;height:64px;margin:0 auto 1.2rem;background-repeat:no-repeat;background-position:center;background-size:contain;}
.venture-visual.icon-works .venture-visual-inner::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64' fill='none'><rect x='4' y='20' width='56' height='36' rx='2' stroke='%23C9962A' stroke-width='1.5'/><path d='M16 20V16a16 16 0 0132 0v4' stroke='%23C9962A' stroke-width='1.5'/><circle cx='32' cy='38' r='6' stroke='%23E8C06A' stroke-width='1.2'/><path d='M12 32h6M46 32h6M32 28v-4' stroke='%23C9962A' stroke-width='1.2' stroke-linecap='round'/></svg>");}
.venture-visual.icon-resorts .venture-visual-inner::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64' fill='none'><path d='M8 56 Q16 24 20 40 Q24 52 28 28 Q32 8 36 32 Q40 52 44 36 Q48 24 56 40' stroke='%23C9962A' stroke-width='1.5' fill='none' stroke-linecap='round'/><path d='M4 56h56' stroke='%23C9962A' stroke-width='1.2' opacity='.4'/><circle cx='32' cy='20' r='8' stroke='%23E8C06A' stroke-width='1.2'/><path d='M32 12v-4M32 32v4M24 20h-4M44 20h-4' stroke='%23E8C06A' stroke-width='1' stroke-linecap='round' opacity='.6'/></svg>");}
/* stage-2: investment hero CTAs clickable */
.investment-hero{position:relative;}
.investment-hero::before,.investment-hero::after{pointer-events:none;}
.investment-hero .container,.investment-hero .wp-block-group__inner-container,.investment-hero .hero-ctas,.investment-hero .wp-block-buttons,.investment-hero a{position:relative;z-index:5;}

/* stage-2: Sankofa Works card links to Softy */
.venture-visual-link{display:block;text-decoration:none;color:inherit;transition:transform .2s ease, box-shadow .2s ease;}
.venture-visual-link:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(10,42,30,.18);}
.venture-visual-link:hover .venture-visual{filter:brightness(1.06);}
