/* ================================================================
   BONNET THE CAUSE — Global Stylesheet
   ================================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #6B3FA0;
  --primary-hover: #5A3488;
  --primary-faint: #F6F2FA;
  --accent: #1A9EAF;
  --accent-hover: #158B9A;
  --accent-faint: #EFF9FA;
  --warm: #E8913A;
  --warm-hover: #D4802E;
  --warm-faint: #FFF5EB;
  --rose: #D94F63;
  --rose-faint: #FFF0F2;
  --green: #2E9E5A;
  --green-faint: #EBF9EE;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --border: #EBEBEB;
  --border-light: #F3F3F3;
  --text-dark: #1B1B1F;
  --text-mid: #555560;
  --text-light: #8E8E9A;
  --text-faint: #B5B5C0;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-mid);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  display: inline-block;
}
.h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.15; letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.2; letter-spacing: -0.02em;
}
.h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.3;
}
.h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.35;
}
.body-text {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; max-width: 540px;
}
.text-center { text-align: center; }
.text-purple { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-warm { color: var(--warm); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition); line-height: 1.4;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107,63,160,0.2); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-warm { background: var(--warm); color: var(--white); }
.btn-warm:hover { background: var(--warm-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: var(--white); color: var(--text-dark); }
.btn-white:hover { background: #F5F5F5; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 0.92rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-group { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-group-center { justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.75rem;
}
.nav-logo-text { font-weight: 800; font-size: 1rem; color: var(--text-dark); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-light); font-size: 0.84rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-cta { display: flex; gap: 8px; }
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-dark); padding: 4px;
}
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: var(--radius);
  text-decoration: none; color: var(--text-mid); font-size: 0.95rem;
  font-weight: 500; transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--bg); }
.mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 60px; background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.page-hero-dark {
  padding: 120px 0 60px;
  background: linear-gradient(160deg, #171220 0%, #1C1A2E 50%, #151D28 100%);
  position: relative; overflow: hidden;
}
.page-hero-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(107,63,160,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(26,158,175,0.06) 0%, transparent 50%);
}
.page-hero-dark .page-hero-content { position: relative; z-index: 2; }
.page-hero-dark .eyebrow { color: rgba(255,255,255,0.4); }
.page-hero-dark .h1, .page-hero-dark .h2 { color: var(--white); }
.page-hero-dark .body-text { color: rgba(255,255,255,0.55); }
.page-hero-content { max-width: 640px; }
.page-hero-center .page-hero-content { margin: 0 auto; text-align: center; }
.page-hero-center .body-text { margin-left: auto; margin-right: auto; }

/* ===== HOMEPAGE HERO SLIDER ===== */
.hero-slider {
  position: relative; margin-top: 64px; height: 560px; overflow: hidden;
  background: var(--text-dark);
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.8s ease; display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg { position: absolute; inset: 0; }
.slide:nth-child(1) .slide-bg { background: linear-gradient(135deg, #1a1028 0%, #2a1845 40%, #1a2a3a 100%); }
.slide:nth-child(2) .slide-bg { background: linear-gradient(135deg, #0d2b30 0%, #133840 40%, #1a2838 100%); }
.slide:nth-child(3) .slide-bg { background: linear-gradient(135deg, #2a1530 0%, #1a1028 40%, #182030 100%); }
.slide:nth-child(4) .slide-bg { background: linear-gradient(135deg, #1a2520 0%, #0d2b30 40%, #1a2838 100%); }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.slide-content {
  position: relative; z-index: 3; max-width: 1100px;
  margin: 0 auto; padding: 0 24px; width: 100%;
}
.slide-content .eyebrow { color: rgba(255,255,255,0.5); }
.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px; max-width: 600px;
}
.slide-content p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 480px; line-height: 1.7; margin-bottom: 28px;
}
.slide-nav {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active { background: var(--white); width: 28px; border-radius: 5px; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-bg { background: var(--bg); }
.section-dark {
  background: linear-gradient(160deg, #171220 0%, #1C1A2E 50%, #151D28 100%);
  position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(107,63,160,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(26,158,175,0.06) 0%, transparent 50%);
}
.section-dark .container { position: relative; z-index: 2; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .body-text { margin-left: auto; margin-right: auto; }
.section-divider { border: none; border-top: 1px solid var(--border-light); margin: 0; }

/* ===== IMPACT BAR ===== */
.impact-bar {
  padding: 36px 0; background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.impact-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ib-item { text-align: center; }
.ib-num { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.ib-label { font-size: 0.75rem; color: var(--text-faint); margin-top: 2px; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-padded { padding: 32px 24px; border-radius: var(--radius-lg); }
.card-padded:hover { transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 18px;
}
.card-link {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s; margin-top: 14px;
}
.card-link:hover { gap: 8px; }

/* ===== POST CARDS ===== */
.p-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: all var(--transition); text-decoration: none; color: inherit;
  display: block;
}
.p-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.p-card-img {
  height: 200px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-faint); position: relative;
  overflow: hidden;
}
.p-card-img img { width: 100%; height: 100%; object-fit: cover; }
.p-card-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--white); padding: 3px 9px; border-radius: 4px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--accent);
}
.p-card-body { padding: 20px; }
.p-card-date { font-size: 0.72rem; color: var(--text-faint); margin-bottom: 4px; }
.p-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--text-dark);
  line-height: 1.4; margin-bottom: 8px;
}
.p-card-excerpt { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== BONNET CARDS ===== */
.b-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden;
  transition: all var(--transition); cursor: default;
}
.b-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.b-card a { text-decoration: none; color: inherit; display: block; }
.b-swatch {
  height: 100px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; position: relative;
}
.b-swatch-lg { height: 140px; }
.b-tag {
  position: absolute; top: 6px; right: 6px;
  background: rgba(255,255,255,0.9); padding: 2px 7px; border-radius: 4px;
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--primary);
}
.b-info { padding: 12px 14px; text-align: center; }
.b-name { font-weight: 700; font-size: 0.82rem; color: var(--text-dark); }
.b-ribbon { font-size: 0.68rem; color: var(--text-faint); margin-top: 1px; }

/* ===== MISSION STRIP ===== */
.mission-strip {
  padding: 72px 0; background: var(--bg);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.mission-grid {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 48px; text-align: center;
}
.mission-divider { background: var(--border); }
.mission-item h3 { margin-bottom: 10px; }
.mission-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; max-width: 400px; margin: 0 auto; }

/* ===== VISION PILLARS ===== */
.vision-pillars { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 28px; }
.v-pillar {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--radius); background: var(--bg);
}
.v-pillar-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary-faint); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.v-pillar h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.v-pillar p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ===== WORLD RECORD ===== */
.wr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,145,58,0.1); border: 1px solid rgba(232,145,58,0.2);
  border-radius: 6px; padding: 5px 14px; margin-bottom: 20px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm);
}
.wr-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px;
}
.wr-title .warm { color: var(--warm); }
.wr-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.8;
}
.wr-counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.wr-counter {
  padding: 24px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
}
.wr-counter-num { font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.wr-counter-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
.wr-timeline { display: flex; gap: 0; max-width: 560px; margin: 0 auto; position: relative; }
.wr-timeline::before {
  content: ''; position: absolute; top: 5px; left: 12%; right: 12%;
  height: 1px; background: rgba(255,255,255,0.08);
}
.wr-tl { flex: 1; text-align: center; position: relative; }
.wr-tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15); margin: 0 auto 8px;
  position: relative; z-index: 2;
}
.wr-tl:first-child .wr-tl-dot, .wr-tl:last-child .wr-tl-dot { background: var(--warm); }
.wr-tl-date { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
.wr-tl-label { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-top: 2px; }

/* ===== TESTIMONIAL ===== */
.testi-quote {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.85;
  font-style: italic; margin: 24px 0;
}
.testi-quote::before {
  content: '"'; display: block; font-size: 2.5rem; font-weight: 800;
  color: var(--border); font-style: normal; margin-bottom: -8px;
}
.testi-author { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.testi-role { font-size: 0.78rem; color: var(--text-faint); }

/* ===== CTA BANNER ===== */
.cta-ban { padding: 72px 0; background: var(--primary); }
.cta-ban-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-ban-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.cta-ban-inner p { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.7; }

/* ===== PARTNERS ===== */
.partners { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border-light); }
.partners-inner { text-align: center; }
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; margin: 20px 0;
}
.p-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-faint);
}
.p-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
}

/* ===== NEWSLETTER ===== */
.newsletter { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--border-light); }
.nl-inner { text-align: center; max-width: 460px; margin: 0 auto; }
.nl-form { display: flex; gap: 8px; margin-top: 20px; }
.nl-input {
  flex: 1; padding: 12px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.88rem; background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--primary); }
.nl-input::placeholder { color: var(--text-faint); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem;
  background: var(--white); outline: none; transition: border-color 0.2s;
  color: var(--text-dark);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-mid); cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--primary);
}
.form-hint { font-size: 0.78rem; color: var(--text-faint); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { background: #1B1B1F; color: rgba(255,255,255,0.5); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.footer-brand-name { font-weight: 800; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer h4 { font-weight: 700; color: var(--white); margin-bottom: 14px; font-size: 0.84rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-contact { font-size: 0.82rem; }
.footer-contact-row { display: flex; gap: 7px; margin-bottom: 8px; }
.footer-contact-row span:first-child { opacity: 0.4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}
.footer-socials { display: flex; gap: 6px; }
.footer-social {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,0.05); display: flex; align-items: center;
  justify-content: center; text-decoration: none; color: rgba(255,255,255,0.35);
  font-size: 0.7rem; transition: all 0.2s;
}
.footer-social:hover { background: var(--primary); color: var(--white); }

/* ===== FLOATING GET INVOLVED ===== */
.fab { position: fixed; bottom: 28px; right: 28px; z-index: 500; }
.fab-trigger {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(107,63,160,0.35);
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.fab-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(107,63,160,0.45); }
.fab-trigger.open { background: var(--text-dark); border-radius: 14px; }
.fab-menu {
  position: absolute; bottom: 68px; right: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
  padding: 20px; width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease;
}
.fab-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-menu-title {
  font-size: 0.78rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
.fab-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius);
  text-decoration: none; color: var(--text-mid);
  transition: all 0.2s; font-size: 0.88rem; font-weight: 500;
}
.fab-menu-item:hover { background: var(--bg); color: var(--text-dark); }
.fab-menu-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* ===== ABOUT PAGE FEATURES ===== */
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; font-weight: 500; color: var(--text-dark);
}
.about-feat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 28px; }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%; border-radius: var(--radius-lg);
  background: var(--bg); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); font-size: 0.82rem; text-align: center; padding: 32px;
}
.img-placeholder-float {
  position: absolute; bottom: -16px; right: -16px;
  width: 150px; height: 150px; border-radius: var(--radius);
  border: 3px solid var(--white); box-shadow: var(--shadow-md);
  background: var(--accent-faint); display: flex; align-items: center;
  justify-content: center; font-size: 0.7rem; color: var(--text-faint);
}

/* ===== TEAM CARDS ===== */
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-faint); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin: 0 auto 12px;
}
.team-name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.team-role { font-size: 0.78rem; color: var(--text-faint); }

/* ===== SPONSOR TIERS ===== */
.tier-card {
  padding: 32px 24px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border-light);
  transition: all var(--transition); text-align: center;
}
.tier-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.tier-card.featured { border-color: var(--primary); position: relative; }
.tier-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%); background: var(--primary); color: var(--white);
  padding: 3px 12px; border-radius: 4px; font-size: 0.6rem;
  font-weight: 700; letter-spacing: 1px;
}
.tier-name {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.tier-title { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.tier-benefits { list-style: none; text-align: left; margin: 20px 0; }
.tier-benefits li {
  padding: 8px 0; font-size: 0.85rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
  display: flex; gap: 8px; align-items: flex-start;
}
.tier-benefits li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 60px 0; }
.content-section + .content-section { padding-top: 0; }
.prose { max-width: 700px; }
.prose p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin: 40px 0 16px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 16px 0; padding-left: 24px; }
.prose li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--primary); padding: 16px 24px;
  margin: 24px 0; background: var(--primary-faint); border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p { margin: 0; font-style: italic; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.78rem; color: var(--text-faint); margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== SIDEBAR ===== */
.page-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.sidebar-widget { margin-bottom: 32px; }
.sidebar-widget h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.sidebar-list { list-style: none; }
.sidebar-list li { margin-bottom: 4px; }
.sidebar-list a {
  display: block; padding: 8px 12px; border-radius: var(--radius);
  text-decoration: none; color: var(--text-mid); font-size: 0.85rem;
  transition: all 0.2s;
}
.sidebar-list a:hover { background: var(--bg); color: var(--text-dark); }
.sidebar-list a.active { background: var(--primary-faint); color: var(--primary); font-weight: 600; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius);
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: all 0.2s;
}
.pagination a { color: var(--text-mid); border: 1px solid var(--border); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--white); border: none; }

/* ===== EVENT DETAILS ===== */
.event-meta {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 16px 0 24px;
}
.event-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-light);
}
.event-meta-item span:first-child { font-size: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-slider { height: 480px; }
  .slide-content h1 { font-size: 1.8rem; }
  .impact-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wr-counters { grid-template-columns: 1fr; }
  .wr-timeline { flex-direction: column; gap: 14px; }
  .wr-timeline::before { display: none; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .fab { bottom: 20px; right: 20px; }
  .about-features { grid-template-columns: 1fr; }
}
</style>

/* =============================================
   WORDPRESS OVERRIDES
   Neutralize WP block editor default styles
   ============================================= */

/* Reset WP block widths - let our .container handle layout */
.entry-content,
.wp-block-group,
.wp-block-columns,
.wp-block-html {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove WP default content wrapper constraints */
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

body .is-layout-flow > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Ensure WP content area takes full container width */
.wp-site-blocks,
.wp-block-post-content {
  max-width: none !important;
}

/* Fix WP paragraph spacing in our theme */
.section .wp-block-paragraph,
.prose .wp-block-paragraph {
  margin-bottom: 1em;
}

/* Hide WP admin bar spacing issue */
body.admin-bar .nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}
