/* ============================================
   PannaAfric — Main Stylesheet
   Mobile-first: 375px → tablet → desktop
   Brand: #060A0D | #C9A84C | #00B4A0 | #F4F0E8
   ============================================ */

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

:root {
  --bg:       #060A0D;
  --bg2:      #0D1520;
  --bg3:      #141E28;
  --bg4:      #1A2535;
  --gold:     #C9A84C;
  --gold-l:   #E8C96A;
  --gold-d:   #9A7A2A;
  --teal:     #00B4A0;
  --teal-l:   #00D4BC;
  --cream:    #F4F0E8;
  --gray:     #7A8A9A;
  --gray-l:   #A8B8C8;
  --white:    #FFFFFF;
  --red:      #C0392B;

  --font-h:   'Cormorant Garamond', Georgia, serif;
  --font-b:   'DM Sans', system-ui, sans-serif;

  --r:        8px;
  --r-lg:     16px;
  --r-xl:     24px;
  --ease:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-g: 0 4px 24px rgba(201,168,76,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); background: var(--bg); color: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea { font-family: var(--font-b); }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--lg { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.1; }
.label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
  display: block;
}
.headline {
  font-family: var(--font-h);
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}
.headline em { font-style: italic; color: var(--gold); }
.subhead { font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--gray-l); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 600;
  transition: var(--ease); white-space: nowrap; cursor: pointer; border: none;
}
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: var(--shadow-g); }
.btn--teal { background: var(--teal); color: var(--bg); }
.btn--teal:hover { background: var(--teal-l); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--cream); border: 1.5px solid rgba(244,240,232,0.3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--bg); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--ease);
}
.nav.scrolled {
  background: rgba(6,10,13,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12); padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em; }
.logo span:first-child { color: var(--cream); }
.logo--gold { color: var(--gold); }
.nav__links { display: none; align-items: center; gap: 28px; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-l); transition: var(--ease); }
.nav__links a:hover { color: var(--cream); }
.nav__links a.active { color: var(--gold); }
.nav__cta { background: var(--gold) !important; color: var(--bg) !important; padding: 9px 20px; border-radius: var(--r); font-weight: 700 !important; }
.nav__cta:hover { background: var(--gold-l) !important; }
.burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: var(--ease); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; position: fixed; top: 58px; left: 0; right: 0;
  background: rgba(6,10,13,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12); padding: 24px 20px 32px; z-index: 999;
  flex-direction: column; gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0; font-size: 1.1rem; font-weight: 500; color: var(--gray-l);
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--ease);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--gold); padding-left: 8px; }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 100px 20px 80px; position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/hero-bg-v2.webp');
  background-size: cover; background-position: center;
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,10,13,0.88) 0%,
    rgba(6,10,13,0.72) 40%,
    rgba(13,26,16,0.80) 100%
  );
}
.hero__content { position: relative; z-index: 1; max-width: 680px; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(0,180,160,0.3); border-radius: 100px;
  padding: 6px 14px; margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-h); font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700; line-height: 1.05; color: var(--cream); margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--gray-l);
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}
.hero__scroll span { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── SOCIAL PROOF BAR ── */
.social-bar {
  background: var(--bg2); border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1); padding: 20px 0;
}
.social-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.social-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 24px; text-decoration: none; transition: var(--ease);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.social-item:last-child { border-right: none; }
.social-item:hover { color: var(--gold); }
.social-icon { font-size: 1.2rem; display:flex; align-items:center; justify-content:center; }
.social-icon--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.social-icon--ig svg { fill:url(#ig-grad) #e6683c; }
.social-data { display: flex; flex-direction: column; }
.social-count { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.social-name { font-size: 0.68rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 40px; }
.section-header--center { text-align: center; }
.section-header--between { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.see-all { font-size: 0.85rem; font-weight: 600; color: var(--gold); transition: var(--ease); }
.see-all:hover { color: var(--gold-l); }

/* ── VIDEO CARDS ── */
.videos { background: var(--bg); }
.videos__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.video-card {
  display: block; background: var(--bg2); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
  transition: var(--ease); text-decoration: none;
}
.video-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.video-card__thumb {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-card__thumb--1 { background: url('/images/yt-a9uhY4FMqJU.webp') center/cover; }
.video-card__thumb--2 { background: url('/images/yt-A4K4euJUflA.webp') center/cover; }
.video-card__thumb--3 { background: url('/images/yt-m40nGp6iT6g.webp') center/cover; }
.video-card__thumb--4 { background: url('/images/yt-t88ftSvRthM.webp') center/cover; }
.video-card__play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.9); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--bg);
  transition: var(--ease); padding-left: 3px;
}
.video-card:hover .video-card__play { background: var(--gold); transform: scale(1.1); }
.video-card__dur {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(0,0,0,0.8); color: var(--white);
  font-size: 0.7rem; padding: 2px 6px; border-radius: 4px;
}
.video-card__body { padding: 16px; }
.video-card__meta { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--gray); margin-bottom: 8px; }
.video-card__title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--cream); line-height: 1.35; margin-bottom: 8px; }
.video-card__stat { font-size: 0.75rem; color: var(--teal); font-weight: 600; }

/* ── PRODUCT CARDS ── */
.products { background: var(--bg2); }
.products__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.product-card {
  background: var(--bg3); border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
  transition: var(--ease); display: flex; flex-direction: column;
}
.product-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.product-card__img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.product-card__img--1 { background: linear-gradient(135deg, #1A1400 0%, #3A2C00 100%); }
.product-card__img--2 { background: linear-gradient(135deg, #001A14 0%, #003028 100%); }
.product-card__img--3 { background: linear-gradient(135deg, #1A0A00 0%, #3A1400 100%); }
.product-card__img--4 { background: linear-gradient(135deg, #0A001A 0%, #200040 100%); }
.product-card__img--5 { background: linear-gradient(135deg, #001010 0%, #002020 100%); }
.product-card__img--6 { background: linear-gradient(135deg, #10100A 0%, #2A2A00 100%); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--bg);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
}
.product-card__badge--hot { background: var(--teal); }
.product-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card__type { font-size: 0.68rem; color: var(--teal); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.product-card__name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.product-card__desc { font-size: 0.85rem; color: var(--gray-l); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__price { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.product-card__price span { font-size: 0.85rem; color: var(--gray); font-family: var(--font-b); font-weight: 400; }

/* ── EMAIL SIGNUP ── */
.signup { background: var(--bg); }
.signup__inner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(0,180,160,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.15); border-radius: var(--r-xl);
  padding: 48px 28px; text-align: center;
}
.signup__title { font-family: var(--font-h); font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.signup__sub { color: var(--gray-l); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.signup__form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.signup__input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 14px 18px;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--cream);
  transition: var(--ease); width: 100%;
}
.signup__input:focus { outline: none; border-color: var(--gold); background: rgba(201,168,76,0.05); }
.signup__input::placeholder { color: var(--gray); }
.signup__note { font-size: 0.75rem; color: var(--gray); margin-top: 8px; }

/* ── FOOTER ── */
.footer { background: var(--bg2); border-top: 1px solid rgba(255,255,255,0.05); padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
.footer__brand .logo { margin-bottom: 12px; }
.footer__tagline { font-family: var(--font-h); font-style: italic; font-size: 1rem; color: var(--gold); margin-bottom: 16px; }
.footer__about { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray); transition: var(--ease);
}
.footer__social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.footer__col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 16px;
}
.footer__col a { display: block; font-size: 0.85rem; color: var(--gray); margin-bottom: 10px; transition: var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.footer__copy { font-size: 0.8rem; color: var(--gray); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 0.75rem; color: var(--gray); transition: var(--ease); }
.footer__legal a:hover { color: var(--gold); }

/* ── SHOP PAGE ── */
.shop-hero { padding: 120px 20px 60px; background: var(--bg); position: relative; overflow: hidden; }
.shop-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/images/shop-hero.webp') center/cover no-repeat;
  opacity: 0.18; z-index: 0;
}
.shop-hero > * { position: relative; z-index: 1; }
.shop-hero .container { position: relative; z-index: 1; }
.shop-hero h1 { font-family: var(--font-h); font-size: clamp(2.5rem, 8vw, 4rem); color: var(--cream); margin-bottom: 12px; }
.shop-hero p { color: var(--gray-l); max-width: 500px; }
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ── MEMBERSHIP PAGE ── */
.membership-hero {
  padding: 120px 20px 64px; text-align: center; position: relative; overflow: hidden;
  background: var(--bg);
}
.membership-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/images/membership-community.webp') center/cover no-repeat;
  opacity: 0.22; z-index: 0;
}
.membership-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  z-index: 0;
}
.membership-hero h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 8vw, 4rem); color: var(--cream); margin-bottom: 12px; }
.price-display { font-family: var(--font-h); font-size: clamp(3.5rem, 10vw, 6rem); font-weight: 700; color: var(--gold); line-height: 1; margin: 24px 0 8px; }
.price-display span { font-size: 1.2rem; color: var(--gray); font-family: var(--font-b); }
.benefits { background: var(--bg2); padding: 60px 0; }
.benefits__list { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 600px; margin: 0 auto; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg3); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--r-lg); padding: 20px;
  transition: var(--ease);
}
.benefit-item:hover { border-color: rgba(201,168,76,0.3); }
.benefit-check { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.benefit-text h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--cream); margin-bottom: 4px; }
.benefit-text p { font-size: 0.85rem; color: var(--gray-l); }
.membership-cta { background: var(--bg); padding: 80px 0; text-align: center; }
.membership-cta h2 { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3rem); color: var(--cream); margin-bottom: 24px; }
.membership-cta p { color: var(--gray-l); max-width: 500px; margin: 0 auto 36px; }

/* ── BLOG PAGE ── */
.blog-hero { padding: 120px 20px 60px; background: var(--bg); position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: url('/images/blog-mansa-musa.webp') center/cover no-repeat; opacity: 0.15; z-index: 0; }
.blog-hero > * { position: relative; z-index: 1; }
.blog-hero h1 { font-family: var(--font-h); font-size: clamp(2.5rem, 8vw, 4rem); color: var(--cream); margin-bottom: 12px; }
.blog-search { position: relative; margin-bottom: 32px; }
.blog-search input {
  width: 100%; background: var(--bg2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 14px 48px 14px 18px;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--cream);
  transition: var(--ease);
}
.blog-search input:focus { outline: none; border-color: var(--gold); }
.blog-search input::placeholder { color: var(--gray); }
.blog-search__icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--gray); font-size: 1.1rem; }
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-l); cursor: pointer; transition: var(--ease);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.article-card {
  background: var(--bg2); border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
  transition: var(--ease);
}
.article-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }
.article-card__img {
  height: 200px; display: flex; align-items: center; justify-content: center; font-size: 0;
  background-size: cover; background-position: center; overflow: hidden;
}
.article-card__img--1 { background-image: url('/images/blog-eth-history.webp'); }
.article-card__img--2 { background-image: url('/images/blog-congo-tech.webp'); }
.article-card__img--3 { background-image: url('/images/blog-africa-math.webp'); }
.article-card__img--4 { background-image: url('/images/blog-rwanda-tech.webp'); }
.article-card__img--5 { background-image: url('/images/blog-afrobeats.webp'); }
.article-card__img--6 { background-image: url('/images/blog-african-empires.webp'); }
.article-card__body { padding: 20px; }
.article-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  background: rgba(201,168,76,0.15); color: var(--gold); margin-bottom: 10px;
}
.article-tag--tech { background: rgba(0,180,160,0.15); color: var(--teal); }
.article-tag--business { background: rgba(100,200,100,0.12); color: #5DC55D; }
.article-tag--culture { background: rgba(200,100,200,0.12); color: #C86EC8; }
.article-tag--heritage { background: rgba(200,150,50,0.15); color: var(--gold); }
.article-card__title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--cream); line-height: 1.35; margin-bottom: 10px; }
.article-card__excerpt { font-size: 0.85rem; color: var(--gray-l); line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--gray); }
.article-card__read { color: var(--gold); font-weight: 600; transition: var(--ease); }
.article-card__read:hover { color: var(--gold-l); }

/* ── LEGAL PAGES ── */
.legal-hero { padding: 120px 20px 60px; background: var(--bg); }
.legal-hero h1 { font-family: var(--font-h); font-size: clamp(2rem, 6vw, 3.5rem); color: var(--cream); margin-bottom: 12px; }
.legal-hero p { color: var(--gray); }
.legal-body { background: var(--bg); padding: 0 0 80px; }
.legal-content { max-width: 800px; }
.legal-content h2 { font-family: var(--font-h); font-size: 1.6rem; color: var(--cream); margin: 40px 0 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-family: var(--font-h); font-size: 1.2rem; color: var(--gold); margin: 24px 0 12px; }
.legal-content p { color: var(--gray-l); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { margin: 12px 0 20px 20px; list-style: disc; }
.legal-content ul li { color: var(--gray-l); line-height: 1.7; margin-bottom: 8px; font-size: 0.95rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ── FADE ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; animation: fadeUpFallback 0.6s ease 0.5s forwards; }
.fade-up.visible { opacity: 1; transform: translateY(0); animation: none; }
@keyframes fadeUpFallback { to { opacity: 1; transform: translateY(0); } }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--bg2); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--r);
  padding: 14px 24px; font-size: 0.9rem; color: var(--cream); z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast--success { border-color: rgba(0,180,160,0.4); }
.toast--error { border-color: rgba(192,57,43,0.4); }

/* ── TABLET ── */
@media (min-width: 640px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .signup__form { flex-direction: row; align-items: flex-start; }
  .signup__form .btn { flex-shrink: 0; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__list { grid-template-columns: 1fr; }
}

/* ── DESKTOP ── */
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .burger { display: none; }
  .nav__mobile { display: none !important; }
  .videos__grid { grid-template-columns: repeat(4, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── ARTICLE PAGES ── */
.article-hero { padding: 120px 20px 60px; background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: center; opacity: 0.20; z-index: 0; pointer-events: none; }
.article-hero > * { position: relative; z-index: 1; }
.article-hero .container { position: relative; z-index: 1; }
.article-hero__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.article-back { color: var(--gray); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.article-back:hover { color: var(--gold); }
.article-hero h1 { font-family: var(--font-h); font-size: clamp(2rem, 6vw, 3.5rem); color: var(--cream); line-height: 1.1; margin-bottom: 20px; }
.article-hero__sub { font-size: 1.05rem; color: var(--gray-l); line-height: 1.7; max-width: 680px; margin-bottom: 24px; }
.article-hero__info { display: flex; gap: 20px; font-size: 0.82rem; color: var(--gray); flex-wrap: wrap; }
.article-layout { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 48px 20px 80px; }
@media (min-width: 900px) { .article-layout { grid-template-columns: 1fr 300px; } }
.article-body { max-width: 100%; }
.article-lead { font-family: var(--font-h); font-size: 1.2rem; color: var(--cream); line-height: 1.7; margin-bottom: 32px; font-style: italic; border-left: 3px solid var(--gold); padding-left: 20px; }
.article-body h2 { font-family: var(--font-h); font-size: 1.6rem; color: var(--cream); margin: 40px 0 16px; }
.article-body p { color: var(--gray-l); line-height: 1.85; margin-bottom: 20px; font-size: 0.97rem; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.article-share p { color: var(--gray); font-size: 0.85rem; margin: 0; }
.article-sidebar { display: flex; flex-direction: column; }
.sidebar-card { background: var(--bg2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); padding: 24px; }
.sidebar-link { display: block; color: var(--gray-l); font-size: 0.85rem; text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.5; transition: color 0.2s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }

/* ── HOMEPAGE STORY CARDS ── */
.stories__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .stories__grid { grid-template-columns: repeat(3, 1fr); } }
.story-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.story-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.story-card__img { height: 160px; overflow: hidden; background: var(--bg3); }
.story-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.story-card:hover .story-card__img img { transform: scale(1.04); }
.story-card__img--1 { background: url('/images/yt-xx3WfRjwrDU.webp') center/cover; }
.story-card__img--2 { background: url('/images/yt-0XhNwyw2yro.webp') center/cover; }
.story-card__img--3 { background: url('/images/story-africa-1.webp') center/cover; }
.story-card__body { padding: 20px; flex: 1; }
.story-card__title { font-family: var(--font-h); font-size: 1rem; color: var(--cream); line-height: 1.4; margin: 10px 0 8px; }
.story-card__meta { font-size: 0.78rem; color: var(--gray); }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar { background: var(--gold); color: var(--bg); padding: 10px 20px; position: relative; z-index: 1001; }
.announce-bar__inner { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 1200px; margin: 0 auto; font-size: 0.82rem; font-weight: 600; text-align: center; }
.announce-bar__link { color: var(--bg); text-decoration: underline; font-weight: 700; white-space: nowrap; }
.announce-bar__link:hover { opacity: 0.8; }
.announce-bar__close { background: none; border: none; color: var(--bg); font-size: 1.2rem; line-height: 1; cursor: pointer; padding: 0 4px; opacity: 0.7; flex-shrink: 0; }
.announce-bar__close:hover { opacity: 1; }
.announce-bar.hidden { display: none; }

/* ── AFRICA TODAY — NEWS SECTION ── */
.africa-today { background: var(--bg); }
.news-live-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal);
}
.pulse {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,180,160,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0,180,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,160,0); }
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 600px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  display: flex; flex-direction: column;
  background: var(--bg2); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
  transition: var(--ease); text-decoration: none; color: inherit;
}
.news-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card--featured { grid-column: 1; }
@media (min-width: 600px) { .news-card--featured { grid-column: span 2; } }
@media (min-width: 960px) { .news-card--featured { grid-column: span 2; } }
.news-card__img {
  height: 180px; background-size: cover; background-position: center; position: relative;
  background-color: var(--bg3);
}
.news-card--featured .news-card__img { height: 240px; }
.news-card__source {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.75); color: var(--gold); padding: 3px 10px;
  border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.news-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card__title { font-family: var(--font-h); font-size: 1rem; line-height: 1.35; color: var(--cream); flex: 1; }
.news-card--featured .news-card__title { font-size: 1.2rem; }
.news-card__desc { font-size: 0.82rem; color: var(--gray-l); line-height: 1.5; }
.news-card__time { font-size: 0.72rem; color: var(--gray); margin-top: auto; }
.news-card--skeleton { height: 260px; background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── FACT STRIP ── */
.fact-strip__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .fact-strip__grid { grid-template-columns: 1fr 1fr; } }
.fact-card {
  background: var(--bg3); border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid rgba(201,168,76,0.15); position: relative; overflow: hidden;
}
.fact-card--history { border-color: rgba(0,180,160,0.2); }
.fact-card__icon { font-size: 2rem; margin-bottom: 12px; }
.fact-card__title { font-family: var(--font-h); font-size: 1.1rem; color: var(--gold); margin: 8px 0; line-height: 1.3; }
.fact-card__text { font-size: 0.93rem; color: var(--cream); line-height: 1.7; margin: 8px 0; }
.fact-card__source { font-size: 0.72rem; color: var(--gray); font-style: italic; }

/* ── POPUPS ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.78);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup {
  background: var(--bg2); border-radius: var(--r-xl);
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  border: 1px solid rgba(201,168,76,0.2);
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
}
.popup-overlay.open .popup { transform: translateY(0); }
.popup__img { height: 180px; background-size: cover; background-position: center top; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.popup__body { padding: 28px 28px 32px; }
.popup__title { font-family: var(--font-h); font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.15; color: var(--cream); margin: 8px 0 14px; }
.popup__title em { font-style: italic; color: var(--gold); }
.popup__sub { font-size: 0.9rem; color: var(--gray-l); line-height: 1.65; margin-bottom: 20px; }
.popup__close {
  position: absolute; top: 14px; right: 16px; z-index: 1;
  background: rgba(0,0,0,0.5); color: var(--cream); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.popup__close:hover { background: rgba(201,168,76,0.3); }
.popup__form { display: flex; flex-direction: column; gap: 0; }
