/* ============================================================
   Tongai Mafidi Mnangagwa — Personal Profile Site
   Theme: Navy / Gold / Zimbabwe flag accents
   Fonts: Playfair Display (display) + Inter (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Inter', sans-serif;
  color: #0e1a2b;
  background: #F3F5F8;
  overflow-x: hidden;
  line-height: 1.65;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:root {
  --navy:         #0B1F3F;
  --navy-2:       #123163;
  --navy-light:   #1B4177;
  --navy-10:      rgba(11,31,63,0.08);
  --gold:         #F4A900;
  --gold-dark:    #C98600;
  --green:        #2E7D32;
  --yellow:       #FFD200;
  --red:          #C62828;
  --ink:          #0e1a2b;
  --ink-2:        #4a5568;
  --surface:      #ffffff;
  --surface-2:    #F3F5F8;
  --outline:      #D8DEE9;
  --shadow-1:     0 1px 3px rgba(11,31,63,0.10), 0 1px 2px rgba(11,31,63,0.08);
  --shadow-2:     0 6px 18px rgba(11,31,63,0.14);
  --shadow-3:     0 18px 40px rgba(11,31,63,0.20);
  --radius:       14px;
  --radius-sm:    9px;
}

/* ── Zimbabwe flag rule ─────────────────────────────── */
.flag-bar { display: flex; height: 4px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }
.flag-bar span { flex: 1; }
.zf-green  { background: #2E7D32; }
.zf-yellow { background: #FFD200; }
.zf-red    { background: #C62828; }
.zf-black  { background: #111; }

/* ── Top nav ────────────────────────────────────────── */
#app-bar {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 1000;
  background: rgba(11,31,63,0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow .25s ease, background .25s ease;
}
#app-bar.elevated { box-shadow: var(--shadow-2); background: rgba(11,31,63,0.98); }
.app-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ab-logo { display: flex; align-items: center; gap: 12px; }
.ab-logo-text strong {
  display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: #fff; line-height: 1.15;
}
.ab-logo-text small { font-size: 0.7rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.ab-nav { display: flex; align-items: center; gap: 4px; }
.ab-nav a {
  color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 50px; transition: background .2s, color .2s;
}
.ab-nav a:hover, .ab-nav a.active { background: rgba(244,169,0,0.18); color: var(--gold); }
.ab-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; }

@media (max-width: 900px) {
  .ab-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 8px; gap: 2px; transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow-2); }
  .ab-nav.open { transform: translateY(0); }
  .ab-nav a { padding: 12px 16px; }
  .ab-toggle { display: block; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero::before {
  /* transparent navy/gold gradient wash — lets the gif read through */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,19,37,0.55) 0%, rgba(11,31,63,0.35) 38%, rgba(11,31,63,0.82) 88%, rgba(11,31,63,0.96) 100%),
    linear-gradient(100deg, rgba(11,31,63,0.55) 0%, rgba(11,31,63,0.05) 45%, rgba(244,169,0,0.14) 100%);
}
.hero-content {
  position: relative;
  max-width: 1320px; margin: 0 auto; width: 100%;
  padding: 0 24px 72px;
  color: #fff;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,169,0,0.16); border: 1px solid rgba(244,169,0,0.5);
  color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 22px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.15rem, 5.3vw, 4.3rem);
  line-height: 1.15;
  max-width: 20ch;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  text-align: center;
  margin: 0 auto;
}
.hero-title em {
  font-style: italic; color: var(--gold); font-weight: 900;
  display: block; font-size: clamp(2.6rem, 6.5vw, 5.4rem); margin-top: 8px;
}
.hero-name {
  font-weight: 900;
  display: block;
  text-align: center;
}
.hero-sub {
  margin: 18px auto 0; font-size: clamp(0.78rem, 1vw, 0.88rem); color: rgba(255,255,255,0.86);
  max-width: 58ch; font-weight: 400; text-align: center;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.hero-tag {
  font-size: 0.8rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25); padding: 7px 14px; border-radius: 50px;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll i { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* ── HERO + SIDEBAR ROW (sidebar sits beside the hero, not inside it) ── */
.hero-wrap {
  position: relative;
  max-width: 1320px; margin: 0 auto; padding: 24px 24px 0;
  display: flex; flex-direction: row; flex-wrap: nowrap;
  align-items: stretch; gap: 24px;
}
.hero-wrap > .sidebar {
  position: relative; z-index: 1;
  order: 1;
}
.hero-wrap > .hero {
  order: 2;
  position: relative; z-index: 1;
  flex: 1 1 0%; min-width: 0; min-height: 78vh;
  border-radius: var(--radius); overflow: hidden;
}

/* ── PAGE LAYOUT (main content) ─────────────────────── */
.page-wrap {
  max-width: 1320px; margin: 0 auto; padding: 56px 24px 0;
  display: flex; align-items: flex-start; gap: 32px;
}
.main-col { flex: 1; min-width: 0; }

/* ── SIDEBAR (desktop-only "life stages" stepper) ──── */
.sidebar { width: 300px; flex: 0 0 300px; display: flex; flex-direction: column; gap: 18px; }
.sb-card { background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow-2); overflow-y: auto; max-height: 78vh; }
.sb-portrait { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.sb-portrait img { width: 100%; height: 100%; object-fit: cover; }
.sb-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,31,63,0.94) 100%);
}
.sb-portrait-cap { position: absolute; left: 20px; right: 20px; bottom: 16px; z-index: 1; }
.sb-portrait-cap strong { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.15rem; display: block; }
.sb-portrait-cap span { color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; }

.sb-head { padding: 22px 24px 18px; background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-2) 100%); border-bottom: 1px solid rgba(255,255,255,0.08); }
.sb-head-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(244,169,0,0.18);
  border: 1px solid rgba(244,169,0,0.4); border-radius: 50px; padding: 4px 12px;
  font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.sb-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.35; }

.sb-steps { padding: 22px 24px; display: flex; flex-direction: column; gap: 0; }
.sb-step { display: flex; align-items: flex-start; gap: 14px; position: relative; padding-bottom: 22px; }
.sb-step:last-child { padding-bottom: 0; }
.sb-step-line { position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: rgba(255,255,255,0.14); }
.sb-step:last-child .sb-step-line { display: none; }
.sb-step-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem; color: rgba(255,255,255,0.65); position: relative; z-index: 1;
}
.sb-step.done .sb-step-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.sb-step-text { padding-top: 5px; }
.sb-step-year { font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); display: block; }
.sb-step-label { font-size: 0.86rem; font-weight: 600; color: #fff; line-height: 1.4; margin-top: 2px; }

.sb-flag-strip { display: flex; height: 6px; border-radius: 50px; overflow: hidden; }
.sb-flag-strip span { flex: 1; }

/* Sidebar is desktop-only, per brief */
@media (max-width: 980px) {
  .sidebar { display: none; }
  .hero-wrap { padding: 0; }
  .hero-wrap .hero { border-radius: 0; min-height: 92vh; }
  .page-wrap { padding-top: 40px; }
}

/* ── SECTION SHELL ──────────────────────────────────── */
.section { padding: 20px 0 64px; }
.section-head { margin-bottom: 32px; max-width: 68ch; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(244,169,0,0.12); padding: 5px 12px; border-radius: 50px; margin-bottom: 12px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-desc { margin-top: 10px; color: var(--ink-2); font-size: 0.98rem; }
.section-rule { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: 16px; }

/* ── BIO CARD ───────────────────────────────────────── */
.bio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.bio-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-1); }
.bio-card i { color: var(--gold-dark); font-size: 1.1rem; margin-bottom: 10px; display: block; }
.bio-card h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.bio-card p { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
@media (max-width: 700px) { .bio-grid { grid-template-columns: 1fr 1fr; } }

.bio-text { margin-top: 28px; font-size: 1rem; color: var(--ink); line-height: 1.7; }
.bio-text p + p { margin-top: 14px; }
.bio-text cite { display: block; margin-top: 18px; font-style: normal; font-size: 0.78rem; color: var(--ink-2); }

/* ── PROFILE DOSSIER (Concept 2) ─────────────────────── */
.dossier {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2);
  background: var(--navy);
}
.dossier-photo { position: relative; overflow: hidden; }
.dossier-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; filter: grayscale(0.15); }
.dossier-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(260deg, rgba(11,31,63,0.15) 0%, transparent 40%);
}
.dossier-panel { padding: 32px 30px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.dossier-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.dossier-year { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; margin-top: 6px; }
.dossier-date { font-size: 0.85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 4px; }
.dossier-caption { display: inline-block; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.dossier-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 20px; }
.dossier-facts { display: flex; flex-direction: column; gap: 14px; }
.dossier-fact { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dossier-fact:last-child { border-bottom: none; padding-bottom: 0; }
.dossier-fact-label {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.dossier-fact-label i { width: 14px; margin-right: 4px; }
.dossier-fact p { font-size: 0.92rem; color: #fff; font-weight: 500; }

@media (max-width: 780px) {
  .dossier { grid-template-columns: 1fr; }
  .dossier-photo { order: 1; }
  .dossier-panel { order: 2; }
  .dossier-photo img { min-height: 260px; }
}

/* ── PULL QUOTE ─────────────────────────────────────── */
.pull-quote {
  margin-top: 28px; padding: 26px 28px; border-left: 4px solid var(--gold);
  background: var(--navy-10); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; max-width: 74ch;
}
.pull-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--navy); line-height: 1.5; }
.pull-quote cite { display: block; margin-top: 10px; font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); font-style: normal; }

/* ── MINI TAG (used inside ministry priority cards) ─── */
.mini-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 4px;
}

/* ── BUSINESS INTERESTS LIST ─────────────────────────── */
.biz-list { margin-top: 8px; border: 1px solid var(--outline); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-1); }
.biz-row {
  display: grid; grid-template-columns: 180px 1fr 120px; gap: 12px; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--outline);
}
.biz-row:last-child { border-bottom: none; }
.biz-role { font-weight: 700; color: var(--navy); font-size: 0.88rem; }
.biz-org { font-size: 0.9rem; color: var(--ink); }
.biz-note { display: block; font-size: 0.78rem; color: var(--ink-2); margin-top: 2px; }
.biz-since { font-size: 0.78rem; color: var(--ink-2); text-align: right; }
@media (max-width: 700px) {
  .biz-row { grid-template-columns: 1fr; gap: 4px; }
  .biz-since { text-align: left; }
}

/* ── EVENTS GRID ─────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.event-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); display: flex; flex-direction: column; }
.event-thumb { aspect-ratio: 16/10; overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-body { padding: 16px 18px 20px; }
.event-date { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); }
.event-body h4 { font-size: 1rem; color: var(--navy); margin: 8px 0 4px; }
.event-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-2); margin-bottom: 8px; }
.event-body p { font-size: 0.86rem; color: var(--ink-2); }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

/* ── TIMELINE ───────────────────────────────────────── */
.timeline { position: relative; margin-top: 8px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--outline); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -28px; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold); z-index: 1;
}
.tl-year { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold-dark); font-size: 1.1rem; }
.tl-card { background: var(--surface); border: 1px solid var(--outline); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 8px; box-shadow: var(--shadow-1); }
.tl-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.tl-card p { font-size: 0.9rem; color: var(--ink-2); }

/* Cycle each timeline step through the Zimbabwean flag palette */
.tl-item:nth-child(5n+1) .tl-dot { border-color: var(--green); }
.tl-item:nth-child(5n+1) .tl-year { color: var(--green); }
.tl-item:nth-child(5n+1) .tl-card { border-left-color: var(--green); }

.tl-item:nth-child(5n+2) .tl-dot { border-color: var(--yellow); }
.tl-item:nth-child(5n+2) .tl-year { color: #B8860B; }
.tl-item:nth-child(5n+2) .tl-card { border-left-color: var(--yellow); }

.tl-item:nth-child(5n+3) .tl-dot { border-color: var(--red); }
.tl-item:nth-child(5n+3) .tl-year { color: var(--red); }
.tl-item:nth-child(5n+3) .tl-card { border-left-color: var(--red); }

.tl-item:nth-child(5n+4) .tl-dot { border-color: #111; }
.tl-item:nth-child(5n+4) .tl-year { color: #111; }
.tl-item:nth-child(5n+4) .tl-card { border-left-color: #111; }

.tl-item:nth-child(5n+5) .tl-dot { border-color: var(--gold); }
.tl-item:nth-child(5n+5) .tl-year { color: var(--gold-dark); }
.tl-item:nth-child(5n+5) .tl-card { border-left-color: var(--gold); }

/* ── GALLERY: COLLECTIONS ─────────────────────────────── */
.gallery-empty { text-align: center; padding: 48px 20px; color: var(--ink-2); border: 1.5px dashed var(--outline); border-radius: var(--radius); }

.gal-collections { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 8px; }
.gal-col-card {
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  border: 1px solid var(--outline); box-shadow: var(--shadow-1); cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gal-col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.gal-col-thumb {
  position: relative; height: 170px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px;
  background: var(--navy);
}
.gal-col-tile { position: relative; overflow: hidden; }
.gal-col-tile:first-child { grid-column: 1; grid-row: 1/3; }
.gal-col-tile img, .gal-col-tile video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gal-col-card:hover .gal-col-tile img,
.gal-col-card:hover .gal-col-tile video { transform: scale(1.05); }
.gal-col-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: rgba(244,169,0,0.35); font-size: 1.6rem;
}
.gal-col-tile:first-child .gal-col-placeholder { font-size: 2.1rem; }
.gal-col-more {
  position: absolute; top: 8px; right: 8px; z-index: 1;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.gal-col-body { padding: 16px 18px; }
.gal-col-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.gal-col-desc { font-size: 0.82rem; color: var(--ink-2); margin-bottom: 8px; line-height: 1.4; }
.gal-col-meta { font-size: 0.75rem; color: var(--ink-2); display: flex; gap: 6px; align-items: center; }

/* Collection detail view */
.gal-detail { margin-top: 8px; }
.gal-back {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); font-size: 0.78rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
  background: none; border: none; font-family: inherit; padding: 0; margin-bottom: 20px;
  transition: opacity .2s;
}
.gal-back:hover { opacity: .7; }
.gal-detail-head { margin-bottom: 20px; }
.gal-detail-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; color: var(--navy); }
.gal-detail-desc { font-size: 0.85rem; color: var(--ink-2); margin-top: 4px; }

.gal-images { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.gal-img-item { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-1); cursor: pointer; background: var(--navy); }
.gal-img-item img, .gal-img-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.gal-img-item:hover img, .gal-img-item:hover video { transform: scale(1.06); }
.gal-img-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 12px;
  background: linear-gradient(transparent 55%, rgba(11,31,63,0.75));
  opacity: 0; transition: opacity .25s;
}
.gal-img-item:hover .gal-img-overlay { opacity: 1; }
.gal-img-caption { color: #fff; font-size: 0.78rem; font-weight: 600; line-height: 1.35; }

@media (max-width: 900px) {
  .gal-collections { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
  .gal-images { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,12,24,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 90vw; max-height: 80vh; }
.lightbox-inner img, .lightbox-inner video { max-width: 90vw; max-height: 80vh; border-radius: 8px; display: block; }
.lightbox-close { position: absolute; top: 24px; right: 28px; color: #fff; font-size: 1.8rem; background: none; border: none; cursor: pointer; }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.88rem; padding: 0 60px; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(244,169,0,0.4); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 0.95rem; }
}

/* ── ACHIEVEMENTS ───────────────────────────────────── */
.ach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.ach-card { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-1); }
.ach-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.ach-card h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 4px; }
.ach-card p { font-size: 0.86rem; color: var(--ink-2); }
@media (max-width: 700px) { .ach-grid { grid-template-columns: 1fr; } }

/* ── FAMILY / WIFE SECTION ─────────────────────────── */
.family-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius); padding: 28px; color: #fff; align-items: center;
  box-shadow: var(--shadow-3);
}
.family-photo { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; border: 4px solid var(--gold); }
.family-photo img { width: 100%; height: 100%; object-fit: cover; }
.family-copy .section-eyebrow { background: rgba(244,169,0,0.18); color: var(--gold); }
.family-copy h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 10px 0 10px; }
.family-copy p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.family-copy a.btn-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--gold); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 700px) { .family-card { grid-template-columns: 1fr; text-align: center; } .family-photo { width: 140px; margin: 0 auto; } }

/* ── FOOTER ─────────────────────────────────────────── */
footer[role="contentinfo"] {
  background: var(--navy); color: rgba(255,255,255,0.65); text-align: center;
  padding: 36px 24px; font-size: 0.82rem; margin-top: 60px;
}
footer[role="contentinfo"] a { color: var(--gold); }
footer .flag-mini { display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; }
footer .flag-mini span { width: 22px; height: 4px; border-radius: 2px; }

/* Utility */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.88rem; padding: 12px 22px; border-radius: 50px; border: none;
  box-shadow: var(--shadow-1); transition: transform .15s ease, box-shadow .15s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

/* ── ZIMBABWE MAP WATERMARK (subtle background accent on cards) ── */

/* Apply the watermark to card surfaces across the site */
.dossier-panel,
.sb-steps,
.tl-card,
.ach-card,
.event-body,
.family-card,
.biz-row,
.pull-quote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.dossier-panel::before,
.sb-steps::before,
.tl-card::before,
.ach-card::before,
.event-body::before,
.family-card::before,

.pull-quote::before {
  content: "";
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: 58%; max-width: 200px; aspect-ratio: 400/348;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20400%20348%22%3E%3Cpath%20d%3D%22M299.4%20344.2L294.4%20342.6L293.5%20343.2L291.0%20341.9L286.1%20341.3L279.4%20342.6L277.1%20342.3L275.5%20343.6L274.0%20342.8L271.4%20343.4L268.1%20342.6L263.3%20344.3L258.1%20344.7L255.2%20341.6L249.7%20342.3L246.1%20339.5L244.5%20339.4L244.3%20338.3L241.8%20337.9L239.7%20336.1L237.5%20336.3L231.7%20333.6L226.7%20333.6L225.9%20332.9L223.3%20334.4L221.8%20333.7L219.1%20335.5L216.0%20334.9L210.8%20336.3L206.8%20332.4L205.3%20329.8L199.3%20330.1L194.8%20327.4L193.3%20322.3L194.1%20319.6L196.2%20317.2L191.7%20314.7L185.1%20313.9L170.9%20307.6L166.8%20309.7L160.6%20306.5L156.1%20305.5L151.2%20306.2L142.1%20304.7L141.0%20302.6L141.3%20301.7L139.7%20301.8L140.3%20300.2L138.9%20299.5L140.1%20298.8L138.6%20297.4L138.9%20296.5L137.0%20293.9L136.2%20290.8L131.2%20284.3L128.5%20283.2L125.5%20279.8L125.1%20278.0L126.0%20277.4L125.6%20275.7L126.3%20273.3L125.3%20272.0L125.5%20268.5L126.7%20267.1L127.6%20263.2L127.6%20260.3L126.0%20257.7L126.0%20255.1L127.3%20252.7L127.1%20250.7L125.0%20249.2L123.1%20249.8L120.9%20248.8L119.5%20249.5L114.1%20248.2L112.2%20248.9L108.6%20248.2L104.8%20249.8L105.4%20239.5L104.6%20236.2L100.9%20228.8L96.7%20228.2L92.4%20224.9L88.6%20225.0L82.5%20222.3L76.1%20221.2L74.6%20218.6L70.4%20218.0L67.4%20213.2L61.0%20211.1L58.9%20207.4L55.8%20207.2L57.2%20204.5L54.9%20202.6L51.5%20203.0L47.6%20201.0L42.6%20187.0L37.2%20178.7L37.3%20176.4L38.8%20174.8L37.3%20170.1L36.1%20168.3L30.1%20164.9L28.6%20160.5L28.3%20157.8L28.9%20157.1L27.9%20154.0L23.2%20151.3L21.0%20147.5L18.7%20146.5L14.6%20141.7L9.3%20130.2L6.4%20126.9L4.2%20126.1L3.1%20124.3L1.6%20119.7L0.0%20117.5L1.3%20111.5L5.7%20113.9L9.9%20114.6L11.2%20114.0L14.2%20115.2L16.1%20113.8L19.5%20114.0L23.3%20112.5L23.8%20113.8L27.1%20114.3L29.0%20116.3L30.8%20116.8L32.1%20120.9L34.7%20122.2L37.4%20122.3L39.6%20120.8L43.4%20121.3L44.4%20119.5L43.5%20118.7L50.1%20116.1L51.6%20117.9L53.6%20117.9L54.8%20118.9L59.7%20118.9L63.8%20121.2L67.6%20121.4L69.5%20124.7L74.4%20126.0L76.9%20123.3L79.8%20123.4L80.0%20122.7L81.4%20122.7L81.4%20121.7L91.1%20119.8L92.1%20120.2L97.9%20113.8L97.4%20112.2L106.4%20101.1L118.0%2092.4L121.7%2088.1L122.9%2082.6L132.3%2069.3L148.1%2062.1L153.7%2057.6L154.6%2055.8L156.2%2055.8L158.0%2053.9L161.9%2053.4L163.6%2054.1L166.1%2051.5L173.8%2048.7L179.0%2047.8L182.8%2044.8L182.9%2042.3L184.6%2039.0L184.2%2036.8L183.2%2035.8L184.9%2032.3L183.8%2030.8L183.9%2028.3L185.3%2025.9L184.4%2022.2L187.8%2017.2L193.7%2016.7L195.5%2013.8L203.2%208.2L210.8%205.1L217.7%204.0L220.7%201.7L224.1%202.8L232.5%200.0L237.3%200.2L241.7%201.7L251.7%200.4L254.1%203.0L256.5%200.8L257.9%201.9L261.4%202.3L264.9%200.5L264.9%2020.1L290.0%2019.8L291.7%2020.5L292.1%2021.8L293.9%2023.1L297.6%2020.0L297.7%2021.0L301.7%2019.2L303.6%2019.4L304.0%2020.3L308.6%2020.2L311.9%2022.3L311.7%2023.4L314.7%2025.6L315.0%2027.0L316.6%2027.2L316.2%2028.2L319.4%2027.9L323.1%2029.4L326.4%2029.1L327.4%2029.9L331.8%2030.5L336.0%2033.7L336.8%2035.6L340.3%2037.0L341.1%2040.8L347.4%2042.5L359.0%2042.0L361.6%2042.6L374.5%2047.0L381.9%2050.5L381.4%2054.5L384.1%2055.9L388.3%2055.6L391.0%2056.7L392.5%2055.5L395.5%2056.0L396.1%2055.5L392.0%2065.8L388.0%2067.1L393.4%2074.4L395.8%2079.8L396.5%2086.6L399.3%2088.6L396.9%2091.3L396.7%2094.2L394.8%2095.8L395.7%2099.6L399.3%20101.9L397.7%20104.9L397.4%20107.3L398.0%20107.9L397.1%20107.7L396.9%20108.5L397.4%20109.5L398.1%20109.2L397.2%20111.1L397.5%20112.0L395.8%20111.7L394.6%20112.6L394.2%20117.6L395.7%20117.9L394.9%20120.2L394.1%20120.1L393.4%20121.3L394.3%20122.1L393.3%20123.7L394.0%20123.5L394.5%20126.4L395.6%20127.8L395.1%20129.0L397.1%20131.1L397.4%20137.3L398.4%20138.5L399.4%20138.4L400.0%20139.9L397.5%20143.6L397.9%20146.0L395.7%20147.4L395.1%20146.4L390.2%20148.6L391.5%20150.0L391.0%20151.6L394.6%20157.1L393.3%20161.4L390.4%20163.0L388.6%20161.9L387.1%20162.0L382.3%20164.2L381.4%20165.2L383.4%20169.4L381.2%20170.0L382.1%20174.5L388.4%20173.8L389.0%20176.4L390.3%20177.0L390.7%20178.5L388.9%20184.8L389.2%20187.5L388.2%20189.2L385.2%20191.4L385.9%20193.1L385.1%20196.6L386.0%20197.5L388.7%20197.5L388.4%20199.4L389.3%20201.1L388.7%20204.2L389.3%20204.8L388.0%20207.5L389.1%20208.2L391.8%20208.1L395.3%20206.5L395.8%20208.4L394.3%20209.9L399.7%20212.9L397.9%20222.1L398.1%20226.1L392.8%20226.4L392.4%20226.9L393.5%20229.4L391.9%20229.9L391.1%20229.0L389.9%20229.7L389.5%20231.3L390.1%20233.9L388.8%20234.3L388.8%20235.6L390.2%20236.3L390.1%20238.5L386.5%20241.8L386.7%20243.0L379.6%20252.7L374.4%20252.6L370.9%20255.6L370.3%20258.6L371.2%20260.7L371.1%20265.9L372.3%20270.7L370.4%20274.9L364.0%20282.6L366.6%20284.3L365.7%20285.6L370.0%20292.2L368.6%20291.3L366.6%20291.6L313.6%20346.0L310.2%20348.1L307.9%20345.2L305.2%20345.1L303.6%20343.4L299.4%20344.2Z%22%20fill%3D%22%23808080%22/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; background-position: center;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
/* Dark navy surfaces need the mark inverted to white so it stays visible */
.dossier-panel::before,
.sb-steps::before,
.family-card::before {
  filter: brightness(0) invert(1);
  opacity: 0.16;
}
.dossier-panel > *, .sb-steps > *,
.tl-card > *, .ach-card > *, .event-body > *,
.family-card > *, .biz-row > *, .pull-quote > * {
  position: relative; z-index: 1;
}

/* ── FLORAL DOODLES (Gwendolyn's family card only) ───── */
.family-card--floral {
  background-image:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%23F4A900%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cg%20transform%3D%22rotate%280%2050%2048%29%22%3E%3Cpath%20d%3D%22M50%2C48%20C45%2C34%2045%2C20%2050%2C8%20C55%2C20%2055%2C34%2050%2C48%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%2872%2050%2048%29%22%3E%3Cpath%20d%3D%22M50%2C48%20C45%2C34%2045%2C20%2050%2C8%20C55%2C20%2055%2C34%2050%2C48%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%28144%2050%2048%29%22%3E%3Cpath%20d%3D%22M50%2C48%20C45%2C34%2045%2C20%2050%2C8%20C55%2C20%2055%2C34%2050%2C48%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%28216%2050%2048%29%22%3E%3Cpath%20d%3D%22M50%2C48%20C45%2C34%2045%2C20%2050%2C8%20C55%2C20%2055%2C34%2050%2C48%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%28288%2050%2048%29%22%3E%3Cpath%20d%3D%22M50%2C48%20C45%2C34%2045%2C20%2050%2C8%20C55%2C20%2055%2C34%2050%2C48%20Z%22%2F%3E%3C%2Fg%3E%0A%3Ccircle%20cx%3D%2250%22%20cy%3D%2248%22%20r%3D%226%22%2F%3E%0A%3Cpath%20d%3D%22M50%2C54%20C48%2C68%2046%2C78%2043%2C92%22%2F%3E%0A%3Cpath%20d%3D%22M46%2C72%20C39%2C70%2034%2C74%2031%2C80%22%2F%3E%0A%3Cpath%20d%3D%22M45%2C82%20C50%2C80%2056%2C83%2058%2C89%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E"),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%23E8B4BC%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cpath%20d%3D%22M18%2C86%20C28%2C68%2024%2C50%2034%2C32%20C40%2C22%2046%2C16%2052%2C10%22%2F%3E%0A%3Cg%20transform%3D%22rotate%28-18%2030%2066%29%22%3E%3Cpath%20d%3D%22M30%2C66%20C24%2C60%2024%2C52%2030%2C46%20C36%2C52%2036%2C60%2030%2C66%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%2820%2038%2044%29%22%3E%3Cpath%20d%3D%22M38%2C44%20C32%2C38%2032%2C30%2038%2C24%20C44%2C30%2044%2C38%2038%2C44%20Z%22%2F%3E%3C%2Fg%3E%0A%3Cg%20transform%3D%22rotate%28-15%2047%2022%29%22%3E%3Cpath%20d%3D%22M47%2C22%20C41%2C16%2041%2C8%2047%2C2%20C53%2C8%2053%2C16%2047%2C22%20Z%22%2F%3E%3C%2Fg%3E%0A%3Ccircle%20cx%3D%2253%22%20cy%3D%229%22%20r%3D%223.5%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 0 0, top -6px right -6px, bottom -8px left -4px;
  background-size: auto, 130px 130px, 108px 108px;
}
