/* ─── RESET & BASE ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f7f4ef;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── VARIABLES ─── */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --gold: #c89b3c;
  --gold-light: #ddb96a;
  --cream: #f7f4ef;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-muted: #7a7a7a;
  --white: #ffffff;
  --border: rgba(200,155,60,0.25);
  --border-light: rgba(0,0,0,0.08);
}

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=DM+Sans:wght@300;400;500&display=swap');

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ─── NAV ─── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

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

.brand { display: flex; flex-direction: column; gap: 1px; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--gold); }

nav a.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 500;
}

nav a.btn-nav:hover { background: var(--gold-light); color: var(--navy); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ─── SECTION HELPERS ─── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.07) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 640px;
}

.page-hero p {
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.8;
}

/* ─── HOME HERO ─── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 120px 40px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

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

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

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

/* Hero stats */
.hero-stats { display: flex; flex-direction: column; gap: 24px; }

.stat-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 32px;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px 0 0 3px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ─── MISSION BANNER ─── */
.mission-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 64px 40px;
}

.mission-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mission-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
}

/* ─── PILLARS ─── */
.pillars { padding: 100px 40px; background: var(--cream); }

.section-header-block {
  max-width: 1160px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-header-right {
  max-width: 360px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pillars-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 40px 36px;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.pillar-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-3px); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,155,60,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillar-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ─── WHO WE SERVE ─── */
.who-we-serve { background: var(--navy); padding: 100px 40px; position: relative; overflow: hidden; }

.who-we-serve::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.06) 0%, transparent 65%);
}

.who-inner { max-width: 1160px; margin: 0 auto; }

.who-we-serve h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
  max-width: 540px;
  line-height: 1.2;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.audience-item { background: var(--navy-mid); padding: 36px 40px; transition: background 0.2s; }
.audience-item:hover { background: var(--navy-light); }
.audience-item h4 { font-weight: 500; font-size: 1rem; color: #fff; margin-bottom: 8px; }
.audience-item p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ─── PROGRAMS LIST ─── */
.programs { padding: 100px 40px; background: var(--white); }

.programs-inner { max-width: 1160px; margin: 0 auto; }

.programs-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.program-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

.program-row:last-child { border-bottom: none; }
.program-row:hover { background: var(--cream); }

.program-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  border-right: 1px solid var(--border-light);
  padding: 28px;
}

.program-main { padding: 28px 32px; border-right: 1px solid var(--border-light); }
.program-main h4 { font-weight: 500; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }

.program-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

.program-desc {
  padding: 28px 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  align-items: center;
}

/* ─── VETERAN BAND ─── */
.veteran-band {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px;
}

.veteran-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.veteran-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  flex-shrink: 0;
}

.veteran-badge-icon { font-size: 1.6rem; }

.veteran-badge-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 500;
}

.veteran-badge-text span { font-size: 0.72rem; color: var(--text-muted); }
.veteran-copy { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

/* ─── CTA ─── */
.cta-section {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,155,60,0.05) 0%, transparent 60%);
}

.cta-inner { max-width: 620px; margin: 0 auto; position: relative; }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT PAGE ─── */
.mission-section { background: var(--white); padding: 100px 40px; }

.mission-inner-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.mission-left p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.mission-quote {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.mission-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

.mission-right { display: flex; flex-direction: column; gap: 20px; }

.value-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.value-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px 0 0 3px;
}

.value-card h4 { font-weight: 500; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.why-section-light { background: var(--navy); padding: 100px 40px; position: relative; overflow: hidden; }

.why-inner-fs { max-width: 1160px; margin: 0 auto; position: relative; }

.why-inner-fs h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
  max-width: 480px;
  line-height: 1.2;
}

.why-grid-fs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.why-item-fs { background: var(--navy-mid); padding: 40px 36px; transition: background 0.2s; }
.why-item-fs:hover { background: var(--navy-light); }
.why-num-fs {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.why-item-fs h4 { font-weight: 500; font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.why-item-fs p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* Founder */
.founder-section { background: var(--cream); padding: 100px 40px; }

.founder-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; }

.founder-card-top { background: var(--navy); padding: 40px 32px; text-align: center; }

.founder-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(200,155,60,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 16px;
}

.founder-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.founder-card-top span { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.founder-card-body { padding: 24px 28px; }
.founder-detail { display: flex; flex-direction: column; gap: 14px; }

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 500; }
.detail-value { font-size: 0.88rem; color: var(--text-mid); }

.founder-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.founder-right p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }

.credential-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.credential-tag {
  display: inline-block;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Venture band */
.venture-band { background: var(--white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 64px 40px; }

.venture-inner-about {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.venture-inner-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.venture-inner-about p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.venture-inner-about a { color: var(--gold); text-decoration: none; font-weight: 500; }
.venture-inner-about a:hover { color: var(--gold-light); }

.venture-badges { display: flex; flex-direction: column; gap: 16px; }

.venture-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.venture-badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.venture-badge-text strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.venture-badge-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── SERVICES PAGE ─── */
.programs-section { background: var(--white); padding: 100px 40px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.program-card:hover::before { transform: scaleX(1); }

.program-card-num { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 20px; }

.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.program-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

.program-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.program-bullets li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.program-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 1px;
  background: var(--gold);
}

/* How it works */
.how-section { background: var(--cream); padding: 100px 40px; }

.how-inner { max-width: 1160px; margin: 0 auto; }

.how-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 64px;
  line-height: 1.2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
}

.step { background: var(--white); padding: 36px 28px; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(200,155,60,0.18);
  line-height: 1;
  margin-bottom: 16px;
}

.step h4 { font-weight: 500; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* Resources */
.resources-section { background: var(--navy); padding: 100px 40px; position: relative; overflow: hidden; }

.resources-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.06) 0%, transparent 65%);
}

.resources-inner { max-width: 1160px; margin: 0 auto; position: relative; }

.resources-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.resources-inner .lead { font-size: 0.95rem; color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.8; margin-bottom: 56px; }

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

.resource-item { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 5px; padding: 28px; transition: background 0.2s; }
.resource-item:hover { background: var(--navy-light); }
.resource-category { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.resource-item h4 { font-weight: 500; font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.resource-item p { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* Partner section */
.partner-section { background: var(--white); padding: 100px 40px; }

.partner-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.partner-left h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.partner-left p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.partner-left a { color: var(--gold); text-decoration: none; font-weight: 500; }
.partner-left a:hover { color: var(--gold-light); }

.partner-types { display: flex; flex-direction: column; gap: 12px; }

.partner-type { display: flex; gap: 16px; padding: 20px 24px; background: var(--cream); border: 1px solid var(--border-light); border-radius: 4px; align-items: flex-start; }
.partner-type-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.partner-type h5 { font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.partner-type p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── FOOTER ─── */
footer {
  background: #080f18;
  color: rgba(255,255,255,0.35);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .venture-inner-about { grid-template-columns: 1fr; gap: 40px; }
  .partner-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 60px 1fr; }
  .program-desc { display: none; }
  .section-header-block { flex-direction: column; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid-fs { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav-inner { padding: 0 20px; }
  nav { gap: 16px; }
  nav a.btn-nav { display: none; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
