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

:root {
  --purple-deepest: #1a1540;
  --purple-deep: #26215C;
  --purple-mid: #3C3489;
  --purple-strong: #534AB7;
  --purple-accent: #7F77DD;
  --purple-light: #CECBF6;
  --purple-faint: #EEEDFE;
  --gold: #C9A84C;
  --gold-light: #e8d49e;
  --white: #FAFAF8;
  --off-white: #F4F3EF;
  --text-muted: #4a4480;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--white);
  color: var(--purple-deep);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--purple-deepest);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid rgba(127,119,221,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.nav-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 38px;
}

.nav-bars span {
  display: block;
  width: 9px;
  border-radius: 2px;
}
.nav-bars span:nth-child(1) { height: 14px; background: #AFA9EC; }
.nav-bars span:nth-child(2) { height: 24px; background: #7F77DD; }
.nav-bars span:nth-child(3) { height: 38px; background: #CECBF6; }

.nav-divider {
  width: 1px;
  height: 44px;
  background: rgba(206,203,246,0.3);
}

.nav-wordmark { display: flex; flex-direction: column; gap: 3px; }
.nav-avrm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 7px;
  color: var(--purple-faint);
}
.nav-capital {
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--purple-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--purple-light);
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

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

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

.nav-contact-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 9px 22px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-contact-btn:hover {
  background: var(--gold);
  color: var(--purple-deepest);
}

/* ── PAGE SYSTEM ── */
.page { display: none; padding-top: 84px; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  background: var(--purple-deepest);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

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

.hero-body {
  font-size: 15px;
  line-height: 1.9;
  color: #b8b4e0;
  letter-spacing: 0.5px;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 20px; align-items: center; }

.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-deepest);
  background: var(--gold);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: transparent;
  border: 1px solid rgba(206,203,246,0.3);
  padding: 14px 32px;
  cursor: pointer;
  font-weight: 300;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--purple-light); color: var(--white); }

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  gap: 48px;
  z-index: 2;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 300;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 60px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--purple-deep);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-title em { font-style: italic; color: var(--purple-strong); }

/* ── FOCUS AREAS (home) ── */
.focus-section { background: var(--off-white); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.focus-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.focus-card:hover { border-color: var(--purple-accent); transform: translateY(-3px); }

.focus-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.focus-icon span {
  display: block;
  width: 8px;
  border-radius: 2px;
  background: var(--purple-light);
}
.focus-icon span:nth-child(1) { height: 16px; }
.focus-icon span:nth-child(2) { height: 26px; background: var(--purple-accent); }
.focus-icon span:nth-child(3) { height: 40px; background: var(--purple-mid); }

.focus-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.focus-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-header {
  background: var(--purple-deepest);
  padding: 80px 60px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

.portfolio-header p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 16px;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.9;
}

.portfolio-filters {
  padding: 40px 60px;
  background: var(--off-white);
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(83,74,183,0.1);
}

.filter-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(83,74,183,0.2);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2px;
  background: var(--off-white);
  padding: 2px;
}

.portfolio-card {
  background: var(--white);
  padding: 40px 36px;
  transition: transform 0.2s, border-top-color 0.2s;
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-2px); border-top-color: var(--purple-accent); }

.portfolio-card-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.tag-re { background: #EEEDFE; color: var(--purple-strong); }
.tag-tech { background: #e8f5ee; color: #2a6b4a; }
.tag-gov { background: #faeeda; color: #7a5010; }
.tag-health { background: #fbeaf0; color: #8a2b50; }
.tag-fb { background: #fdf3e3; color: #8a5a10; }

.status-exit {
  font-size: 11px;
  letter-spacing: 2px;
  color: #2a7a4a;
  text-transform: uppercase;
  background: #e8f5ee;
  padding: 4px 10px;
  border-radius: 2px;
}

.status-closed {
  font-size: 11px;
  letter-spacing: 2px;
  color: #8a3030;
  text-transform: uppercase;
  background: #fbeaea;
  padding: 4px 10px;
  border-radius: 2px;
}

.portfolio-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
}

.portfolio-card .location {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 16px;
}

.portfolio-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  flex: 1;
}

.portfolio-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(127,119,221,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-card-status {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--purple-accent);
  text-transform: uppercase;
}

/* ── ABOUT PAGE ── */
.about-header {
  background: var(--purple-deepest);
  padding: 80px 60px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

.about-mission {
  background: var(--purple-deep);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}

.about-mission-text {
  font-size: 14px;
  line-height: 1.95;
  color: #b8b4e0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.about-mission-text p + p { margin-top: 16px; }

.team-section { background: var(--off-white); }

.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  margin-top: 60px;
  align-items: start;
}

.founder-photo-wrap {
  position: sticky;
  top: 100px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}

.founder-bio h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.founder-bio .title {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
}

.founder-bio p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--purple-deep);
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(127,119,221,0.15);
}

.credential {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 6px 16px;
  border: 1px solid rgba(83,74,183,0.25);
  color: var(--purple-strong);
  border-radius: 2px;
}

.team-card {
  background: var(--white);
  padding: 40px 32px;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--purple-faint);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 4px;
}

.team-card .title {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── CONTACT PAGE ── */
.contact-header {
  background: var(--purple-deepest);
  padding: 80px 60px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  background: var(--purple-deep);
  padding: 80px 60px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.9;
  color: #b8b4e0;
  font-weight: 300;
  margin-bottom: 48px;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 13px;
  color: var(--purple-light);
  letter-spacing: 0.5px;
  font-weight: 300;
}

.contact-form-wrap {
  background: var(--white);
  padding: 80px 60px;
}

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--purple-deep);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--purple-deep);
  background: var(--off-white);
  border: 1px solid rgba(83,74,183,0.12);
  padding: 12px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  letter-spacing: 0.5px;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-accent);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-deepest);
  background: var(--gold);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  font-weight: 400;
  margin-top: 8px;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--gold-light); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--purple-deep);
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  background: var(--purple-deepest);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(127,119,221,0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 20px;
}
.footer-bars span { display: block; width: 5px; border-radius: 1px; }
.footer-bars span:nth-child(1) { height: 7px; background: #AFA9EC; }
.footer-bars span:nth-child(2) { height: 13px; background: #7F77DD; }
.footer-bars span:nth-child(3) { height: 20px; background: #CECBF6; }

.footer-avrm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--purple-faint);
  font-weight: 400;
}
.footer-capital {
  font-size: 8px;
  letter-spacing: 5px;
  color: var(--purple-accent);
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(206,203,246,0.35);
  font-weight: 300;
}

/* ── SVG BG LINES ── */
.hero-bg-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

/* ── INVESTMENT THESIS PAGE ── */
.thesis-header {
  background: var(--purple-deepest);
  padding: 80px 60px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.thesis-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.thesis-header p {
  font-size: 15px;
  color: #b8b4e0;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.thesis-statement {
  background: var(--purple-mid);
  padding: 70px 60px;
}

.thesis-statement-inner {
  max-width: 820px;
  margin: 0 auto;
  border-left: 3px solid var(--gold);
  padding-left: 40px;
}

.thesis-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.thesis-section { padding: 90px 60px; }

.thesis-section-inner { max-width: 1100px; margin: 0 auto; }

.thesis-section-header { margin-bottom: 56px; }

.thesis-section-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  margin-top: 16px;
}

.thesis-criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--off-white);
}

.thesis-criteria-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.thesis-criteria-card:hover { border-color: var(--gold); }

.thesis-criteria-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--purple-light);
  margin-bottom: 16px;
  line-height: 1;
}

.thesis-criteria-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.thesis-criteria-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.thesis-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.thesis-sector-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(206,203,246,0.12);
  padding: 40px 32px;
  transition: background 0.2s, border-color 0.2s;
}

.thesis-sector-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(206,203,246,0.25);
}

.thesis-sector-icon {
  margin-bottom: 24px;
}

.thesis-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
}

.thesis-bars span { display: block; width: 7px; border-radius: 2px; }
.thesis-bars span:nth-child(1) { height: 10px; background: #534AB7; }
.thesis-bars span:nth-child(2) { height: 18px; background: #7F77DD; }
.thesis-bars span:nth-child(3) { height: 28px; background: #CECBF6; }

.thesis-sector-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.thesis-sector-card p {
  font-size: 13px;
  line-height: 1.85;
  color: #b8b4e0;
  font-weight: 300;
  margin-bottom: 20px;
}

.thesis-stage-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  border-top: 1px solid rgba(206,203,246,0.12);
  padding-top: 16px;
}

.thesis-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.thesis-brings-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.thesis-brings-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.thesis-brings-line {
  width: 2px;
  min-height: 80px;
  background: var(--purple-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.thesis-brings-title {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-strong);
  font-weight: 400;
  margin-bottom: 8px;
}

.thesis-brings-item p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.thesis-no-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--off-white);
  margin-top: 48px;
}

.thesis-no-item {
  background: var(--white);
  padding: 32px 36px;
  font-size: 15px;
  color: var(--purple-deep);
  font-weight: 300;
  line-height: 1.6;
  border-left: 3px solid var(--purple-faint);
  transition: border-color 0.2s;
}

.thesis-no-item:hover { border-color: var(--purple-accent); }

.thesis-sectors-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-light);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0; right: 0; bottom: 0;
  background: var(--purple-deepest);
  z-index: 99;
  padding: 40px 32px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li { border-bottom: 1px solid rgba(206,203,246,0.08); }
.mobile-menu ul li a, .mobile-menu ul li button {
  display: block;
  padding: 20px 0;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 300;
  width: 100%;
  text-align: left;
}
.mobile-menu ul li .mobile-inquire {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 14px 24px;
  margin-top: 24px;
  background: transparent;
  font-family: 'Josefin Sans', sans-serif;
  cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  nav {
    padding: 0 24px;
    height: 70px;
  }

  .nav-links, .nav-contact-btn:not(.mobile-inquire) { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { top: 70px; }

  .page { padding-top: 70px; }

  /* Hero */
  .hero {
    padding: 48px 24px 80px;
    min-height: auto;
  }
  .hero-stats {
    position: static;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
  }

  /* Sections */
  section { padding: 60px 24px; }

  /* Focus grid */
  .focus-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-header { padding: 48px 24px; min-height: auto; }
  .portfolio-filters { padding: 24px; flex-wrap: wrap; }
  .portfolio-grid { padding: 24px; gap: 16px; }

  /* About */
  .about-header { padding: 48px 24px; }
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-mission { padding: 48px 24px; }

  /* Thesis */
  .thesis-header { padding: 48px 24px; min-height: auto; }
  .thesis-statement { padding: 48px 24px; }
  .thesis-section { padding: 48px 24px; }
  .thesis-criteria-grid { grid-template-columns: 1fr 1fr; }
  .thesis-sectors-grid { grid-template-columns: 1fr; }
  .thesis-sectors-grid-4 { grid-template-columns: 1fr 1fr; }
  .thesis-two-col { grid-template-columns: 1fr; gap: 40px; }
  .thesis-no-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-header { padding: 48px 24px; }
  .contact-body { padding: 0 16px; }
  .calendly-inline-widget { height: 600px !important; }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }

  /* Buttons */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .thesis-criteria-grid { grid-template-columns: 1fr; }
  .thesis-sectors-grid-4 { grid-template-columns: 1fr; }
  .nav-avrm { font-size: 22px; letter-spacing: 5px; }
}
