/* =========================================================
   FACE POWER CONSULTING — Design System
   Brand palette: Black, Gold, Cream. Fonts (Fraunces/Inter) are
   still an improvised pairing — swap in :root below if a type
   choice is ever specified (see NEEDS-FROM-YOU.md).
   ========================================================= */

:root {
  --ink: #0b0b0c;
  --charcoal: #201f1c;
  --cream: #faf5e9;
  --white: #ffffff;
  --gold: #cba34e;
  --gold-light: #f0d998;
  --muted: #6b6660;
  --border: #e6ddc9;
  --success: #3f7a5c;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1120px;
  --radius: 4px;
  --shadow: 0 12px 32px -12px rgba(11, 11, 12, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--charcoal); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4, .section--dark p, .section--dark blockquote { color: var(--white); }
.section--dark .muted { color: rgba(255,255,255,0.65); }
.section--alt { background: var(--white); }

.center { text-align: center; }
.muted { color: var(--muted); }
.max-w { max-width: 680px; margin-left: auto; margin-right: auto; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.section--alt .btn-outline:hover,
.section--tight .btn-outline:hover { background: rgba(20,22,31,0.06); }
.btn-block { width: 100%; justify-content: center; }

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (min-width: 860px) {
  .nav-cta { display: inline-flex; }
}
@media (max-width: 859px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.is-open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links .nav-cta-mobile {
    display: block;
    padding: 16px 24px;
  }
}

/* -------- Hero -------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,0.28), transparent 70%);
}
.hero .container { position: relative; z-index: 1; max-width: 780px; }
.hero .tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1.2em;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 2em; flex-wrap: wrap; }

/* -------- Grids / Cards -------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }

.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.section--dark .card-icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

/* -------- Section header -------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

/* -------- Founder -------- */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 700px) {
  .founder { grid-template-columns: 1fr; }
}
.avatar-placeholder {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--ink), var(--charcoal));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  border: 1px solid rgba(184,147,90,0.4);
}
.founder-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid rgba(203,163,78,0.4);
}
.founder ul { padding-left: 1.1em; margin: 1em 0 0; }
.founder li { margin-bottom: 0.5em; color: var(--charcoal); }
.founder-quote {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 260px;
}
.founder-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.founder-linkedin {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.founder-linkedin:hover { color: var(--ink); }
.placeholder-note {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gold);
  background: rgba(184,147,90,0.12);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 6px 10px;
}

/* -------- Lists -------- */
ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--charcoal);
}
ul.check li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}
.section--dark ul.check li { color: rgba(255,255,255,0.85); }

/* -------- Forms -------- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

/* -------- Pricing / offer bits -------- */
.price-tag {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 10px 0 4px;
}
.price-tag .unit { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.price-tag .starting-at {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

/* -------- Currency toggle -------- */
.currency-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  background: var(--white);
  gap: 2px;
}
.currency-toggle button {
  border: none;
  background: transparent;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
}
body[data-currency="XAF"] .currency-toggle button[data-currency-btn="XAF"],
body[data-currency="USD"] .currency-toggle button[data-currency-btn="USD"] {
  background: var(--ink);
  color: var(--gold-light);
}
/* Show/hide price amounts based on selected currency (default: XAF) */
.price-usd { display: none; }
body[data-currency="USD"] .price-xaf { display: none; }
body[data-currency="USD"] .price-usd { display: inline; }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.badge--muted {
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--border);
}
hr.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* -------- Accordion (FACE framework) -------- */
details.face-phase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
details.face-phase summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
details.face-phase summary::-webkit-details-marker { display: none; }
details.face-phase summary .letter {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  flex-shrink: 0;
}
details.face-phase summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--gold);
}
details.face-phase[open] summary::after { content: "\2212"; }
.face-phase-body {
  padding: 0 26px 30px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 780px) {
  .face-phase-body { grid-template-columns: 1fr; }
}
.face-phase-body h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); }

/* -------- Testimonial placeholders -------- */
.placeholder-card {
  border: 1.5px dashed var(--gold);
  background: rgba(184,147,90,0.06);
}
.placeholder-flag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--ink), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.video-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.85;
}

.testimonial-card {
  border-left: 3px solid var(--gold);
}
.testimonial-card p:first-of-type {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
}
.testimonial-card p + p:not(.muted) {
  margin-top: -0.4em;
}

/* -------- Footer -------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
footer.site-footer h4 { color: var(--white); font-size: 0.95rem; }
footer.site-footer a { color: rgba(255,255,255,0.68); }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--gold); }
.social-row svg { width: 16px; height: 16px; }

/* -------- Utility -------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag-row span {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--charcoal);
}
.section--dark .tag-row span {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
}

.simple-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
}
.simple-hero h1 { color: var(--white); margin-bottom: 0.3em; }
.simple-hero p { color: rgba(255,255,255,0.75); max-width: 620px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

blockquote.positioning {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 0 0 1.2em;
  color: var(--ink);
}
.section--dark blockquote.positioning { color: var(--white); }
