/* =========================================================================
   Bishop George E. Gibson II — Official Personal Leadership Brand Site
   Stylesheet — royal blue / deep navy / metallic gold / charcoal / light gray
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --navy-950: #050b1f;
  --navy-900: #0a1436;
  --navy-800: #0e1d4d;
  --navy-700: #142a66;
  --navy-600: #1c3a86;
  --navy-500: #2a4ca8;

  --gold-300: #f1dc9e;
  --gold-400: #e4c46a;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --gold-700: #96741f;

  --charcoal-900: #16171a;
  --charcoal-800: #202227;
  --charcoal-700: #2c2e35;
  --charcoal-500: #565962;

  --silver-100: #f6f7f9;
  --silver-200: #eceef2;
  --silver-300: #dde1e8;
  --silver-400: #c3c8d2;

  --white: #ffffff;

  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 10px rgba(10, 20, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 20, 54, 0.12);
  --shadow-lg: 0 24px 64px rgba(10, 20, 54, 0.18);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
html, body { height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-alt { background: var(--silver-100); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, var(--navy-900));
  color: var(--silver-200);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}
.section-dark .eyebrow, .eyebrow--light { color: var(--gold-400); }
.eyebrow::before { content: ''; width: 34px; height: 2px; background: currentColor; display: inline-block; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head.split .section-head-copy { max-width: 460px; color: var(--charcoal-500); }
.section-dark .section-head.split .section-head-copy { color: rgba(255,255,255,0.72); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
h2.section-title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3.card-title { font-size: 1.4rem; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--charcoal-500); }
.section-dark .lede { color: var(--silver-300); }
.text-gold { color: var(--gold-500); }

/* Glassmorphism utility */
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 175, 55, 0.38); }
.btn-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); border-color: var(--white); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-navy-outline { background: transparent; border-color: var(--navy-800); color: var(--navy-900); }
.btn-navy-outline:hover { background: var(--navy-900); color: var(--white); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
.btn[disabled], .btn.is-disabled { opacity: 0.55; cursor: not-allowed; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }
.reveal-delay-4.is-visible { transition-delay: 0.4s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  padding-block: 1.35rem;
  transition: padding 0.4s var(--ease-soft), background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar.is-scrolled {
  padding-block: 0.75rem;
  background: rgba(6, 12, 32, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--white); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  color: var(--gold-400); font-size: 1rem; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 1.7rem); }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  position: relative; padding-block: 0.3rem; transition: color 0.25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold-400); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.4rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.4rem; z-index: 1200; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO (full-height side image + copy panel) ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 46%);
  align-items: stretch;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-side-media { position: relative; overflow: hidden; }
.hero-side-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transform: scale(1.01); transition: transform 12s var(--ease-soft);
}
.hero:hover .hero-side-media img { transform: scale(1.06); }
.hero-side-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(270deg, transparent 55%, rgba(5,10,26,0.55) 82%, var(--navy-950) 100%);
}

.hero-copy-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8rem clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 4.5rem);
}
.hero-copy { max-width: 560px; width: 100%; }

.hero-ticker {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.hero-ticker .sep { color: rgba(212,175,55,0.55); margin-inline: 0.15rem; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem; border: 1px solid rgba(212,175,55,0.4); border-radius: 999px;
  color: var(--gold-300); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.6rem; background: rgba(212,175,55,0.06);
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(212,175,55,0.2); }

.hero-role-ticker {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem;
  min-height: 1.4rem;
}
.hero-role-ticker strong {
  color: var(--gold-400); font-weight: 700;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  color: var(--white); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin-top: 1.6rem; max-width: 580px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: rgba(233, 236, 244, 0.88);
}
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.scroll-cue-line { width: 1px; height: 42px; background: linear-gradient(var(--gold-400), transparent); position: relative; overflow: hidden; }
.scroll-cue-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-400); animation: cue-drop 2.2s var(--ease-soft) infinite;
}
@keyframes cue-drop { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ==================== ABOUT + STATS ==================== */
.about-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.about-media { position: relative; }
.about-media-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media-accent {
  position: absolute; width: 70%; aspect-ratio: 3/4;
  border: 2px solid var(--gold-500); border-radius: 20px; top: -1.4rem; right: -1.4rem; z-index: -1;
}
.about-quote {
  position: absolute; bottom: -1.8rem; right: -1rem;
  background: var(--navy-900); color: var(--white); padding: 1.4rem 1.6rem; border-radius: 16px;
  max-width: 260px; box-shadow: var(--shadow-lg); font-family: var(--font-display); font-weight: 700;
  font-size: 0.98rem; line-height: 1.5; border-left: 3px solid var(--gold-500);
}
.about-copy p { margin-bottom: 1.15rem; color: var(--charcoal-700); }
.about-copy p:last-of-type { margin-bottom: 0; }

.stats-grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.stat-card {
  text-align: center; padding: 1.6rem 1rem; border-radius: 16px;
  background: var(--silver-100); border: 1px solid var(--silver-300);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 700;
  color: var(--navy-900); line-height: 1;
}
.stat-num .suffix { color: var(--gold-600); }
.stat-label { margin-top: 0.5rem; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--charcoal-500); }

/* ==================== LEADERSHIP PORTFOLIO ==================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.portfolio-card {
  background: var(--white); border-radius: 20px; padding: 2.2rem 1.8rem;
  border: 1px solid var(--silver-300); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.4s ease;
}
.portfolio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--navy-700));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.portfolio-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.portfolio-card:hover::before { transform: scaleX(1); }
.portfolio-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400); display: grid; place-items: center;
  margin-bottom: 1.3rem; transition: transform 0.4s var(--ease-out);
}
.portfolio-card:hover .portfolio-icon { transform: rotate(-8deg) scale(1.08); }
.portfolio-card h3 { font-size: 1.24rem; margin-bottom: 0.6rem; }
.portfolio-card p { color: var(--charcoal-500); font-size: 0.94rem; }

/* ==================== LEADERSHIP ROLES TIMELINE ==================== */
.roles-timeline { position: relative; max-width: 860px; margin-inline: auto; }
.roles-timeline::before {
  content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--gold-500), var(--navy-700));
}
.role-node { position: relative; padding-left: 5rem; margin-bottom: 2.6rem; }
.role-node:last-child { margin-bottom: 0; }
.role-node-icon {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); display: grid; place-items: center; box-shadow: var(--shadow-gold);
  border: 4px solid var(--white);
}
.role-card {
  background: var(--white); border: 1px solid var(--silver-300); border-radius: 18px;
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.role-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.role-title { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.role-org { font-size: 1.2rem; margin-top: 0.3rem; }
.role-desc { font-size: 0.9rem; color: var(--charcoal-500); margin-top: 0.4rem; }

/* ==================== AREAS OF INFLUENCE (hover expand) ==================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.influence-card {
  background: var(--white); border: 1px solid var(--silver-300); border-radius: 18px;
  padding: 1.7rem 1.5rem; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.influence-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.influence-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400); display: grid; place-items: center; margin-bottom: 1rem;
}
.influence-card h4 { font-size: 1rem; margin-bottom: 0; }
.influence-reveal {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-out);
}
.influence-card:hover .influence-reveal, .influence-card:focus-within .influence-reveal { grid-template-rows: 1fr; }
.influence-reveal-inner { overflow: hidden; }
.influence-reveal p { font-size: 0.84rem; color: var(--charcoal-500); padding-top: 0.7rem; }

/* ==================== VISION (manifesto banner) ==================== */
.vision-section {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, var(--navy-900));
  color: var(--white); position: relative; overflow: hidden;
}
.vision-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(212,175,55,0.18), transparent 55%);
}
.vision-inner { max-width: 880px; margin-inline: auto; text-align: center; position: relative; }
.vision-inner h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1.6rem; }
.vision-inner p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(233,236,244,0.85);
  margin-bottom: 1.2rem; line-height: 1.7;
}
.vision-inner p:last-of-type { margin-bottom: 0; }

/* ==================== SIGNATURE INITIATIVES (horizontal cards) ==================== */
.initiatives-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.initiative-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--white); border: 1px solid var(--silver-300); border-radius: 16px;
  padding: 1.4rem 1.5rem; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.initiative-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.initiative-icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out);
}
.initiative-card:hover .initiative-icon { transform: rotate(-6deg) scale(1.06); }
.initiative-card h4 { font-size: 1rem; }
.initiative-card p { font-size: 0.83rem; color: var(--charcoal-500); margin-top: 0.2rem; }

/* ==================== SPEAKING MINISTRY ==================== */
.speaking-cta {
  border-radius: 28px; padding: clamp(2.5rem, 6vw, 4.5rem);
  background: radial-gradient(circle at 15% 20%, rgba(212,175,55,0.25), transparent 45%), linear-gradient(140deg, var(--navy-950), var(--navy-800));
  color: var(--white); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem;
  align-items: center; position: relative; overflow: hidden;
}
.speaking-cta h2 { color: var(--white); }
.speaking-cta p { color: rgba(255,255,255,0.78); margin-top: 1rem; max-width: 520px; }
.speaking-points { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.speaking-points span { font-size: 0.8rem; padding: 0.45rem 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.speaking-actions { display: flex; flex-direction: column; gap: 1rem; }

/* ==================== GALLERY ==================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-caption {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(0deg, rgba(5,11,31,0.85) 0%, rgba(5,11,31,0.15) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption .tag { color: var(--gold-400); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.2rem; }
.gallery-caption h4 { color: var(--white); font-size: 0.98rem; }
.gallery-expand {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); display: grid; place-items: center;
  color: var(--white); opacity: 0; transform: scale(0.7); transition: all 0.35s var(--ease-out);
}
.gallery-item:hover .gallery-expand { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  background: rgba(5, 8, 20, 0.94); opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease; padding: 2rem;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: min(90vw, 720px); text-align: center; transform: scale(0.94); transition: transform 0.4s var(--ease-out); }
.lightbox.is-open .lightbox-figure { transform: scale(1); }
.lightbox-figure img { max-height: 78vh; width: auto; margin-inline: auto; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: var(--silver-300); margin-top: 1.1rem; font-size: 0.95rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(212,175,55,0.35); transform: scale(1.08); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ==================== BOOKS & RESOURCES ==================== */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.resource-card {
  position: relative; background: var(--white); border: 1px solid var(--silver-300); border-radius: 18px;
  padding: 2rem 1.6rem; text-align: center; transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.resource-icon {
  width: 54px; height: 54px; border-radius: 50%; margin-inline: auto 1rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400); display: grid; place-items: center; margin-bottom: 1rem;
}
.resource-card h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.resource-badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); background: rgba(212,175,55,0.14);
  padding: 0.35rem 0.8rem; border-radius: 999px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-carousel { position: relative; max-width: 820px; margin-inline: auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.65s var(--ease-out); }
.testimonial-slide { flex: 0 0 100%; padding: 0 clamp(0.5rem, 3vw, 2rem); }
.testimonial-card {
  background: var(--white); border-radius: 22px; padding: clamp(2rem, 5vw, 3rem); text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--silver-300);
}
.testimonial-quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-400); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-text { font-family: var(--font-display); font-size: clamp(1.05rem, 1.9vw, 1.32rem); color: var(--navy-900); line-height: 1.55; font-weight: 700; }
.testimonial-person { margin-top: 1.6rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--navy-900); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--charcoal-500); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.2rem; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--silver-400); background: var(--white);
  display: grid; place-items: center; color: var(--navy-900); transition: all 0.3s ease;
}
.carousel-arrow:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--silver-400); transition: all 0.3s ease; }
.carousel-dot.is-active { background: var(--gold-500); width: 26px; border-radius: 6px; }

/* ==================== NEWS & UPDATES ==================== */
.news-card {
  background: var(--white); border: 1px solid var(--silver-300); border-radius: 18px; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.news-card-top {
  padding: 1.4rem 1.5rem; background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
}
.news-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--gold-300); }
.news-date { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.news-body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.news-body h3 { font-size: 1.08rem; }
.news-body p { color: var(--charcoal-500); font-size: 0.87rem; }
.news-link { margin-top: auto; padding-top: 0.6rem; font-size: 0.83rem; font-weight: 700; color: var(--gold-700); display: inline-flex; align-items: center; gap: 0.35rem; }

/* ==================== PARTNER CTA ==================== */
.partner-banner {
  border-radius: 28px; padding: clamp(2.5rem, 6vw, 4rem);
  background: var(--navy-950); color: var(--white); position: relative; overflow: hidden;
}
.partner-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(212,175,55,0.2), transparent 50%);
}
.partner-inner { position: relative; text-align: center; max-width: 780px; margin-inline: auto; }
.partner-inner h2 { color: var(--white); margin-bottom: 1rem; }
.partner-inner > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.partner-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 2.4rem; }
.partner-chips span { font-size: 0.82rem; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.88); }
.partner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ==================== CONTACT (executive) ==================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-info-card { background: var(--navy-950); color: var(--white); border-radius: 24px; padding: clamp(2rem, 4vw, 2.6rem); height: 100%; }
.contact-portrait {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 1.6rem; box-shadow: var(--shadow-lg);
}
.contact-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.3rem; }
.contact-info-card .role-tag { color: var(--gold-400); font-size: 0.82rem; margin-bottom: 1.4rem; display: block; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-line:first-of-type { border-top: none; }
.contact-line-icon {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(212,175,55,0.16); color: var(--gold-400);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-line h4 { font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 0.25rem; }
.contact-line p { font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.contact-map { margin-top: 1.6rem; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; position: relative; border: 1px solid rgba(255,255,255,0.12); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.contact-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; color: var(--white); transition: all 0.3s ease;
}
.social-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--silver-300); border-radius: 24px; padding: clamp(2rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field textarea, .form-field select {
  border: 1.5px solid var(--silver-300); border-radius: 12px; padding: 0.85rem 1rem; font-size: 0.94rem;
  color: var(--charcoal-800); background: var(--silver-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold-500); background: var(--white); box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--charcoal-500); margin-top: 0.9rem; text-align: center; }
.form-success {
  display: none; align-items: center; gap: 0.8rem; background: #eafaf0; border: 1px solid #bfe8cd;
  color: #1a7a42; padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.2rem; font-size: 0.9rem;
}
.form-success.is-visible { display: flex; }

/* ==================== FOOTER ==================== */
.footer { background: var(--charcoal-900); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 1.2rem; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.3rem; font-family: var(--font-body); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-bottom { padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; }
.footer-closing { text-align: center; padding-bottom: 2rem; font-family: var(--font-display); font-weight: 700; color: var(--gold-400); font-size: 1.05rem; }
.footer-credit { text-align: center; padding-bottom: 1.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-credit a { color: rgba(255,255,255,0.6); transition: color 0.25s ease; }
.footer-credit a:hover { color: var(--gold-400); }

/* Scroll to top */
.scroll-top-btn {
  position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy-950); color: var(--gold-400); display: grid; place-items: center;
  border: 1px solid rgba(212,175,55,0.3); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.4s var(--ease-out); z-index: 800;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--gold-500); color: var(--navy-950); transform: translateY(-4px); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold-500); color: var(--navy-950);
  padding: 0.8rem 1.2rem; z-index: 3000; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .initiatives-grid { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); background: var(--navy-950);
    flex-direction: column; align-items: flex-start; padding: 6.5rem 2rem 2rem; gap: 1.6rem;
    transform: translateX(100%); transition: transform 0.5s var(--ease-out); box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; grid-template-rows: 46vh auto; min-height: 100svh; padding-top: 5.5rem; }
  .hero-side-media { min-height: 46vh; grid-row: 1; }
  .hero-copy-col { grid-row: 2; }
  .hero-side-media::after { background: linear-gradient(0deg, var(--navy-950) 2%, transparent 40%); }
  .hero-copy-col { padding: 2.5rem clamp(1.25rem, 5vw, 2.5rem) 3rem; text-align: center; justify-content: center; }
  .hero-copy { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-role-ticker { justify-content: center; }
  .hero-ticker { justify-content: center; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin-inline: auto; width: 100%; }
  .about-quote { position: static; margin-top: 1.5rem; max-width: 100%; }
  .about-media-accent { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .roles-timeline::before { left: 23px; }
  .role-node { padding-left: 4.2rem; }
  .role-node-icon { width: 48px; height: 48px; }

  .speaking-cta { grid-template-columns: 1fr; text-align: center; }
  .speaking-points { justify-content: center; }
  .speaking-actions { align-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .stats-grid { grid-template-columns: 1fr; }
}
