
/* Spirals of Strength — Bi Aminah — Starter Theme */
:root {
  --burgundy: #730D2B;
  --mustard:  #C69300;
  --olive:    #5B6B2E;
  --coral:    #E2694D;
  --blush:    #F9E5E0;
  --peach:    #F2B49B;
  --ink:      #111111;
  --cloud:    #FAF7F6;
  --stone:    #5A5A5A;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(17,17,17,.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: 'Fredoka', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
  font-size: 17px;
}
h1,h2,h3,h4 { line-height: 1.25; margin: 0 0 .6em 0; color: var(--burgundy); }
h1 { font-size: clamp(34px, 4.2vw, 56px); }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: clamp(22px, 2.3vw, 28px); }
p  { color: var(--stone); margin: 0 0 1em 0; }
.lead { font-size: clamp(18px, 2.1vw, 22px); }
.accent-script { font-family: 'Alex Brush', cursive; color: var(--coral); font-size: 28px; }
.wrapper { width: min(1120px, 92vw); margin: 0 auto; }
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 40px; height: 40px; }
.brand .name { font-weight: 700; color: var(--burgundy); letter-spacing:.3px; }
nav a { color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: 8px; }
nav a:hover, nav a[aria-current="page"] { background: var(--blush); }
.hero {
  background: linear-gradient(180deg, var(--blush), #fff);
  padding: 72px 0 48px;
  border-bottom: 1px solid #ead9d5;
}
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
       border: 2px solid transparent; text-decoration: none; font-weight: 600; }
.btn.primary { background: var(--burgundy); color: #fff; }
.btn.primary:hover { filter: brightness(.95); }
.btn.ghost { border-color: var(--burgundy); color: var(--burgundy); background: #fff; }
.btn.ghost:hover { background: var(--blush); }
.badge { display:inline-block; background: var(--mustard); color:#fff; padding:6px 10px; border-radius:999px; font-size: 12px; font-weight:700; }
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
}
.card { background:#fff; border-radius: var(--radius); padding: 18px 18px; box-shadow: var(--shadow); }
.card .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--mustard); font-weight: 800; }
.card .title { margin:.2em 0 .4em; }
.kpis { display:flex; gap:16px; flex-wrap: wrap; margin-top: 8px; }
.kpi { background: var(--burgundy); color:#fff; padding:10px 14px; border-radius: 12px; font-weight:700; }
.section { padding: 56px 0; }
.section .title-wrap { display:flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section .title-wrap .sub { color: var(--stone); }
.pillars { display:grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 12px; }
.pillar { background:#fff; border:1px solid #eedbd6; border-radius: 12px; padding: 12px; text-align:center; }
.pillar b { display:block; color: var(--burgundy); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 560px) { .pillars { grid-template-columns: repeat(2, 1fr);} }
footer.site-footer { padding: 40px 0; background: var(--ink); color: #eee; margin-top: 40px; }
footer a { color: #fff; opacity:.9; text-decoration:none; }
footer a:hover { opacity: 1; text-decoration: underline; }
.footer-grid { display:grid; gap: 18px; grid-template-columns: 2fr 1fr 1fr 1fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }
.notice { background: #fff; border-left: 5px solid var(--mustard); padding: 12px 14px; border-radius: 10px; }
small, .small { font-size: 14px; color: var(--stone); }
/* Simple mobile menu */
.menu-btn { display:none; }
@media (max-width: 860px) {
  nav.primary { display:none; }
  .menu-btn { display:inline-flex; }
  .mobile-drawer { display: none; position:fixed; inset:0; background: rgba(0,0,0,.5); }
  .mobile-drawer .panel { background:#fff; width: 84vw; max-width: 360px; height:100%; padding: 24px; }
  .mobile-drawer a { display:block; padding: 12px 0; color: var(--ink); text-decoration:none; }
  .mobile-drawer a:hover { color: var(--burgundy); }
}
