/* ===============================================
   THE RIGHT BET - Main Stylesheet
   Based on Dev.html design
   =============================================== */


:root {
  --sage: #6B9E6B;
  --sage-light: #85B585;
  --sage-pale: #D5E8D0;
  --sage-bg: #EFF6EE;
  --blue: #2C3D55;
  --blue-light: #3A5070;
  --cream: #FAFDF9;
  --white: #FFFFFF;
  --text: #1E2A1E;
  --text-secondary: #4A5A4A;
  --text-light: #8A9A8A;
  --border: rgba(107,158,107,0.1);
  --red: #C0392B;
  --green: #4A8A5A;
  --radius: 16px;
  --radius-sm: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== CRISIS BAR ===== */
.crisis-bar {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
}
.crisis-bar a {
  color: var(--sage-pale);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,228,210,0.4);
}

/* ===== NAV ===== */
nav {
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.scrolled .nav-logo { color: var(--text); }
nav.scrolled .nav-logo span { color: var(--sage); }
nav.scrolled .nav-links a { color: var(--text-secondary); }
nav.scrolled .nav-links a:hover { color: var(--text); }
nav.scrolled .nav-cta { background: var(--blue) !important; color: var(--white) !important; }
nav.scrolled .mobile-menu-btn span { background: var(--blue); }
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.15;
  letter-spacing: 0.055em;
}
.nav-logo span { color: var(--sage-pale); transition: color 0.3s; }
.nav-logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.215em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  margin-top: 3px;
  padding-left: 2px;
}
nav.scrolled .nav-logo-sub { color: var(--text-light); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  transition: all 0.3s !important;
  backdrop-filter: blur(8px);
}
.nav-cta:hover { background: rgba(255,255,255,0.2) !important; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: background 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1A3028;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,48,40,0.25) 0%, rgba(26,48,40,0.55) 50%, rgba(26,48,40,0.75) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-pale);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.btn-hero-primary {
  background: var(--blue);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blue);
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.2s;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}
.btn-dark {
  background: var(--blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(44,61,85,0.15); }
.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--text-light); background: var(--sage-bg); }
.cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.btn-gold {
  background: var(--blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ===== SECTIONS ===== */
.section-pad { padding: 88px 48px; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--sage-bg); }
.bg-navy { background: #1A3028; }
.max-w { max-width: 1120px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-heading.white { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}
.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-header-center .section-desc { margin: 0 auto; }

/* ===== STATEMENT ===== */
.statement {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement-inner { max-width: 720px; margin: 0 auto; }
.statement blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 24px;
}
.statement p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== SELF ASSESSMENT ===== */
.assessment-banner {
  padding: 48px 48px;
  text-align: center;
  background: var(--sage-bg);
  border-top: 2px solid var(--sage-pale);
  border-bottom: 2px solid var(--sage-pale);
  position: relative;
  overflow: hidden;
}
.assessment-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,166,120,0.08) 0%, transparent 60%);
}
.assessment-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.assessment-icon {
  width: 56px;
  height: 56px;
  background: #E8F0E7;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.assessment-banner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 14px;
}
.assessment-banner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.assessment-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.assessment-features span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.assessment-features span::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== DATA TABLE (Financial Report Style) ===== */
.data-table {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.data-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.data-row:last-child { border-bottom: none; }
.data-row:not(.data-header-row):hover { background: var(--sage-bg); }
.data-header-row {
  background: #1A3028;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.data-header-row .data-metric,
.data-header-row .data-col { padding: 14px 24px; }
.data-header-row .data-col-bad { color: rgba(255,200,200,0.7); }
.data-header-row .data-col-good { color: var(--sage-pale); }
.data-metric { padding: 20px 24px; }
.data-metric-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.data-metric-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.data-col {
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid var(--border);
}
.data-val {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.data-val.danger { color: var(--red); }
.data-val.safe { color: var(--green); }
.data-footnote {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ===== STATS + CONF ===== */
.stats-section {
  background: #1A3028;
}
.conf-banner {
  padding: 64px 48px;
  text-align: center;
}
.conf-banner h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 14px;
}
.conf-banner p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-cell {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--sage-pale);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ===== WHO WE SERVE (Interactive) ===== */
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.who-left { position: sticky; top: 120px; }
.who-left-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.who-item:first-child { border-top: 1px solid var(--border); }
.who-item:hover { padding-left: 8px; }
.who-item:hover .who-arrow { opacity: 1; transform: translateX(0); }
.who-item:hover .who-num { color: var(--sage); }
.who-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  color: var(--text-light);
  min-width: 28px;
  transition: color 0.25s;
}
.who-item-text { flex: 1; }
.who-item-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.who-micro {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.01em;
}
.who-arrow {
  font-size: 1rem;
  color: var(--sage);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s;
}
.who-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-top: 0;
}
.who-detail-panel.open {
  max-height: 160px;
  padding: 24px 28px;
  border-color: var(--border);
  margin-top: 24px;
}
.who-detail-panel p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== APPROACH (Tabbed) ===== */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.approach-right { }
.approach-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--sage-bg);
  border-radius: 10px;
  padding: 4px;
  border: 1px solid var(--border);
}
.approach-tab {
  flex: 1;
  padding: 11px 20px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s;
}
.approach-tab.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.approach-tab:hover:not(.active) { color: var(--text); }
.approach-panel { display: none; }
.approach-panel.active { display: block; }
.ap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ap-item:last-child { border-bottom: none; }
.ap-icon {
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 1px;
}
.ap-icon.do { color: var(--green); background: rgba(90,143,107,0.1); }
.ap-icon.dont { color: var(--red); background: rgba(192,57,43,0.08); }

/* ===== PROCESS ===== */
.process-steps { max-width: 640px; margin: 0 auto; }
.p-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.p-step:last-child { border-bottom: none; }
.p-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--sage-pale);
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-step h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.p-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }


/* ===== CTA ===== */
.cta {
  padding: 100px 48px;
  text-align: center;
  background: #1A3028;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,174,139,0.06) 0%, transparent 60%);
}
.cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta .cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  position: relative;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.partners-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 28px;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.55;
}
.partner-logos span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
/* ===== FOOTER ===== */
footer {
  background: #1A3028;
  padding: 56px 48px 36px;
  color: rgba(255,255,255,0.55);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand { max-width: 300px; }
.footer-brand .f-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.055em;
  line-height: 1.15;
}
.footer-brand .f-logo span { color: var(--sage); }
.footer-brand .f-logo .f-logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.215em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
  padding-left: 2px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-crisis-bar {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.85rem;
}
.footer-crisis-bar a { color: var(--sage-pale); text-decoration: none; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .comparison-grid, .help-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .who-layout, .approach-layout { grid-template-columns: 1fr; gap: 32px; }
  .who-left { position: static; }
  .data-row { grid-template-columns: 1fr; }
  .data-col { border-left: none; border-top: 1px solid var(--border); }
  .data-header-row { display: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .footer-top { flex-direction: column; }
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { min-height: 100vh; }
  .hero-inner { padding: 100px 24px 60px; }
  .hero h1 { font-size: 2.8rem; }
  .section-heading { font-size: 2.1rem; }
  .statement blockquote { font-size: 1.45rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; }
  .section-pad { padding: 64px 20px; }
  .statement, .partners, .assessment-banner {
  padding-left: 20px; padding-right: 20px; }
  .cta { padding: 72px 20px; }
  .cta h2 { font-size: 2.2rem; }
  footer { padding: 48px 20px 28px; }
  .hero-buttons, .cta-btns { flex-direction: column; align-items: center; }
  .assessment-features { flex-direction: column; align-items: center; gap: 12px; }
}

/* ===== CRISIS TOP BAR ===== */
.crisis-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1A3028;
  transform: translateY(-100%);
  animation: crisisSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
@keyframes crisisSlideIn {
  to { transform: translateY(0); }
}
.crisis-top.dismissed {
  transform: translateY(0);
  animation: crisisSlideOut 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes crisisSlideOut {
  to { transform: translateY(-100%); }
}
.crisis-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 48px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.crisis-top-dot {
  font-size: 0.85rem;
  line-height: 1;
}
.crisis-top-inner span.crisis-top-label {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.crisis-top-inner a {
  color: var(--sage-pale);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.crisis-top-inner a:hover { color: var(--white); }
.crisis-top-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}
.crisis-top-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.crisis-top-close:hover { color: rgba(255,255,255,0.7); }

/* Push nav down when crisis bar is visible */
body.crisis-visible nav {
  top: 36px;
}
body.crisis-visible nav.scrolled {
  top: 36px;
}
body.crisis-dismissed nav {
  top: 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 1, 1);
}

@media (max-width: 600px) {
  .crisis-top-inner { padding: 8px 40px 8px 16px; font-size: 0.72rem; gap: 6px; }
  .crisis-top-sep { display: none; }
  .crisis-top-inner span.crisis-top-label { display: none; }
}

/* ===== QUIZ MODAL ===== */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}
.quiz-overlay.active {
  opacity: 1;
  visibility: visible;
}
.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,48,40,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quiz-modal {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  background: var(--sage-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(107,158,107,0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.quiz-overlay.active .quiz-modal {
  transform: translateY(0) scale(1);
}
.quiz-progress {
  height: 3px;
  background: rgba(107,158,107,0.15);
  position: relative;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--sage);
  border-radius: 0 3px 3px 0;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}
.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(107,158,107,0.1);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 3;
}
.quiz-close:hover {
  background: rgba(107,158,107,0.2);
  color: var(--text);
}
.quiz-body {
  padding: 40px 40px 32px;
  overflow-y: auto;
  max-height: calc(90vh - 3px);
}

/* Intro screen */
.quiz-intro {
  text-align: center;
}
.quiz-intro-icon {
  width: 64px;
  height: 64px;
  background: rgba(107,158,107,0.12);
  border: 1px solid rgba(107,158,107,0.15);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.quiz-intro h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.85rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
}
.quiz-intro-privacy {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-intro-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.quiz-intro-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  background: rgba(107,158,107,0.1);
  padding: 6px 14px;
  border-radius: 100px;
}
.quiz-btn-start {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.quiz-btn-start:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(44,61,85,0.2);
}

/* Question screen */
.quiz-question {
  display: none;
}
.quiz-question.active {
  display: block;
  animation: quizFadeIn 0.4s ease;
}
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-q-counter {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 14px;
}
.quiz-q-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 32px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  background: var(--white);
  border: 1.5px solid rgba(107,158,107,0.12);
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.quiz-option:hover {
  border-color: var(--sage-pale);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(107,158,107,0.08);
}
.quiz-option.selected {
  border-color: var(--sage);
  background: rgba(107,158,107,0.06);
  box-shadow: 0 0 0 3px rgba(107,158,107,0.1);
}
.quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(107,158,107,0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quiz-option.selected .quiz-option-radio {
  border-color: var(--sage);
  background: var(--sage);
}
.quiz-option.selected .quiz-option-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}
.quiz-option-label {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.quiz-option.selected .quiz-option-label {
  color: var(--text);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.quiz-btn-back {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.quiz-btn-back:hover { color: var(--text); }
.quiz-btn-next {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  opacity: 0.35;
  pointer-events: none;
}
.quiz-btn-next.enabled {
  opacity: 1;
  pointer-events: auto;
}
.quiz-btn-next.enabled:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(44,61,85,0.2);
}

/* Results screen */
.quiz-result {
  display: none;
  text-align: center;
}
.quiz-result.active {
  display: block;
  animation: quizFadeIn 0.5s ease;
}
.quiz-result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.quiz-result-icon.low { background: rgba(107,158,107,0.15); }
.quiz-result-icon.moderate { background: rgba(200,170,80,0.15); }
.quiz-result-icon.high { background: rgba(200,120,60,0.15); }
.quiz-result-icon.severe { background: rgba(192,57,43,0.12); }
.quiz-result h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.65rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.quiz-result-level {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
.quiz-result-level.low { color: #3A7D4A; background: rgba(107,158,107,0.12); }
.quiz-result-level.moderate { color: #8A7030; background: rgba(200,170,80,0.12); }
.quiz-result-level.high { color: #A0582A; background: rgba(200,120,60,0.12); }
.quiz-result-level.severe { color: #A0342A; background: rgba(192,57,43,0.1); }
.quiz-result-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-result-cta {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
}
.quiz-result-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(44,61,85,0.2);
}
.quiz-result-retake {
  display: block;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0 auto 28px;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Inter', sans-serif;
}
.quiz-result-retake:hover { color: var(--text); }
.quiz-footer {
  border-top: 1px solid rgba(107,158,107,0.1);
  padding-top: 20px;
  text-align: center;
}
.quiz-footer-crisis {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.quiz-footer-crisis a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}
.quiz-footer-disclaimer {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* Quiz mobile */
@media (max-width: 600px) {
  .quiz-body { padding: 28px 24px 24px; }
  .quiz-intro h2 { font-size: 1.5rem; }
  .quiz-q-text { font-size: 1.25rem; }
  .quiz-result h3 { font-size: 1.4rem; }
  .quiz-modal { border-radius: 16px; }
  .quiz-intro-tags { gap: 8px; }
}



/* ===== WORDPRESS MENU OVERRIDES ===== */
.nav-links .menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links .menu li { margin: 0; padding: 0; }
.nav-links .menu li a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  text-decoration: none; transition: color 0.2s;
}
.nav-links .menu li a:hover { color: var(--white); }
.nav-links .menu li.nav-cta > a {
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-links .menu li.nav-cta > a:hover {
  background: rgba(255,255,255,0.2) !important;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--forest); padding: 16px 20px; flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .menu { flex-direction: column; gap: 0; width: 100%; }
  .nav-links .menu li a { padding: 11px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links .menu li.nav-cta > a { margin-top: 12px; width: 100%; text-align: center; display: block; }
  .mobile-menu-btn { display: flex !important; flex-direction: column; gap: 5px; }
}

#process, #facts, #assessment, #contact, #serve, #approach, #stats {
  scroll-margin-top: 80px;
}

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
}


/* ===== ABOUT PAGE ===== */





/* ===== CRISIS TOP BAR ===== */

@keyframes crisisSlideIn { to { transform: translateY(0); } }

@keyframes crisisSlideOut { to { transform: translateY(-100%); } }








body
body

/* ===== NAV ===== */










.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--sage-bg);
  border-bottom: 1px solid var(--sage-pale);
  text-align: center;
}
.page-hero-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Instrument Serif', serif; font-size: 3.2rem; color: var(--text);
  line-height: 1.2; margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 580px; margin: 0 auto;
}

/* ===== MISSION ===== */
.mission {
  padding: 80px 48px 24px;
  background: var(--white);
}
.mission-inner {
  max-width: 720px;
  margin: 0 auto;
}
.mission blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 28px;
}
.mission p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== TEAM ===== */
.team {
  padding: 80px 48px;
  background: var(--sage-bg);
  border-top: 1px solid var(--sage-pale);
  border-bottom: 1px solid var(--sage-pale);
}
.team-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); margin-bottom: 14px;
}
.team-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.team-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(107,158,107,0.1);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sage-pale);
  margin-bottom: 18px;
}
.team-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== DEDICATION ===== */
.dedication {
  padding: 24px 48px 40px;
  background: var(--white);
}
.dedication-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--sage-pale);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dedication-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,158,107,0.06) 0%, transparent 60%);
}
.dedication-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 16px;
  position: relative;
}
.dedication-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
}
.dedication-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sage-pale);
  margin-bottom: 28px;
  position: relative;
}
.dedication-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.dedication-closing {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 24px;
  position: relative;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--sage-bg);
}
.partners-label {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-light); margin-bottom: 24px;
}
.partner-logos {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.partner-logos span {
  font-size: 0.9rem; font-weight: 600; color: var(--text-secondary);
  opacity: 0.6; transition: opacity 0.2s;
}
.partner-logos span:hover { opacity: 1; }

/* ===== CTA ===== */
.cta {
  background: #1A3028; padding: 96px 48px; text-align: center;
}
.cta h2 {
  font-family: 'Instrument Serif', serif; font-size: 2.8rem;
  color: var(--white); margin-bottom: 18px;
}
.cta .cta-sub {
  color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin: 0 auto 40px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: var(--blue); color: var(--white); padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff; padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3); transition: all 0.25s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

/* ===== FOOTER ===== */

.
.
.
.
.
.
.
.
.
.
.
.
.

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 2.4rem; }
  .
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  
  .mobile-menu-btn { display: block; }
  .page-hero { padding: 130px 24px 56px; }
  .page-hero h1 { font-size: 2rem; }
  .mission, .team, .dedication { padding: 64px 20px; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
  .dedication-card { padding: 32px 24px; }
  .cta { padding: 64px 20px; }
  .cta h2 { font-size: 2rem; }
  
  .cta-btns { flex-direction: column; align-items: center; }
  .partners { padding: 40px 20px; }
}


/* ===== CONTACT PAGE ===== */





/* ===== CRISIS TOP BAR ===== */

@keyframes crisisSlideIn { to { transform: translateY(0); } }

@keyframes crisisSlideOut { to { transform: translateY(-100%); } }








body
body

/* ===== NAV ===== */










.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ===== CONTACT LAYOUT ===== */
.contact-page {
  padding: 120px 48px 0;
  min-height: 100vh;
}
.contact-header {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 48px;
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 18px;
}
.contact-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-header > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}
.contact-header > p + p {
  margin-top: 12px;
}
.contact-response {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
  background: var(--sage-bg);
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 20px;
}

/* Wide embed area */
.contact-embed {
  max-width: 960px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.airtable-wrap {
  border-radius: 12px;
  overflow: hidden;
}

/* Bottom row: WhatsApp + disclaimer */
.contact-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.contact-whatsapp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-whatsapp-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-whatsapp-text a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-whatsapp-text a:hover { color: var(--sage); }

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 540px;
}

/* Confidentiality box */
.confidentiality-box {
  max-width: 960px;
  margin: 36px auto 0;
  background: var(--sage-bg);
  border: 1px solid var(--sage-pale);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.confidentiality-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.confidentiality-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.confidentiality-box p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== FOOTER ===== */

.
.
.
.
.
.
.
.
.
.
.
.
.

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-header h1 { font-size: 2.2rem; }
  .contact-bottom { flex-direction: column; gap: 24px; }
  .
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  
  .mobile-menu-btn { display: block; }
  .contact-page { padding: 110px 20px 0; }
  .contact-header h1 { font-size: 1.9rem; }
  .contact-embed { padding: 24px 16px; }
  
}


/* ===== RESOURCES PAGE ===== */





/* ===== CRISIS TOP BAR ===== */

@keyframes crisisSlideIn { to { transform: translateY(0); } }

@keyframes crisisSlideOut { to { transform: translateY(-100%); } }








body
body

/* ===== NAV ===== */










.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--sage-bg);
  border-bottom: 1px solid var(--sage-pale);
  text-align: center;
}
.page-hero-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Instrument Serif', serif; font-size: 3.2rem; color: var(--text);
  line-height: 1.2; margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}

/* ===== SCROLL ROW SECTIONS ===== */
.resources-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}
.row-section {
  margin-bottom: 56px;
}
.row-section:last-child {
  margin-bottom: 0;
}
.row-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.row-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #1A3028;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.row-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-pale);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.row-header-text h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.2;
}
.row-header-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== SCROLL TRACK ===== */
.scroll-wrapper {
  position: relative;
}
.scroll-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 16px;
}
.scroll-track::-webkit-scrollbar { display: none; }

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(30,42,30,0.1);
  transition: all 0.2s;
}
.scroll-btn:hover {
  background: var(--sage-bg);
  border-color: var(--sage-pale);
  box-shadow: 0 6px 24px rgba(107,158,107,0.15);
}
.scroll-btn.visible { display: flex; }
.scroll-btn-left { left: -22px; }
.scroll-btn-right { right: -22px; }

/* ===== RESOURCE CARDS ===== */
.resource-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.resource-card:hover {
  box-shadow: 0 12px 40px rgba(107,158,107,0.12);
  border-color: var(--sage-pale);
  transform: translateY(-4px);
}

/* Video cards */
.resource-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0d1b14;
  position: relative;
  overflow: hidden;
}
.resource-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
.resource-card:hover .resource-thumb img {
  transform: scale(1.05);
  opacity: 0.88;
}
.resource-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.resource-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.resource-card:hover .resource-play {
  background: rgba(44,61,85,0.85);
  transform: translate(-50%, -50%) scale(1.08);
}
.resource-thumb-type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.type-video { background: rgba(44,61,85,0.85); color: var(--white); }
.type-article { background: rgba(107,158,107,0.88); color: var(--white); }
.resource-thumb-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Article card top bar */
.article-accent {
  height: 4px;
  background: var(--sage);
  transition: height 0.3s;
}
.resource-card:hover .article-accent {
  height: 5px;
}

/* Card body */
.resource-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.resource-source {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 8px;
}
.resource-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.resource-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.resource-
.resource-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.resource-tag {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--sage-bg);
  padding: 3px 8px;
  border-radius: 4px;
}
.resource-link-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.resource-card:hover .resource-link-label { color: var(--sage); }

/* Divider between rows */
.row-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-pale), transparent);
  margin: 0 0 56px;
}

/* Video popup */
.video-overlay {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  padding: 40px;
}
.video-overlay.active { opacity: 1; visibility: visible; }
.video-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.video-container {
  position: relative; width: 100%; max-width: 960px; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #000;
}
.video-overlay.active .video-container { transform: scale(1); }
.video-container iframe { width: 100%; height: 100%; border: none; }
.video-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.15); color: #fff; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-close:hover { background: rgba(255,255,255,0.3); }

/* ===== CTA ===== */
.cta {
  background: #1A3028; padding: 96px 48px; text-align: center;
}
.cta h2 {
  font-family: 'Instrument Serif', serif; font-size: 2.8rem; color: var(--white); margin-bottom: 18px;
}
.cta .cta-sub {
  color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin: 0 auto 40px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: var(--blue); color: var(--white); padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ===== FOOTER ===== */

.
.
.
.
.
.
.
.
.
.
.
.
.

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .resource-card { flex: 0 0 calc(50% - 11px); min-width: 260px; }
  .page-hero h1 { font-size: 2.4rem; }
  .
  .scroll-btn-left { left: -12px; }
  .scroll-btn-right { right: -12px; }
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  
  .mobile-menu-btn { display: block; }
  .page-hero { padding: 130px 24px 56px; }
  .page-hero h1 { font-size: 2rem; }
  .resources-section { padding: 40px 20px 64px; }
  .resource-card { flex: 0 0 85%; min-width: 260px; }
  .scroll-btn { display: none !important; }
  .cta { padding: 64px 20px; }
  .cta h2 { font-size: 2rem; }
  
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .video-overlay { padding: 20px; }
  .video-close { top: -40px; }
}


/* ===== PRIVACY PAGE ===== */





/* ===== CRISIS TOP BAR ===== */

@keyframes crisisSlideIn { to { transform: translateY(0); } }

@keyframes crisisSlideOut { to { transform: translateY(-100%); } }








body
body

/* ===== NAV ===== */










.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 48px 64px;
  background: var(--sage-bg);
  border-bottom: 1px solid var(--sage-pale);
  text-align: center;
}
.page-hero-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Instrument Serif', serif; font-size: 3.2rem; color: var(--text);
  line-height: 1.2; margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}
.legal-updated {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.legal-section ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-pale);
}
.legal-section a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.legal-section a:hover {
  color: var(--blue);
}
.legal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-pale), transparent);
  margin: 48px 0;
}

/* ===== FOOTER ===== */

.
.
.
.
.
.
.
.
.
.
.
.
.

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .page-hero h1 { font-size: 2.4rem; }
  .
}
@media (max-width: 700px) {
  nav { padding: 0 20px; }
  
  .mobile-menu-btn { display: block; }
  .page-hero { padding: 130px 24px 48px; }
  .page-hero h1 { font-size: 2rem; }
  .legal-content { padding: 40px 20px 64px; }
  
}


/* ===== PAGE HERO NAV OFFSET ===== */
.page-hero { padding-top: 140px !important; }
nav { background: rgba(26,48,40,0.95) !important; backdrop-filter: blur(10px) !important; }
nav.scrolled { background: rgba(255,255,255,0.98) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important; }
nav.scrolled .nav-links a, nav.scrolled .nav-links .menu li a, nav.scrolled .nav-logo { color: var(--text) !important; }
nav.scrolled .nav-cta, nav.scrolled .nav-links .menu li.nav-cta > a { background: var(--blue) !important; color: var(--white) !important; border: none !important; }
.nav-cta, a.nav-cta, .nav-links .menu li.nav-cta > a { background: var(--white) !important; color: #1A3028 !important; padding: 10px 24px !important; border-radius: 8px !important; font-weight: 700 !important; border: none !important; }
html { scroll-padding-top: 80px; }
section[id], div[id] { scroll-margin-top: 80px; }


/* ===== CONSOLIDATED FIXES ===== */

/* Crisis bar + Nav - no gap */
.crisis-top {
  position: relative;
  z-index: 1001;
}
nav {
  position: fixed !important;
  top: 0 !important;
  z-index: 1000;
  background: rgba(26,48,40,0.95) !important;
  backdrop-filter: blur(10px) !important;
}
nav.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
nav.scrolled .nav-links a,
nav.scrolled .nav-links .menu li a,
nav.scrolled .nav-logo { color: var(--text) !important; }
nav.scrolled .nav-logo span:first-child { color: var(--sage) !important; }
nav.scrolled .nav-cta,
nav.scrolled .nav-links .menu li.nav-cta > a { background: var(--blue) !important; color: var(--white) !important; border: none !important; }

/* Talk to Someone button */
.nav-cta, a.nav-cta, .nav-links .menu li.nav-cta > a {
  background: var(--white) !important; color: #1A3028 !important;
  padding: 10px 24px !important; border-radius: 8px !important;
  font-weight: 700 !important; border: none !important;
}

/* Hamburger */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 2001; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 26px; height: 3px; background: #ffffff; border-radius: 3px; }
nav.scrolled .mobile-menu-btn span { background: #1A3028; }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: #1A3028; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px; }
.mobile-overlay.active { display: flex; }
.mobile-overlay-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.8rem; cursor: pointer; }
.mobile-overlay-links { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; max-width: 320px; }
.mobile-overlay-links a { display: block; width: 100%; text-align: center; padding: 16px 24px; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.85) !important; text-decoration: none; border-radius: 10px; transition: background 0.2s; }
.mobile-overlay-links a:hover { background: rgba(255,255,255,0.08); }

/* Scroll offset */
html { scroll-padding-top: 80px; }
section[id], div[id] { scroll-margin-top: 80px; }

/* Mobile breakpoints */
@media (max-width: 768px) {
  nav .nav-links, nav #primary-menu { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; gap: 12px; align-items: center; }
  .hero-buttons a { width: 100%; max-width: 300px; text-align: center; }
  .stat-strip { grid-template-columns: repeat(2,1fr); padding: 32px 24px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .two-col { flex-direction: column; }
  .cta { padding: 60px 24px; }
  .cta-btns { flex-direction: column; gap: 12px; align-items: center; }
  .cta-btns a { width: 100%; max-width: 300px; text-align: center; }
  .footer-top { flex-direction: column; gap: 32px; }
  nav { padding: 0 20px; }
  .page-hero { padding: 120px 24px 48px !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .help-grid, .team-grid, .stat-strip { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
}

/* CRISIS BAR + NAV FIXED STACK */
.crisis-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1002 !important;
  height: 40px;
}
nav {
  top: 40px !important;
}
/* When crisis bar is hidden, nav moves to top */
.crisis-hidden nav {
  top: 0 !important;
}
/* Push page content down to account for both bars */
body {
  padding-top: 112px !important;
}

/* FIX GAP BELOW NAV */
.hero, section.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body {
  padding-top: 0 !important;
}

/* ===== LOGO ===== */
.nav-logo-img { height: 75px !important; width: auto !important; max-width: 280px !important; display: none !important; }
.nav-logo-light { display: block !important; }
.nav-logo-dark  { display: none !important; }
nav.scrolled .nav-logo-light, nav.over-light .nav-logo-light { display: none !important; }
nav.scrolled .nav-logo-dark,  nav.over-light .nav-logo-dark  { display: block !important; }

/* ===== NAV CTA BUTTON ===== */
.nav-cta, a.nav-cta, .nav-links a.nav-cta, .nav-links .menu li.nav-cta > a {
  background: #fff !important; color: var(--forest,#1A3028) !important;
  border: 2px solid #fff !important; border-radius: 8px !important;
  padding: 9px 22px !important; font-weight: 700 !important; transition: all 0.3s !important;
}
nav.scrolled .nav-cta, nav.scrolled a.nav-cta, nav.scrolled .nav-links .menu li.nav-cta > a,
nav.over-light .nav-cta, nav.over-light a.nav-cta {
  background: var(--forest,#1A3028) !important; color: #fff !important;
  border-color: var(--forest,#1A3028) !important;
}
nav.scrolled .nav-links a, nav.scrolled .nav-logo { color: #1a1a1a !important; }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-links { display: none !important; position: fixed; top: 112px; left: 0; right: 0;
    background: var(--forest,#1A3028); padding: 16px 20px; flex-direction: column !important;
    border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 999; }
  .nav-links.open { display: flex !important; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; padding: 12px 0 !important;
    display: block !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 1rem !important; }
  .nav-links .menu { flex-direction: column; gap: 0; width: 100%; list-style: none; padding: 0; margin: 0; }
  .nav-links .menu li a { padding: 12px 0 !important; display: block !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.85) !important; }
  .nav-links .menu li.nav-cta > a { margin-top: 12px !important; width: 100% !important; text-align: center !important; background: #fff !important; color: var(--forest,#1A3028) !important; border-radius: 8px !important; padding: 12px !important; border: none !important; }
  .mobile-menu-btn { display: flex !important; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 2001; }
  .mobile-menu-btn span { display: block !important; width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: all 0.3s; }
  nav.scrolled .mobile-menu-btn span { background: #1A3028; }
  .nav-logo-img { height: 50px !important; max-width: 180px !important; }
  nav { padding: 0 20px !important; }
}

/* ===== SHAME BREAKER SECTION ===== */
.shame-breaker { background: var(--forest,#1A3028); padding: 80px 48px; }
.shame-breaker-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.sb-eyebrow { color: #9cb8a8; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.sb-headline { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); font-family: var(--serif); line-height: 1.3; margin-bottom: 32px; }
.sb-headline em { color: #9cb8a8; font-style: italic; }
.sb-body { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }
.sb-closer { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.7; margin-top: 32px; }

/* ===== STATS / CONF BANNER ===== */
.conf-banner { padding: 64px 48px; text-align: center; background: var(--forest,#1A3028); }
.conf-banner h2 { color: #fff; font-size: clamp(1.5rem,3vw,2rem); font-family: var(--serif); margin-bottom: 16px; }
.conf-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.stat-strip { display: grid !important; grid-template-columns: repeat(4,1fr) !important; background: var(--forest,#1A3028); border-top: 1px solid rgba(255,255,255,0.1); }
.stat-cell { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.stat-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
@media (max-width: 768px) { .stat-strip { grid-template-columns: repeat(2,1fr) !important; } .conf-banner { padding: 48px 24px; } }
@media (max-width: 480px) { .stat-strip { grid-template-columns: 1fr !important; } }

/* ===== APPROACH / FACTS SECTION ===== */
.approach-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.approach-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.approach-tab { padding: 10px 20px; border-radius: 8px; border: 2px solid rgba(26,48,40,0.2); background: transparent; color: #555; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.approach-tab.active { background: var(--forest,#1A3028); color: #fff; border-color: var(--forest,#1A3028); }
.approach-panel { display: none; }
.approach-panel.active { display: block; }
.ap-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.95rem; color: #333; }
.ap-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.ap-icon.do { background: rgba(26,48,40,0.1); color: var(--forest,#1A3028); }
.ap-icon.dont { background: rgba(192,57,43,0.1); color: #c0392b; }
@media (max-width: 768px) { .approach-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ===== PROCESS CAROUSEL ===== */
.process-carousel-wrap { position: relative; overflow: hidden !important; margin-top: 48px; }
.process-carousel { display: flex !important; flex-wrap: nowrap !important; gap: 24px; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.p-card { flex: 0 0 340px !important; width: 340px !important; background: #fff !important; border-radius: 16px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important; border: 1px solid rgba(0,0,0,0.06); box-sizing: border-box; }
.p-num { width: 40px; height: 40px; background: var(--forest,#1A3028); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; margin-bottom: 20px; flex-shrink: 0; }
.p-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.p-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }
.process-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.process-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--forest,#1A3028); background: transparent; color: var(--forest,#1A3028); font-size: 1.3rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.process-btn:hover { background: var(--forest,#1A3028); color: #fff; }
.process-dots { display: flex; gap: 8px; align-items: center; }
.process-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,48,40,0.2); cursor: pointer; transition: all 0.2s; border: none; padding: 0; }
.process-dot.active { background: var(--forest,#1A3028); width: 24px; border-radius: 4px; }
@media (max-width: 768px) { .p-card { flex: 0 0 85vw !important; width: 85vw !important; } }

/* ===== HOME RESOURCES SECTION ===== */
.home-resources { padding: 88px 48px; background: #fff; }
.home-resources .max-w { max-width: 1200px; margin: 0 auto; }
.hr-row { margin-top: 48px; }
.hr-row-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hr-row-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--forest,#1A3028); }
.hr-row-header a { font-size: 0.9rem; color: var(--forest,#1A3028); text-decoration: none; }
.hr-scroll-wrapper { position: relative; }
.hr-scroll-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; -ms-overflow-style: none; }
.hr-scroll-track::-webkit-scrollbar { display: none; }
.hr-card { flex: 0 0 300px; scroll-snap-align: start; border-radius: 12px; overflow: hidden; background: #f9f9f7; border: 1px solid rgba(0,0,0,0.06); }
.hr-article-card { flex: 0 0 300px; scroll-snap-align: start; border-radius: 12px; overflow: hidden; background: #f9f9f7; border: 1px solid rgba(0,0,0,0.06); padding: 24px; display: flex; flex-direction: column; }
.hr-thumb { position: relative; }
.hr-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.hr-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); }
.hr-play::after { content: ''; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent #fff; }
.hr-card-body { padding: 16px; }
.hr-card-source, .hr-article-card .hr-card-source { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 6px; }
.hr-card-body h4, .hr-article-card h4 { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; line-height: 1.4; margin-bottom: 8px; }
.hr-card-body p, .hr-article-card p { font-size: 0.82rem; color: #666; line-height: 1.5; }
.hr-article-link { font-size: 0.82rem; font-weight: 600; color: var(--forest,#1A3028); text-decoration: none; margin-top: auto; padding-top: 12px; display: inline-block; }
.hr-scroll-btn { position: absolute; top: 35%; transform: translateY(-50%); background: #fff !important; border: 1px solid #ddd !important; border-radius: 50% !important; width: 32px !important; height: 32px !important; cursor: pointer; z-index: 2; font-size: 1.2rem; display: flex !important; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: #333 !important; }
.hr-scroll-btn-left { left: -8px; }
.hr-scroll-btn-right { right: -8px; }
@media (max-width: 768px) { .hr-card, .hr-article-card { flex: 0 0 82vw; } .hr-scroll-btn { display: none !important; } .home-resources { padding: 48px 20px; } }

/* ===== FOOTER DONATE BUTTON ===== */
button.donate-footer { display: block !important; background: none !important; border: none !important; outline: none !important; box-shadow: none !important; color: rgba(255,255,255,0.45) !important; font-size: 13.6px !important; font-family: inherit !important; cursor: pointer !important; padding: 0 !important; text-decoration: none !important; margin-bottom: 8px !important; text-align: left !important; }
button.donate-footer:hover { color: rgba(255,255,255,0.75) !important; }
button.donate-footer:focus, button.donate-footer:focus-visible { outline: none !important; box-shadow: none !important; }

/* ===== MOBILE HAMBURGER ANIMATION ===== */
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu-btn span { transition: all 0.3s; }

/* Hamburger: tight even bars */
.mobile-menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 2001;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
}
@media (max-width: 768px) { .mobile-menu-btn { display: flex !important; } }
.mobile-menu-btn span {
  display: block !important;
  width: 24px !important; height: 2px !important;
  background: #ffffff !important;
  border-radius: 2px !important;
  margin: 0 !important;
  transition: all 0.3s !important;
}
nav.scrolled .mobile-menu-btn span { background: #1A3028 !important; }

/* Desktop: nav-links always visible, never hidden */
@media (min-width: 769px) {
  .nav-links { display: flex !important; position: static !important; background: none !important; flex-direction: row !important; }
  .mobile-overlay { display: none !important; }
}

/* Nav CTA - Talk to Someone */
@media (min-width: 769px) {
  nav .nav-links a[href*="talk-to-someone"],
  nav .menu li:last-child > a {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: 1.5px solid rgba(255,255,255,0.35) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }
  nav.scrolled .nav-links a[href*="talk-to-someone"],
  nav.scrolled .menu li:last-child > a {
    background: #2C3D55 !important;
    color: #ffffff !important;
    border-color: transparent !important;
  }
}


/* ===== FINAL FIXES v3 ===== */

/* 1. Hamburger: fix span margin + animation alignment */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 2001; flex-direction: column; justify-content: center; align-items: center; gap: 0; width: 44px; height: 44px; }
@media (max-width: 768px) { .mobile-menu-btn { display: flex !important; } }
.mobile-menu-btn span { display: block !important; width: 22px !important; height: 2px !important; background: #ffffff !important; border-radius: 2px !important; margin: 3px 0 !important; transition: all 0.3s !important; }
nav.scrolled .mobile-menu-btn span { background: #1A3028 !important; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0 !important; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }

/* 2. Quiz overlay: block-level hidden until active */
.quiz-overlay { display: none !important; pointer-events: none !important; }
.quiz-overlay.active { display: flex !important; pointer-events: auto !important; }


/* 4. Desktop: nav always visible */
@media (min-width: 769px) { .mobile-overlay { display: none !important; } }

/* ===== FIX VID-OVERLAY WHITE BOX ===== */
#vidOverlay, .vid-overlay {
  display: none !important;
}
#vidOverlay.active, .vid-overlay.active {
  display: flex !important;
}


/* ===== MOBILE HERO BADGE + MENU FIXES ===== */
@media (max-width: 768px) {
  /* Push hero content down so badge clears crisis bar + nav */
  .hero-inner {
    padding-top: 160px !important;
  }
  .hero-badge {
    margin-bottom: 24px !important;
  }
}


/* ===== BUTTON TEXT CENTER + ANCHOR MENU FIX ===== */
@media (max-width: 768px) {
  .btn-hero-primary, a.btn-hero-primary {
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
  }
}


/* ===== NAV-LINKS MOBILE OPEN STATE FIX ===== */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-links.open { display: none !important; }
}


/* ===== MOBILE HERO REDESIGN (designer v2) ===== */
@media (max-width: 768px) {
  .hero {
    height: 85vh !important;
    min-height: 520px !important;
    max-height: 700px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 0 20px 40px !important;
    overflow: hidden !important;
  }
  .hero-video {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    z-index: 0 !important;
  }
  .hero-overlay {
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: linear-gradient(to bottom, rgba(26,48,40,0.1) 0%, rgba(26,48,40,0.3) 40%, rgba(26,48,40,0.85) 100%) !important;
    z-index: 1 !important;
  }
  .hero-inner {
    position: relative !important;
    z-index: 2 !important;
    color: white !important;
    padding: 0 !important;
  }
  .hero-badge {
    display: none !important;
  }
  .hero h1 {
    font-family: 'Instrument Serif', serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
    color: white !important;
  }
  .hero h1 em {
    font-style: italic !important;
    color: #C5DCCA !important;
  }
  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 24px !important;
    max-width: 320px !important;
  }
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }
  .btn-hero-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #3A4F6A !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    width: auto !important;
    max-width: none !important;
    text-align: left !important;
  }
  .btn-hero-ghost {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    width: auto !important;
    max-width: none !important;
  }
  .hero-scroll { display: none !important; }
}
