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

:root {
  --forest:      #162620;
  --sage:        #2A5E47;
  --mid-green:   #3D7A5F;
  --light-green: #52A882;
  --pale-green:  #C8E6D4;
  --sand:        #F5EFE6;
  --warm-white:  #FAF7F2;
  --gold:        #B8963E;
  --text:        #1A2420;
  --text-mid:    #4A5A54;
  --text-light:  #7A8A84;
  --border:      rgba(42,94,71,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo-wrap {
  position: relative;
  display: flex; align-items: center; gap: 6px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--forest); letter-spacing: 0.02em;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--sage); font-style: italic; }
.nav-logo-svg {
  height: 32px; width: auto;
  color: var(--sage);
  flex-shrink: 0;
}
.logo-dropdown-btn {
  background: none; border: none; cursor: pointer;
  padding: 4px; display: flex; align-items: center;
  color: var(--text-light);
  transition: color 0.2s;
}
.logo-dropdown-btn:hover { color: var(--sage); }
.logo-chevron {
  width: 12px; height: 8px;
  transition: transform 0.25s;
}
.logo-dropdown-btn.open .logo-chevron { transform: rotate(180deg); }
.logo-dropdown {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(22,38,32,0.1);
  min-width: 200px;
  z-index: 200;
  overflow: hidden;
}
.logo-dropdown.open { display: block; }
.logo-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.logo-dropdown a:last-child { border-bottom: none; }
.logo-dropdown a:hover { background: var(--sand); color: var(--sage); }
.logo-dropdown a.active { color: var(--sage); background: var(--sand); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }
.nav-links a.active {
  border-bottom: 2px solid var(--sage);
  padding-bottom: 2px;
}
.nav-cta {
  font-size: 11px; font-weight: 600;
  color: var(--forest); text-decoration: none;
  border: 1.5px solid var(--sage);
  padding: 6px 14px; border-radius: 2px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--sage); color: white; }

/* ── FOOTER ── */
footer {
  background: #0E1A16;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.footer-logo span { font-style: italic; color: rgba(82,168,130,0.6); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }

/* ── SECTION BASE ── */
section { padding: 80px 0; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--forest);
  padding: 140px 0 60px;
}
.page-header .container {
  display: flex; flex-direction: column; gap: 12px;
}
.page-header-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-green);
  display: flex; align-items: center; gap: 10px;
}
.page-header-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--light-green);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; color: white; line-height: 1.1;
}
.page-header h1 em { font-style: italic; color: var(--light-green); }
.page-header-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 560px; line-height: 1.7;
  margin-top: 4px;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--sage);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; color: var(--forest);
  line-height: 1.15; margin-bottom: 40px;
}
.section-title em { font-style: italic; color: var(--sage); }

/* ── INTRO (HOME) ── */
.intro-section {
  background: var(--forest);
  padding: 140px 60px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  min-height: 60vh;
}
.intro-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(82,168,130,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.intro-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 28px;
  max-width: 800px;
}
.intro-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 300; line-height: 1;
  color: white; letter-spacing: 0.02em;
}
.intro-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.intro-sub {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-green);
}

/* ── ADVISORY SECTION (HOME) ── */
.advisory-section {
  background: var(--forest);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 80px 0;
}
.advisory-inner { max-width: 680px; }
.advisory-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-green); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.advisory-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--light-green);
}
.advisory-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300; color: white;
  line-height: 1.2; margin-bottom: 28px;
}
.advisory-title em { font-style: italic; color: var(--light-green); }
.advisory-para {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.85; margin-bottom: 28px;
}
.advisory-contact {
  font-size: 13px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.advisory-contact a { color: var(--light-green); text-decoration: none; }

/* ── THREAD SECTION (HOME) ── */
.thread-home {
  background: var(--sand);
  padding: 80px 0;
}
.thread-home-inner { max-width: 680px; }
.thread-home-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--forest);
  line-height: 1.1; margin-bottom: 32px;
}
.thread-home-title em { font-style: italic; color: var(--sage); }
.thread-home-inner p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 18px;
}
.thread-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--sage); font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px; margin-top: 8px;
  margin-bottom: 0;
}

/* ── SERVICE CARDS ── */
.services-grid { display: flex; flex-direction: column; gap: 2px; }
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--sage); }
.service-card.open { border-color: var(--sage); }
.service-header {
  display: grid;
  grid-template-columns: auto minmax(80px, auto) 1fr;
  align-items: center;
  padding: 24px 28px; gap: 20px;
  transition: background 0.3s;
}
.service-card.open .service-header { background: var(--forest); }
.service-header-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage); transition: color 0.3s;
  white-space: nowrap;
}
.service-card.open .service-header-num { color: var(--light-green); }
.service-header-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--forest); line-height: 1.2;
  transition: color 0.3s;
  word-break: break-word;
}
.service-card.open .service-header-text h3 { color: white; }
.service-header-text p {
  font-size: 13px; color: var(--text-light);
  margin-top: 4px; transition: color 0.3s;
  word-break: break-word;
}
.service-card.open .service-header-text p { color: rgba(255,255,255,0.5); }
.service-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.service-card.open .service-toggle {
  border-color: var(--light-green);
  background: rgba(82,168,130,0.15);
  transform: rotate(45deg);
}
.service-toggle svg { width: 14px; height: 14px; stroke: var(--text-light); transition: stroke 0.3s; }
.service-card.open .service-toggle svg { stroke: var(--light-green); }
.service-body {
  display: none;
  padding: 0 28px 40px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  box-sizing: border-box;
}
.service-card.open .service-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; padding-top: 40px;
}
.service-body-main {
  min-width: 0;
  overflow: hidden;
}
.service-body-main p {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 20px;
  word-break: break-word;
}
.service-body-main h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 12px;
}
.service-deliverables { list-style: none; }
.service-deliverables li {
  font-size: 13px; color: var(--text-mid);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
  word-break: break-word;
}
.service-deliverables li::before {
  content: '→'; color: var(--sage); font-size: 12px;
  margin-top: 2px; flex-shrink: 0;
}
.service-flow {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
  overflow: hidden;
}
.service-flow-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 4px;
}
.flow-chain { display: flex; flex-direction: column; gap: 8px; }
.flow-step { display: flex; align-items: center; gap: 12px; }
.flow-node-out {
  font-size: 11px; font-weight: 600;
  padding: 8px 12px; border-radius: 4px;
  flex: 1; text-align: center; line-height: 1.4;
  word-break: break-word;
  min-width: 0;
}
.node-context { background: var(--sand); color: var(--text-mid); border: 1px dashed var(--border); }
.node-client { background: var(--pale-green); color: var(--sage); }
.node-ona { background: var(--forest); color: white; border: 2px solid var(--gold); }
.flow-down { text-align: center; color: var(--sage); font-size: 18px; }
.flow-annotation {
  font-size: 11px; color: var(--text-light);
  font-style: italic; text-align: center;
  word-break: break-word;
}
  color: var(--sage); margin-bottom: 4px;
}
.flow-chain { display: flex; flex-direction: column; gap: 8px; }
.flow-step { display: flex; align-items: center; gap: 12px; }
.flow-node-out {
  font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 4px;
  flex: 1; text-align: center; line-height: 1.3;
}
.node-context { background: var(--sand); color: var(--text-mid); border: 1px dashed var(--border); }
.node-client { background: var(--pale-green); color: var(--sage); }
.node-ona { background: var(--forest); color: white; border: 2px solid var(--gold); }
.flow-down { text-align: center; color: var(--sage); font-size: 18px; }
.flow-annotation {
  font-size: 11px; color: var(--text-light);
  font-style: italic; text-align: center;
}

/* ── DIFF GRID ── */
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.diff-item { background: var(--warm-white); padding: 40px 36px; }
.diff-icon {
  width: 44px; height: 44px; background: var(--forest);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 20px;
}
.diff-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--forest); margin-bottom: 12px;
}
.diff-item p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── CREDENTIALS ── */
.cred-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--border);
}
.cred-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
}
.cred-item:last-child { border-right: none; }
.cred-employer {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.cred-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--forest); margin-bottom: 8px; line-height: 1.2;
}
.cred-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ── ABOUT ── */
.about-inner {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 64px; align-items: start;
}
.about-name-block {
  padding-top: 8px; border-top: 2px solid var(--sage);
}
.about-yoruba {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: var(--forest); line-height: 1; margin-bottom: 8px;
}
.about-yoruba-def {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); line-height: 1.5;
}
.about-text p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 20px;
}
.about-divider { height: 1px; background: var(--border); margin: 28px 0; }
.about-founder { font-size: 14px; color: var(--text-mid); font-style: italic; }
.about-founder a {
  color: var(--sage); text-decoration: none;
  border-bottom: 1px solid var(--pale-green); padding-bottom: 1px;
  transition: border-color 0.2s;
}
.about-founder a:hover { border-color: var(--sage); }

/* ── CONTACT (on about page) ── */
.contact-band {
  background: var(--forest);
  padding: 80px 0;
}
.contact-band-inner { max-width: 560px; }
.contact-band-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-green); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.contact-band-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--light-green);
}
.contact-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; color: white;
  line-height: 1.15; margin-bottom: 16px;
}
.contact-band h2 em { font-style: italic; color: var(--light-green); }
.contact-band p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75;
  margin-bottom: 36px;
}
.contact-email-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--light-green); text-decoration: none;
  border-bottom: 1px solid rgba(82,168,130,0.35);
  padding-bottom: 4px; transition: border-color 0.2s; display: block;
  margin-bottom: 20px;
}
.contact-email-link:hover { border-color: var(--light-green); }
.contact-meta {
  font-size: 13px; color: rgba(255,255,255,0.3);
  display: flex; gap: 24px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 28px; }
  section { padding: 60px 0; }
  .intro-section { padding: 120px 28px 60px; text-align: left; align-items: flex-start; }
  .intro-inner { align-items: flex-start; }
  .intro-name { font-size: clamp(52px, 14vw, 80px); }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-card.open .service-body { grid-template-columns: 1fr; gap: 32px; }
  .service-header { grid-template-columns: auto auto 1fr; gap: 12px; padding: 16px 16px; }
  .service-header-text h3 { font-size: 18px; }
  .flow-node-out { font-size: 10px; padding: 6px 8px; }
  .manifesto-item { grid-template-columns: 60px 1fr; gap: 24px; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--forest); border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

.nav-mobile-panel {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 20px 28px 28px;
  gap: 0;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  font-size: 15px; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  letter-spacing: 0.03em; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-panel a:hover,
.nav-mobile-panel a.active { color: var(--sage); }
.nav-mobile-cta {
  margin-top: 16px;
  font-size: 14px; font-weight: 600;
  color: var(--forest) !important;
  border: 1.5px solid var(--sage) !important;
  padding: 12px 20px !important;
  text-align: center; border-radius: 2px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── MANIFESTO (APPROACH) ── */
.manifesto { display: flex; flex-direction: column; gap: 0; }
.manifesto-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px; align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-item:first-child { border-top: 1px solid var(--border); }
.manifesto-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: var(--pale-green); line-height: 1;
  padding-top: 4px;
}
.manifesto-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--forest); margin-bottom: 16px; line-height: 1.2;
}
.manifesto-text p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.85;
}
